@@ -206,6 +206,8 @@ void Devirtualizer::do_cld(OopClosureType* closure, ClassLoaderData* cld) {
206
206
template <typename OopClosureType>
207
207
class OopOopIterateDispatch : public AllStatic {
208
208
private:
209
+ typedef void (*FunctionType)(OopClosureType*, oop, Klass*);
210
+
209
211
class Table {
210
212
private:
211
213
template <typename KlassType, typename T>
@@ -242,7 +244,7 @@ class OopOopIterateDispatch : public AllStatic {
242
244
}
243
245
244
246
public:
245
- void (* _function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*) ;
247
+ FunctionType _function[KLASS_ID_COUNT];
246
248
247
249
Table (){
248
250
set_init_function<InstanceKlass>();
@@ -257,7 +259,7 @@ class OopOopIterateDispatch : public AllStatic {
257
259
static Table _table;
258
260
public:
259
261
260
- static void (* function (Klass* klass))(OopClosureType*, oop, Klass* ) {
262
+ static FunctionType function (Klass* klass) {
261
263
return _table._function [klass->id ()];
262
264
}
263
265
};
@@ -269,6 +271,8 @@ typename OopOopIterateDispatch<OopClosureType>::Table OopOopIterateDispatch<OopC
269
271
template <typename OopClosureType>
270
272
class OopOopIterateBoundedDispatch {
271
273
private:
274
+ typedef void (*FunctionType)(OopClosureType*, oop, Klass*, MemRegion);
275
+
272
276
class Table {
273
277
private:
274
278
template <typename KlassType, typename T>
@@ -302,7 +306,7 @@ class OopOopIterateBoundedDispatch {
302
306
}
303
307
304
308
public:
305
- void (* _function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*, MemRegion) ;
309
+ FunctionType _function[KLASS_ID_COUNT];
306
310
307
311
Table (){
308
312
set_init_function<InstanceKlass>();
@@ -317,7 +321,7 @@ class OopOopIterateBoundedDispatch {
317
321
static Table _table;
318
322
public:
319
323
320
- static void (* function (Klass* klass))(OopClosureType*, oop, Klass*, MemRegion ) {
324
+ static FunctionType function (Klass* klass) {
321
325
return _table._function [klass->id ()];
322
326
}
323
327
};
@@ -329,6 +333,8 @@ typename OopOopIterateBoundedDispatch<OopClosureType>::Table OopOopIterateBounde
329
333
template <typename OopClosureType>
330
334
class OopOopIterateBackwardsDispatch {
331
335
private:
336
+ typedef void (*FunctionType)(OopClosureType*, oop, Klass*);
337
+
332
338
class Table {
333
339
private:
334
340
template <typename KlassType, typename T>
@@ -362,7 +368,7 @@ class OopOopIterateBackwardsDispatch {
362
368
}
363
369
364
370
public:
365
- void (* _function[KLASS_ID_COUNT])(OopClosureType*, oop, Klass*) ;
371
+ FunctionType _function[KLASS_ID_COUNT];
366
372
367
373
Table (){
368
374
set_init_function<InstanceKlass>();
@@ -377,7 +383,7 @@ class OopOopIterateBackwardsDispatch {
377
383
static Table _table;
378
384
public:
379
385
380
- static void (* function (Klass* klass))(OopClosureType*, oop, Klass* ) {
386
+ static FunctionType function (Klass* klass) {
381
387
return _table._function [klass->id ()];
382
388
}
383
389
};
0 commit comments