Skip to content

Commit 1831a95

Browse files
Dmitry ChuykoTheRealMDoerr
Dmitry Chuyko
authored andcommittedJun 13, 2024
8323122: AArch64: Increase itable stub size estimate
Reviewed-by: aph Backport-of: 36f4b34f1953af736706ec67192204727808bc6c
1 parent 622026a commit 1831a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/cpu/aarch64/vtableStubs_aarch64.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ VtableStub* VtableStubs::create_itable_stub(int itable_index) {
197197
temp_reg, temp_reg2, itable_index, L_no_such_interface);
198198

199199
// Reduce "estimate" such that "padding" does not drop below 8.
200-
const ptrdiff_t estimate = 124;
200+
const ptrdiff_t estimate = 144;
201201
const ptrdiff_t codesize = __ pc() - start_pc;
202202
slop_delta = (int)(estimate - codesize);
203203
slop_bytes += slop_delta;

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jun 13, 2024

@openjdk-notifier[bot]
Please sign in to comment.