author | kvn |
Thu, 17 Jul 2014 15:40:04 -0700 | |
changeset 25916 | c5c22fab48fd |
parent 25359 | 8a19ff205f89 |
child 32082 | 2a3323e25de1 |
permissions | -rw-r--r-- |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
17094
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
27 |
#include "code/compiledIC.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
28 |
#include "code/icBuffer.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
29 |
#include "code/nmethod.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
30 |
#include "memory/resourceArea.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
31 |
#include "runtime/mutexLocker.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
32 |
#include "runtime/safepoint.hpp" |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
33 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
34 |
// Release the CompiledICHolder* associated with this call site is there is one. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
35 |
void CompiledIC::cleanup_call_site(virtual_call_Relocation* call_site) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
36 |
// This call site might have become stale so inspect it carefully. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
37 |
NativeCall* call = nativeCall_at(call_site->addr()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
38 |
if (is_icholder_entry(call->destination())) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
39 |
NativeMovConstReg* value = nativeMovConstReg_at(call_site->cached_value()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
40 |
InlineCacheBuffer::queue_for_release((CompiledICHolder*)value->data()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
41 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
42 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
43 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
44 |
bool CompiledIC::is_icholder_call_site(virtual_call_Relocation* call_site) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
45 |
// This call site might have become stale so inspect it carefully. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
46 |
NativeCall* call = nativeCall_at(call_site->addr()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
47 |
return is_icholder_entry(call->destination()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
48 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
49 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
50 |
// ---------------------------------------------------------------------------- |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
51 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
52 |
#define __ _masm. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
53 |
void CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
54 |
// 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
|
55 |
// calling compiled code to calling interpreted code. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
56 |
// movq rbx, 0 |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
57 |
// jmp -5 # to self |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
58 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
59 |
address mark = cbuf.insts_mark(); // Get mark within main instrs section. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
60 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
61 |
// 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
|
62 |
// 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
|
63 |
MacroAssembler _masm(&cbuf); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
64 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
65 |
address base = |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
66 |
__ start_a_stub(to_interp_stub_size()*2); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
67 |
if (base == NULL) return; // CodeBuffer::expand failed. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
68 |
// Static stub relocation stores the instruction address of the call. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
69 |
__ relocate(static_stub_Relocation::spec(mark), Assembler::imm_operand); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
70 |
// 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
|
71 |
__ 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
|
72 |
// 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
|
73 |
__ jump(RuntimeAddress(__ pc())); |
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 |
// Update current stubs pointer and restore insts_end. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
76 |
__ end_a_stub(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
77 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
78 |
#undef __ |
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 |
int CompiledStaticCall::to_interp_stub_size() { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
81 |
return NOT_LP64(10) // movl; jmp |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
82 |
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
|
83 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
84 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
85 |
// 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
|
86 |
int CompiledStaticCall::reloc_to_interp_stub() { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
87 |
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
|
88 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
89 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
90 |
void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
91 |
address stub = find_stub(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
92 |
guarantee(stub != NULL, "stub not found"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
93 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
94 |
if (TraceICs) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
95 |
ResourceMark rm; |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
96 |
tty->print_cr("CompiledStaticCall@" INTPTR_FORMAT ": set_to_interpreted %s", |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
17094
diff
changeset
|
97 |
p2i(instruction_address()), |
17094
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
98 |
callee->name_and_sig_as_C_string()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
99 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
100 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
101 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
102 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
103 |
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
|
104 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
105 |
assert(method_holder->data() == 0 || method_holder->data() == (intptr_t)callee(), |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
106 |
"a) MT-unsafe modification of inline cache"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
107 |
assert(jump->jump_destination() == (address)-1 || jump->jump_destination() == entry, |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
108 |
"b) MT-unsafe modification of inline cache"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
109 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
110 |
// Update stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
111 |
method_holder->set_data((intptr_t)callee()); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
112 |
jump->set_jump_destination(entry); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
113 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
114 |
// Update jump to call. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
115 |
set_destination_mt_safe(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
116 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
117 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
118 |
void CompiledStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
119 |
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
|
120 |
// Reset stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
121 |
address stub = static_stub->addr(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
122 |
assert(stub != NULL, "stub not found"); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
123 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
124 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
125 |
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
|
126 |
method_holder->set_data(0); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
127 |
jump->set_jump_destination((address)-1); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
128 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
129 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
130 |
//----------------------------------------------------------------------------- |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
131 |
// Non-product mode code |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
132 |
#ifndef PRODUCT |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
133 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
134 |
void CompiledStaticCall::verify() { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
135 |
// Verify call. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
136 |
NativeCall::verify(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
137 |
if (os::is_MP()) { |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
138 |
verify_alignment(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
139 |
} |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
140 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
141 |
// Verify stub. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
142 |
address stub = find_stub(); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
143 |
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
|
144 |
// Creation also verifies the object. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
145 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
146 |
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
|
147 |
|
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
148 |
// Verify state. |
29c4955396d2
8003853: specify offset of IC load in java_to_interp stub
dlong
parents:
diff
changeset
|
149 |
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
|
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 |
#endif // !PRODUCT |