author | fyang |
Tue, 12 Apr 2016 11:53:44 +0800 | |
changeset 38037 | 31c22b526d30 |
parent 38035 | a6105022c551 |
child 38657 | 3caf062361a6 |
permissions | -rw-r--r-- |
29183 | 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. |
29183 | 3 |
* Copyright (c) 2014, Red Hat Inc. All rights reserved. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#include "precompiled.hpp" |
|
27 |
#include "asm/macroAssembler.inline.hpp" |
|
28 |
#include "code/compiledIC.hpp" |
|
29 |
#include "code/icBuffer.hpp" |
|
30 |
#include "code/nmethod.hpp" |
|
31 |
#include "memory/resourceArea.hpp" |
|
32 |
#include "runtime/mutexLocker.hpp" |
|
33 |
#include "runtime/safepoint.hpp" |
|
34 |
||
35 |
// ---------------------------------------------------------------------------- |
|
36 |
||
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) { |
29183 | 39 |
// Stub is fixed up when the corresponding call is converted from |
40 |
// calling compiled code to calling interpreted code. |
|
41 |
// mov rmethod, 0 |
|
42 |
// jmp -4 # to self |
|
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 |
} |
29183 | 47 |
|
48 |
// Note that the code buffer's insts_mark is always relative to insts. |
|
49 |
// That's why we must use the macroassembler to generate a stub. |
|
50 |
MacroAssembler _masm(&cbuf); |
|
51 |
||
32082
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
29183
diff
changeset
|
52 |
address base = __ start_a_stub(to_interp_stub_size()); |
29183 | 53 |
int offset = __ offset(); |
32082
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
29183
diff
changeset
|
54 |
if (base == NULL) { |
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
29183
diff
changeset
|
55 |
return NULL; // CodeBuffer::expand failed |
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
29183
diff
changeset
|
56 |
} |
29183 | 57 |
// static stub relocation stores the instruction address of the call |
58 |
__ relocate(static_stub_Relocation::spec(mark)); |
|
59 |
// static stub relocation also tags the Method* in the code-stream. |
|
60 |
__ mov_metadata(rmethod, (Metadata*)NULL); |
|
61 |
__ movptr(rscratch1, 0); |
|
62 |
__ br(rscratch1); |
|
63 |
||
64 |
assert((__ offset() - offset) <= (int)to_interp_stub_size(), "stub too big"); |
|
65 |
__ end_a_stub(); |
|
32082
2a3323e25de1
8130309: Need to bailout cleanly if creation of stubs fails when codecache is out of space
thartmann
parents:
29183
diff
changeset
|
66 |
return base; |
29183 | 67 |
} |
68 |
#undef __ |
|
69 |
||
70 |
int CompiledStaticCall::to_interp_stub_size() { |
|
71 |
return 7 * NativeInstruction::instruction_size; |
|
72 |
} |
|
73 |
||
74 |
// Relocation entries for call stub, compiled java to interpreter. |
|
75 |
int CompiledStaticCall::reloc_to_interp_stub() { |
|
76 |
return 4; // 3 in emit_to_interp_stub + 1 in emit_call |
|
77 |
} |
|
78 |
||
79 |
void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) { |
|
80 |
address stub = find_stub(); |
|
81 |
guarantee(stub != NULL, "stub not found"); |
|
82 |
||
83 |
if (TraceICs) { |
|
84 |
ResourceMark rm; |
|
85 |
tty->print_cr("CompiledStaticCall@" INTPTR_FORMAT ": set_to_interpreted %s", |
|
86 |
p2i(instruction_address()), |
|
87 |
callee->name_and_sig_as_C_string()); |
|
88 |
} |
|
89 |
||
90 |
// Creation also verifies the object. |
|
91 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
|
92 |
#ifndef PRODUCT |
|
93 |
NativeGeneralJump* jump = nativeGeneralJump_at(method_holder->next_instruction_address()); |
|
94 |
||
95 |
assert(method_holder->data() == 0 || method_holder->data() == (intptr_t)callee(), |
|
96 |
"a) MT-unsafe modification of inline cache"); |
|
97 |
assert(method_holder->data() == 0 || jump->jump_destination() == entry, |
|
98 |
"b) MT-unsafe modification of inline cache"); |
|
99 |
#endif |
|
100 |
// Update stub. |
|
101 |
method_holder->set_data((intptr_t)callee()); |
|
102 |
NativeGeneralJump::insert_unconditional(method_holder->next_instruction_address(), entry); |
|
103 |
ICache::invalidate_range(stub, to_interp_stub_size()); |
|
104 |
// Update jump to call. |
|
105 |
set_destination_mt_safe(stub); |
|
106 |
} |
|
107 |
||
108 |
void CompiledStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) { |
|
109 |
assert (CompiledIC_lock->is_locked() || SafepointSynchronize::is_at_safepoint(), "mt unsafe call"); |
|
110 |
// Reset stub. |
|
111 |
address stub = static_stub->addr(); |
|
112 |
assert(stub != NULL, "stub not found"); |
|
113 |
// Creation also verifies the object. |
|
114 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
|
115 |
method_holder->set_data(0); |
|
116 |
} |
|
117 |
||
118 |
//----------------------------------------------------------------------------- |
|
119 |
// Non-product mode code |
|
120 |
#ifndef PRODUCT |
|
121 |
||
122 |
void CompiledStaticCall::verify() { |
|
123 |
// Verify call. |
|
124 |
NativeCall::verify(); |
|
125 |
if (os::is_MP()) { |
|
126 |
verify_alignment(); |
|
127 |
} |
|
128 |
||
129 |
// Verify stub. |
|
130 |
address stub = find_stub(); |
|
131 |
assert(stub != NULL, "no stub found for static call"); |
|
132 |
// Creation also verifies the object. |
|
133 |
NativeMovConstReg* method_holder = nativeMovConstReg_at(stub); |
|
134 |
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address()); |
|
135 |
||
136 |
// Verify state. |
|
137 |
assert(is_clean() || is_call_to_compiled() || is_call_to_interpreted(), "sanity check"); |
|
138 |
} |
|
139 |
||
140 |
#endif // !PRODUCT |