Skip to content

Commit 62a033e

Browse files
author
Kim Barrett
committedDec 22, 2022
8299191: Unnecessarily global friend functions for relocInfo
Reviewed-by: chagedorn, kvn
1 parent a3693cc commit 62a033e

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed
 

‎src/hotspot/share/asm/codeBuffer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,8 @@ void CodeSection::relocate(address at, RelocationHolder const& spec, int format)
348348
// each carrying the largest possible offset, to advance the locs_point.
349349
while (offset >= relocInfo::offset_limit()) {
350350
assert(end < locs_limit(), "adjust previous paragraph of code");
351-
*end++ = filler_relocInfo();
352-
offset -= filler_relocInfo().addr_offset();
351+
*end++ = relocInfo::filler_info();
352+
offset -= relocInfo::filler_info().addr_offset();
353353
}
354354

355355
// If it's a simple reloc with no data, we'll just write (rtype | offset).
@@ -634,7 +634,7 @@ csize_t CodeBuffer::copy_relocations_to(address buf, csize_t buf_limit, bool onl
634634
code_point_so_far < new_code_point;
635635
code_point_so_far += jump) {
636636
jump = new_code_point - code_point_so_far;
637-
relocInfo filler = filler_relocInfo();
637+
relocInfo filler = relocInfo::filler_info();
638638
if (jump >= filler.addr_offset()) {
639639
jump = filler.addr_offset();
640640
} else { // else shrink the filler to fit

‎src/hotspot/share/code/relocInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ relocInfo* relocInfo::finish_prefix(short* prefix_limit) {
8686
return this+1;
8787
}
8888
// cannot compact, so just update the count and return the limit pointer
89-
(*this) = prefix_relocInfo(plen); // write new datalen
89+
(*this) = prefix_info(plen); // write new datalen
9090
assert(data() + datalen() == prefix_limit, "pointers must line up");
9191
return (relocInfo*)prefix_limit;
9292
}

‎src/hotspot/share/code/relocInfo.hpp

+7-14
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,9 @@ class relocInfo {
368368
// - to pad out the relocInfo array to the required oop alignment
369369
// - to disable old relocation information which is no longer applicable
370370

371-
inline friend relocInfo filler_relocInfo();
371+
static relocInfo filler_info() {
372+
return relocInfo(relocInfo::none, relocInfo::offset_limit() - relocInfo::offset_unit);
373+
}
372374

373375
// Every non-prefix relocation may be preceded by at most one prefix,
374376
// which supplies 1 or more halfwords of associated data. Conventionally,
@@ -378,7 +380,10 @@ class relocInfo {
378380
// "immediate" in the prefix header word itself. This optimization
379381
// is invisible outside this module.)
380382

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+
}
382387

383388
private:
384389
// an immediate relocInfo optimizes a prefix with one 10-bit unsigned value
@@ -456,18 +461,6 @@ class name##_Relocation;
456461
APPLY_TO_RELOCATIONS(FORWARD_DECLARE_EACH_CLASS)
457462
#undef FORWARD_DECLARE_EACH_CLASS
458463

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-
471464
// Holder for flyweight relocation objects.
472465
// Although the flyweight subclasses are of varying sizes,
473466
// the holder is "one size fits all".

0 commit comments

Comments
 (0)
Please sign in to comment.