author | duke |
Wed, 05 Jul 2017 23:10:03 +0200 | |
changeset 44509 | 02253db2ace1 |
parent 42650 | 1f304d0c888b |
permissions | -rw-r--r-- |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
1 |
/* |
38035
a6105022c551
8153818: Move similar CompiledIC platform specific code to shared code.
kvn
parents:
33160
diff
changeset
|
2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
4 |
* |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
8 |
* |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
13 |
* accompanied this code). |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
14 |
* |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
18 |
* |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
21 |
* questions. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
22 |
* |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
23 |
*/ |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
24 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
25 |
#include "precompiled.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
26 |
#include "asm/macroAssembler.inline.hpp" |
42650 | 27 |
#include "code/codeCache.hpp" |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
28 |
#include "code/compiledIC.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
29 |
#include "code/icBuffer.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
30 |
#include "code/nmethod.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
31 |
#include "memory/resourceArea.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
32 |
#include "runtime/mutexLocker.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
33 |
#include "runtime/safepoint.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
34 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
35 |
// ---------------------------------------------------------------------------- |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
36 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
37 |
#define __ _masm. |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
38 |
address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) { |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
39 |
// Stub is fixed up when the corresponding call is converted from |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
40 |
// calling compiled code to calling interpreted code. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
41 |
// movq rbx, 0 |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
42 |
// jmp -5 # to self |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
43 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
44 |
if (mark == NULL) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
45 |
mark = cbuf.insts_mark(); // Get mark within main instrs section. |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
46 |
} |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
47 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
48 |
// Note that the code buffer's insts_mark is always relative to insts. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
49 |
// That's why we must use the macroassembler to generate a stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
50 |
MacroAssembler _masm(&cbuf); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
51 |
|
32082
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
25359
diff
changeset
|
52 |
address base = __ start_a_stub(to_interp_stub_size()); |
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
25359
diff
changeset
|
53 |
if (base == NULL) { |
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
25359
diff
changeset
|
54 |
return NULL; // CodeBuffer::expand failed. |
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
25359
diff
changeset
|
55 |
} |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
56 |
// Static stub relocation stores the instruction address of the call. |
42650 | 57 |
__ relocate(static_stub_Relocation::spec(mark, false), Assembler::imm_operand); |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
58 |
// Static stub relocation also tags the Method* in the code-stream. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
59 |
__ mov_metadata(rbx, (Metadata*) NULL); // Method is zapped till fixup time. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
60 |
// This is recognized as unresolved by relocs/nativeinst/ic code. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
61 |
__ jump(RuntimeAddress(__ pc())); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
62 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
63 |
assert(__ pc() - base <= to_interp_stub_size(), "wrong stub size"); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
64 |
|
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
65 |
// Update current stubs pointer and restore insts_end. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
66 |
__ end_a_stub(); |
32082
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
25359
diff
changeset
|
67 |
return base; |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
68 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
69 |
#undef __ |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
70 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
71 |
int CompiledStaticCall::to_interp_stub_size() { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
72 |
return NOT_LP64(10) // movl; jmp |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
73 |
LP64_ONLY(15); // movq (1+1+8); jmp (1+4) |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
74 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
75 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
76 |
// Relocation entries for call stub, compiled java to interpreter. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
77 |
int CompiledStaticCall::reloc_to_interp_stub() { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
78 |
return 4; // 3 in emit_to_interp_stub + 1 in emit_call |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
79 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
80 |
|
42650 | 81 |
#if INCLUDE_AOT |
82 |
#define __ _masm. |
|
83 |
void CompiledStaticCall::emit_to_aot_stub(CodeBuffer &cbuf, address mark) { |
|
84 |
if (!UseAOT) { |
|
85 |
return; |
|
86 |
} |
|
87 |
// Stub is fixed up when the corresponding call is converted from |
|
88 |
// calling compiled code to calling aot code. |
|
89 |
// movq rax, imm64_aot_code_address |
|
90 |
// jmp rax |
|
91 |
||
92 |
if (mark == NULL) { |
|
93 |
mark = cbuf.insts_mark(); // Get mark within main instrs section. |
|
94 |
} |
|
95 |
||
96 |
// Note that the code buffer's insts_mark is always relative to insts. |
|
97 |
// That's why we must use the macroassembler to generate a stub. |
|
98 |
MacroAssembler _masm(&cbuf); |
|
99 |
||
100 |
address base = |
|
101 |
__ start_a_stub(to_aot_stub_size()); |
|
102 |
guarantee(base != NULL, "out of space"); |
|
103 |
||
104 |
// Static stub relocation stores the instruction address of the call. |
|
105 |
__ relocate(static_stub_Relocation::spec(mark, true /* is_aot */), Assembler::imm_operand); |
|
106 |
// Load destination AOT code address. |
|
107 |
#ifdef _LP64 |
|
108 |
__ mov64(rax, CONST64(0)); // address is zapped till fixup time. |
|
109 |
#else |
|
110 |
__ movl(rax, 0); // address is zapped till fixup time. |
|
111 |
#endif |
|
112 |
// This is recognized as unresolved by relocs/nativeinst/ic code. |
|
113 |
__ jmp(rax); |
|
114 |
||
115 |
assert(__ pc() - base <= to_aot_stub_size(), "wrong stub size"); |
|
116 |
||
117 |
// Update current stubs pointer and restore insts_end. |
|
118 |
__ end_a_stub(); |
|
119 |
} |
|
120 |
#undef __ |
|
121 |
||
122 |
int CompiledStaticCall::to_aot_stub_size() { |
|
123 |
if (UseAOT) { |
|
124 |
return NOT_LP64(7) // movl; jmp |
|
125 |
LP64_ONLY(12); // movq (1+1+8); jmp (2) |
|
126 |
} else { |
|
127 |
return 0; |
|
128 |
} |
|
129 |
} |
|
130 |
||
131 |
// Relocation entries for call stub, compiled java to aot. |
|
132 |
int CompiledStaticCall::reloc_to_aot_stub() { |
|
133 |
if (UseAOT) { |
|
134 |
return 2; // 1 in emit_to_aot_stub + 1 in emit_call |
|
135 |
} else { |
|
136 |
return 0; |
|
137 |
} |
|
138 |
} |
|
139 |
#endif // INCLUDE_AOT |
|
140 |
||
141 |
void CompiledDirectStaticCall::set_to_interpreted(const methodHandle& callee, address entry) { |
|
142 |
address stub = find_stub(false /* is_aot */); |
|
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
143 |
guarantee(stub != NULL, "stub not found"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
144 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
145 |
if (TraceICs) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
146 |
ResourceMark rm; |
42650 | 147 |
tty->print_cr("CompiledDirectStaticCall@" INTPTR_FORMAT ": set_to_interpreted %s", |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
17094
diff
changeset
|
148 |
p2i(instruction_address()), |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
149 |
callee->name_and_sig_as_C_string()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
150 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
151 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
152 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
153 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
154 |
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
155 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
156 |
#ifdef ASSERT |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
157 |
// read the value once |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
158 |
intptr_t data = method_holder->data(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
159 |
address destination = jump->jump_destination(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
160 |
assert(data == 0 || data == (intptr_t)callee(), |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
161 |
"a) MT-unsafe modification of inline cache"); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
162 |
assert(destination == (address)-1 || destination == entry, |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
163 |
"b) MT-unsafe modification of inline cache"); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
164 |
#endif |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
165 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
166 |
// Update stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
167 |
method_holder->set_data((intptr_t)callee()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
168 |
jump->set_jump_destination(entry); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
169 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
170 |
// Update jump to call. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
171 |
set_destination_mt_safe(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
172 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
173 |
|
42650 | 174 |
void CompiledDirectStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) { |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
175 |
assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
176 |
// Reset stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
177 |
address stub = static_stub->addr(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
178 |
assert(stub != NULL, "stub not found"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
179 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
180 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
181 |
method_holder->set_data(0); |
42650 | 182 |
if (!static_stub->is_aot()) { |
183 |
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); |
|
184 |
jump->set_jump_destination((address)-1); |
|
185 |
} |
|
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
186 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
187 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32082
diff
changeset
|
188 |
|
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
189 |
//----------------------------------------------------------------------------- |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
190 |
// Non-product mode code |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
191 |
#ifndef PRODUCT |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
192 |
|
42650 | 193 |
void CompiledDirectStaticCall::verify() { |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
194 |
// Verify call. |
42650 | 195 |
_call->verify(); |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
196 |
if (os::is_MP()) { |
42650 | 197 |
_call->verify_alignment(); |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
198 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
199 |
|
42650 | 200 |
#ifdef ASSERT |
201 |
CodeBlob *cb = CodeCache::find_blob_unsafe((address) _call); |
|
202 |
assert(cb && !cb->is_aot(), "CompiledDirectStaticCall cannot be used on AOTCompiledMethod"); |
|
203 |
#endif |
|
204 |
||
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
205 |
// Verify stub. |
42650 | 206 |
address stub = find_stub(false /* is_aot */); |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
207 |
assert(stub != NULL, "no stub found for static call"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
208 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
209 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
210 |
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
211 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
212 |
// Verify state. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
213 |
assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted(), "sanity check"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
214 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
215 |
#endif // !PRODUCT |