@@ -368,7 +368,9 @@ class relocInfo {
368
368
// - to pad out the relocInfo array to the required oop alignment
369
369
// - to disable old relocation information which is no longer applicable
370
370
371
- inline friend relocInfo filler_relocInfo ();
371
+ static relocInfo filler_info () {
372
+ return relocInfo (relocInfo::none, relocInfo::offset_limit () - relocInfo::offset_unit);
373
+ }
372
374
373
375
// Every non-prefix relocation may be preceded by at most one prefix,
374
376
// which supplies 1 or more halfwords of associated data. Conventionally,
@@ -378,7 +380,10 @@ class relocInfo {
378
380
// "immediate" in the prefix header word itself. This optimization
379
381
// is invisible outside this module.)
380
382
381
- inline friend relocInfo prefix_relocInfo (int datalen);
383
+ static relocInfo prefix_info (int datalen = 0 ) {
384
+ assert (relocInfo::fits_into_immediate (datalen), " datalen in limits" );
385
+ return relocInfo (relocInfo::data_prefix_tag, relocInfo::RAW_BITS, relocInfo::datalen_tag | datalen);
386
+ }
382
387
383
388
private:
384
389
// an immediate relocInfo optimizes a prefix with one 10-bit unsigned value
@@ -456,18 +461,6 @@ class name##_Relocation;
456
461
APPLY_TO_RELOCATIONS (FORWARD_DECLARE_EACH_CLASS)
457
462
#undef FORWARD_DECLARE_EACH_CLASS
458
463
459
-
460
-
461
- inline relocInfo filler_relocInfo () {
462
- return relocInfo (relocInfo::none, relocInfo::offset_limit () - relocInfo::offset_unit);
463
- }
464
-
465
- inline relocInfo prefix_relocInfo (int datalen = 0 ) {
466
- assert (relocInfo::fits_into_immediate (datalen), " datalen in limits" );
467
- return relocInfo (relocInfo::data_prefix_tag, relocInfo::RAW_BITS, relocInfo::datalen_tag | datalen);
468
- }
469
-
470
-
471
464
// Holder for flyweight relocation objects.
472
465
// Although the flyweight subclasses are of varying sizes,
473
466
// the holder is "one size fits all".
0 commit comments