Skip to content

Commit 88907bb

Browse files
committedMay 14, 2021
8266904: Use function pointer typedefs in OopOopIterateDispatch
Reviewed-by: tschatzl, iklam
1 parent 301095c commit 88907bb

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed
 

‎src/hotspot/share/memory/iterator.inline.hpp

+12-6
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ void Devirtualizer::do_cld(OopClosureType* closure, ClassLoaderData* cld) {
206206
template <typename OopClosureType>
207207
class OopOopIterateDispatch : public AllStatic {
208208
private:
209+
typedef void (*FunctionType)(OopClosureType*, oop, Klass*);
210+
209211
class Table {
210212
private:
211213
template <typename KlassType, typename T>
@@ -242,7 +244,7 @@ class OopOopIterateDispatch : public AllStatic {
242244
}
243245

244246
public:
245-
void (*_function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*);
247+
FunctionType _function[KLASS_ID_COUNT];
246248

247249
Table(){
248250
set_init_function<InstanceKlass>();
@@ -257,7 +259,7 @@ class OopOopIterateDispatch : public AllStatic {
257259
static Table _table;
258260
public:
259261

260-
static void (*function(Klass* klass))(OopClosureType*, oop, Klass*) {
262+
static FunctionType function(Klass* klass) {
261263
return _table._function[klass->id()];
262264
}
263265
};
@@ -269,6 +271,8 @@ typename OopOopIterateDispatch<OopClosureType>::Table OopOopIterateDispatch<OopC
269271
template <typename OopClosureType>
270272
class OopOopIterateBoundedDispatch {
271273
private:
274+
typedef void (*FunctionType)(OopClosureType*, oop, Klass*, MemRegion);
275+
272276
class Table {
273277
private:
274278
template <typename KlassType, typename T>
@@ -302,7 +306,7 @@ class OopOopIterateBoundedDispatch {
302306
}
303307

304308
public:
305-
void (*_function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*, MemRegion);
309+
FunctionType _function[KLASS_ID_COUNT];
306310

307311
Table(){
308312
set_init_function<InstanceKlass>();
@@ -317,7 +321,7 @@ class OopOopIterateBoundedDispatch {
317321
static Table _table;
318322
public:
319323

320-
static void (*function(Klass* klass))(OopClosureType*, oop, Klass*, MemRegion) {
324+
static FunctionType function(Klass* klass) {
321325
return _table._function[klass->id()];
322326
}
323327
};
@@ -329,6 +333,8 @@ typename OopOopIterateBoundedDispatch<OopClosureType>::Table OopOopIterateBounde
329333
template <typename OopClosureType>
330334
class OopOopIterateBackwardsDispatch {
331335
private:
336+
typedef void (*FunctionType)(OopClosureType*, oop, Klass*);
337+
332338
class Table {
333339
private:
334340
template <typename KlassType, typename T>
@@ -362,7 +368,7 @@ class OopOopIterateBackwardsDispatch {
362368
}
363369

364370
public:
365-
void (*_function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*);
371+
FunctionType _function[KLASS_ID_COUNT];
366372

367373
Table(){
368374
set_init_function<InstanceKlass>();
@@ -377,7 +383,7 @@ class OopOopIterateBackwardsDispatch {
377383
static Table _table;
378384
public:
379385

380-
static void (*function(Klass* klass))(OopClosureType*, oop, Klass*) {
386+
static FunctionType function(Klass* klass) {
381387
return _table._function[klass->id()];
382388
}
383389
};

0 commit comments

Comments
 (0)
Please sign in to comment.