Skip to content

Commit 60fa08f

Browse files
author
Vladimir Kozlov
committedAug 9, 2024
8337797: Additional ExternalAddress cleanup
Reviewed-by: adinn, thartmann
1 parent 3cf3f30 commit 60fa08f

10 files changed

+21
-25
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2020, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -201,7 +201,7 @@ address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
201201

202202
{
203203
__ enter();
204-
__ lea(rscratch1, ExternalAddress(slow_case_addr));
204+
__ lea(rscratch1, RuntimeAddress(slow_case_addr));
205205
__ blr(rscratch1);
206206
__ leave();
207207
__ ret(lr);

‎src/hotspot/cpu/riscv/jniFastGetField_riscv.cpp

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2020, Red Hat Inc. All rights reserved.
44
* Copyright (c) 2020, 2023, Huawei Technologies Co., Ltd. All rights reserved.
55
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -173,12 +173,7 @@ address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
173173

174174
{
175175
__ enter();
176-
ExternalAddress target(slow_case_addr);
177-
__ relocate(target.rspec(), [&] {
178-
int32_t offset;
179-
__ la(t0, target.target(), offset);
180-
__ jalr(t0, offset);
181-
});
176+
__ rt_call(slow_case_addr);
182177
__ leave();
183178
__ ret();
184179
}

‎src/hotspot/cpu/x86/assembler_x86.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1780,6 +1780,7 @@ void Assembler::call(Register dst) {
17801780

17811781

17821782
void Assembler::call(Address adr) {
1783+
assert(!adr._rspec.reloc()->is_data(), "should not use ExternalAddress for call");
17831784
InstructionMark im(this);
17841785
prefix(adr);
17851786
emit_int8((unsigned char)0xFF);

‎src/hotspot/cpu/x86/jniFastGetField_x86_32.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -138,7 +138,7 @@ address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
138138
default: ShouldNotReachHere();
139139
}
140140
// tail call
141-
__ jump (ExternalAddress(slow_case_addr));
141+
__ jump (RuntimeAddress(slow_case_addr));
142142

143143
__ flush ();
144144

@@ -251,7 +251,7 @@ address JNI_FastGetField::generate_fast_get_long_field() {
251251
__ pop (rsi);
252252
address slow_case_addr = jni_GetLongField_addr();;
253253
// tail call
254-
__ jump (ExternalAddress(slow_case_addr));
254+
__ jump (RuntimeAddress(slow_case_addr));
255255

256256
__ flush ();
257257

@@ -350,7 +350,7 @@ address JNI_FastGetField::generate_fast_get_float_field0(BasicType type) {
350350
default: ShouldNotReachHere();
351351
}
352352
// tail call
353-
__ jump (ExternalAddress(slow_case_addr));
353+
__ jump (RuntimeAddress(slow_case_addr));
354354

355355
__ flush ();
356356

‎src/hotspot/cpu/x86/jniFastGetField_x86_64.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -118,7 +118,7 @@ address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
118118
default: break;
119119
}
120120
// tail call
121-
__ jump (ExternalAddress(slow_case_addr), rscratch1);
121+
__ jump (RuntimeAddress(slow_case_addr), rscratch1);
122122

123123
__ flush ();
124124

@@ -206,7 +206,7 @@ address JNI_FastGetField::generate_fast_get_float_field0(BasicType type) {
206206
default: break;
207207
}
208208
// tail call
209-
__ jump (ExternalAddress(slow_case_addr), rscratch1);
209+
__ jump (RuntimeAddress(slow_case_addr), rscratch1);
210210

211211
__ flush ();
212212

‎src/hotspot/cpu/x86/macroAssembler_x86.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2329,7 +2329,7 @@ void MacroAssembler::incrementl(Address dst, int value) {
23292329

23302330
void MacroAssembler::jump(AddressLiteral dst, Register rscratch) {
23312331
assert(rscratch != noreg || always_reachable(dst), "missing");
2332-
2332+
assert(!dst.rspec().reloc()->is_data(), "should not use ExternalAddress for jump");
23332333
if (reachable(dst)) {
23342334
jmp_literal(dst.target(), dst.rspec());
23352335
} else {
@@ -2340,7 +2340,7 @@ void MacroAssembler::jump(AddressLiteral dst, Register rscratch) {
23402340

23412341
void MacroAssembler::jump_cc(Condition cc, AddressLiteral dst, Register rscratch) {
23422342
assert(rscratch != noreg || always_reachable(dst), "missing");
2343-
2343+
assert(!dst.rspec().reloc()->is_data(), "should not use ExternalAddress for jump_cc");
23442344
if (reachable(dst)) {
23452345
InstructionMark im(this);
23462346
relocate(dst.reloc());

‎src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -704,10 +704,10 @@ static void range_check(MacroAssembler* masm, Register pc_reg, Register temp_reg
704704
address code_start, address code_end,
705705
Label& L_ok) {
706706
Label L_fail;
707-
__ lea(temp_reg, ExternalAddress(code_start));
707+
__ lea(temp_reg, AddressLiteral(code_start, relocInfo::none));
708708
__ cmpptr(pc_reg, temp_reg);
709709
__ jcc(Assembler::belowEqual, L_fail);
710-
__ lea(temp_reg, ExternalAddress(code_end));
710+
__ lea(temp_reg, AddressLiteral(code_end, relocInfo::none));
711711
__ cmpptr(pc_reg, temp_reg);
712712
__ jcc(Assembler::below, L_ok);
713713
__ bind(L_fail);

‎src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -824,10 +824,10 @@ static void range_check(MacroAssembler* masm, Register pc_reg, Register temp_reg
824824
address code_start, address code_end,
825825
Label& L_ok) {
826826
Label L_fail;
827-
__ lea(temp_reg, ExternalAddress(code_start));
827+
__ lea(temp_reg, AddressLiteral(code_start, relocInfo::none));
828828
__ cmpptr(pc_reg, temp_reg);
829829
__ jcc(Assembler::belowEqual, L_fail);
830-
__ lea(temp_reg, ExternalAddress(code_end));
830+
__ lea(temp_reg, AddressLiteral(code_end, relocInfo::none));
831831
__ cmpptr(pc_reg, temp_reg);
832832
__ jcc(Assembler::below, L_ok);
833833
__ bind(L_fail);

‎src/hotspot/cpu/x86/stubGenerator_x86_64_arraycopy.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ void StubGenerator::array_overlap_test(address no_overlap_target, Label* NOLp, A
215215
__ cmpptr(to, from);
216216
__ lea(end_from, Address(from, count, sf, 0));
217217
if (NOLp == nullptr) {
218-
ExternalAddress no_overlap(no_overlap_target);
218+
RuntimeAddress no_overlap(no_overlap_target);
219219
__ jump_cc(Assembler::belowEqual, no_overlap);
220220
__ cmpptr(to, end_from);
221221
__ jump_cc(Assembler::aboveEqual, no_overlap);

‎src/hotspot/os_cpu/windows_x86/os_windows_x86.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -180,7 +180,7 @@ bool os::win32::register_code_area(char *low, char *high) {
180180
MacroAssembler* masm = new MacroAssembler(&cb);
181181
pDCD = (pDynamicCodeData) masm->pc();
182182

183-
masm->jump(ExternalAddress((address)&HandleExceptionFromCodeCache), rscratch1);
183+
masm->jump(RuntimeAddress((address)&HandleExceptionFromCodeCache), rscratch1);
184184
masm->flush();
185185

186186
// Create an Unwind Structure specifying no unwind info

0 commit comments

Comments
 (0)
Please sign in to comment.