Skip to content

Commit 8cc9a04

Browse files
committedApr 23, 2024
Merge
2 parents 853799b + 412e306 commit 8cc9a04

File tree

63 files changed

+161
-247
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+161
-247
lines changed
 

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

-5
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,6 @@ void InterpreterMacroAssembler::get_cache_index_at_bcp(Register index,
190190
} else if (index_size == sizeof(u4)) {
191191
// assert(EnableInvokeDynamic, "giant index used only for JSR 292");
192192
ldrw(index, Address(rbcp, bcp_offset));
193-
// Check if the secondary index definition is still ~x, otherwise
194-
// we have to change the following assembler code to calculate the
195-
// plain index.
196-
assert(ConstantPool::decode_invokedynamic_index(~123) == 123, "else change next line");
197-
eonw(index, index, zr); // convert to plain index
198193
} else if (index_size == sizeof(u1)) {
199194
load_unsigned_byte(index, Address(rbcp, bcp_offset));
200195
} else {

‎src/hotspot/cpu/arm/interp_masm_arm.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,6 @@ void InterpreterMacroAssembler::get_index_at_bcp(Register index, int bcp_offset,
211211
orr(index, tmp_reg, AsmOperand(index, lsl, BitsPerByte));
212212
ldrb(tmp_reg, Address(Rbcp, bcp_offset));
213213
orr(index, tmp_reg, AsmOperand(index, lsl, BitsPerByte));
214-
// Check if the secondary index definition is still ~x, otherwise
215-
// we have to change the following assembler code to calculate the
216-
// plain index.
217-
assert(ConstantPool::decode_invokedynamic_index(~123) == 123, "else change next line");
218-
mvn_32(index, index); // convert to plain index
219214
} else if (index_size == sizeof(u1)) {
220215
ldrb(index, Address(Rbcp, bcp_offset));
221216
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.