author | twisti |
Fri, 30 Nov 2012 15:23:16 -0800 | |
changeset 14626 | 0cf4eccf130f |
parent 14625 | b02f361c324e |
child 14827 | 8aa0a51a7137 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13963
e5b53c306fb5
7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents:
13391
diff
changeset
|
2 |
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5403
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
14625
diff
changeset
|
26 |
#include "asm/macroAssembler.hpp" |
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
14625
diff
changeset
|
27 |
#include "asm/macroAssembler.inline.hpp" |
7397 | 28 |
#include "asm/codeBuffer.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
14625
diff
changeset
|
29 |
#include "runtime/atomic.hpp" |
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
14625
diff
changeset
|
30 |
#include "runtime/atomic.inline.hpp" |
7397 | 31 |
#include "runtime/icache.hpp" |
32 |
#include "runtime/os.hpp" |
|
1 | 33 |
|
34 |
||
35 |
// Implementation of AbstractAssembler |
|
36 |
// |
|
37 |
// The AbstractAssembler is generating code into a CodeBuffer. To make code generation faster, |
|
38 |
// the assembler keeps a copy of the code buffers boundaries & modifies them when |
|
39 |
// emitting bytes rather than using the code buffers accessor functions all the time. |
|
2131 | 40 |
// The code buffer is updated via set_code_end(...) after emitting a whole instruction. |
1 | 41 |
|
42 |
AbstractAssembler::AbstractAssembler(CodeBuffer* code) { |
|
43 |
if (code == NULL) return; |
|
44 |
CodeSection* cs = code->insts(); |
|
45 |
cs->clear_mark(); // new assembler kills old mark |
|
14625
b02f361c324e
8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents:
14624
diff
changeset
|
46 |
if (cs->start() == NULL) { |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3261
diff
changeset
|
47 |
vm_exit_out_of_memory(0, err_msg("CodeCache: no room for %s", |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
3261
diff
changeset
|
48 |
code->name())); |
1 | 49 |
} |
14625
b02f361c324e
8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents:
14624
diff
changeset
|
50 |
_code_section = cs; |
b02f361c324e
8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents:
14624
diff
changeset
|
51 |
_oop_recorder= code->oop_recorder(); |
b02f361c324e
8003195: AbstractAssembler should not store code pointers but use the CodeSection directly
twisti
parents:
14624
diff
changeset
|
52 |
DEBUG_ONLY( _short_branch_delta = 0; ) |
1 | 53 |
} |
54 |
||
55 |
void AbstractAssembler::set_code_section(CodeSection* cs) { |
|
56 |
assert(cs->outer() == code_section()->outer(), "sanity"); |
|
57 |
assert(cs->is_allocated(), "need to pre-allocate this section"); |
|
58 |
cs->clear_mark(); // new assembly into this section kills old mark |
|
59 |
_code_section = cs; |
|
60 |
} |
|
61 |
||
62 |
// Inform CodeBuffer that incoming code and relocation will be for stubs |
|
63 |
address AbstractAssembler::start_a_stub(int required_space) { |
|
64 |
CodeBuffer* cb = code(); |
|
65 |
CodeSection* cs = cb->stubs(); |
|
66 |
assert(_code_section == cb->insts(), "not in insts?"); |
|
67 |
if (cs->maybe_expand_to_ensure_remaining(required_space) |
|
68 |
&& cb->blob() == NULL) { |
|
69 |
return NULL; |
|
70 |
} |
|
71 |
set_code_section(cs); |
|
72 |
return pc(); |
|
73 |
} |
|
74 |
||
75 |
// Inform CodeBuffer that incoming code and relocation will be code |
|
76 |
// Should not be called if start_a_stub() returned NULL |
|
77 |
void AbstractAssembler::end_a_stub() { |
|
78 |
assert(_code_section == code()->stubs(), "not in stubs?"); |
|
79 |
set_code_section(code()->insts()); |
|
80 |
} |
|
81 |
||
82 |
// Inform CodeBuffer that incoming code and relocation will be for stubs |
|
83 |
address AbstractAssembler::start_a_const(int required_space, int required_align) { |
|
84 |
CodeBuffer* cb = code(); |
|
85 |
CodeSection* cs = cb->consts(); |
|
14624 | 86 |
assert(_code_section == cb->insts() || _code_section == cb->stubs(), "not in insts/stubs?"); |
1 | 87 |
address end = cs->end(); |
88 |
int pad = -(intptr_t)end & (required_align-1); |
|
89 |
if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) { |
|
90 |
if (cb->blob() == NULL) return NULL; |
|
91 |
end = cs->end(); // refresh pointer |
|
92 |
} |
|
93 |
if (pad > 0) { |
|
94 |
while (--pad >= 0) { *end++ = 0; } |
|
95 |
cs->set_end(end); |
|
96 |
} |
|
97 |
set_code_section(cs); |
|
98 |
return end; |
|
99 |
} |
|
100 |
||
101 |
// Inform CodeBuffer that incoming code and relocation will be code |
|
14624 | 102 |
// in section cs (insts or stubs). |
103 |
void AbstractAssembler::end_a_const(CodeSection* cs) { |
|
1 | 104 |
assert(_code_section == code()->consts(), "not in consts?"); |
14624 | 105 |
set_code_section(cs); |
1 | 106 |
} |
107 |
||
108 |
void AbstractAssembler::flush() { |
|
109 |
ICache::invalidate_range(addr_at(0), offset()); |
|
110 |
} |
|
111 |
||
112 |
||
113 |
void AbstractAssembler::a_byte(int x) { |
|
114 |
emit_byte(x); |
|
115 |
} |
|
116 |
||
117 |
||
118 |
void AbstractAssembler::a_long(jint x) { |
|
119 |
emit_long(x); |
|
120 |
} |
|
121 |
||
122 |
// Labels refer to positions in the (to be) generated code. There are bound |
|
123 |
// and unbound |
|
124 |
// |
|
125 |
// Bound labels refer to known positions in the already generated code. |
|
126 |
// offset() is the position the label refers to. |
|
127 |
// |
|
128 |
// Unbound labels refer to unknown positions in the code to be generated; it |
|
129 |
// may contain a list of unresolved displacements that refer to it |
|
130 |
#ifndef PRODUCT |
|
131 |
void AbstractAssembler::print(Label& L) { |
|
132 |
if (L.is_bound()) { |
|
133 |
tty->print_cr("bound label to %d|%d", L.loc_pos(), L.loc_sect()); |
|
134 |
} else if (L.is_unbound()) { |
|
135 |
L.print_instructions((MacroAssembler*)this); |
|
136 |
} else { |
|
137 |
tty->print_cr("label in inconsistent state (loc = %d)", L.loc()); |
|
138 |
} |
|
139 |
} |
|
140 |
#endif // PRODUCT |
|
141 |
||
142 |
||
143 |
void AbstractAssembler::bind(Label& L) { |
|
144 |
if (L.is_bound()) { |
|
145 |
// Assembler can bind a label more than once to the same place. |
|
146 |
guarantee(L.loc() == locator(), "attempt to redefine label"); |
|
147 |
return; |
|
148 |
} |
|
149 |
L.bind_loc(locator()); |
|
150 |
L.patch_instructions((MacroAssembler*)this); |
|
151 |
} |
|
152 |
||
153 |
void AbstractAssembler::generate_stack_overflow_check( int frame_size_in_bytes) { |
|
154 |
if (UseStackBanging) { |
|
155 |
// Each code entry causes one stack bang n pages down the stack where n |
|
156 |
// is configurable by StackBangPages. The setting depends on the maximum |
|
157 |
// depth of VM call stack or native before going back into java code, |
|
158 |
// since only java code can raise a stack overflow exception using the |
|
159 |
// stack banging mechanism. The VM and native code does not detect stack |
|
160 |
// overflow. |
|
161 |
// The code in JavaCalls::call() checks that there is at least n pages |
|
162 |
// available, so all entry code needs to do is bang once for the end of |
|
163 |
// this shadow zone. |
|
164 |
// The entry code may need to bang additional pages if the framesize |
|
165 |
// is greater than a page. |
|
166 |
||
167 |
const int page_size = os::vm_page_size(); |
|
168 |
int bang_end = StackShadowPages*page_size; |
|
169 |
||
170 |
// This is how far the previous frame's stack banging extended. |
|
171 |
const int bang_end_safe = bang_end; |
|
172 |
||
173 |
if (frame_size_in_bytes > page_size) { |
|
174 |
bang_end += frame_size_in_bytes; |
|
175 |
} |
|
176 |
||
177 |
int bang_offset = bang_end_safe; |
|
178 |
while (bang_offset <= bang_end) { |
|
179 |
// Need at least one stack bang at end of shadow zone. |
|
180 |
bang_stack_with_offset(bang_offset); |
|
181 |
bang_offset += page_size; |
|
182 |
} |
|
183 |
} // end (UseStackBanging) |
|
184 |
} |
|
185 |
||
186 |
void Label::add_patch_at(CodeBuffer* cb, int branch_loc) { |
|
187 |
assert(_loc == -1, "Label is unbound"); |
|
188 |
if (_patch_index < PatchCacheSize) { |
|
189 |
_patches[_patch_index] = branch_loc; |
|
190 |
} else { |
|
191 |
if (_patch_overflow == NULL) { |
|
192 |
_patch_overflow = cb->create_patch_overflow(); |
|
193 |
} |
|
194 |
_patch_overflow->push(branch_loc); |
|
195 |
} |
|
196 |
++_patch_index; |
|
197 |
} |
|
198 |
||
199 |
void Label::patch_instructions(MacroAssembler* masm) { |
|
200 |
assert(is_bound(), "Label is bound"); |
|
201 |
CodeBuffer* cb = masm->code(); |
|
202 |
int target_sect = CodeBuffer::locator_sect(loc()); |
|
203 |
address target = cb->locator_address(loc()); |
|
204 |
while (_patch_index > 0) { |
|
205 |
--_patch_index; |
|
206 |
int branch_loc; |
|
207 |
if (_patch_index >= PatchCacheSize) { |
|
208 |
branch_loc = _patch_overflow->pop(); |
|
209 |
} else { |
|
210 |
branch_loc = _patches[_patch_index]; |
|
211 |
} |
|
212 |
int branch_sect = CodeBuffer::locator_sect(branch_loc); |
|
213 |
address branch = cb->locator_address(branch_loc); |
|
214 |
if (branch_sect == CodeBuffer::SECT_CONSTS) { |
|
215 |
// The thing to patch is a constant word. |
|
216 |
*(address*)branch = target; |
|
217 |
continue; |
|
218 |
} |
|
219 |
||
220 |
#ifdef ASSERT |
|
221 |
// Cross-section branches only work if the |
|
222 |
// intermediate section boundaries are frozen. |
|
223 |
if (target_sect != branch_sect) { |
|
224 |
for (int n = MIN2(target_sect, branch_sect), |
|
225 |
nlimit = (target_sect + branch_sect) - n; |
|
226 |
n < nlimit; n++) { |
|
227 |
CodeSection* cs = cb->code_section(n); |
|
228 |
assert(cs->is_frozen(), "cross-section branch needs stable offsets"); |
|
229 |
} |
|
230 |
} |
|
231 |
#endif //ASSERT |
|
232 |
||
233 |
// Push the target offset into the branch instruction. |
|
234 |
masm->pd_patch_instruction(branch, target); |
|
235 |
} |
|
236 |
} |
|
237 |
||
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
238 |
struct DelayedConstant { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
239 |
typedef void (*value_fn_t)(); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
240 |
BasicType type; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
241 |
intptr_t value; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
242 |
value_fn_t value_fn; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
243 |
// This limit of 20 is generous for initial uses. |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
244 |
// The limit needs to be large enough to store the field offsets |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
245 |
// into classes which do not have statically fixed layouts. |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
246 |
// (Initial use is for method handle object offsets.) |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
247 |
// Look for uses of "delayed_value" in the source code |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
248 |
// and make sure this number is generous enough to handle all of them. |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
249 |
enum { DC_LIMIT = 20 }; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
250 |
static DelayedConstant delayed_constants[DC_LIMIT]; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
251 |
static DelayedConstant* add(BasicType type, value_fn_t value_fn); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
252 |
bool match(BasicType t, value_fn_t cfn) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
253 |
return type == t && value_fn == cfn; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
254 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
255 |
static void update_all(); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
256 |
}; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
257 |
|
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
258 |
DelayedConstant DelayedConstant::delayed_constants[DC_LIMIT]; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
259 |
// Default C structure initialization rules have the following effect here: |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
260 |
// = { { (BasicType)0, (intptr_t)NULL }, ... }; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
261 |
|
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
262 |
DelayedConstant* DelayedConstant::add(BasicType type, |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
263 |
DelayedConstant::value_fn_t cfn) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
264 |
for (int i = 0; i < DC_LIMIT; i++) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
265 |
DelayedConstant* dcon = &delayed_constants[i]; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
266 |
if (dcon->match(type, cfn)) |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
267 |
return dcon; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
268 |
if (dcon->value_fn == NULL) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
269 |
// (cmpxchg not because this is multi-threaded but because I'm paranoid) |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
270 |
if (Atomic::cmpxchg_ptr(CAST_FROM_FN_PTR(void*, cfn), &dcon->value_fn, NULL) == NULL) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
271 |
dcon->type = type; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
272 |
return dcon; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
273 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
274 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
275 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
276 |
// If this assert is hit (in pre-integration testing!) then re-evaluate |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
277 |
// the comment on the definition of DC_LIMIT. |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
278 |
guarantee(false, "too many delayed constants"); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
279 |
return NULL; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
280 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
281 |
|
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
282 |
void DelayedConstant::update_all() { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
283 |
for (int i = 0; i < DC_LIMIT; i++) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
284 |
DelayedConstant* dcon = &delayed_constants[i]; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
285 |
if (dcon->value_fn != NULL && dcon->value == 0) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
286 |
typedef int (*int_fn_t)(); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
287 |
typedef address (*address_fn_t)(); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
288 |
switch (dcon->type) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
289 |
case T_INT: dcon->value = (intptr_t) ((int_fn_t) dcon->value_fn)(); break; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
290 |
case T_ADDRESS: dcon->value = (intptr_t) ((address_fn_t)dcon->value_fn)(); break; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
291 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
292 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
293 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
294 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
295 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
296 |
RegisterOrConstant AbstractAssembler::delayed_value(int(*value_fn)(), Register tmp, int offset) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
297 |
intptr_t val = (intptr_t) (*value_fn)(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
298 |
if (val != 0) return val + offset; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
299 |
return delayed_value_impl(delayed_value_addr(value_fn), tmp, offset); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
300 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
301 |
RegisterOrConstant AbstractAssembler::delayed_value(address(*value_fn)(), Register tmp, int offset) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
302 |
intptr_t val = (intptr_t) (*value_fn)(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
303 |
if (val != 0) return val + offset; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
304 |
return delayed_value_impl(delayed_value_addr(value_fn), tmp, offset); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
11434
diff
changeset
|
305 |
} |
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
306 |
intptr_t* AbstractAssembler::delayed_value_addr(int(*value_fn)()) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
307 |
DelayedConstant* dcon = DelayedConstant::add(T_INT, (DelayedConstant::value_fn_t) value_fn); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
308 |
return &dcon->value; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
309 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
310 |
intptr_t* AbstractAssembler::delayed_value_addr(address(*value_fn)()) { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
311 |
DelayedConstant* dcon = DelayedConstant::add(T_ADDRESS, (DelayedConstant::value_fn_t) value_fn); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
312 |
return &dcon->value; |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
313 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
314 |
void AbstractAssembler::update_delayed_values() { |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
315 |
DelayedConstant::update_all(); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
316 |
} |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
317 |
|
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
318 |
|
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
2131
diff
changeset
|
319 |
|
1 | 320 |
|
321 |
void AbstractAssembler::block_comment(const char* comment) { |
|
322 |
if (sect() == CodeBuffer::SECT_INSTS) { |
|
323 |
code_section()->outer()->block_comment(offset(), comment); |
|
324 |
} |
|
325 |
} |
|
326 |
||
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
327 |
bool MacroAssembler::needs_explicit_null_check(intptr_t offset) { |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
328 |
// Exception handler checks the nmethod's implicit null checks table |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
329 |
// only when this method returns false. |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
330 |
#ifdef _LP64 |
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
331 |
if (UseCompressedOops && Universe::narrow_oop_base() != NULL) { |
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
332 |
assert (Universe::heap() != NULL, "java heap should be initialized"); |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
333 |
// The first page after heap_base is unmapped and |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
334 |
// the 'offset' is equal to [heap_base + offset] for |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
335 |
// narrow oop implicit null checks. |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
336 |
uintptr_t base = (uintptr_t)Universe::narrow_oop_base(); |
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
337 |
if ((uintptr_t)offset >= base) { |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
338 |
// Normalize offset for the next check. |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
339 |
offset = (intptr_t)(pointer_delta((void*)offset, (void*)base, 1)); |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
340 |
} |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
341 |
} |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2148
diff
changeset
|
342 |
#endif |
823
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
343 |
return offset < 0 || os::vm_page_size() <= offset; |
9a5271881bc0
6716785: implicit null checks not triggering with CompressedOops
coleenp
parents:
1
diff
changeset
|
344 |
} |
1 | 345 |
|
346 |
#ifndef PRODUCT |
|
347 |
void Label::print_instructions(MacroAssembler* masm) const { |
|
348 |
CodeBuffer* cb = masm->code(); |
|
349 |
for (int i = 0; i < _patch_index; ++i) { |
|
350 |
int branch_loc; |
|
351 |
if (i >= PatchCacheSize) { |
|
352 |
branch_loc = _patch_overflow->at(i - PatchCacheSize); |
|
353 |
} else { |
|
354 |
branch_loc = _patches[i]; |
|
355 |
} |
|
356 |
int branch_pos = CodeBuffer::locator_pos(branch_loc); |
|
357 |
int branch_sect = CodeBuffer::locator_sect(branch_loc); |
|
358 |
address branch = cb->locator_address(branch_loc); |
|
359 |
tty->print_cr("unbound label"); |
|
360 |
tty->print("@ %d|%d ", branch_pos, branch_sect); |
|
361 |
if (branch_sect == CodeBuffer::SECT_CONSTS) { |
|
362 |
tty->print_cr(PTR_FORMAT, *(address*)branch); |
|
363 |
continue; |
|
364 |
} |
|
365 |
masm->pd_print_patched_instruction(branch); |
|
366 |
tty->cr(); |
|
367 |
} |
|
368 |
} |
|
369 |
#endif // ndef PRODUCT |