author | jiangli |
Wed, 06 Jun 2012 14:33:43 -0400 | |
changeset 12937 | 0032fb2caff6 |
parent 12739 | 09f26b73ae66 |
child 12959 | 4d33f9be7e87 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
12623 | 2 |
* Copyright (c) 2000, 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:
5404
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5404
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:
5404
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
8882
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
26 |
#include "asm/assembler.hpp" |
7397 | 27 |
#include "c1/c1_Compilation.hpp" |
28 |
#include "c1/c1_LIRAssembler.hpp" |
|
29 |
#include "c1/c1_MacroAssembler.hpp" |
|
30 |
#include "c1/c1_Runtime1.hpp" |
|
31 |
#include "c1/c1_ValueStack.hpp" |
|
32 |
#include "ci/ciArrayKlass.hpp" |
|
33 |
#include "ci/ciInstance.hpp" |
|
34 |
#include "gc_interface/collectedHeap.hpp" |
|
35 |
#include "memory/barrierSet.hpp" |
|
36 |
#include "memory/cardTableModRefBS.hpp" |
|
37 |
#include "nativeInst_x86.hpp" |
|
38 |
#include "oops/objArrayKlass.hpp" |
|
39 |
#include "runtime/sharedRuntime.hpp" |
|
1 | 40 |
|
41 |
||
42 |
// These masks are used to provide 128-bit aligned bitmasks to the XMM |
|
43 |
// instructions, to allow sign-masking or sign-bit flipping. They allow |
|
44 |
// fast versions of NegF/NegD and AbsF/AbsD. |
|
45 |
||
46 |
// Note: 'double' and 'long long' have 32-bits alignment on x86. |
|
47 |
static jlong* double_quadword(jlong *adr, jlong lo, jlong hi) { |
|
48 |
// Use the expression (adr)&(~0xF) to provide 128-bits aligned address |
|
49 |
// of 128-bits operands for SSE instructions. |
|
9958
dedfe67ddc58
7046893: LP64 problem with double_quadword in c1_LIRAssembler_x86.cpp
iveresov
parents:
9135
diff
changeset
|
50 |
jlong *operand = (jlong*)(((intptr_t)adr) & ((intptr_t)(~0xF))); |
1 | 51 |
// Store the value to a 128-bits operand. |
52 |
operand[0] = lo; |
|
53 |
operand[1] = hi; |
|
54 |
return operand; |
|
55 |
} |
|
56 |
||
57 |
// Buffer for 128-bits masks used by SSE instructions. |
|
58 |
static jlong fp_signmask_pool[(4+1)*2]; // 4*128bits(data) + 128bits(alignment) |
|
59 |
||
60 |
// Static initialization during VM startup. |
|
61 |
static jlong *float_signmask_pool = double_quadword(&fp_signmask_pool[1*2], CONST64(0x7FFFFFFF7FFFFFFF), CONST64(0x7FFFFFFF7FFFFFFF)); |
|
62 |
static jlong *double_signmask_pool = double_quadword(&fp_signmask_pool[2*2], CONST64(0x7FFFFFFFFFFFFFFF), CONST64(0x7FFFFFFFFFFFFFFF)); |
|
63 |
static jlong *float_signflip_pool = double_quadword(&fp_signmask_pool[3*2], CONST64(0x8000000080000000), CONST64(0x8000000080000000)); |
|
64 |
static jlong *double_signflip_pool = double_quadword(&fp_signmask_pool[4*2], CONST64(0x8000000000000000), CONST64(0x8000000000000000)); |
|
65 |
||
66 |
||
67 |
||
68 |
NEEDS_CLEANUP // remove this definitions ? |
|
69 |
const Register IC_Klass = rax; // where the IC klass is cached |
|
70 |
const Register SYNC_header = rax; // synchronization header |
|
71 |
const Register SHIFT_count = rcx; // where count for shift operations must be |
|
72 |
||
73 |
#define __ _masm-> |
|
74 |
||
75 |
||
76 |
static void select_different_registers(Register preserve, |
|
77 |
Register extra, |
|
78 |
Register &tmp1, |
|
79 |
Register &tmp2) { |
|
80 |
if (tmp1 == preserve) { |
|
81 |
assert_different_registers(tmp1, tmp2, extra); |
|
82 |
tmp1 = extra; |
|
83 |
} else if (tmp2 == preserve) { |
|
84 |
assert_different_registers(tmp1, tmp2, extra); |
|
85 |
tmp2 = extra; |
|
86 |
} |
|
87 |
assert_different_registers(preserve, tmp1, tmp2); |
|
88 |
} |
|
89 |
||
90 |
||
91 |
||
92 |
static void select_different_registers(Register preserve, |
|
93 |
Register extra, |
|
94 |
Register &tmp1, |
|
95 |
Register &tmp2, |
|
96 |
Register &tmp3) { |
|
97 |
if (tmp1 == preserve) { |
|
98 |
assert_different_registers(tmp1, tmp2, tmp3, extra); |
|
99 |
tmp1 = extra; |
|
100 |
} else if (tmp2 == preserve) { |
|
101 |
assert_different_registers(tmp1, tmp2, tmp3, extra); |
|
102 |
tmp2 = extra; |
|
103 |
} else if (tmp3 == preserve) { |
|
104 |
assert_different_registers(tmp1, tmp2, tmp3, extra); |
|
105 |
tmp3 = extra; |
|
106 |
} |
|
107 |
assert_different_registers(preserve, tmp1, tmp2, tmp3); |
|
108 |
} |
|
109 |
||
110 |
||
111 |
||
112 |
bool LIR_Assembler::is_small_constant(LIR_Opr opr) { |
|
113 |
if (opr->is_constant()) { |
|
114 |
LIR_Const* constant = opr->as_constant_ptr(); |
|
115 |
switch (constant->type()) { |
|
116 |
case T_INT: { |
|
117 |
return true; |
|
118 |
} |
|
119 |
||
120 |
default: |
|
121 |
return false; |
|
122 |
} |
|
123 |
} |
|
124 |
return false; |
|
125 |
} |
|
126 |
||
127 |
||
128 |
LIR_Opr LIR_Assembler::receiverOpr() { |
|
1066 | 129 |
return FrameMap::receiver_opr; |
1 | 130 |
} |
131 |
||
132 |
LIR_Opr LIR_Assembler::osrBufferPointer() { |
|
1066 | 133 |
return FrameMap::as_pointer_opr(receiverOpr()->as_register()); |
1 | 134 |
} |
135 |
||
136 |
//--------------fpu register translations----------------------- |
|
137 |
||
138 |
||
139 |
address LIR_Assembler::float_constant(float f) { |
|
140 |
address const_addr = __ float_constant(f); |
|
141 |
if (const_addr == NULL) { |
|
142 |
bailout("const section overflow"); |
|
143 |
return __ code()->consts()->start(); |
|
144 |
} else { |
|
145 |
return const_addr; |
|
146 |
} |
|
147 |
} |
|
148 |
||
149 |
||
150 |
address LIR_Assembler::double_constant(double d) { |
|
151 |
address const_addr = __ double_constant(d); |
|
152 |
if (const_addr == NULL) { |
|
153 |
bailout("const section overflow"); |
|
154 |
return __ code()->consts()->start(); |
|
155 |
} else { |
|
156 |
return const_addr; |
|
157 |
} |
|
158 |
} |
|
159 |
||
160 |
||
161 |
void LIR_Assembler::set_24bit_FPU() { |
|
162 |
__ fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_24())); |
|
163 |
} |
|
164 |
||
165 |
void LIR_Assembler::reset_FPU() { |
|
166 |
__ fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_std())); |
|
167 |
} |
|
168 |
||
169 |
void LIR_Assembler::fpop() { |
|
170 |
__ fpop(); |
|
171 |
} |
|
172 |
||
173 |
void LIR_Assembler::fxch(int i) { |
|
174 |
__ fxch(i); |
|
175 |
} |
|
176 |
||
177 |
void LIR_Assembler::fld(int i) { |
|
178 |
__ fld_s(i); |
|
179 |
} |
|
180 |
||
181 |
void LIR_Assembler::ffree(int i) { |
|
182 |
__ ffree(i); |
|
183 |
} |
|
184 |
||
185 |
void LIR_Assembler::breakpoint() { |
|
186 |
__ int3(); |
|
187 |
} |
|
188 |
||
189 |
void LIR_Assembler::push(LIR_Opr opr) { |
|
190 |
if (opr->is_single_cpu()) { |
|
191 |
__ push_reg(opr->as_register()); |
|
192 |
} else if (opr->is_double_cpu()) { |
|
1066 | 193 |
NOT_LP64(__ push_reg(opr->as_register_hi())); |
1 | 194 |
__ push_reg(opr->as_register_lo()); |
195 |
} else if (opr->is_stack()) { |
|
196 |
__ push_addr(frame_map()->address_for_slot(opr->single_stack_ix())); |
|
197 |
} else if (opr->is_constant()) { |
|
198 |
LIR_Const* const_opr = opr->as_constant_ptr(); |
|
199 |
if (const_opr->type() == T_OBJECT) { |
|
200 |
__ push_oop(const_opr->as_jobject()); |
|
201 |
} else if (const_opr->type() == T_INT) { |
|
202 |
__ push_jint(const_opr->as_jint()); |
|
203 |
} else { |
|
204 |
ShouldNotReachHere(); |
|
205 |
} |
|
206 |
||
207 |
} else { |
|
208 |
ShouldNotReachHere(); |
|
209 |
} |
|
210 |
} |
|
211 |
||
212 |
void LIR_Assembler::pop(LIR_Opr opr) { |
|
213 |
if (opr->is_single_cpu()) { |
|
1066 | 214 |
__ pop_reg(opr->as_register()); |
1 | 215 |
} else { |
216 |
ShouldNotReachHere(); |
|
217 |
} |
|
218 |
} |
|
219 |
||
1066 | 220 |
bool LIR_Assembler::is_literal_address(LIR_Address* addr) { |
221 |
return addr->base()->is_illegal() && addr->index()->is_illegal(); |
|
222 |
} |
|
223 |
||
1 | 224 |
//------------------------------------------- |
1066 | 225 |
|
1 | 226 |
Address LIR_Assembler::as_Address(LIR_Address* addr) { |
1066 | 227 |
return as_Address(addr, rscratch1); |
228 |
} |
|
229 |
||
230 |
Address LIR_Assembler::as_Address(LIR_Address* addr, Register tmp) { |
|
1 | 231 |
if (addr->base()->is_illegal()) { |
232 |
assert(addr->index()->is_illegal(), "must be illegal too"); |
|
1066 | 233 |
AddressLiteral laddr((address)addr->disp(), relocInfo::none); |
234 |
if (! __ reachable(laddr)) { |
|
235 |
__ movptr(tmp, laddr.addr()); |
|
236 |
Address res(tmp, 0); |
|
237 |
return res; |
|
238 |
} else { |
|
239 |
return __ as_Address(laddr); |
|
240 |
} |
|
1 | 241 |
} |
242 |
||
1066 | 243 |
Register base = addr->base()->as_pointer_register(); |
1 | 244 |
|
245 |
if (addr->index()->is_illegal()) { |
|
246 |
return Address( base, addr->disp()); |
|
1066 | 247 |
} else if (addr->index()->is_cpu_register()) { |
248 |
Register index = addr->index()->as_pointer_register(); |
|
1 | 249 |
return Address(base, index, (Address::ScaleFactor) addr->scale(), addr->disp()); |
250 |
} else if (addr->index()->is_constant()) { |
|
1066 | 251 |
intptr_t addr_offset = (addr->index()->as_constant_ptr()->as_jint() << addr->scale()) + addr->disp(); |
252 |
assert(Assembler::is_simm32(addr_offset), "must be"); |
|
1 | 253 |
|
254 |
return Address(base, addr_offset); |
|
255 |
} else { |
|
256 |
Unimplemented(); |
|
257 |
return Address(); |
|
258 |
} |
|
259 |
} |
|
260 |
||
261 |
||
262 |
Address LIR_Assembler::as_Address_hi(LIR_Address* addr) { |
|
263 |
Address base = as_Address(addr); |
|
264 |
return Address(base._base, base._index, base._scale, base._disp + BytesPerWord); |
|
265 |
} |
|
266 |
||
267 |
||
268 |
Address LIR_Assembler::as_Address_lo(LIR_Address* addr) { |
|
269 |
return as_Address(addr); |
|
270 |
} |
|
271 |
||
272 |
||
273 |
void LIR_Assembler::osr_entry() { |
|
274 |
offsets()->set_value(CodeOffsets::OSR_Entry, code_offset()); |
|
275 |
BlockBegin* osr_entry = compilation()->hir()->osr_entry(); |
|
276 |
ValueStack* entry_state = osr_entry->state(); |
|
277 |
int number_of_locks = entry_state->locks_size(); |
|
278 |
||
279 |
// we jump here if osr happens with the interpreter |
|
280 |
// state set up to continue at the beginning of the |
|
281 |
// loop that triggered osr - in particular, we have |
|
282 |
// the following registers setup: |
|
283 |
// |
|
284 |
// rcx: osr buffer |
|
285 |
// |
|
286 |
||
287 |
// build frame |
|
288 |
ciMethod* m = compilation()->method(); |
|
289 |
__ build_frame(initial_frame_size_in_bytes()); |
|
290 |
||
291 |
// OSR buffer is |
|
292 |
// |
|
293 |
// locals[nlocals-1..0] |
|
294 |
// monitors[0..number_of_locks] |
|
295 |
// |
|
296 |
// locals is a direct copy of the interpreter frame so in the osr buffer |
|
297 |
// so first slot in the local array is the last local from the interpreter |
|
298 |
// and last slot is local[0] (receiver) from the interpreter |
|
299 |
// |
|
300 |
// Similarly with locks. The first lock slot in the osr buffer is the nth lock |
|
301 |
// from the interpreter frame, the nth lock slot in the osr buffer is 0th lock |
|
302 |
// in the interpreter frame (the method lock if a sync method) |
|
303 |
||
304 |
// Initialize monitors in the compiled activation. |
|
305 |
// rcx: pointer to osr buffer |
|
306 |
// |
|
307 |
// All other registers are dead at this point and the locals will be |
|
308 |
// copied into place by code emitted in the IR. |
|
309 |
||
1066 | 310 |
Register OSR_buf = osrBufferPointer()->as_pointer_register(); |
1 | 311 |
{ assert(frame::interpreter_frame_monitor_size() == BasicObjectLock::size(), "adjust code below"); |
312 |
int monitor_offset = BytesPerWord * method()->max_locals() + |
|
4430 | 313 |
(2 * BytesPerWord) * (number_of_locks - 1); |
314 |
// SharedRuntime::OSR_migration_begin() packs BasicObjectLocks in |
|
315 |
// the OSR buffer using 2 word entries: first the lock and then |
|
316 |
// the oop. |
|
1 | 317 |
for (int i = 0; i < number_of_locks; i++) { |
4430 | 318 |
int slot_offset = monitor_offset - ((i * 2) * BytesPerWord); |
1 | 319 |
#ifdef ASSERT |
320 |
// verify the interpreter's monitor has a non-null object |
|
321 |
{ |
|
322 |
Label L; |
|
4430 | 323 |
__ cmpptr(Address(OSR_buf, slot_offset + 1*BytesPerWord), (int32_t)NULL_WORD); |
1 | 324 |
__ jcc(Assembler::notZero, L); |
325 |
__ stop("locked object is NULL"); |
|
326 |
__ bind(L); |
|
327 |
} |
|
328 |
#endif |
|
4430 | 329 |
__ movptr(rbx, Address(OSR_buf, slot_offset + 0)); |
1066 | 330 |
__ movptr(frame_map()->address_for_monitor_lock(i), rbx); |
4430 | 331 |
__ movptr(rbx, Address(OSR_buf, slot_offset + 1*BytesPerWord)); |
1066 | 332 |
__ movptr(frame_map()->address_for_monitor_object(i), rbx); |
1 | 333 |
} |
334 |
} |
|
335 |
} |
|
336 |
||
337 |
||
338 |
// inline cache check; done before the frame is built. |
|
339 |
int LIR_Assembler::check_icache() { |
|
340 |
Register receiver = FrameMap::receiver_opr->as_register(); |
|
341 |
Register ic_klass = IC_Klass; |
|
1066 | 342 |
const int ic_cmp_size = LP64_ONLY(10) NOT_LP64(9); |
7427 | 343 |
const bool do_post_padding = VerifyOops || UseCompressedOops; |
344 |
if (!do_post_padding) { |
|
1 | 345 |
// insert some nops so that the verified entry point is aligned on CodeEntryAlignment |
1066 | 346 |
while ((__ offset() + ic_cmp_size) % CodeEntryAlignment != 0) { |
1 | 347 |
__ nop(); |
348 |
} |
|
349 |
} |
|
350 |
int offset = __ offset(); |
|
351 |
__ inline_cache_check(receiver, IC_Klass); |
|
7427 | 352 |
assert(__ offset() % CodeEntryAlignment == 0 || do_post_padding, "alignment must be correct"); |
353 |
if (do_post_padding) { |
|
1 | 354 |
// force alignment after the cache check. |
355 |
// It's been verified to be aligned if !VerifyOops |
|
356 |
__ align(CodeEntryAlignment); |
|
357 |
} |
|
358 |
return offset; |
|
359 |
} |
|
360 |
||
361 |
||
362 |
void LIR_Assembler::jobject2reg_with_patching(Register reg, CodeEmitInfo* info) { |
|
363 |
jobject o = NULL; |
|
364 |
PatchingStub* patch = new PatchingStub(_masm, PatchingStub::load_klass_id); |
|
365 |
__ movoop(reg, o); |
|
366 |
patching_epilog(patch, lir_patch_normal, reg, info); |
|
367 |
} |
|
368 |
||
369 |
||
370 |
// This specifies the rsp decrement needed to build the frame |
|
371 |
int LIR_Assembler::initial_frame_size_in_bytes() { |
|
372 |
// if rounding, must let FrameMap know! |
|
1066 | 373 |
|
374 |
// The frame_map records size in slots (32bit word) |
|
375 |
||
376 |
// subtract two words to account for return address and link |
|
377 |
return (frame_map()->framesize() - (2*VMRegImpl::slots_per_word)) * VMRegImpl::stack_slot_size; |
|
1 | 378 |
} |
379 |
||
380 |
||
4752 | 381 |
int LIR_Assembler::emit_exception_handler() { |
1 | 382 |
// if the last instruction is a call (typically to do a throw which |
383 |
// is coming at the end after block reordering) the return address |
|
384 |
// must still point into the code area in order to avoid assertion |
|
385 |
// failures when searching for the corresponding bci => add a nop |
|
386 |
// (was bug 5/14/1999 - gri) |
|
387 |
__ nop(); |
|
388 |
||
389 |
// generate code for exception handler |
|
390 |
address handler_base = __ start_a_stub(exception_handler_size); |
|
391 |
if (handler_base == NULL) { |
|
392 |
// not enough space left for the handler |
|
393 |
bailout("exception handler overflow"); |
|
4752 | 394 |
return -1; |
1 | 395 |
} |
4752 | 396 |
|
1 | 397 |
int offset = code_offset(); |
398 |
||
5046 | 399 |
// the exception oop and pc are in rax, and rdx |
1 | 400 |
// no other registers need to be preserved, so invalidate them |
5046 | 401 |
__ invalidate_registers(false, true, true, false, true, true); |
1 | 402 |
|
403 |
// check that there is really an exception |
|
404 |
__ verify_not_null_oop(rax); |
|
405 |
||
5046 | 406 |
// search an exception handler (rax: exception oop, rdx: throwing pc) |
8495
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
7883
diff
changeset
|
407 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::handle_exception_from_callee_id))); |
a4959965eaa3
7012914: JSR 292 MethodHandlesTest C1: frame::verify_return_pc(return_address) failed: must be a return pc
twisti
parents:
7883
diff
changeset
|
408 |
__ should_not_reach_here(); |
11488
364a6c04b8e5
7131288: COMPILE SKIPPED: deopt handler overflow (retry at different tier)
iveresov
parents:
11439
diff
changeset
|
409 |
guarantee(code_offset() - offset <= exception_handler_size, "overflow"); |
1 | 410 |
__ end_a_stub(); |
4752 | 411 |
|
412 |
return offset; |
|
1 | 413 |
} |
414 |
||
4752 | 415 |
|
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
416 |
// Emit the code to remove the frame from the stack in the exception |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
417 |
// unwind path. |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
418 |
int LIR_Assembler::emit_unwind_handler() { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
419 |
#ifndef PRODUCT |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
420 |
if (CommentedAssembly) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
421 |
_masm->block_comment("Unwind handler"); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
422 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
423 |
#endif |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
424 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
425 |
int offset = code_offset(); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
426 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
427 |
// Fetch the exception from TLS and clear out exception related thread state |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
428 |
__ get_thread(rsi); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
429 |
__ movptr(rax, Address(rsi, JavaThread::exception_oop_offset())); |
10565 | 430 |
__ movptr(Address(rsi, JavaThread::exception_oop_offset()), (intptr_t)NULL_WORD); |
431 |
__ movptr(Address(rsi, JavaThread::exception_pc_offset()), (intptr_t)NULL_WORD); |
|
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
432 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
433 |
__ bind(_unwind_handler_entry); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
434 |
__ verify_not_null_oop(rax); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
435 |
if (method()->is_synchronized() || compilation()->env()->dtrace_method_probes()) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
436 |
__ mov(rsi, rax); // Preserve the exception |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
437 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
438 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
439 |
// Preform needed unlocking |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
440 |
MonitorExitStub* stub = NULL; |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
441 |
if (method()->is_synchronized()) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
442 |
monitor_address(0, FrameMap::rax_opr); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
443 |
stub = new MonitorExitStub(FrameMap::rax_opr, true, 0); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
444 |
__ unlock_object(rdi, rbx, rax, *stub->entry()); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
445 |
__ bind(*stub->continuation()); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
446 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
447 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
448 |
if (compilation()->env()->dtrace_method_probes()) { |
6756
01ac7b1701eb
6988018: dtrace/hotspot/MethodInvocation/MethodInvocation002 crashes with client compiler
never
parents:
6461
diff
changeset
|
449 |
__ get_thread(rax); |
01ac7b1701eb
6988018: dtrace/hotspot/MethodInvocation/MethodInvocation002 crashes with client compiler
never
parents:
6461
diff
changeset
|
450 |
__ movptr(Address(rsp, 0), rax); |
01ac7b1701eb
6988018: dtrace/hotspot/MethodInvocation/MethodInvocation002 crashes with client compiler
never
parents:
6461
diff
changeset
|
451 |
__ movoop(Address(rsp, sizeof(void*)), method()->constant_encoding()); |
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
452 |
__ call(RuntimeAddress(CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_exit))); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
453 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
454 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
455 |
if (method()->is_synchronized() || compilation()->env()->dtrace_method_probes()) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
456 |
__ mov(rax, rsi); // Restore the exception |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
457 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
458 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
459 |
// remove the activation and dispatch to the unwind handler |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
460 |
__ remove_frame(initial_frame_size_in_bytes()); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
461 |
__ jump(RuntimeAddress(Runtime1::entry_for(Runtime1::unwind_exception_id))); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
462 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
463 |
// Emit the slow path assembly |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
464 |
if (stub != NULL) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
465 |
stub->emit_code(this); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
466 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
467 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
468 |
return offset; |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
469 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
470 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
471 |
|
4752 | 472 |
int LIR_Assembler::emit_deopt_handler() { |
1 | 473 |
// if the last instruction is a call (typically to do a throw which |
474 |
// is coming at the end after block reordering) the return address |
|
475 |
// must still point into the code area in order to avoid assertion |
|
476 |
// failures when searching for the corresponding bci => add a nop |
|
477 |
// (was bug 5/14/1999 - gri) |
|
478 |
__ nop(); |
|
479 |
||
480 |
// generate code for exception handler |
|
481 |
address handler_base = __ start_a_stub(deopt_handler_size); |
|
482 |
if (handler_base == NULL) { |
|
483 |
// not enough space left for the handler |
|
484 |
bailout("deopt handler overflow"); |
|
4752 | 485 |
return -1; |
1 | 486 |
} |
4752 | 487 |
|
1 | 488 |
int offset = code_offset(); |
489 |
InternalAddress here(__ pc()); |
|
5046 | 490 |
|
1 | 491 |
__ pushptr(here.addr()); |
492 |
__ jump(RuntimeAddress(SharedRuntime::deopt_blob()->unpack())); |
|
11488
364a6c04b8e5
7131288: COMPILE SKIPPED: deopt handler overflow (retry at different tier)
iveresov
parents:
11439
diff
changeset
|
493 |
guarantee(code_offset() - offset <= deopt_handler_size, "overflow"); |
1 | 494 |
__ end_a_stub(); |
495 |
||
4752 | 496 |
return offset; |
1 | 497 |
} |
498 |
||
499 |
||
500 |
// This is the fast version of java.lang.String.compare; it has not |
|
501 |
// OSR-entry and therefore, we generate a slow version for OSR's |
|
502 |
void LIR_Assembler::emit_string_compare(LIR_Opr arg0, LIR_Opr arg1, LIR_Opr dst, CodeEmitInfo* info) { |
|
1066 | 503 |
__ movptr (rbx, rcx); // receiver is in rcx |
504 |
__ movptr (rax, arg1->as_register()); |
|
1 | 505 |
|
506 |
// Get addresses of first characters from both Strings |
|
7427 | 507 |
__ load_heap_oop(rsi, Address(rax, java_lang_String::value_offset_in_bytes())); |
12623 | 508 |
if (java_lang_String::has_offset_field()) { |
509 |
__ movptr (rcx, Address(rax, java_lang_String::offset_offset_in_bytes())); |
|
510 |
__ movl (rax, Address(rax, java_lang_String::count_offset_in_bytes())); |
|
511 |
__ lea (rsi, Address(rsi, rcx, Address::times_2, arrayOopDesc::base_offset_in_bytes(T_CHAR))); |
|
512 |
} else { |
|
513 |
__ movl (rax, Address(rsi, arrayOopDesc::length_offset_in_bytes())); |
|
514 |
__ lea (rsi, Address(rsi, arrayOopDesc::base_offset_in_bytes(T_CHAR))); |
|
515 |
} |
|
1 | 516 |
|
517 |
// rbx, may be NULL |
|
518 |
add_debug_info_for_null_check_here(info); |
|
7427 | 519 |
__ load_heap_oop(rdi, Address(rbx, java_lang_String::value_offset_in_bytes())); |
12623 | 520 |
if (java_lang_String::has_offset_field()) { |
521 |
__ movptr (rcx, Address(rbx, java_lang_String::offset_offset_in_bytes())); |
|
522 |
__ movl (rbx, Address(rbx, java_lang_String::count_offset_in_bytes())); |
|
523 |
__ lea (rdi, Address(rdi, rcx, Address::times_2, arrayOopDesc::base_offset_in_bytes(T_CHAR))); |
|
524 |
} else { |
|
525 |
__ movl (rbx, Address(rdi, arrayOopDesc::length_offset_in_bytes())); |
|
526 |
__ lea (rdi, Address(rdi, arrayOopDesc::base_offset_in_bytes(T_CHAR))); |
|
527 |
} |
|
1 | 528 |
|
529 |
// compute minimum length (in rax) and difference of lengths (on top of stack) |
|
8882
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
530 |
__ mov (rcx, rbx); |
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
531 |
__ subptr(rbx, rax); // subtract lengths |
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
532 |
__ push (rbx); // result |
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
533 |
__ cmov (Assembler::lessEqual, rax, rcx); |
f852635a6383
7032388: guarantee(VM_Version::supports_cmov()) failed: illegal instruction on i586 after 6919934
twisti
parents:
8871
diff
changeset
|
534 |
|
1 | 535 |
// is minimum length 0? |
536 |
Label noLoop, haveResult; |
|
1066 | 537 |
__ testptr (rax, rax); |
1 | 538 |
__ jcc (Assembler::zero, noLoop); |
539 |
||
540 |
// compare first characters |
|
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
1888
diff
changeset
|
541 |
__ load_unsigned_short(rcx, Address(rdi, 0)); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
1888
diff
changeset
|
542 |
__ load_unsigned_short(rbx, Address(rsi, 0)); |
1 | 543 |
__ subl(rcx, rbx); |
544 |
__ jcc(Assembler::notZero, haveResult); |
|
545 |
// starting loop |
|
546 |
__ decrement(rax); // we already tested index: skip one |
|
547 |
__ jcc(Assembler::zero, noLoop); |
|
548 |
||
549 |
// set rsi.edi to the end of the arrays (arrays have same length) |
|
550 |
// negate the index |
|
551 |
||
1066 | 552 |
__ lea(rsi, Address(rsi, rax, Address::times_2, type2aelembytes(T_CHAR))); |
553 |
__ lea(rdi, Address(rdi, rax, Address::times_2, type2aelembytes(T_CHAR))); |
|
554 |
__ negptr(rax); |
|
1 | 555 |
|
556 |
// compare the strings in a loop |
|
557 |
||
558 |
Label loop; |
|
559 |
__ align(wordSize); |
|
560 |
__ bind(loop); |
|
2148
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
1888
diff
changeset
|
561 |
__ load_unsigned_short(rcx, Address(rdi, rax, Address::times_2, 0)); |
09c7f703773b
6812678: macro assembler needs delayed binding of a few constants (for 6655638)
jrose
parents:
1888
diff
changeset
|
562 |
__ load_unsigned_short(rbx, Address(rsi, rax, Address::times_2, 0)); |
1 | 563 |
__ subl(rcx, rbx); |
564 |
__ jcc(Assembler::notZero, haveResult); |
|
565 |
__ increment(rax); |
|
566 |
__ jcc(Assembler::notZero, loop); |
|
567 |
||
568 |
// strings are equal up to min length |
|
569 |
||
570 |
__ bind(noLoop); |
|
1066 | 571 |
__ pop(rax); |
1 | 572 |
return_op(LIR_OprFact::illegalOpr); |
573 |
||
574 |
__ bind(haveResult); |
|
575 |
// leave instruction is going to discard the TOS value |
|
1066 | 576 |
__ mov (rax, rcx); // result of call is in rax, |
1 | 577 |
} |
578 |
||
579 |
||
580 |
void LIR_Assembler::return_op(LIR_Opr result) { |
|
581 |
assert(result->is_illegal() || !result->is_single_cpu() || result->as_register() == rax, "word returns are in rax,"); |
|
582 |
if (!result->is_illegal() && result->is_float_kind() && !result->is_xmm_register()) { |
|
583 |
assert(result->fpu() == 0, "result must already be on TOS"); |
|
584 |
} |
|
585 |
||
586 |
// Pop the stack before the safepoint code |
|
5046 | 587 |
__ remove_frame(initial_frame_size_in_bytes()); |
1 | 588 |
|
589 |
bool result_is_oop = result->is_valid() ? result->is_oop() : false; |
|
590 |
||
591 |
// Note: we do not need to round double result; float result has the right precision |
|
592 |
// the poll sets the condition code, but no data registers |
|
593 |
AddressLiteral polling_page(os::get_polling_page() + (SafepointPollOffset % os::vm_page_size()), |
|
594 |
relocInfo::poll_return_type); |
|
1066 | 595 |
|
8871
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
596 |
if (Assembler::is_polling_page_far()) { |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
597 |
__ lea(rscratch1, polling_page); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
598 |
__ relocate(relocInfo::poll_return_type); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
599 |
__ testl(rax, Address(rscratch1, 0)); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
600 |
} else { |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
601 |
__ testl(rax, polling_page); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
602 |
} |
1 | 603 |
__ ret(0); |
604 |
} |
|
605 |
||
606 |
||
607 |
int LIR_Assembler::safepoint_poll(LIR_Opr tmp, CodeEmitInfo* info) { |
|
608 |
AddressLiteral polling_page(os::get_polling_page() + (SafepointPollOffset % os::vm_page_size()), |
|
609 |
relocInfo::poll_type); |
|
8871
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
610 |
guarantee(info != NULL, "Shouldn't be NULL"); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
611 |
int offset = __ offset(); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
612 |
if (Assembler::is_polling_page_far()) { |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
613 |
__ lea(rscratch1, polling_page); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
614 |
offset = __ offset(); |
1 | 615 |
add_debug_info_for_branch(info); |
8871
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
616 |
__ testl(rax, Address(rscratch1, 0)); |
1 | 617 |
} else { |
8871
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
618 |
add_debug_info_for_branch(info); |
5c3b26c4119e
6964776: c2 should ensure the polling page is reachable on 64 bit
iveresov
parents:
8495
diff
changeset
|
619 |
__ testl(rax, polling_page); |
1 | 620 |
} |
621 |
return offset; |
|
622 |
} |
|
623 |
||
624 |
||
625 |
void LIR_Assembler::move_regs(Register from_reg, Register to_reg) { |
|
1066 | 626 |
if (from_reg != to_reg) __ mov(to_reg, from_reg); |
1 | 627 |
} |
628 |
||
629 |
void LIR_Assembler::swap_reg(Register a, Register b) { |
|
1066 | 630 |
__ xchgptr(a, b); |
1 | 631 |
} |
632 |
||
633 |
||
634 |
void LIR_Assembler::const2reg(LIR_Opr src, LIR_Opr dest, LIR_PatchCode patch_code, CodeEmitInfo* info) { |
|
635 |
assert(src->is_constant(), "should not call otherwise"); |
|
636 |
assert(dest->is_register(), "should not call otherwise"); |
|
637 |
LIR_Const* c = src->as_constant_ptr(); |
|
638 |
||
639 |
switch (c->type()) { |
|
7427 | 640 |
case T_INT: { |
641 |
assert(patch_code == lir_patch_none, "no patching handled here"); |
|
642 |
__ movl(dest->as_register(), c->as_jint()); |
|
643 |
break; |
|
644 |
} |
|
645 |
||
5048
c31b6243f37e
6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
5046
diff
changeset
|
646 |
case T_ADDRESS: { |
1 | 647 |
assert(patch_code == lir_patch_none, "no patching handled here"); |
7427 | 648 |
__ movptr(dest->as_register(), c->as_jint()); |
1 | 649 |
break; |
650 |
} |
|
651 |
||
652 |
case T_LONG: { |
|
653 |
assert(patch_code == lir_patch_none, "no patching handled here"); |
|
1066 | 654 |
#ifdef _LP64 |
655 |
__ movptr(dest->as_register_lo(), (intptr_t)c->as_jlong()); |
|
656 |
#else |
|
657 |
__ movptr(dest->as_register_lo(), c->as_jint_lo()); |
|
658 |
__ movptr(dest->as_register_hi(), c->as_jint_hi()); |
|
659 |
#endif // _LP64 |
|
1 | 660 |
break; |
661 |
} |
|
662 |
||
663 |
case T_OBJECT: { |
|
664 |
if (patch_code != lir_patch_none) { |
|
665 |
jobject2reg_with_patching(dest->as_register(), info); |
|
666 |
} else { |
|
667 |
__ movoop(dest->as_register(), c->as_jobject()); |
|
668 |
} |
|
669 |
break; |
|
670 |
} |
|
671 |
||
672 |
case T_FLOAT: { |
|
673 |
if (dest->is_single_xmm()) { |
|
674 |
if (c->is_zero_float()) { |
|
675 |
__ xorps(dest->as_xmm_float_reg(), dest->as_xmm_float_reg()); |
|
676 |
} else { |
|
677 |
__ movflt(dest->as_xmm_float_reg(), |
|
678 |
InternalAddress(float_constant(c->as_jfloat()))); |
|
679 |
} |
|
680 |
} else { |
|
681 |
assert(dest->is_single_fpu(), "must be"); |
|
682 |
assert(dest->fpu_regnr() == 0, "dest must be TOS"); |
|
683 |
if (c->is_zero_float()) { |
|
684 |
__ fldz(); |
|
685 |
} else if (c->is_one_float()) { |
|
686 |
__ fld1(); |
|
687 |
} else { |
|
688 |
__ fld_s (InternalAddress(float_constant(c->as_jfloat()))); |
|
689 |
} |
|
690 |
} |
|
691 |
break; |
|
692 |
} |
|
693 |
||
694 |
case T_DOUBLE: { |
|
695 |
if (dest->is_double_xmm()) { |
|
696 |
if (c->is_zero_double()) { |
|
697 |
__ xorpd(dest->as_xmm_double_reg(), dest->as_xmm_double_reg()); |
|
698 |
} else { |
|
699 |
__ movdbl(dest->as_xmm_double_reg(), |
|
700 |
InternalAddress(double_constant(c->as_jdouble()))); |
|
701 |
} |
|
702 |
} else { |
|
703 |
assert(dest->is_double_fpu(), "must be"); |
|
704 |
assert(dest->fpu_regnrLo() == 0, "dest must be TOS"); |
|
705 |
if (c->is_zero_double()) { |
|
706 |
__ fldz(); |
|
707 |
} else if (c->is_one_double()) { |
|
708 |
__ fld1(); |
|
709 |
} else { |
|
710 |
__ fld_d (InternalAddress(double_constant(c->as_jdouble()))); |
|
711 |
} |
|
712 |
} |
|
713 |
break; |
|
714 |
} |
|
715 |
||
716 |
default: |
|
717 |
ShouldNotReachHere(); |
|
718 |
} |
|
719 |
} |
|
720 |
||
721 |
void LIR_Assembler::const2stack(LIR_Opr src, LIR_Opr dest) { |
|
722 |
assert(src->is_constant(), "should not call otherwise"); |
|
723 |
assert(dest->is_stack(), "should not call otherwise"); |
|
724 |
LIR_Const* c = src->as_constant_ptr(); |
|
725 |
||
726 |
switch (c->type()) { |
|
727 |
case T_INT: // fall through |
|
728 |
case T_FLOAT: |
|
7427 | 729 |
__ movl(frame_map()->address_for_slot(dest->single_stack_ix()), c->as_jint_bits()); |
730 |
break; |
|
731 |
||
5048
c31b6243f37e
6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
5046
diff
changeset
|
732 |
case T_ADDRESS: |
7427 | 733 |
__ movptr(frame_map()->address_for_slot(dest->single_stack_ix()), c->as_jint_bits()); |
1 | 734 |
break; |
735 |
||
736 |
case T_OBJECT: |
|
737 |
__ movoop(frame_map()->address_for_slot(dest->single_stack_ix()), c->as_jobject()); |
|
738 |
break; |
|
739 |
||
740 |
case T_LONG: // fall through |
|
741 |
case T_DOUBLE: |
|
1066 | 742 |
#ifdef _LP64 |
743 |
__ movptr(frame_map()->address_for_slot(dest->double_stack_ix(), |
|
744 |
lo_word_offset_in_bytes), (intptr_t)c->as_jlong_bits()); |
|
745 |
#else |
|
746 |
__ movptr(frame_map()->address_for_slot(dest->double_stack_ix(), |
|
747 |
lo_word_offset_in_bytes), c->as_jint_lo_bits()); |
|
748 |
__ movptr(frame_map()->address_for_slot(dest->double_stack_ix(), |
|
749 |
hi_word_offset_in_bytes), c->as_jint_hi_bits()); |
|
750 |
#endif // _LP64 |
|
1 | 751 |
break; |
752 |
||
753 |
default: |
|
754 |
ShouldNotReachHere(); |
|
755 |
} |
|
756 |
} |
|
757 |
||
7427 | 758 |
void LIR_Assembler::const2mem(LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide) { |
1 | 759 |
assert(src->is_constant(), "should not call otherwise"); |
760 |
assert(dest->is_address(), "should not call otherwise"); |
|
761 |
LIR_Const* c = src->as_constant_ptr(); |
|
762 |
LIR_Address* addr = dest->as_address_ptr(); |
|
763 |
||
1066 | 764 |
int null_check_here = code_offset(); |
1 | 765 |
switch (type) { |
766 |
case T_INT: // fall through |
|
767 |
case T_FLOAT: |
|
7427 | 768 |
__ movl(as_Address(addr), c->as_jint_bits()); |
769 |
break; |
|
770 |
||
5048
c31b6243f37e
6932496: c1: deoptimization of jsr subroutine fails on sparcv9
roland
parents:
5046
diff
changeset
|
771 |
case T_ADDRESS: |
7427 | 772 |
__ movptr(as_Address(addr), c->as_jint_bits()); |
1 | 773 |
break; |
774 |
||
775 |
case T_OBJECT: // fall through |
|
776 |
case T_ARRAY: |
|
777 |
if (c->as_jobject() == NULL) { |
|
7427 | 778 |
if (UseCompressedOops && !wide) { |
779 |
__ movl(as_Address(addr), (int32_t)NULL_WORD); |
|
780 |
} else { |
|
781 |
__ movptr(as_Address(addr), NULL_WORD); |
|
782 |
} |
|
1 | 783 |
} else { |
1066 | 784 |
if (is_literal_address(addr)) { |
785 |
ShouldNotReachHere(); |
|
786 |
__ movoop(as_Address(addr, noreg), c->as_jobject()); |
|
787 |
} else { |
|
4430 | 788 |
#ifdef _LP64 |
789 |
__ movoop(rscratch1, c->as_jobject()); |
|
7427 | 790 |
if (UseCompressedOops && !wide) { |
791 |
__ encode_heap_oop(rscratch1); |
|
792 |
null_check_here = code_offset(); |
|
793 |
__ movl(as_Address_lo(addr), rscratch1); |
|
794 |
} else { |
|
795 |
null_check_here = code_offset(); |
|
796 |
__ movptr(as_Address_lo(addr), rscratch1); |
|
797 |
} |
|
4430 | 798 |
#else |
1066 | 799 |
__ movoop(as_Address(addr), c->as_jobject()); |
4430 | 800 |
#endif |
1066 | 801 |
} |
1 | 802 |
} |
803 |
break; |
|
804 |
||
805 |
case T_LONG: // fall through |
|
806 |
case T_DOUBLE: |
|
1066 | 807 |
#ifdef _LP64 |
808 |
if (is_literal_address(addr)) { |
|
809 |
ShouldNotReachHere(); |
|
810 |
__ movptr(as_Address(addr, r15_thread), (intptr_t)c->as_jlong_bits()); |
|
811 |
} else { |
|
812 |
__ movptr(r10, (intptr_t)c->as_jlong_bits()); |
|
813 |
null_check_here = code_offset(); |
|
814 |
__ movptr(as_Address_lo(addr), r10); |
|
815 |
} |
|
816 |
#else |
|
817 |
// Always reachable in 32bit so this doesn't produce useless move literal |
|
818 |
__ movptr(as_Address_hi(addr), c->as_jint_hi_bits()); |
|
819 |
__ movptr(as_Address_lo(addr), c->as_jint_lo_bits()); |
|
820 |
#endif // _LP64 |
|
1 | 821 |
break; |
822 |
||
823 |
case T_BOOLEAN: // fall through |
|
824 |
case T_BYTE: |
|
825 |
__ movb(as_Address(addr), c->as_jint() & 0xFF); |
|
826 |
break; |
|
827 |
||
828 |
case T_CHAR: // fall through |
|
829 |
case T_SHORT: |
|
830 |
__ movw(as_Address(addr), c->as_jint() & 0xFFFF); |
|
831 |
break; |
|
832 |
||
833 |
default: |
|
834 |
ShouldNotReachHere(); |
|
835 |
}; |
|
1066 | 836 |
|
837 |
if (info != NULL) { |
|
838 |
add_debug_info_for_null_check(null_check_here, info); |
|
839 |
} |
|
1 | 840 |
} |
841 |
||
842 |
||
843 |
void LIR_Assembler::reg2reg(LIR_Opr src, LIR_Opr dest) { |
|
844 |
assert(src->is_register(), "should not call otherwise"); |
|
845 |
assert(dest->is_register(), "should not call otherwise"); |
|
846 |
||
847 |
// move between cpu-registers |
|
848 |
if (dest->is_single_cpu()) { |
|
1066 | 849 |
#ifdef _LP64 |
850 |
if (src->type() == T_LONG) { |
|
851 |
// Can do LONG -> OBJECT |
|
852 |
move_regs(src->as_register_lo(), dest->as_register()); |
|
853 |
return; |
|
854 |
} |
|
855 |
#endif |
|
1 | 856 |
assert(src->is_single_cpu(), "must match"); |
857 |
if (src->type() == T_OBJECT) { |
|
858 |
__ verify_oop(src->as_register()); |
|
859 |
} |
|
860 |
move_regs(src->as_register(), dest->as_register()); |
|
861 |
||
862 |
} else if (dest->is_double_cpu()) { |
|
1066 | 863 |
#ifdef _LP64 |
864 |
if (src->type() == T_OBJECT || src->type() == T_ARRAY) { |
|
865 |
// Surprising to me but we can see move of a long to t_object |
|
866 |
__ verify_oop(src->as_register()); |
|
867 |
move_regs(src->as_register(), dest->as_register_lo()); |
|
868 |
return; |
|
869 |
} |
|
870 |
#endif |
|
1 | 871 |
assert(src->is_double_cpu(), "must match"); |
872 |
Register f_lo = src->as_register_lo(); |
|
873 |
Register f_hi = src->as_register_hi(); |
|
874 |
Register t_lo = dest->as_register_lo(); |
|
875 |
Register t_hi = dest->as_register_hi(); |
|
1066 | 876 |
#ifdef _LP64 |
877 |
assert(f_hi == f_lo, "must be same"); |
|
878 |
assert(t_hi == t_lo, "must be same"); |
|
879 |
move_regs(f_lo, t_lo); |
|
880 |
#else |
|
1 | 881 |
assert(f_lo != f_hi && t_lo != t_hi, "invalid register allocation"); |
882 |
||
1066 | 883 |
|
1 | 884 |
if (f_lo == t_hi && f_hi == t_lo) { |
885 |
swap_reg(f_lo, f_hi); |
|
886 |
} else if (f_hi == t_lo) { |
|
887 |
assert(f_lo != t_hi, "overwriting register"); |
|
888 |
move_regs(f_hi, t_hi); |
|
889 |
move_regs(f_lo, t_lo); |
|
890 |
} else { |
|
891 |
assert(f_hi != t_lo, "overwriting register"); |
|
892 |
move_regs(f_lo, t_lo); |
|
893 |
move_regs(f_hi, t_hi); |
|
894 |
} |
|
1066 | 895 |
#endif // LP64 |
1 | 896 |
|
897 |
// special moves from fpu-register to xmm-register |
|
898 |
// necessary for method results |
|
899 |
} else if (src->is_single_xmm() && !dest->is_single_xmm()) { |
|
900 |
__ movflt(Address(rsp, 0), src->as_xmm_float_reg()); |
|
901 |
__ fld_s(Address(rsp, 0)); |
|
902 |
} else if (src->is_double_xmm() && !dest->is_double_xmm()) { |
|
903 |
__ movdbl(Address(rsp, 0), src->as_xmm_double_reg()); |
|
904 |
__ fld_d(Address(rsp, 0)); |
|
905 |
} else if (dest->is_single_xmm() && !src->is_single_xmm()) { |
|
906 |
__ fstp_s(Address(rsp, 0)); |
|
907 |
__ movflt(dest->as_xmm_float_reg(), Address(rsp, 0)); |
|
908 |
} else if (dest->is_double_xmm() && !src->is_double_xmm()) { |
|
909 |
__ fstp_d(Address(rsp, 0)); |
|
910 |
__ movdbl(dest->as_xmm_double_reg(), Address(rsp, 0)); |
|
911 |
||
912 |
// move between xmm-registers |
|
913 |
} else if (dest->is_single_xmm()) { |
|
914 |
assert(src->is_single_xmm(), "must match"); |
|
915 |
__ movflt(dest->as_xmm_float_reg(), src->as_xmm_float_reg()); |
|
916 |
} else if (dest->is_double_xmm()) { |
|
917 |
assert(src->is_double_xmm(), "must match"); |
|
918 |
__ movdbl(dest->as_xmm_double_reg(), src->as_xmm_double_reg()); |
|
919 |
||
920 |
// move between fpu-registers (no instruction necessary because of fpu-stack) |
|
921 |
} else if (dest->is_single_fpu() || dest->is_double_fpu()) { |
|
922 |
assert(src->is_single_fpu() || src->is_double_fpu(), "must match"); |
|
923 |
assert(src->fpu() == dest->fpu(), "currently should be nothing to do"); |
|
924 |
} else { |
|
925 |
ShouldNotReachHere(); |
|
926 |
} |
|
927 |
} |
|
928 |
||
929 |
void LIR_Assembler::reg2stack(LIR_Opr src, LIR_Opr dest, BasicType type, bool pop_fpu_stack) { |
|
930 |
assert(src->is_register(), "should not call otherwise"); |
|
931 |
assert(dest->is_stack(), "should not call otherwise"); |
|
932 |
||
933 |
if (src->is_single_cpu()) { |
|
934 |
Address dst = frame_map()->address_for_slot(dest->single_stack_ix()); |
|
935 |
if (type == T_OBJECT || type == T_ARRAY) { |
|
936 |
__ verify_oop(src->as_register()); |
|
1066 | 937 |
__ movptr (dst, src->as_register()); |
938 |
} else { |
|
939 |
__ movl (dst, src->as_register()); |
|
1 | 940 |
} |
941 |
||
942 |
} else if (src->is_double_cpu()) { |
|
943 |
Address dstLO = frame_map()->address_for_slot(dest->double_stack_ix(), lo_word_offset_in_bytes); |
|
944 |
Address dstHI = frame_map()->address_for_slot(dest->double_stack_ix(), hi_word_offset_in_bytes); |
|
1066 | 945 |
__ movptr (dstLO, src->as_register_lo()); |
946 |
NOT_LP64(__ movptr (dstHI, src->as_register_hi())); |
|
1 | 947 |
|
948 |
} else if (src->is_single_xmm()) { |
|
949 |
Address dst_addr = frame_map()->address_for_slot(dest->single_stack_ix()); |
|
950 |
__ movflt(dst_addr, src->as_xmm_float_reg()); |
|
951 |
||
952 |
} else if (src->is_double_xmm()) { |
|
953 |
Address dst_addr = frame_map()->address_for_slot(dest->double_stack_ix()); |
|
954 |
__ movdbl(dst_addr, src->as_xmm_double_reg()); |
|
955 |
||
956 |
} else if (src->is_single_fpu()) { |
|
957 |
assert(src->fpu_regnr() == 0, "argument must be on TOS"); |
|
958 |
Address dst_addr = frame_map()->address_for_slot(dest->single_stack_ix()); |
|
959 |
if (pop_fpu_stack) __ fstp_s (dst_addr); |
|
960 |
else __ fst_s (dst_addr); |
|
961 |
||
962 |
} else if (src->is_double_fpu()) { |
|
963 |
assert(src->fpu_regnrLo() == 0, "argument must be on TOS"); |
|
964 |
Address dst_addr = frame_map()->address_for_slot(dest->double_stack_ix()); |
|
965 |
if (pop_fpu_stack) __ fstp_d (dst_addr); |
|
966 |
else __ fst_d (dst_addr); |
|
967 |
||
968 |
} else { |
|
969 |
ShouldNotReachHere(); |
|
970 |
} |
|
971 |
} |
|
972 |
||
973 |
||
7427 | 974 |
void LIR_Assembler::reg2mem(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool wide, bool /* unaligned */) { |
1 | 975 |
LIR_Address* to_addr = dest->as_address_ptr(); |
976 |
PatchingStub* patch = NULL; |
|
7427 | 977 |
Register compressed_src = rscratch1; |
1 | 978 |
|
979 |
if (type == T_ARRAY || type == T_OBJECT) { |
|
980 |
__ verify_oop(src->as_register()); |
|
7427 | 981 |
#ifdef _LP64 |
982 |
if (UseCompressedOops && !wide) { |
|
983 |
__ movptr(compressed_src, src->as_register()); |
|
984 |
__ encode_heap_oop(compressed_src); |
|
985 |
} |
|
986 |
#endif |
|
1 | 987 |
} |
7427 | 988 |
|
1 | 989 |
if (patch_code != lir_patch_none) { |
990 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1066 | 991 |
Address toa = as_Address(to_addr); |
992 |
assert(toa.disp() != 0, "must have"); |
|
1 | 993 |
} |
7427 | 994 |
|
995 |
int null_check_here = code_offset(); |
|
1 | 996 |
switch (type) { |
997 |
case T_FLOAT: { |
|
998 |
if (src->is_single_xmm()) { |
|
999 |
__ movflt(as_Address(to_addr), src->as_xmm_float_reg()); |
|
1000 |
} else { |
|
1001 |
assert(src->is_single_fpu(), "must be"); |
|
1002 |
assert(src->fpu_regnr() == 0, "argument must be on TOS"); |
|
1003 |
if (pop_fpu_stack) __ fstp_s(as_Address(to_addr)); |
|
1004 |
else __ fst_s (as_Address(to_addr)); |
|
1005 |
} |
|
1006 |
break; |
|
1007 |
} |
|
1008 |
||
1009 |
case T_DOUBLE: { |
|
1010 |
if (src->is_double_xmm()) { |
|
1011 |
__ movdbl(as_Address(to_addr), src->as_xmm_double_reg()); |
|
1012 |
} else { |
|
1013 |
assert(src->is_double_fpu(), "must be"); |
|
1014 |
assert(src->fpu_regnrLo() == 0, "argument must be on TOS"); |
|
1015 |
if (pop_fpu_stack) __ fstp_d(as_Address(to_addr)); |
|
1016 |
else __ fst_d (as_Address(to_addr)); |
|
1017 |
} |
|
1018 |
break; |
|
1019 |
} |
|
1020 |
||
1021 |
case T_ARRAY: // fall through |
|
1022 |
case T_OBJECT: // fall through |
|
7427 | 1023 |
if (UseCompressedOops && !wide) { |
1024 |
__ movl(as_Address(to_addr), compressed_src); |
|
1025 |
} else { |
|
1026 |
__ movptr(as_Address(to_addr), src->as_register()); |
|
1027 |
} |
|
1028 |
break; |
|
1029 |
case T_ADDRESS: |
|
1066 | 1030 |
__ movptr(as_Address(to_addr), src->as_register()); |
1031 |
break; |
|
1 | 1032 |
case T_INT: |
1033 |
__ movl(as_Address(to_addr), src->as_register()); |
|
1034 |
break; |
|
1035 |
||
1036 |
case T_LONG: { |
|
1037 |
Register from_lo = src->as_register_lo(); |
|
1038 |
Register from_hi = src->as_register_hi(); |
|
1066 | 1039 |
#ifdef _LP64 |
1040 |
__ movptr(as_Address_lo(to_addr), from_lo); |
|
1041 |
#else |
|
1 | 1042 |
Register base = to_addr->base()->as_register(); |
1043 |
Register index = noreg; |
|
1044 |
if (to_addr->index()->is_register()) { |
|
1045 |
index = to_addr->index()->as_register(); |
|
1046 |
} |
|
1047 |
if (base == from_lo || index == from_lo) { |
|
1048 |
assert(base != from_hi, "can't be"); |
|
1049 |
assert(index == noreg || (index != base && index != from_hi), "can't handle this"); |
|
1050 |
__ movl(as_Address_hi(to_addr), from_hi); |
|
1051 |
if (patch != NULL) { |
|
1052 |
patching_epilog(patch, lir_patch_high, base, info); |
|
1053 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1054 |
patch_code = lir_patch_low; |
|
1055 |
} |
|
1056 |
__ movl(as_Address_lo(to_addr), from_lo); |
|
1057 |
} else { |
|
1058 |
assert(index == noreg || (index != base && index != from_lo), "can't handle this"); |
|
1059 |
__ movl(as_Address_lo(to_addr), from_lo); |
|
1060 |
if (patch != NULL) { |
|
1061 |
patching_epilog(patch, lir_patch_low, base, info); |
|
1062 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1063 |
patch_code = lir_patch_high; |
|
1064 |
} |
|
1065 |
__ movl(as_Address_hi(to_addr), from_hi); |
|
1066 |
} |
|
1066 | 1067 |
#endif // _LP64 |
1 | 1068 |
break; |
1069 |
} |
|
1070 |
||
1071 |
case T_BYTE: // fall through |
|
1072 |
case T_BOOLEAN: { |
|
1073 |
Register src_reg = src->as_register(); |
|
1074 |
Address dst_addr = as_Address(to_addr); |
|
1075 |
assert(VM_Version::is_P6() || src_reg->has_byte_register(), "must use byte registers if not P6"); |
|
1076 |
__ movb(dst_addr, src_reg); |
|
1077 |
break; |
|
1078 |
} |
|
1079 |
||
1080 |
case T_CHAR: // fall through |
|
1081 |
case T_SHORT: |
|
1082 |
__ movw(as_Address(to_addr), src->as_register()); |
|
1083 |
break; |
|
1084 |
||
1085 |
default: |
|
1086 |
ShouldNotReachHere(); |
|
1087 |
} |
|
7427 | 1088 |
if (info != NULL) { |
1089 |
add_debug_info_for_null_check(null_check_here, info); |
|
1090 |
} |
|
1 | 1091 |
|
1092 |
if (patch_code != lir_patch_none) { |
|
1093 |
patching_epilog(patch, patch_code, to_addr->base()->as_register(), info); |
|
1094 |
} |
|
1095 |
} |
|
1096 |
||
1097 |
||
1098 |
void LIR_Assembler::stack2reg(LIR_Opr src, LIR_Opr dest, BasicType type) { |
|
1099 |
assert(src->is_stack(), "should not call otherwise"); |
|
1100 |
assert(dest->is_register(), "should not call otherwise"); |
|
1101 |
||
1102 |
if (dest->is_single_cpu()) { |
|
1103 |
if (type == T_ARRAY || type == T_OBJECT) { |
|
1066 | 1104 |
__ movptr(dest->as_register(), frame_map()->address_for_slot(src->single_stack_ix())); |
1 | 1105 |
__ verify_oop(dest->as_register()); |
1066 | 1106 |
} else { |
1107 |
__ movl(dest->as_register(), frame_map()->address_for_slot(src->single_stack_ix())); |
|
1 | 1108 |
} |
1109 |
||
1110 |
} else if (dest->is_double_cpu()) { |
|
1111 |
Address src_addr_LO = frame_map()->address_for_slot(src->double_stack_ix(), lo_word_offset_in_bytes); |
|
1112 |
Address src_addr_HI = frame_map()->address_for_slot(src->double_stack_ix(), hi_word_offset_in_bytes); |
|
1066 | 1113 |
__ movptr(dest->as_register_lo(), src_addr_LO); |
1114 |
NOT_LP64(__ movptr(dest->as_register_hi(), src_addr_HI)); |
|
1 | 1115 |
|
1116 |
} else if (dest->is_single_xmm()) { |
|
1117 |
Address src_addr = frame_map()->address_for_slot(src->single_stack_ix()); |
|
1118 |
__ movflt(dest->as_xmm_float_reg(), src_addr); |
|
1119 |
||
1120 |
} else if (dest->is_double_xmm()) { |
|
1121 |
Address src_addr = frame_map()->address_for_slot(src->double_stack_ix()); |
|
1122 |
__ movdbl(dest->as_xmm_double_reg(), src_addr); |
|
1123 |
||
1124 |
} else if (dest->is_single_fpu()) { |
|
1125 |
assert(dest->fpu_regnr() == 0, "dest must be TOS"); |
|
1126 |
Address src_addr = frame_map()->address_for_slot(src->single_stack_ix()); |
|
1127 |
__ fld_s(src_addr); |
|
1128 |
||
1129 |
} else if (dest->is_double_fpu()) { |
|
1130 |
assert(dest->fpu_regnrLo() == 0, "dest must be TOS"); |
|
1131 |
Address src_addr = frame_map()->address_for_slot(src->double_stack_ix()); |
|
1132 |
__ fld_d(src_addr); |
|
1133 |
||
1134 |
} else { |
|
1135 |
ShouldNotReachHere(); |
|
1136 |
} |
|
1137 |
} |
|
1138 |
||
1139 |
||
1140 |
void LIR_Assembler::stack2stack(LIR_Opr src, LIR_Opr dest, BasicType type) { |
|
1141 |
if (src->is_single_stack()) { |
|
1066 | 1142 |
if (type == T_OBJECT || type == T_ARRAY) { |
1143 |
__ pushptr(frame_map()->address_for_slot(src ->single_stack_ix())); |
|
1144 |
__ popptr (frame_map()->address_for_slot(dest->single_stack_ix())); |
|
1145 |
} else { |
|
4430 | 1146 |
#ifndef _LP64 |
1066 | 1147 |
__ pushl(frame_map()->address_for_slot(src ->single_stack_ix())); |
1148 |
__ popl (frame_map()->address_for_slot(dest->single_stack_ix())); |
|
4430 | 1149 |
#else |
1150 |
//no pushl on 64bits |
|
1151 |
__ movl(rscratch1, frame_map()->address_for_slot(src ->single_stack_ix())); |
|
1152 |
__ movl(frame_map()->address_for_slot(dest->single_stack_ix()), rscratch1); |
|
1153 |
#endif |
|
1066 | 1154 |
} |
1 | 1155 |
|
1156 |
} else if (src->is_double_stack()) { |
|
1066 | 1157 |
#ifdef _LP64 |
1158 |
__ pushptr(frame_map()->address_for_slot(src ->double_stack_ix())); |
|
1159 |
__ popptr (frame_map()->address_for_slot(dest->double_stack_ix())); |
|
1160 |
#else |
|
1 | 1161 |
__ pushl(frame_map()->address_for_slot(src ->double_stack_ix(), 0)); |
1066 | 1162 |
// push and pop the part at src + wordSize, adding wordSize for the previous push |
1125
0e9a5f36b566
6746320: Hotspot regression test for 6512111 fails in -Xmixed mode
never
parents:
1066
diff
changeset
|
1163 |
__ pushl(frame_map()->address_for_slot(src ->double_stack_ix(), 2 * wordSize)); |
0e9a5f36b566
6746320: Hotspot regression test for 6512111 fails in -Xmixed mode
never
parents:
1066
diff
changeset
|
1164 |
__ popl (frame_map()->address_for_slot(dest->double_stack_ix(), 2 * wordSize)); |
1 | 1165 |
__ popl (frame_map()->address_for_slot(dest->double_stack_ix(), 0)); |
1066 | 1166 |
#endif // _LP64 |
1 | 1167 |
|
1168 |
} else { |
|
1169 |
ShouldNotReachHere(); |
|
1170 |
} |
|
1171 |
} |
|
1172 |
||
1173 |
||
7427 | 1174 |
void LIR_Assembler::mem2reg(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_PatchCode patch_code, CodeEmitInfo* info, bool wide, bool /* unaligned */) { |
1 | 1175 |
assert(src->is_address(), "should not call otherwise"); |
1176 |
assert(dest->is_register(), "should not call otherwise"); |
|
1177 |
||
1178 |
LIR_Address* addr = src->as_address_ptr(); |
|
1179 |
Address from_addr = as_Address(addr); |
|
1180 |
||
1181 |
switch (type) { |
|
1182 |
case T_BOOLEAN: // fall through |
|
1183 |
case T_BYTE: // fall through |
|
1184 |
case T_CHAR: // fall through |
|
1185 |
case T_SHORT: |
|
1186 |
if (!VM_Version::is_P6() && !from_addr.uses(dest->as_register())) { |
|
1187 |
// on pre P6 processors we may get partial register stalls |
|
1188 |
// so blow away the value of to_rinfo before loading a |
|
1189 |
// partial word into it. Do it here so that it precedes |
|
1190 |
// the potential patch point below. |
|
1066 | 1191 |
__ xorptr(dest->as_register(), dest->as_register()); |
1 | 1192 |
} |
1193 |
break; |
|
1194 |
} |
|
1195 |
||
1196 |
PatchingStub* patch = NULL; |
|
1197 |
if (patch_code != lir_patch_none) { |
|
1198 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1066 | 1199 |
assert(from_addr.disp() != 0, "must have"); |
1 | 1200 |
} |
1201 |
if (info != NULL) { |
|
1202 |
add_debug_info_for_null_check_here(info); |
|
1203 |
} |
|
1204 |
||
1205 |
switch (type) { |
|
1206 |
case T_FLOAT: { |
|
1207 |
if (dest->is_single_xmm()) { |
|
1208 |
__ movflt(dest->as_xmm_float_reg(), from_addr); |
|
1209 |
} else { |
|
1210 |
assert(dest->is_single_fpu(), "must be"); |
|
1211 |
assert(dest->fpu_regnr() == 0, "dest must be TOS"); |
|
1212 |
__ fld_s(from_addr); |
|
1213 |
} |
|
1214 |
break; |
|
1215 |
} |
|
1216 |
||
1217 |
case T_DOUBLE: { |
|
1218 |
if (dest->is_double_xmm()) { |
|
1219 |
__ movdbl(dest->as_xmm_double_reg(), from_addr); |
|
1220 |
} else { |
|
1221 |
assert(dest->is_double_fpu(), "must be"); |
|
1222 |
assert(dest->fpu_regnrLo() == 0, "dest must be TOS"); |
|
1223 |
__ fld_d(from_addr); |
|
1224 |
} |
|
1225 |
break; |
|
1226 |
} |
|
1227 |
||
1228 |
case T_OBJECT: // fall through |
|
1229 |
case T_ARRAY: // fall through |
|
7427 | 1230 |
if (UseCompressedOops && !wide) { |
1231 |
__ movl(dest->as_register(), from_addr); |
|
1232 |
} else { |
|
1233 |
__ movptr(dest->as_register(), from_addr); |
|
1234 |
} |
|
1235 |
break; |
|
1236 |
||
1237 |
case T_ADDRESS: |
|
1066 | 1238 |
__ movptr(dest->as_register(), from_addr); |
1239 |
break; |
|
1 | 1240 |
case T_INT: |
5354
30df1bf62cca
6946892: c1 shouldn't sign-extend to upper 32bits on x64
iveresov
parents:
5334
diff
changeset
|
1241 |
__ movl(dest->as_register(), from_addr); |
1 | 1242 |
break; |
1243 |
||
1244 |
case T_LONG: { |
|
1245 |
Register to_lo = dest->as_register_lo(); |
|
1246 |
Register to_hi = dest->as_register_hi(); |
|
1066 | 1247 |
#ifdef _LP64 |
1248 |
__ movptr(to_lo, as_Address_lo(addr)); |
|
1249 |
#else |
|
1 | 1250 |
Register base = addr->base()->as_register(); |
1251 |
Register index = noreg; |
|
1252 |
if (addr->index()->is_register()) { |
|
1253 |
index = addr->index()->as_register(); |
|
1254 |
} |
|
1255 |
if ((base == to_lo && index == to_hi) || |
|
1256 |
(base == to_hi && index == to_lo)) { |
|
1257 |
// addresses with 2 registers are only formed as a result of |
|
1258 |
// array access so this code will never have to deal with |
|
1259 |
// patches or null checks. |
|
1260 |
assert(info == NULL && patch == NULL, "must be"); |
|
1066 | 1261 |
__ lea(to_hi, as_Address(addr)); |
1 | 1262 |
__ movl(to_lo, Address(to_hi, 0)); |
1263 |
__ movl(to_hi, Address(to_hi, BytesPerWord)); |
|
1264 |
} else if (base == to_lo || index == to_lo) { |
|
1265 |
assert(base != to_hi, "can't be"); |
|
1266 |
assert(index == noreg || (index != base && index != to_hi), "can't handle this"); |
|
1267 |
__ movl(to_hi, as_Address_hi(addr)); |
|
1268 |
if (patch != NULL) { |
|
1269 |
patching_epilog(patch, lir_patch_high, base, info); |
|
1270 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1271 |
patch_code = lir_patch_low; |
|
1272 |
} |
|
1273 |
__ movl(to_lo, as_Address_lo(addr)); |
|
1274 |
} else { |
|
1275 |
assert(index == noreg || (index != base && index != to_lo), "can't handle this"); |
|
1276 |
__ movl(to_lo, as_Address_lo(addr)); |
|
1277 |
if (patch != NULL) { |
|
1278 |
patching_epilog(patch, lir_patch_low, base, info); |
|
1279 |
patch = new PatchingStub(_masm, PatchingStub::access_field_id); |
|
1280 |
patch_code = lir_patch_high; |
|
1281 |
} |
|
1282 |
__ movl(to_hi, as_Address_hi(addr)); |
|
1283 |
} |
|
1066 | 1284 |
#endif // _LP64 |
1 | 1285 |
break; |
1286 |
} |
|
1287 |
||
1288 |
case T_BOOLEAN: // fall through |
|
1289 |
case T_BYTE: { |
|
1290 |
Register dest_reg = dest->as_register(); |
|
1291 |
assert(VM_Version::is_P6() || dest_reg->has_byte_register(), "must use byte registers if not P6"); |
|
1292 |
if (VM_Version::is_P6() || from_addr.uses(dest_reg)) { |
|
1066 | 1293 |
__ movsbl(dest_reg, from_addr); |
1 | 1294 |
} else { |
1295 |
__ movb(dest_reg, from_addr); |
|
1296 |
__ shll(dest_reg, 24); |
|
1297 |
__ sarl(dest_reg, 24); |
|
1298 |
} |
|
1299 |
break; |
|
1300 |
} |
|
1301 |
||
1302 |
case T_CHAR: { |
|
1303 |
Register dest_reg = dest->as_register(); |
|
1304 |
assert(VM_Version::is_P6() || dest_reg->has_byte_register(), "must use byte registers if not P6"); |
|
1305 |
if (VM_Version::is_P6() || from_addr.uses(dest_reg)) { |
|
1066 | 1306 |
__ movzwl(dest_reg, from_addr); |
1 | 1307 |
} else { |
1308 |
__ movw(dest_reg, from_addr); |
|
1309 |
} |
|
1310 |
break; |
|
1311 |
} |
|
1312 |
||
1313 |
case T_SHORT: { |
|
1314 |
Register dest_reg = dest->as_register(); |
|
1315 |
if (VM_Version::is_P6() || from_addr.uses(dest_reg)) { |
|
1066 | 1316 |
__ movswl(dest_reg, from_addr); |
1 | 1317 |
} else { |
1318 |
__ movw(dest_reg, from_addr); |
|
1319 |
__ shll(dest_reg, 16); |
|
1320 |
__ sarl(dest_reg, 16); |
|
1321 |
} |
|
1322 |
break; |
|
1323 |
} |
|
1324 |
||
1325 |
default: |
|
1326 |
ShouldNotReachHere(); |
|
1327 |
} |
|
1328 |
||
1329 |
if (patch != NULL) { |
|
1330 |
patching_epilog(patch, patch_code, addr->base()->as_register(), info); |
|
1331 |
} |
|
1332 |
||
1333 |
if (type == T_ARRAY || type == T_OBJECT) { |
|
7427 | 1334 |
#ifdef _LP64 |
1335 |
if (UseCompressedOops && !wide) { |
|
1336 |
__ decode_heap_oop(dest->as_register()); |
|
1337 |
} |
|
1338 |
#endif |
|
1 | 1339 |
__ verify_oop(dest->as_register()); |
1340 |
} |
|
1341 |
} |
|
1342 |
||
1343 |
||
1344 |
void LIR_Assembler::prefetchr(LIR_Opr src) { |
|
1345 |
LIR_Address* addr = src->as_address_ptr(); |
|
1346 |
Address from_addr = as_Address(addr); |
|
1347 |
||
1348 |
if (VM_Version::supports_sse()) { |
|
1349 |
switch (ReadPrefetchInstr) { |
|
1350 |
case 0: |
|
1351 |
__ prefetchnta(from_addr); break; |
|
1352 |
case 1: |
|
1353 |
__ prefetcht0(from_addr); break; |
|
1354 |
case 2: |
|
1355 |
__ prefetcht2(from_addr); break; |
|
1356 |
default: |
|
1357 |
ShouldNotReachHere(); break; |
|
1358 |
} |
|
9135 | 1359 |
} else if (VM_Version::supports_3dnow_prefetch()) { |
1 | 1360 |
__ prefetchr(from_addr); |
1361 |
} |
|
1362 |
} |
|
1363 |
||
1364 |
||
1365 |
void LIR_Assembler::prefetchw(LIR_Opr src) { |
|
1366 |
LIR_Address* addr = src->as_address_ptr(); |
|
1367 |
Address from_addr = as_Address(addr); |
|
1368 |
||
1369 |
if (VM_Version::supports_sse()) { |
|
1370 |
switch (AllocatePrefetchInstr) { |
|
1371 |
case 0: |
|
1372 |
__ prefetchnta(from_addr); break; |
|
1373 |
case 1: |
|
1374 |
__ prefetcht0(from_addr); break; |
|
1375 |
case 2: |
|
1376 |
__ prefetcht2(from_addr); break; |
|
1377 |
case 3: |
|
1378 |
__ prefetchw(from_addr); break; |
|
1379 |
default: |
|
1380 |
ShouldNotReachHere(); break; |
|
1381 |
} |
|
9135 | 1382 |
} else if (VM_Version::supports_3dnow_prefetch()) { |
1 | 1383 |
__ prefetchw(from_addr); |
1384 |
} |
|
1385 |
} |
|
1386 |
||
1387 |
||
1388 |
NEEDS_CLEANUP; // This could be static? |
|
1389 |
Address::ScaleFactor LIR_Assembler::array_element_size(BasicType type) const { |
|
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
1
diff
changeset
|
1390 |
int elem_size = type2aelembytes(type); |
1 | 1391 |
switch (elem_size) { |
1392 |
case 1: return Address::times_1; |
|
1393 |
case 2: return Address::times_2; |
|
1394 |
case 4: return Address::times_4; |
|
1395 |
case 8: return Address::times_8; |
|
1396 |
} |
|
1397 |
ShouldNotReachHere(); |
|
1398 |
return Address::no_scale; |
|
1399 |
} |
|
1400 |
||
1401 |
||
1402 |
void LIR_Assembler::emit_op3(LIR_Op3* op) { |
|
1403 |
switch (op->code()) { |
|
1404 |
case lir_idiv: |
|
1405 |
case lir_irem: |
|
1406 |
arithmetic_idiv(op->code(), |
|
1407 |
op->in_opr1(), |
|
1408 |
op->in_opr2(), |
|
1409 |
op->in_opr3(), |
|
1410 |
op->result_opr(), |
|
1411 |
op->info()); |
|
1412 |
break; |
|
1413 |
default: ShouldNotReachHere(); break; |
|
1414 |
} |
|
1415 |
} |
|
1416 |
||
1417 |
void LIR_Assembler::emit_opBranch(LIR_OpBranch* op) { |
|
1418 |
#ifdef ASSERT |
|
1419 |
assert(op->block() == NULL || op->block()->label() == op->label(), "wrong label"); |
|
1420 |
if (op->block() != NULL) _branch_target_blocks.append(op->block()); |
|
1421 |
if (op->ublock() != NULL) _branch_target_blocks.append(op->ublock()); |
|
1422 |
#endif |
|
1423 |
||
1424 |
if (op->cond() == lir_cond_always) { |
|
1425 |
if (op->info() != NULL) add_debug_info_for_branch(op->info()); |
|
1426 |
__ jmp (*(op->label())); |
|
1427 |
} else { |
|
1428 |
Assembler::Condition acond = Assembler::zero; |
|
1429 |
if (op->code() == lir_cond_float_branch) { |
|
1430 |
assert(op->ublock() != NULL, "must have unordered successor"); |
|
1431 |
__ jcc(Assembler::parity, *(op->ublock()->label())); |
|
1432 |
switch(op->cond()) { |
|
1433 |
case lir_cond_equal: acond = Assembler::equal; break; |
|
1434 |
case lir_cond_notEqual: acond = Assembler::notEqual; break; |
|
1435 |
case lir_cond_less: acond = Assembler::below; break; |
|
1436 |
case lir_cond_lessEqual: acond = Assembler::belowEqual; break; |
|
1437 |
case lir_cond_greaterEqual: acond = Assembler::aboveEqual; break; |
|
1438 |
case lir_cond_greater: acond = Assembler::above; break; |
|
1439 |
default: ShouldNotReachHere(); |
|
1440 |
} |
|
1441 |
} else { |
|
1442 |
switch (op->cond()) { |
|
1443 |
case lir_cond_equal: acond = Assembler::equal; break; |
|
1444 |
case lir_cond_notEqual: acond = Assembler::notEqual; break; |
|
1445 |
case lir_cond_less: acond = Assembler::less; break; |
|
1446 |
case lir_cond_lessEqual: acond = Assembler::lessEqual; break; |
|
1447 |
case lir_cond_greaterEqual: acond = Assembler::greaterEqual;break; |
|
1448 |
case lir_cond_greater: acond = Assembler::greater; break; |
|
1449 |
case lir_cond_belowEqual: acond = Assembler::belowEqual; break; |
|
1450 |
case lir_cond_aboveEqual: acond = Assembler::aboveEqual; break; |
|
1451 |
default: ShouldNotReachHere(); |
|
1452 |
} |
|
1453 |
} |
|
1454 |
__ jcc(acond,*(op->label())); |
|
1455 |
} |
|
1456 |
} |
|
1457 |
||
1458 |
void LIR_Assembler::emit_opConvert(LIR_OpConvert* op) { |
|
1459 |
LIR_Opr src = op->in_opr(); |
|
1460 |
LIR_Opr dest = op->result_opr(); |
|
1461 |
||
1462 |
switch (op->bytecode()) { |
|
1463 |
case Bytecodes::_i2l: |
|
1066 | 1464 |
#ifdef _LP64 |
1465 |
__ movl2ptr(dest->as_register_lo(), src->as_register()); |
|
1466 |
#else |
|
1 | 1467 |
move_regs(src->as_register(), dest->as_register_lo()); |
1468 |
move_regs(src->as_register(), dest->as_register_hi()); |
|
1469 |
__ sarl(dest->as_register_hi(), 31); |
|
1066 | 1470 |
#endif // LP64 |
1 | 1471 |
break; |
1472 |
||
1473 |
case Bytecodes::_l2i: |
|
12590 | 1474 |
#ifdef _LP64 |
1475 |
__ movl(dest->as_register(), src->as_register_lo()); |
|
1476 |
#else |
|
1 | 1477 |
move_regs(src->as_register_lo(), dest->as_register()); |
12590 | 1478 |
#endif |
1 | 1479 |
break; |
1480 |
||
1481 |
case Bytecodes::_i2b: |
|
1482 |
move_regs(src->as_register(), dest->as_register()); |
|
1483 |
__ sign_extend_byte(dest->as_register()); |
|
1484 |
break; |
|
1485 |
||
1486 |
case Bytecodes::_i2c: |
|
1487 |
move_regs(src->as_register(), dest->as_register()); |
|
1488 |
__ andl(dest->as_register(), 0xFFFF); |
|
1489 |
break; |
|
1490 |
||
1491 |
case Bytecodes::_i2s: |
|
1492 |
move_regs(src->as_register(), dest->as_register()); |
|
1493 |
__ sign_extend_short(dest->as_register()); |
|
1494 |
break; |
|
1495 |
||
1496 |
||
1497 |
case Bytecodes::_f2d: |
|
1498 |
case Bytecodes::_d2f: |
|
1499 |
if (dest->is_single_xmm()) { |
|
1500 |
__ cvtsd2ss(dest->as_xmm_float_reg(), src->as_xmm_double_reg()); |
|
1501 |
} else if (dest->is_double_xmm()) { |
|
1502 |
__ cvtss2sd(dest->as_xmm_double_reg(), src->as_xmm_float_reg()); |
|
1503 |
} else { |
|
1504 |
assert(src->fpu() == dest->fpu(), "register must be equal"); |
|
1505 |
// do nothing (float result is rounded later through spilling) |
|
1506 |
} |
|
1507 |
break; |
|
1508 |
||
1509 |
case Bytecodes::_i2f: |
|
1510 |
case Bytecodes::_i2d: |
|
1511 |
if (dest->is_single_xmm()) { |
|
1066 | 1512 |
__ cvtsi2ssl(dest->as_xmm_float_reg(), src->as_register()); |
1 | 1513 |
} else if (dest->is_double_xmm()) { |
1066 | 1514 |
__ cvtsi2sdl(dest->as_xmm_double_reg(), src->as_register()); |
1 | 1515 |
} else { |
1516 |
assert(dest->fpu() == 0, "result must be on TOS"); |
|
1517 |
__ movl(Address(rsp, 0), src->as_register()); |
|
1518 |
__ fild_s(Address(rsp, 0)); |
|
1519 |
} |
|
1520 |
break; |
|
1521 |
||
1522 |
case Bytecodes::_f2i: |
|
1523 |
case Bytecodes::_d2i: |
|
1524 |
if (src->is_single_xmm()) { |
|
1066 | 1525 |
__ cvttss2sil(dest->as_register(), src->as_xmm_float_reg()); |
1 | 1526 |
} else if (src->is_double_xmm()) { |
1066 | 1527 |
__ cvttsd2sil(dest->as_register(), src->as_xmm_double_reg()); |
1 | 1528 |
} else { |
1529 |
assert(src->fpu() == 0, "input must be on TOS"); |
|
1530 |
__ fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_trunc())); |
|
1531 |
__ fist_s(Address(rsp, 0)); |
|
1532 |
__ movl(dest->as_register(), Address(rsp, 0)); |
|
1533 |
__ fldcw(ExternalAddress(StubRoutines::addr_fpu_cntrl_wrd_std())); |
|
1534 |
} |
|
1535 |
||
1536 |
// IA32 conversion instructions do not match JLS for overflow, underflow and NaN -> fixup in stub |
|
1537 |
assert(op->stub() != NULL, "stub required"); |
|
1538 |
__ cmpl(dest->as_register(), 0x80000000); |
|
1539 |
__ jcc(Assembler::equal, *op->stub()->entry()); |
|
1540 |
__ bind(*op->stub()->continuation()); |
|
1541 |
break; |
|
1542 |
||
1543 |
case Bytecodes::_l2f: |
|
1544 |
case Bytecodes::_l2d: |
|
1545 |
assert(!dest->is_xmm_register(), "result in xmm register not supported (no SSE instruction present)"); |
|
1546 |
assert(dest->fpu() == 0, "result must be on TOS"); |
|
1547 |
||
1066 | 1548 |
__ movptr(Address(rsp, 0), src->as_register_lo()); |
1549 |
NOT_LP64(__ movl(Address(rsp, BytesPerWord), src->as_register_hi())); |
|
1 | 1550 |
__ fild_d(Address(rsp, 0)); |
1551 |
// float result is rounded later through spilling |
|
1552 |
break; |
|
1553 |
||
1554 |
case Bytecodes::_f2l: |
|
1555 |
case Bytecodes::_d2l: |
|
1556 |
assert(!src->is_xmm_register(), "input in xmm register not supported (no SSE instruction present)"); |
|
1557 |
assert(src->fpu() == 0, "input must be on TOS"); |
|
1066 | 1558 |
assert(dest == FrameMap::long0_opr, "runtime stub places result in these registers"); |
1 | 1559 |
|
1560 |
// instruction sequence too long to inline it here |
|
1561 |
{ |
|
1562 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::fpu2long_stub_id))); |
|
1563 |
} |
|
1564 |
break; |
|
1565 |
||
1566 |
default: ShouldNotReachHere(); |
|
1567 |
} |
|
1568 |
} |
|
1569 |
||
1570 |
void LIR_Assembler::emit_alloc_obj(LIR_OpAllocObj* op) { |
|
1571 |
if (op->init_check()) { |
|
11407
5399831730cd
7117052: instanceKlass::_init_state can be u1 type
coleenp
parents:
10565
diff
changeset
|
1572 |
__ cmpb(Address(op->klass()->as_register(), |
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
1573 |
instanceKlass::init_state_offset()), |
1 | 1574 |
instanceKlass::fully_initialized); |
1575 |
add_debug_info_for_null_check_here(op->stub()->info()); |
|
1576 |
__ jcc(Assembler::notEqual, *op->stub()->entry()); |
|
1577 |
} |
|
1578 |
__ allocate_object(op->obj()->as_register(), |
|
1579 |
op->tmp1()->as_register(), |
|
1580 |
op->tmp2()->as_register(), |
|
1581 |
op->header_size(), |
|
1582 |
op->object_size(), |
|
1583 |
op->klass()->as_register(), |
|
1584 |
*op->stub()->entry()); |
|
1585 |
__ bind(*op->stub()->continuation()); |
|
1586 |
} |
|
1587 |
||
1588 |
void LIR_Assembler::emit_alloc_array(LIR_OpAllocArray* op) { |
|
7883
f29abf6b3466
7010618: C1: array length should be treated at int on 64bit during array allocation
iveresov
parents:
7713
diff
changeset
|
1589 |
Register len = op->len()->as_register(); |
f29abf6b3466
7010618: C1: array length should be treated at int on 64bit during array allocation
iveresov
parents:
7713
diff
changeset
|
1590 |
LP64_ONLY( __ movslq(len, len); ) |
f29abf6b3466
7010618: C1: array length should be treated at int on 64bit during array allocation
iveresov
parents:
7713
diff
changeset
|
1591 |
|
1 | 1592 |
if (UseSlowPath || |
1593 |
(!UseFastNewObjectArray && (op->type() == T_OBJECT || op->type() == T_ARRAY)) || |
|
1594 |
(!UseFastNewTypeArray && (op->type() != T_OBJECT && op->type() != T_ARRAY))) { |
|
1595 |
__ jmp(*op->stub()->entry()); |
|
1596 |
} else { |
|
1597 |
Register tmp1 = op->tmp1()->as_register(); |
|
1598 |
Register tmp2 = op->tmp2()->as_register(); |
|
1599 |
Register tmp3 = op->tmp3()->as_register(); |
|
1600 |
if (len == tmp1) { |
|
1601 |
tmp1 = tmp3; |
|
1602 |
} else if (len == tmp2) { |
|
1603 |
tmp2 = tmp3; |
|
1604 |
} else if (len == tmp3) { |
|
1605 |
// everything is ok |
|
1606 |
} else { |
|
1066 | 1607 |
__ mov(tmp3, len); |
1 | 1608 |
} |
1609 |
__ allocate_array(op->obj()->as_register(), |
|
1610 |
len, |
|
1611 |
tmp1, |
|
1612 |
tmp2, |
|
1613 |
arrayOopDesc::header_size(op->type()), |
|
1614 |
array_element_size(op->type()), |
|
1615 |
op->klass()->as_register(), |
|
1616 |
*op->stub()->entry()); |
|
1617 |
} |
|
1618 |
__ bind(*op->stub()->continuation()); |
|
1619 |
} |
|
1620 |
||
6453 | 1621 |
void LIR_Assembler::type_profile_helper(Register mdo, |
1622 |
ciMethodData *md, ciProfileData *data, |
|
1623 |
Register recv, Label* update_done) { |
|
6478
75ef8813e3e2
6988779: c1_LIRAssembler_x86.cpp crashes VS2010 compiler
iveresov
parents:
6461
diff
changeset
|
1624 |
for (uint i = 0; i < ReceiverTypeData::row_limit(); i++) { |
6453 | 1625 |
Label next_test; |
1626 |
// See if the receiver is receiver[n]. |
|
1627 |
__ cmpptr(recv, Address(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_offset(i)))); |
|
1628 |
__ jccb(Assembler::notEqual, next_test); |
|
1629 |
Address data_addr(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_count_offset(i))); |
|
1630 |
__ addptr(data_addr, DataLayout::counter_increment); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1631 |
__ jmp(*update_done); |
6453 | 1632 |
__ bind(next_test); |
1633 |
} |
|
1634 |
||
1635 |
// Didn't find receiver; find next empty slot and fill it in |
|
6478
75ef8813e3e2
6988779: c1_LIRAssembler_x86.cpp crashes VS2010 compiler
iveresov
parents:
6461
diff
changeset
|
1636 |
for (uint i = 0; i < ReceiverTypeData::row_limit(); i++) { |
6453 | 1637 |
Label next_test; |
1638 |
Address recv_addr(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_offset(i))); |
|
1639 |
__ cmpptr(recv_addr, (intptr_t)NULL_WORD); |
|
1640 |
__ jccb(Assembler::notEqual, next_test); |
|
1641 |
__ movptr(recv_addr, recv); |
|
1642 |
__ movptr(Address(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_count_offset(i))), DataLayout::counter_increment); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1643 |
__ jmp(*update_done); |
6453 | 1644 |
__ bind(next_test); |
1645 |
} |
|
1646 |
} |
|
1647 |
||
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1648 |
void LIR_Assembler::emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null) { |
6453 | 1649 |
// we always need a stub for the failure case. |
1650 |
CodeStub* stub = op->stub(); |
|
1651 |
Register obj = op->object()->as_register(); |
|
1652 |
Register k_RInfo = op->tmp1()->as_register(); |
|
1653 |
Register klass_RInfo = op->tmp2()->as_register(); |
|
1654 |
Register dst = op->result_opr()->as_register(); |
|
1655 |
ciKlass* k = op->klass(); |
|
1656 |
Register Rtmp1 = noreg; |
|
1657 |
||
1658 |
// check if it needs to be profiled |
|
1659 |
ciMethodData* md; |
|
1660 |
ciProfileData* data; |
|
1661 |
||
1662 |
if (op->should_profile()) { |
|
1663 |
ciMethod* method = op->profiled_method(); |
|
1664 |
assert(method != NULL, "Should have method"); |
|
1665 |
int bci = op->profiled_bci(); |
|
7432
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
1666 |
md = method->method_data_or_null(); |
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
1667 |
assert(md != NULL, "Sanity"); |
6453 | 1668 |
data = md->bci_to_data(bci); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1669 |
assert(data != NULL, "need data for type check"); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1670 |
assert(data->is_ReceiverTypeData(), "need ReceiverTypeData for type check"); |
6453 | 1671 |
} |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1672 |
Label profile_cast_success, profile_cast_failure; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1673 |
Label *success_target = op->should_profile() ? &profile_cast_success : success; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1674 |
Label *failure_target = op->should_profile() ? &profile_cast_failure : failure; |
6453 | 1675 |
|
1676 |
if (obj == k_RInfo) { |
|
1677 |
k_RInfo = dst; |
|
1678 |
} else if (obj == klass_RInfo) { |
|
1679 |
klass_RInfo = dst; |
|
1680 |
} |
|
7427 | 1681 |
if (k->is_loaded() && !UseCompressedOops) { |
6453 | 1682 |
select_different_registers(obj, dst, k_RInfo, klass_RInfo); |
1683 |
} else { |
|
1684 |
Rtmp1 = op->tmp3()->as_register(); |
|
1685 |
select_different_registers(obj, dst, k_RInfo, klass_RInfo, Rtmp1); |
|
1686 |
} |
|
1687 |
||
1688 |
assert_different_registers(obj, k_RInfo, klass_RInfo); |
|
1689 |
if (!k->is_loaded()) { |
|
1690 |
jobject2reg_with_patching(k_RInfo, op->info_for_patch()); |
|
1691 |
} else { |
|
1692 |
#ifdef _LP64 |
|
1693 |
__ movoop(k_RInfo, k->constant_encoding()); |
|
1694 |
#endif // _LP64 |
|
1695 |
} |
|
1696 |
assert(obj != k_RInfo, "must be different"); |
|
1697 |
||
1698 |
__ cmpptr(obj, (int32_t)NULL_WORD); |
|
1699 |
if (op->should_profile()) { |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1700 |
Label not_null; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1701 |
__ jccb(Assembler::notEqual, not_null); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1702 |
// Object is null; update MDO and exit |
6453 | 1703 |
Register mdo = klass_RInfo; |
1704 |
__ movoop(mdo, md->constant_encoding()); |
|
1705 |
Address data_addr(mdo, md->byte_offset_of_slot(data, DataLayout::header_offset())); |
|
1706 |
int header_bits = DataLayout::flag_mask_to_header_mask(BitData::null_seen_byte_constant()); |
|
1707 |
__ orl(data_addr, header_bits); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1708 |
__ jmp(*obj_is_null); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1709 |
__ bind(not_null); |
6453 | 1710 |
} else { |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1711 |
__ jcc(Assembler::equal, *obj_is_null); |
6453 | 1712 |
} |
1713 |
__ verify_oop(obj); |
|
1714 |
||
1715 |
if (op->fast_check()) { |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1716 |
// get object class |
6453 | 1717 |
// not a safepoint as obj null check happens earlier |
1718 |
#ifdef _LP64 |
|
7427 | 1719 |
if (UseCompressedOops) { |
1720 |
__ load_klass(Rtmp1, obj); |
|
1721 |
__ cmpptr(k_RInfo, Rtmp1); |
|
6453 | 1722 |
} else { |
1723 |
__ cmpptr(k_RInfo, Address(obj, oopDesc::klass_offset_in_bytes())); |
|
1724 |
} |
|
7427 | 1725 |
#else |
1726 |
if (k->is_loaded()) { |
|
1727 |
__ cmpoop(Address(obj, oopDesc::klass_offset_in_bytes()), k->constant_encoding()); |
|
1728 |
} else { |
|
1729 |
__ cmpptr(k_RInfo, Address(obj, oopDesc::klass_offset_in_bytes())); |
|
1730 |
} |
|
1731 |
#endif |
|
6453 | 1732 |
__ jcc(Assembler::notEqual, *failure_target); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1733 |
// successful cast, fall through to profile or jump |
6453 | 1734 |
} else { |
1735 |
// get object class |
|
1736 |
// not a safepoint as obj null check happens earlier |
|
7427 | 1737 |
__ load_klass(klass_RInfo, obj); |
6453 | 1738 |
if (k->is_loaded()) { |
1739 |
// See if we get an immediate positive hit |
|
1740 |
#ifdef _LP64 |
|
1741 |
__ cmpptr(k_RInfo, Address(klass_RInfo, k->super_check_offset())); |
|
1742 |
#else |
|
1743 |
__ cmpoop(Address(klass_RInfo, k->super_check_offset()), k->constant_encoding()); |
|
1744 |
#endif // _LP64 |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
1745 |
if ((juint)in_bytes(Klass::secondary_super_cache_offset()) != k->super_check_offset()) { |
6453 | 1746 |
__ jcc(Assembler::notEqual, *failure_target); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1747 |
// successful cast, fall through to profile or jump |
6453 | 1748 |
} else { |
1749 |
// See if we get an immediate positive hit |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1750 |
__ jcc(Assembler::equal, *success_target); |
6453 | 1751 |
// check for self |
1752 |
#ifdef _LP64 |
|
1753 |
__ cmpptr(klass_RInfo, k_RInfo); |
|
1754 |
#else |
|
1755 |
__ cmpoop(klass_RInfo, k->constant_encoding()); |
|
1756 |
#endif // _LP64 |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1757 |
__ jcc(Assembler::equal, *success_target); |
6453 | 1758 |
|
1759 |
__ push(klass_RInfo); |
|
1760 |
#ifdef _LP64 |
|
1761 |
__ push(k_RInfo); |
|
1762 |
#else |
|
1763 |
__ pushoop(k->constant_encoding()); |
|
1764 |
#endif // _LP64 |
|
1765 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::slow_subtype_check_id))); |
|
1766 |
__ pop(klass_RInfo); |
|
1767 |
__ pop(klass_RInfo); |
|
1768 |
// result is a boolean |
|
1769 |
__ cmpl(klass_RInfo, 0); |
|
1770 |
__ jcc(Assembler::equal, *failure_target); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1771 |
// successful cast, fall through to profile or jump |
6453 | 1772 |
} |
1773 |
} else { |
|
1774 |
// perform the fast part of the checking logic |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1775 |
__ check_klass_subtype_fast_path(klass_RInfo, k_RInfo, Rtmp1, success_target, failure_target, NULL); |
6453 | 1776 |
// call out-of-line instance of __ check_klass_subtype_slow_path(...): |
1777 |
__ push(klass_RInfo); |
|
1778 |
__ push(k_RInfo); |
|
1779 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::slow_subtype_check_id))); |
|
1780 |
__ pop(klass_RInfo); |
|
1781 |
__ pop(k_RInfo); |
|
1782 |
// result is a boolean |
|
1783 |
__ cmpl(k_RInfo, 0); |
|
1784 |
__ jcc(Assembler::equal, *failure_target); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1785 |
// successful cast, fall through to profile or jump |
6453 | 1786 |
} |
1787 |
} |
|
1788 |
if (op->should_profile()) { |
|
1789 |
Register mdo = klass_RInfo, recv = k_RInfo; |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1790 |
__ bind(profile_cast_success); |
6453 | 1791 |
__ movoop(mdo, md->constant_encoding()); |
7427 | 1792 |
__ load_klass(recv, obj); |
6453 | 1793 |
Label update_done; |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1794 |
type_profile_helper(mdo, md, data, recv, success); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1795 |
__ jmp(*success); |
6453 | 1796 |
|
1797 |
__ bind(profile_cast_failure); |
|
1798 |
__ movoop(mdo, md->constant_encoding()); |
|
1799 |
Address counter_addr(mdo, md->byte_offset_of_slot(data, CounterData::count_offset())); |
|
1800 |
__ subptr(counter_addr, DataLayout::counter_increment); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1801 |
__ jmp(*failure); |
6453 | 1802 |
} |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1803 |
__ jmp(*success); |
6453 | 1804 |
} |
1 | 1805 |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1806 |
|
1 | 1807 |
void LIR_Assembler::emit_opTypeCheck(LIR_OpTypeCheck* op) { |
1808 |
LIR_Code code = op->code(); |
|
1809 |
if (code == lir_store_check) { |
|
1810 |
Register value = op->object()->as_register(); |
|
1811 |
Register array = op->array()->as_register(); |
|
1812 |
Register k_RInfo = op->tmp1()->as_register(); |
|
1813 |
Register klass_RInfo = op->tmp2()->as_register(); |
|
1814 |
Register Rtmp1 = op->tmp3()->as_register(); |
|
1815 |
||
1816 |
CodeStub* stub = op->stub(); |
|
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1817 |
|
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1818 |
// check if it needs to be profiled |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1819 |
ciMethodData* md; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1820 |
ciProfileData* data; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1821 |
|
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1822 |
if (op->should_profile()) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1823 |
ciMethod* method = op->profiled_method(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1824 |
assert(method != NULL, "Should have method"); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1825 |
int bci = op->profiled_bci(); |
7432
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
1826 |
md = method->method_data_or_null(); |
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
1827 |
assert(md != NULL, "Sanity"); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1828 |
data = md->bci_to_data(bci); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1829 |
assert(data != NULL, "need data for type check"); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1830 |
assert(data->is_ReceiverTypeData(), "need ReceiverTypeData for type check"); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1831 |
} |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1832 |
Label profile_cast_success, profile_cast_failure, done; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1833 |
Label *success_target = op->should_profile() ? &profile_cast_success : &done; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1834 |
Label *failure_target = op->should_profile() ? &profile_cast_failure : stub->entry(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1835 |
|
1066 | 1836 |
__ cmpptr(value, (int32_t)NULL_WORD); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1837 |
if (op->should_profile()) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1838 |
Label not_null; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1839 |
__ jccb(Assembler::notEqual, not_null); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1840 |
// Object is null; update MDO and exit |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1841 |
Register mdo = klass_RInfo; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1842 |
__ movoop(mdo, md->constant_encoding()); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1843 |
Address data_addr(mdo, md->byte_offset_of_slot(data, DataLayout::header_offset())); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1844 |
int header_bits = DataLayout::flag_mask_to_header_mask(BitData::null_seen_byte_constant()); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1845 |
__ orl(data_addr, header_bits); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1846 |
__ jmp(done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1847 |
__ bind(not_null); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1848 |
} else { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1849 |
__ jcc(Assembler::equal, done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1850 |
} |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1851 |
|
1 | 1852 |
add_debug_info_for_null_check_here(op->info_for_exception()); |
7427 | 1853 |
__ load_klass(k_RInfo, array); |
1854 |
__ load_klass(klass_RInfo, value); |
|
1855 |
||
1856 |
// get instance klass (it's already uncompressed) |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
1857 |
__ movptr(k_RInfo, Address(k_RInfo, objArrayKlass::element_klass_offset())); |
2256
82d4e10b7c6b
6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents:
2148
diff
changeset
|
1858 |
// perform the fast part of the checking logic |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1859 |
__ check_klass_subtype_fast_path(klass_RInfo, k_RInfo, Rtmp1, success_target, failure_target, NULL); |
2256
82d4e10b7c6b
6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents:
2148
diff
changeset
|
1860 |
// call out-of-line instance of __ check_klass_subtype_slow_path(...): |
1066 | 1861 |
__ push(klass_RInfo); |
1862 |
__ push(k_RInfo); |
|
1 | 1863 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::slow_subtype_check_id))); |
1066 | 1864 |
__ pop(klass_RInfo); |
1865 |
__ pop(k_RInfo); |
|
1866 |
// result is a boolean |
|
1 | 1867 |
__ cmpl(k_RInfo, 0); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1868 |
__ jcc(Assembler::equal, *failure_target); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1869 |
// fall through to the success case |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1870 |
|
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1871 |
if (op->should_profile()) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1872 |
Register mdo = klass_RInfo, recv = k_RInfo; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1873 |
__ bind(profile_cast_success); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1874 |
__ movoop(mdo, md->constant_encoding()); |
7427 | 1875 |
__ load_klass(recv, value); |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1876 |
Label update_done; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1877 |
type_profile_helper(mdo, md, data, recv, &done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1878 |
__ jmpb(done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1879 |
|
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1880 |
__ bind(profile_cast_failure); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1881 |
__ movoop(mdo, md->constant_encoding()); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1882 |
Address counter_addr(mdo, md->byte_offset_of_slot(data, CounterData::count_offset())); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1883 |
__ subptr(counter_addr, DataLayout::counter_increment); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1884 |
__ jmp(*stub->entry()); |
1 | 1885 |
} |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1886 |
|
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1887 |
__ bind(done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1888 |
} else |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1889 |
if (code == lir_checkcast) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1890 |
Register obj = op->object()->as_register(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1891 |
Register dst = op->result_opr()->as_register(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1892 |
Label success; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1893 |
emit_typecheck_helper(op, &success, op->stub()->entry(), &success); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1894 |
__ bind(success); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1895 |
if (dst != obj) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1896 |
__ mov(dst, obj); |
1 | 1897 |
} |
6461
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1898 |
} else |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1899 |
if (code == lir_instanceof) { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1900 |
Register obj = op->object()->as_register(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1901 |
Register dst = op->result_opr()->as_register(); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1902 |
Label success, failure, done; |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1903 |
emit_typecheck_helper(op, &success, &failure, &failure); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1904 |
__ bind(failure); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1905 |
__ xorptr(dst, dst); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1906 |
__ jmpb(done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1907 |
__ bind(success); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1908 |
__ movptr(dst, 1); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1909 |
__ bind(done); |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1910 |
} else { |
cfc616b49f58
6919069: client compiler needs to capture more profile information for tiered work
iveresov
parents:
6460
diff
changeset
|
1911 |
ShouldNotReachHere(); |
2256
82d4e10b7c6b
6813212: factor duplicated assembly code for general subclass check (for 6655638)
jrose
parents:
2148
diff
changeset
|
1912 |
} |
1 | 1913 |
|
1914 |
} |
|
1915 |
||
1916 |
||
1917 |
void LIR_Assembler::emit_compare_and_swap(LIR_OpCompareAndSwap* op) { |
|
1066 | 1918 |
if (LP64_ONLY(false &&) op->code() == lir_cas_long && VM_Version::supports_cx8()) { |
1 | 1919 |
assert(op->cmp_value()->as_register_lo() == rax, "wrong register"); |
1920 |
assert(op->cmp_value()->as_register_hi() == rdx, "wrong register"); |
|
1921 |
assert(op->new_value()->as_register_lo() == rbx, "wrong register"); |
|
1922 |
assert(op->new_value()->as_register_hi() == rcx, "wrong register"); |
|
1923 |
Register addr = op->addr()->as_register(); |
|
1924 |
if (os::is_MP()) { |
|
1925 |
__ lock(); |
|
1926 |
} |
|
1066 | 1927 |
NOT_LP64(__ cmpxchg8(Address(addr, 0))); |
1928 |
||
1929 |
} else if (op->code() == lir_cas_int || op->code() == lir_cas_obj ) { |
|
1930 |
NOT_LP64(assert(op->addr()->is_single_cpu(), "must be single");) |
|
1931 |
Register addr = (op->addr()->is_single_cpu() ? op->addr()->as_register() : op->addr()->as_register_lo()); |
|
1 | 1932 |
Register newval = op->new_value()->as_register(); |
1933 |
Register cmpval = op->cmp_value()->as_register(); |
|
1934 |
assert(cmpval == rax, "wrong register"); |
|
1935 |
assert(newval != NULL, "new val must be register"); |
|
1936 |
assert(cmpval != newval, "cmp and new values must be in different registers"); |
|
1937 |
assert(cmpval != addr, "cmp and addr must be in different registers"); |
|
1938 |
assert(newval != addr, "new value and addr must be in different registers"); |
|
7427 | 1939 |
|
1066 | 1940 |
if ( op->code() == lir_cas_obj) { |
7427 | 1941 |
#ifdef _LP64 |
1942 |
if (UseCompressedOops) { |
|
1943 |
__ encode_heap_oop(cmpval); |
|
7438
6e2a9ad88dba
7005241: C1: SEGV in java.util.concurrent.LinkedTransferQueue.xfer() with compressed oops
iveresov
parents:
7432
diff
changeset
|
1944 |
__ mov(rscratch1, newval); |
6e2a9ad88dba
7005241: C1: SEGV in java.util.concurrent.LinkedTransferQueue.xfer() with compressed oops
iveresov
parents:
7432
diff
changeset
|
1945 |
__ encode_heap_oop(rscratch1); |
7427 | 1946 |
if (os::is_MP()) { |
1947 |
__ lock(); |
|
1948 |
} |
|
7438
6e2a9ad88dba
7005241: C1: SEGV in java.util.concurrent.LinkedTransferQueue.xfer() with compressed oops
iveresov
parents:
7432
diff
changeset
|
1949 |
// cmpval (rax) is implicitly used by this instruction |
6e2a9ad88dba
7005241: C1: SEGV in java.util.concurrent.LinkedTransferQueue.xfer() with compressed oops
iveresov
parents:
7432
diff
changeset
|
1950 |
__ cmpxchgl(rscratch1, Address(addr, 0)); |
7427 | 1951 |
} else |
1952 |
#endif |
|
1953 |
{ |
|
1954 |
if (os::is_MP()) { |
|
1955 |
__ lock(); |
|
1956 |
} |
|
1957 |
__ cmpxchgptr(newval, Address(addr, 0)); |
|
1958 |
} |
|
1959 |
} else { |
|
1960 |
assert(op->code() == lir_cas_int, "lir_cas_int expected"); |
|
1961 |
if (os::is_MP()) { |
|
1962 |
__ lock(); |
|
1963 |
} |
|
1066 | 1964 |
__ cmpxchgl(newval, Address(addr, 0)); |
1965 |
} |
|
1966 |
#ifdef _LP64 |
|
1967 |
} else if (op->code() == lir_cas_long) { |
|
1968 |
Register addr = (op->addr()->is_single_cpu() ? op->addr()->as_register() : op->addr()->as_register_lo()); |
|
1969 |
Register newval = op->new_value()->as_register_lo(); |
|
1970 |
Register cmpval = op->cmp_value()->as_register_lo(); |
|
1971 |
assert(cmpval == rax, "wrong register"); |
|
1972 |
assert(newval != NULL, "new val must be register"); |
|
1973 |
assert(cmpval != newval, "cmp and new values must be in different registers"); |
|
1974 |
assert(cmpval != addr, "cmp and addr must be in different registers"); |
|
1975 |
assert(newval != addr, "new value and addr must be in different registers"); |
|
1976 |
if (os::is_MP()) { |
|
1977 |
__ lock(); |
|
1978 |
} |
|
1979 |
__ cmpxchgq(newval, Address(addr, 0)); |
|
1980 |
#endif // _LP64 |
|
1 | 1981 |
} else { |
1982 |
Unimplemented(); |
|
1983 |
} |
|
1984 |
} |
|
1985 |
||
7713
1e06d2419258
7009231: C1: Incorrect CAS code for longs on SPARC 32bit
iveresov
parents:
7438
diff
changeset
|
1986 |
void LIR_Assembler::cmove(LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr result, BasicType type) { |
1 | 1987 |
Assembler::Condition acond, ncond; |
1988 |
switch (condition) { |
|
1989 |
case lir_cond_equal: acond = Assembler::equal; ncond = Assembler::notEqual; break; |
|
1990 |
case lir_cond_notEqual: acond = Assembler::notEqual; ncond = Assembler::equal; break; |
|
1991 |
case lir_cond_less: acond = Assembler::less; ncond = Assembler::greaterEqual; break; |
|
1992 |
case lir_cond_lessEqual: acond = Assembler::lessEqual; ncond = Assembler::greater; break; |
|
1993 |
case lir_cond_greaterEqual: acond = Assembler::greaterEqual; ncond = Assembler::less; break; |
|
1994 |
case lir_cond_greater: acond = Assembler::greater; ncond = Assembler::lessEqual; break; |
|
1995 |
case lir_cond_belowEqual: acond = Assembler::belowEqual; ncond = Assembler::above; break; |
|
1996 |
case lir_cond_aboveEqual: acond = Assembler::aboveEqual; ncond = Assembler::below; break; |
|
1997 |
default: ShouldNotReachHere(); |
|
1998 |
} |
|
1999 |
||
2000 |
if (opr1->is_cpu_register()) { |
|
2001 |
reg2reg(opr1, result); |
|
2002 |
} else if (opr1->is_stack()) { |
|
2003 |
stack2reg(opr1, result, result->type()); |
|
2004 |
} else if (opr1->is_constant()) { |
|
2005 |
const2reg(opr1, result, lir_patch_none, NULL); |
|
2006 |
} else { |
|
2007 |
ShouldNotReachHere(); |
|
2008 |
} |
|
2009 |
||
2010 |
if (VM_Version::supports_cmov() && !opr2->is_constant()) { |
|
2011 |
// optimized version that does not require a branch |
|
2012 |
if (opr2->is_single_cpu()) { |
|
2013 |
assert(opr2->cpu_regnr() != result->cpu_regnr(), "opr2 already overwritten by previous move"); |
|
1066 | 2014 |
__ cmov(ncond, result->as_register(), opr2->as_register()); |
1 | 2015 |
} else if (opr2->is_double_cpu()) { |
2016 |
assert(opr2->cpu_regnrLo() != result->cpu_regnrLo() && opr2->cpu_regnrLo() != result->cpu_regnrHi(), "opr2 already overwritten by previous move"); |
|
2017 |
assert(opr2->cpu_regnrHi() != result->cpu_regnrLo() && opr2->cpu_regnrHi() != result->cpu_regnrHi(), "opr2 already overwritten by previous move"); |
|
1066 | 2018 |
__ cmovptr(ncond, result->as_register_lo(), opr2->as_register_lo()); |
2019 |
NOT_LP64(__ cmovptr(ncond, result->as_register_hi(), opr2->as_register_hi());) |
|
1 | 2020 |
} else if (opr2->is_single_stack()) { |
2021 |
__ cmovl(ncond, result->as_register(), frame_map()->address_for_slot(opr2->single_stack_ix())); |
|
2022 |
} else if (opr2->is_double_stack()) { |
|
1066 | 2023 |
__ cmovptr(ncond, result->as_register_lo(), frame_map()->address_for_slot(opr2->double_stack_ix(), lo_word_offset_in_bytes)); |
2024 |
NOT_LP64(__ cmovptr(ncond, result->as_register_hi(), frame_map()->address_for_slot(opr2->double_stack_ix(), hi_word_offset_in_bytes));) |
|
1 | 2025 |
} else { |
2026 |
ShouldNotReachHere(); |
|
2027 |
} |
|
2028 |
||
2029 |
} else { |
|
2030 |
Label skip; |
|
2031 |
__ jcc (acond, skip); |
|
2032 |
if (opr2->is_cpu_register()) { |
|
2033 |
reg2reg(opr2, result); |
|
2034 |
} else if (opr2->is_stack()) { |
|
2035 |
stack2reg(opr2, result, result->type()); |
|
2036 |
} else if (opr2->is_constant()) { |
|
2037 |
const2reg(opr2, result, lir_patch_none, NULL); |
|
2038 |
} else { |
|
2039 |
ShouldNotReachHere(); |
|
2040 |
} |
|
2041 |
__ bind(skip); |
|
2042 |
} |
|
2043 |
} |
|
2044 |
||
2045 |
||
2046 |
void LIR_Assembler::arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dest, CodeEmitInfo* info, bool pop_fpu_stack) { |
|
2047 |
assert(info == NULL, "should never be used, idiv/irem and ldiv/lrem not handled by this method"); |
|
2048 |
||
2049 |
if (left->is_single_cpu()) { |
|
2050 |
assert(left == dest, "left and dest must be equal"); |
|
2051 |
Register lreg = left->as_register(); |
|
2052 |
||
2053 |
if (right->is_single_cpu()) { |
|
2054 |
// cpu register - cpu register |
|
2055 |
Register rreg = right->as_register(); |
|
2056 |
switch (code) { |
|
2057 |
case lir_add: __ addl (lreg, rreg); break; |
|
2058 |
case lir_sub: __ subl (lreg, rreg); break; |
|
2059 |
case lir_mul: __ imull(lreg, rreg); break; |
|
2060 |
default: ShouldNotReachHere(); |
|
2061 |
} |
|
2062 |
||
2063 |
} else if (right->is_stack()) { |
|
2064 |
// cpu register - stack |
|
2065 |
Address raddr = frame_map()->address_for_slot(right->single_stack_ix()); |
|
2066 |
switch (code) { |
|
2067 |
case lir_add: __ addl(lreg, raddr); break; |
|
2068 |
case lir_sub: __ subl(lreg, raddr); break; |
|
2069 |
default: ShouldNotReachHere(); |
|
2070 |
} |
|
2071 |
||
2072 |
} else if (right->is_constant()) { |
|
2073 |
// cpu register - constant |
|
2074 |
jint c = right->as_constant_ptr()->as_jint(); |
|
2075 |
switch (code) { |
|
2076 |
case lir_add: { |
|
6460
6f5143b00f4c
6984056: C1: incorrect code for integer constant addition on x64
iveresov
parents:
6453
diff
changeset
|
2077 |
__ incrementl(lreg, c); |
1 | 2078 |
break; |
2079 |
} |
|
2080 |
case lir_sub: { |
|
6460
6f5143b00f4c
6984056: C1: incorrect code for integer constant addition on x64
iveresov
parents:
6453
diff
changeset
|
2081 |
__ decrementl(lreg, c); |
1 | 2082 |
break; |
2083 |
} |
|
2084 |
default: ShouldNotReachHere(); |
|
2085 |
} |
|
2086 |
||
2087 |
} else { |
|
2088 |
ShouldNotReachHere(); |
|
2089 |
} |
|
2090 |
||
2091 |
} else if (left->is_double_cpu()) { |
|
2092 |
assert(left == dest, "left and dest must be equal"); |
|
2093 |
Register lreg_lo = left->as_register_lo(); |
|
2094 |
Register lreg_hi = left->as_register_hi(); |
|
2095 |
||
2096 |
if (right->is_double_cpu()) { |
|
2097 |
// cpu register - cpu register |
|
2098 |
Register rreg_lo = right->as_register_lo(); |
|
2099 |
Register rreg_hi = right->as_register_hi(); |
|
1066 | 2100 |
NOT_LP64(assert_different_registers(lreg_lo, lreg_hi, rreg_lo, rreg_hi)); |
2101 |
LP64_ONLY(assert_different_registers(lreg_lo, rreg_lo)); |
|
1 | 2102 |
switch (code) { |
2103 |
case lir_add: |
|
1066 | 2104 |
__ addptr(lreg_lo, rreg_lo); |
2105 |
NOT_LP64(__ adcl(lreg_hi, rreg_hi)); |
|
1 | 2106 |
break; |
2107 |
case lir_sub: |
|
1066 | 2108 |
__ subptr(lreg_lo, rreg_lo); |
2109 |
NOT_LP64(__ sbbl(lreg_hi, rreg_hi)); |
|
1 | 2110 |
break; |
2111 |
case lir_mul: |
|
1066 | 2112 |
#ifdef _LP64 |
2113 |
__ imulq(lreg_lo, rreg_lo); |
|
2114 |
#else |
|
1 | 2115 |
assert(lreg_lo == rax && lreg_hi == rdx, "must be"); |
2116 |
__ imull(lreg_hi, rreg_lo); |
|
2117 |
__ imull(rreg_hi, lreg_lo); |
|
2118 |
__ addl (rreg_hi, lreg_hi); |
|
2119 |
__ mull (rreg_lo); |
|
2120 |
__ addl (lreg_hi, rreg_hi); |
|
1066 | 2121 |
#endif // _LP64 |
1 | 2122 |
break; |
2123 |
default: |
|
2124 |
ShouldNotReachHere(); |
|
2125 |
} |
|
2126 |
||
2127 |
} else if (right->is_constant()) { |
|
2128 |
// cpu register - constant |
|
1066 | 2129 |
#ifdef _LP64 |
2130 |
jlong c = right->as_constant_ptr()->as_jlong_bits(); |
|
2131 |
__ movptr(r10, (intptr_t) c); |
|
2132 |
switch (code) { |
|
2133 |
case lir_add: |
|
2134 |
__ addptr(lreg_lo, r10); |
|
2135 |
break; |
|
2136 |
case lir_sub: |
|
2137 |
__ subptr(lreg_lo, r10); |
|
2138 |
break; |
|
2139 |
default: |
|
2140 |
ShouldNotReachHere(); |
|
2141 |
} |
|
2142 |
#else |
|
1 | 2143 |
jint c_lo = right->as_constant_ptr()->as_jint_lo(); |
2144 |
jint c_hi = right->as_constant_ptr()->as_jint_hi(); |
|
2145 |
switch (code) { |
|
2146 |
case lir_add: |
|
1066 | 2147 |
__ addptr(lreg_lo, c_lo); |
1 | 2148 |
__ adcl(lreg_hi, c_hi); |
2149 |
break; |
|
2150 |
case lir_sub: |
|
1066 | 2151 |
__ subptr(lreg_lo, c_lo); |
1 | 2152 |
__ sbbl(lreg_hi, c_hi); |
2153 |
break; |
|
2154 |
default: |
|
2155 |
ShouldNotReachHere(); |
|
2156 |
} |
|
1066 | 2157 |
#endif // _LP64 |
1 | 2158 |
|
2159 |
} else { |
|
2160 |
ShouldNotReachHere(); |
|
2161 |
} |
|
2162 |
||
2163 |
} else if (left->is_single_xmm()) { |
|
2164 |
assert(left == dest, "left and dest must be equal"); |
|
2165 |
XMMRegister lreg = left->as_xmm_float_reg(); |
|
2166 |
||
2167 |
if (right->is_single_xmm()) { |
|
2168 |
XMMRegister rreg = right->as_xmm_float_reg(); |
|
2169 |
switch (code) { |
|
2170 |
case lir_add: __ addss(lreg, rreg); break; |
|
2171 |
case lir_sub: __ subss(lreg, rreg); break; |
|
2172 |
case lir_mul_strictfp: // fall through |
|
2173 |
case lir_mul: __ mulss(lreg, rreg); break; |
|
2174 |
case lir_div_strictfp: // fall through |
|
2175 |
case lir_div: __ divss(lreg, rreg); break; |
|
2176 |
default: ShouldNotReachHere(); |
|
2177 |
} |
|
2178 |
} else { |
|
2179 |
Address raddr; |
|
2180 |
if (right->is_single_stack()) { |
|
2181 |
raddr = frame_map()->address_for_slot(right->single_stack_ix()); |
|
2182 |
} else if (right->is_constant()) { |
|
2183 |
// hack for now |
|
2184 |
raddr = __ as_Address(InternalAddress(float_constant(right->as_jfloat()))); |
|
2185 |
} else { |
|
2186 |
ShouldNotReachHere(); |
|
2187 |
} |
|
2188 |
switch (code) { |
|
2189 |
case lir_add: __ addss(lreg, raddr); break; |
|
2190 |
case lir_sub: __ subss(lreg, raddr); break; |
|
2191 |
case lir_mul_strictfp: // fall through |
|
2192 |
case lir_mul: __ mulss(lreg, raddr); break; |
|
2193 |
case lir_div_strictfp: // fall through |
|
2194 |
case lir_div: __ divss(lreg, raddr); break; |
|
2195 |
default: ShouldNotReachHere(); |
|
2196 |
} |
|
2197 |
} |
|
2198 |
||
2199 |
} else if (left->is_double_xmm()) { |
|
2200 |
assert(left == dest, "left and dest must be equal"); |
|
2201 |
||
2202 |
XMMRegister lreg = left->as_xmm_double_reg(); |
|
2203 |
if (right->is_double_xmm()) { |
|
2204 |
XMMRegister rreg = right->as_xmm_double_reg(); |
|
2205 |
switch (code) { |
|
2206 |
case lir_add: __ addsd(lreg, rreg); break; |
|
2207 |
case lir_sub: __ subsd(lreg, rreg); break; |
|
2208 |
case lir_mul_strictfp: // fall through |
|
2209 |
case lir_mul: __ mulsd(lreg, rreg); break; |
|
2210 |
case lir_div_strictfp: // fall through |
|
2211 |
case lir_div: __ divsd(lreg, rreg); break; |
|
2212 |
default: ShouldNotReachHere(); |
|
2213 |
} |
|
2214 |
} else { |
|
2215 |
Address raddr; |
|
2216 |
if (right->is_double_stack()) { |
|
2217 |
raddr = frame_map()->address_for_slot(right->double_stack_ix()); |
|
2218 |
} else if (right->is_constant()) { |
|
2219 |
// hack for now |
|
2220 |
raddr = __ as_Address(InternalAddress(double_constant(right->as_jdouble()))); |
|
2221 |
} else { |
|
2222 |
ShouldNotReachHere(); |
|
2223 |
} |
|
2224 |
switch (code) { |
|
2225 |
case lir_add: __ addsd(lreg, raddr); break; |
|
2226 |
case lir_sub: __ subsd(lreg, raddr); break; |
|
2227 |
case lir_mul_strictfp: // fall through |
|
2228 |
case lir_mul: __ mulsd(lreg, raddr); break; |
|
2229 |
case lir_div_strictfp: // fall through |
|
2230 |
case lir_div: __ divsd(lreg, raddr); break; |
|
2231 |
default: ShouldNotReachHere(); |
|
2232 |
} |
|
2233 |
} |
|
2234 |
||
2235 |
} else if (left->is_single_fpu()) { |
|
2236 |
assert(dest->is_single_fpu(), "fpu stack allocation required"); |
|
2237 |
||
2238 |
if (right->is_single_fpu()) { |
|
2239 |
arith_fpu_implementation(code, left->fpu_regnr(), right->fpu_regnr(), dest->fpu_regnr(), pop_fpu_stack); |
|
2240 |
||
2241 |
} else { |
|
2242 |
assert(left->fpu_regnr() == 0, "left must be on TOS"); |
|
2243 |
assert(dest->fpu_regnr() == 0, "dest must be on TOS"); |
|
2244 |
||
2245 |
Address raddr; |
|
2246 |
if (right->is_single_stack()) { |
|
2247 |
raddr = frame_map()->address_for_slot(right->single_stack_ix()); |
|
2248 |
} else if (right->is_constant()) { |
|
2249 |
address const_addr = float_constant(right->as_jfloat()); |
|
2250 |
assert(const_addr != NULL, "incorrect float/double constant maintainance"); |
|
2251 |
// hack for now |
|
2252 |
raddr = __ as_Address(InternalAddress(const_addr)); |
|
2253 |
} else { |
|
2254 |
ShouldNotReachHere(); |
|
2255 |
} |
|
2256 |
||
2257 |
switch (code) { |
|
2258 |
case lir_add: __ fadd_s(raddr); break; |
|
2259 |
case lir_sub: __ fsub_s(raddr); break; |
|
2260 |
case lir_mul_strictfp: // fall through |
|
2261 |
case lir_mul: __ fmul_s(raddr); break; |
|
2262 |
case lir_div_strictfp: // fall through |
|
2263 |
case lir_div: __ fdiv_s(raddr); break; |
|
2264 |
default: ShouldNotReachHere(); |
|
2265 |
} |
|
2266 |
} |
|
2267 |
||
2268 |
} else if (left->is_double_fpu()) { |
|
2269 |
assert(dest->is_double_fpu(), "fpu stack allocation required"); |
|
2270 |
||
2271 |
if (code == lir_mul_strictfp || code == lir_div_strictfp) { |
|
2272 |
// Double values require special handling for strictfp mul/div on x86 |
|
2273 |
__ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias1())); |
|
2274 |
__ fmulp(left->fpu_regnrLo() + 1); |
|
2275 |
} |
|
2276 |
||
2277 |
if (right->is_double_fpu()) { |
|
2278 |
arith_fpu_implementation(code, left->fpu_regnrLo(), right->fpu_regnrLo(), dest->fpu_regnrLo(), pop_fpu_stack); |
|
2279 |
||
2280 |
} else { |
|
2281 |
assert(left->fpu_regnrLo() == 0, "left must be on TOS"); |
|
2282 |
assert(dest->fpu_regnrLo() == 0, "dest must be on TOS"); |
|
2283 |
||
2284 |
Address raddr; |
|
2285 |
if (right->is_double_stack()) { |
|
2286 |
raddr = frame_map()->address_for_slot(right->double_stack_ix()); |
|
2287 |
} else if (right->is_constant()) { |
|
2288 |
// hack for now |
|
2289 |
raddr = __ as_Address(InternalAddress(double_constant(right->as_jdouble()))); |
|
2290 |
} else { |
|
2291 |
ShouldNotReachHere(); |
|
2292 |
} |
|
2293 |
||
2294 |
switch (code) { |
|
2295 |
case lir_add: __ fadd_d(raddr); break; |
|
2296 |
case lir_sub: __ fsub_d(raddr); break; |
|
2297 |
case lir_mul_strictfp: // fall through |
|
2298 |
case lir_mul: __ fmul_d(raddr); break; |
|
2299 |
case lir_div_strictfp: // fall through |
|
2300 |
case lir_div: __ fdiv_d(raddr); break; |
|
2301 |
default: ShouldNotReachHere(); |
|
2302 |
} |
|
2303 |
} |
|
2304 |
||
2305 |
if (code == lir_mul_strictfp || code == lir_div_strictfp) { |
|
2306 |
// Double values require special handling for strictfp mul/div on x86 |
|
2307 |
__ fld_x(ExternalAddress(StubRoutines::addr_fpu_subnormal_bias2())); |
|
2308 |
__ fmulp(dest->fpu_regnrLo() + 1); |
|
2309 |
} |
|
2310 |
||
2311 |
} else if (left->is_single_stack() || left->is_address()) { |
|
2312 |
assert(left == dest, "left and dest must be equal"); |
|
2313 |
||
2314 |
Address laddr; |
|
2315 |
if (left->is_single_stack()) { |
|
2316 |
laddr = frame_map()->address_for_slot(left->single_stack_ix()); |
|
2317 |
} else if (left->is_address()) { |
|
2318 |
laddr = as_Address(left->as_address_ptr()); |
|
2319 |
} else { |
|
2320 |
ShouldNotReachHere(); |
|
2321 |
} |
|
2322 |
||
2323 |
if (right->is_single_cpu()) { |
|
2324 |
Register rreg = right->as_register(); |
|
2325 |
switch (code) { |
|
2326 |
case lir_add: __ addl(laddr, rreg); break; |
|
2327 |
case lir_sub: __ subl(laddr, rreg); break; |
|
2328 |
default: ShouldNotReachHere(); |
|
2329 |
} |
|
2330 |
} else if (right->is_constant()) { |
|
2331 |
jint c = right->as_constant_ptr()->as_jint(); |
|
2332 |
switch (code) { |
|
2333 |
case lir_add: { |
|
1066 | 2334 |
__ incrementl(laddr, c); |
1 | 2335 |
break; |
2336 |
} |
|
2337 |
case lir_sub: { |
|
1066 | 2338 |
__ decrementl(laddr, c); |
1 | 2339 |
break; |
2340 |
} |
|
2341 |
default: ShouldNotReachHere(); |
|
2342 |
} |
|
2343 |
} else { |
|
2344 |
ShouldNotReachHere(); |
|
2345 |
} |
|
2346 |
||
2347 |
} else { |
|
2348 |
ShouldNotReachHere(); |
|
2349 |
} |
|
2350 |
} |
|
2351 |
||
2352 |
void LIR_Assembler::arith_fpu_implementation(LIR_Code code, int left_index, int right_index, int dest_index, bool pop_fpu_stack) { |
|
2353 |
assert(pop_fpu_stack || (left_index == dest_index || right_index == dest_index), "invalid LIR"); |
|
2354 |
assert(!pop_fpu_stack || (left_index - 1 == dest_index || right_index - 1 == dest_index), "invalid LIR"); |
|
2355 |
assert(left_index == 0 || right_index == 0, "either must be on top of stack"); |
|
2356 |
||
2357 |
bool left_is_tos = (left_index == 0); |
|
2358 |
bool dest_is_tos = (dest_index == 0); |
|
2359 |
int non_tos_index = (left_is_tos ? right_index : left_index); |
|
2360 |
||
2361 |
switch (code) { |
|
2362 |
case lir_add: |
|
2363 |
if (pop_fpu_stack) __ faddp(non_tos_index); |
|
2364 |
else if (dest_is_tos) __ fadd (non_tos_index); |
|
2365 |
else __ fadda(non_tos_index); |
|
2366 |
break; |
|
2367 |
||
2368 |
case lir_sub: |
|
2369 |
if (left_is_tos) { |
|
2370 |
if (pop_fpu_stack) __ fsubrp(non_tos_index); |
|
2371 |
else if (dest_is_tos) __ fsub (non_tos_index); |
|
2372 |
else __ fsubra(non_tos_index); |
|
2373 |
} else { |
|
2374 |
if (pop_fpu_stack) __ fsubp (non_tos_index); |
|
2375 |
else if (dest_is_tos) __ fsubr (non_tos_index); |
|
2376 |
else __ fsuba (non_tos_index); |
|
2377 |
} |
|
2378 |
break; |
|
2379 |
||
2380 |
case lir_mul_strictfp: // fall through |
|
2381 |
case lir_mul: |
|
2382 |
if (pop_fpu_stack) __ fmulp(non_tos_index); |
|
2383 |
else if (dest_is_tos) __ fmul (non_tos_index); |
|
2384 |
else __ fmula(non_tos_index); |
|
2385 |
break; |
|
2386 |
||
2387 |
case lir_div_strictfp: // fall through |
|
2388 |
case lir_div: |
|
2389 |
if (left_is_tos) { |
|
2390 |
if (pop_fpu_stack) __ fdivrp(non_tos_index); |
|
2391 |
else if (dest_is_tos) __ fdiv (non_tos_index); |
|
2392 |
else __ fdivra(non_tos_index); |
|
2393 |
} else { |
|
2394 |
if (pop_fpu_stack) __ fdivp (non_tos_index); |
|
2395 |
else if (dest_is_tos) __ fdivr (non_tos_index); |
|
2396 |
else __ fdiva (non_tos_index); |
|
2397 |
} |
|
2398 |
break; |
|
2399 |
||
2400 |
case lir_rem: |
|
2401 |
assert(left_is_tos && dest_is_tos && right_index == 1, "must be guaranteed by FPU stack allocation"); |
|
2402 |
__ fremr(noreg); |
|
2403 |
break; |
|
2404 |
||
2405 |
default: |
|
2406 |
ShouldNotReachHere(); |
|
2407 |
} |
|
2408 |
} |
|
2409 |
||
2410 |
||
2411 |
void LIR_Assembler::intrinsic_op(LIR_Code code, LIR_Opr value, LIR_Opr unused, LIR_Opr dest, LIR_Op* op) { |
|
2412 |
if (value->is_double_xmm()) { |
|
2413 |
switch(code) { |
|
2414 |
case lir_abs : |
|
2415 |
{ |
|
2416 |
if (dest->as_xmm_double_reg() != value->as_xmm_double_reg()) { |
|
2417 |
__ movdbl(dest->as_xmm_double_reg(), value->as_xmm_double_reg()); |
|
2418 |
} |
|
2419 |
__ andpd(dest->as_xmm_double_reg(), |
|
2420 |
ExternalAddress((address)double_signmask_pool)); |
|
2421 |
} |
|
2422 |
break; |
|
2423 |
||
2424 |
case lir_sqrt: __ sqrtsd(dest->as_xmm_double_reg(), value->as_xmm_double_reg()); break; |
|
2425 |
// all other intrinsics are not available in the SSE instruction set, so FPU is used |
|
2426 |
default : ShouldNotReachHere(); |
|
2427 |
} |
|
2428 |
||
2429 |
} else if (value->is_double_fpu()) { |
|
2430 |
assert(value->fpu_regnrLo() == 0 && dest->fpu_regnrLo() == 0, "both must be on TOS"); |
|
2431 |
switch(code) { |
|
2432 |
case lir_log : __ flog() ; break; |
|
2433 |
case lir_log10 : __ flog10() ; break; |
|
2434 |
case lir_abs : __ fabs() ; break; |
|
2435 |
case lir_sqrt : __ fsqrt(); break; |
|
2436 |
case lir_sin : |
|
2437 |
// Should consider not saving rbx, if not necessary |
|
2438 |
__ trigfunc('s', op->as_Op2()->fpu_stack_size()); |
|
2439 |
break; |
|
2440 |
case lir_cos : |
|
2441 |
// Should consider not saving rbx, if not necessary |
|
2442 |
assert(op->as_Op2()->fpu_stack_size() <= 6, "sin and cos need two free stack slots"); |
|
2443 |
__ trigfunc('c', op->as_Op2()->fpu_stack_size()); |
|
2444 |
break; |
|
2445 |
case lir_tan : |
|
2446 |
// Should consider not saving rbx, if not necessary |
|
2447 |
__ trigfunc('t', op->as_Op2()->fpu_stack_size()); |
|
2448 |
break; |
|
12739
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2449 |
case lir_exp : |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2450 |
__ exp_with_fallback(op->as_Op2()->fpu_stack_size()); |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2451 |
break; |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2452 |
case lir_pow : |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2453 |
__ pow_with_fallback(op->as_Op2()->fpu_stack_size()); |
09f26b73ae66
7133857: exp() and pow() should use the x87 ISA on x86
roland
parents:
12623
diff
changeset
|
2454 |
break; |
1 | 2455 |
default : ShouldNotReachHere(); |
2456 |
} |
|
2457 |
} else { |
|
2458 |
Unimplemented(); |
|
2459 |
} |
|
2460 |
} |
|
2461 |
||
2462 |
void LIR_Assembler::logic_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dst) { |
|
2463 |
// assert(left->destroys_register(), "check"); |
|
2464 |
if (left->is_single_cpu()) { |
|
2465 |
Register reg = left->as_register(); |
|
2466 |
if (right->is_constant()) { |
|
2467 |
int val = right->as_constant_ptr()->as_jint(); |
|
2468 |
switch (code) { |
|
2469 |
case lir_logic_and: __ andl (reg, val); break; |
|
2470 |
case lir_logic_or: __ orl (reg, val); break; |
|
2471 |
case lir_logic_xor: __ xorl (reg, val); break; |
|
2472 |
default: ShouldNotReachHere(); |
|
2473 |
} |
|
2474 |
} else if (right->is_stack()) { |
|
2475 |
// added support for stack operands |
|
2476 |
Address raddr = frame_map()->address_for_slot(right->single_stack_ix()); |
|
2477 |
switch (code) { |
|
2478 |
case lir_logic_and: __ andl (reg, raddr); break; |
|
2479 |
case lir_logic_or: __ orl (reg, raddr); break; |
|
2480 |
case lir_logic_xor: __ xorl (reg, raddr); break; |
|
2481 |
default: ShouldNotReachHere(); |
|
2482 |
} |
|
2483 |
} else { |
|
2484 |
Register rright = right->as_register(); |
|
2485 |
switch (code) { |
|
1066 | 2486 |
case lir_logic_and: __ andptr (reg, rright); break; |
2487 |
case lir_logic_or : __ orptr (reg, rright); break; |
|
2488 |
case lir_logic_xor: __ xorptr (reg, rright); break; |
|
1 | 2489 |
default: ShouldNotReachHere(); |
2490 |
} |
|
2491 |
} |
|
2492 |
move_regs(reg, dst->as_register()); |
|
2493 |
} else { |
|
2494 |
Register l_lo = left->as_register_lo(); |
|
2495 |
Register l_hi = left->as_register_hi(); |
|
2496 |
if (right->is_constant()) { |
|
1066 | 2497 |
#ifdef _LP64 |
2498 |
__ mov64(rscratch1, right->as_constant_ptr()->as_jlong()); |
|
2499 |
switch (code) { |
|
2500 |
case lir_logic_and: |
|
2501 |
__ andq(l_lo, rscratch1); |
|
2502 |
break; |
|
2503 |
case lir_logic_or: |
|
2504 |
__ orq(l_lo, rscratch1); |
|
2505 |
break; |
|
2506 |
case lir_logic_xor: |
|
2507 |
__ xorq(l_lo, rscratch1); |
|
2508 |
break; |
|
2509 |
default: ShouldNotReachHere(); |
|
2510 |
} |
|
2511 |
#else |
|
1 | 2512 |
int r_lo = right->as_constant_ptr()->as_jint_lo(); |
2513 |
int r_hi = right->as_constant_ptr()->as_jint_hi(); |
|
2514 |
switch (code) { |
|
2515 |
case lir_logic_and: |
|
2516 |
__ andl(l_lo, r_lo); |
|
2517 |
__ andl(l_hi, r_hi); |
|
2518 |
break; |
|
2519 |
case lir_logic_or: |
|
2520 |
__ orl(l_lo, r_lo); |
|
2521 |
__ orl(l_hi, r_hi); |
|
2522 |
break; |
|
2523 |
case lir_logic_xor: |
|
2524 |
__ xorl(l_lo, r_lo); |
|
2525 |
__ xorl(l_hi, r_hi); |
|
2526 |
break; |
|
2527 |
default: ShouldNotReachHere(); |
|
2528 |
} |
|
1066 | 2529 |
#endif // _LP64 |
1 | 2530 |
} else { |
5695 | 2531 |
#ifdef _LP64 |
2532 |
Register r_lo; |
|
2533 |
if (right->type() == T_OBJECT || right->type() == T_ARRAY) { |
|
2534 |
r_lo = right->as_register(); |
|
2535 |
} else { |
|
2536 |
r_lo = right->as_register_lo(); |
|
2537 |
} |
|
2538 |
#else |
|
1 | 2539 |
Register r_lo = right->as_register_lo(); |
2540 |
Register r_hi = right->as_register_hi(); |
|
2541 |
assert(l_lo != r_hi, "overwriting registers"); |
|
5695 | 2542 |
#endif |
1 | 2543 |
switch (code) { |
2544 |
case lir_logic_and: |
|
1066 | 2545 |
__ andptr(l_lo, r_lo); |
2546 |
NOT_LP64(__ andptr(l_hi, r_hi);) |
|
1 | 2547 |
break; |
2548 |
case lir_logic_or: |
|
1066 | 2549 |
__ orptr(l_lo, r_lo); |
2550 |
NOT_LP64(__ orptr(l_hi, r_hi);) |
|
1 | 2551 |
break; |
2552 |
case lir_logic_xor: |
|
1066 | 2553 |
__ xorptr(l_lo, r_lo); |
2554 |
NOT_LP64(__ xorptr(l_hi, r_hi);) |
|
1 | 2555 |
break; |
2556 |
default: ShouldNotReachHere(); |
|
2557 |
} |
|
2558 |
} |
|
2559 |
||
2560 |
Register dst_lo = dst->as_register_lo(); |
|
2561 |
Register dst_hi = dst->as_register_hi(); |
|
2562 |
||
1066 | 2563 |
#ifdef _LP64 |
2564 |
move_regs(l_lo, dst_lo); |
|
2565 |
#else |
|
1 | 2566 |
if (dst_lo == l_hi) { |
2567 |
assert(dst_hi != l_lo, "overwriting registers"); |
|
2568 |
move_regs(l_hi, dst_hi); |
|
2569 |
move_regs(l_lo, dst_lo); |
|
2570 |
} else { |
|
2571 |
assert(dst_lo != l_hi, "overwriting registers"); |
|
2572 |
move_regs(l_lo, dst_lo); |
|
2573 |
move_regs(l_hi, dst_hi); |
|
2574 |
} |
|
1066 | 2575 |
#endif // _LP64 |
1 | 2576 |
} |
2577 |
} |
|
2578 |
||
2579 |
||
2580 |
// we assume that rax, and rdx can be overwritten |
|
2581 |
void LIR_Assembler::arithmetic_idiv(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr temp, LIR_Opr result, CodeEmitInfo* info) { |
|
2582 |
||
2583 |
assert(left->is_single_cpu(), "left must be register"); |
|
2584 |
assert(right->is_single_cpu() || right->is_constant(), "right must be register or constant"); |
|
2585 |
assert(result->is_single_cpu(), "result must be register"); |
|
2586 |
||
2587 |
// assert(left->destroys_register(), "check"); |
|
2588 |
// assert(right->destroys_register(), "check"); |
|
2589 |
||
2590 |
Register lreg = left->as_register(); |
|
2591 |
Register dreg = result->as_register(); |
|
2592 |
||
2593 |
if (right->is_constant()) { |
|
2594 |
int divisor = right->as_constant_ptr()->as_jint(); |
|
2595 |
assert(divisor > 0 && is_power_of_2(divisor), "must be"); |
|
2596 |
if (code == lir_idiv) { |
|
2597 |
assert(lreg == rax, "must be rax,"); |
|
2598 |
assert(temp->as_register() == rdx, "tmp register must be rdx"); |
|
2599 |
__ cdql(); // sign extend into rdx:rax |
|
2600 |
if (divisor == 2) { |
|
2601 |
__ subl(lreg, rdx); |
|
2602 |
} else { |
|
2603 |
__ andl(rdx, divisor - 1); |
|
2604 |
__ addl(lreg, rdx); |
|
2605 |
} |
|
2606 |
__ sarl(lreg, log2_intptr(divisor)); |
|
2607 |
move_regs(lreg, dreg); |
|
2608 |
} else if (code == lir_irem) { |
|
2609 |
Label done; |
|
1066 | 2610 |
__ mov(dreg, lreg); |
1 | 2611 |
__ andl(dreg, 0x80000000 | (divisor - 1)); |
2612 |
__ jcc(Assembler::positive, done); |
|
2613 |
__ decrement(dreg); |
|
2614 |
__ orl(dreg, ~(divisor - 1)); |
|
2615 |
__ increment(dreg); |
|
2616 |
__ bind(done); |
|
2617 |
} else { |
|
2618 |
ShouldNotReachHere(); |
|
2619 |
} |
|
2620 |
} else { |
|
2621 |
Register rreg = right->as_register(); |
|
2622 |
assert(lreg == rax, "left register must be rax,"); |
|
2623 |
assert(rreg != rdx, "right register must not be rdx"); |
|
2624 |
assert(temp->as_register() == rdx, "tmp register must be rdx"); |
|
2625 |
||
2626 |
move_regs(lreg, rax); |
|
2627 |
||
2628 |
int idivl_offset = __ corrected_idivl(rreg); |
|
2629 |
add_debug_info_for_div0(idivl_offset, info); |
|
2630 |
if (code == lir_irem) { |
|
2631 |
move_regs(rdx, dreg); // result is in rdx |
|
2632 |
} else { |
|
2633 |
move_regs(rax, dreg); |
|
2634 |
} |
|
2635 |
} |
|
2636 |
} |
|
2637 |
||
2638 |
||
2639 |
void LIR_Assembler::comp_op(LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, LIR_Op2* op) { |
|
2640 |
if (opr1->is_single_cpu()) { |
|
2641 |
Register reg1 = opr1->as_register(); |
|
2642 |
if (opr2->is_single_cpu()) { |
|
2643 |
// cpu register - cpu register |
|
1066 | 2644 |
if (opr1->type() == T_OBJECT || opr1->type() == T_ARRAY) { |
2645 |
__ cmpptr(reg1, opr2->as_register()); |
|
2646 |
} else { |
|
2647 |
assert(opr2->type() != T_OBJECT && opr2->type() != T_ARRAY, "cmp int, oop?"); |
|
2648 |
__ cmpl(reg1, opr2->as_register()); |
|
2649 |
} |
|
1 | 2650 |
} else if (opr2->is_stack()) { |
2651 |
// cpu register - stack |
|
1066 | 2652 |
if (opr1->type() == T_OBJECT || opr1->type() == T_ARRAY) { |
2653 |
__ cmpptr(reg1, frame_map()->address_for_slot(opr2->single_stack_ix())); |
|
2654 |
} else { |
|
2655 |
__ cmpl(reg1, frame_map()->address_for_slot(opr2->single_stack_ix())); |
|
2656 |
} |
|
1 | 2657 |
} else if (opr2->is_constant()) { |
2658 |
// cpu register - constant |
|
2659 |
LIR_Const* c = opr2->as_constant_ptr(); |
|
2660 |
if (c->type() == T_INT) { |
|
2661 |
__ cmpl(reg1, c->as_jint()); |
|
1066 | 2662 |
} else if (c->type() == T_OBJECT || c->type() == T_ARRAY) { |
2663 |
// In 64bit oops are single register |
|
1 | 2664 |
jobject o = c->as_jobject(); |
2665 |
if (o == NULL) { |
|
1066 | 2666 |
__ cmpptr(reg1, (int32_t)NULL_WORD); |
1 | 2667 |
} else { |
1066 | 2668 |
#ifdef _LP64 |
2669 |
__ movoop(rscratch1, o); |
|
2670 |
__ cmpptr(reg1, rscratch1); |
|
2671 |
#else |
|
1 | 2672 |
__ cmpoop(reg1, c->as_jobject()); |
1066 | 2673 |
#endif // _LP64 |
1 | 2674 |
} |
2675 |
} else { |
|
2676 |
ShouldNotReachHere(); |
|
2677 |
} |
|
2678 |
// cpu register - address |
|
2679 |
} else if (opr2->is_address()) { |
|
2680 |
if (op->info() != NULL) { |
|
2681 |
add_debug_info_for_null_check_here(op->info()); |
|
2682 |
} |
|
2683 |
__ cmpl(reg1, as_Address(opr2->as_address_ptr())); |
|
2684 |
} else { |
|
2685 |
ShouldNotReachHere(); |
|
2686 |
} |
|
2687 |
||
2688 |
} else if(opr1->is_double_cpu()) { |
|
2689 |
Register xlo = opr1->as_register_lo(); |
|
2690 |
Register xhi = opr1->as_register_hi(); |
|
2691 |
if (opr2->is_double_cpu()) { |
|
1066 | 2692 |
#ifdef _LP64 |
2693 |
__ cmpptr(xlo, opr2->as_register_lo()); |
|
2694 |
#else |
|
1 | 2695 |
// cpu register - cpu register |
2696 |
Register ylo = opr2->as_register_lo(); |
|
2697 |
Register yhi = opr2->as_register_hi(); |
|
2698 |
__ subl(xlo, ylo); |
|
2699 |
__ sbbl(xhi, yhi); |
|
2700 |
if (condition == lir_cond_equal || condition == lir_cond_notEqual) { |
|
2701 |
__ orl(xhi, xlo); |
|
2702 |
} |
|
1066 | 2703 |
#endif // _LP64 |
1 | 2704 |
} else if (opr2->is_constant()) { |
2705 |
// cpu register - constant 0 |
|
2706 |
assert(opr2->as_jlong() == (jlong)0, "only handles zero"); |
|
1066 | 2707 |
#ifdef _LP64 |
2708 |
__ cmpptr(xlo, (int32_t)opr2->as_jlong()); |
|
2709 |
#else |
|
1 | 2710 |
assert(condition == lir_cond_equal || condition == lir_cond_notEqual, "only handles equals case"); |
2711 |
__ orl(xhi, xlo); |
|
1066 | 2712 |
#endif // _LP64 |
1 | 2713 |
} else { |
2714 |
ShouldNotReachHere(); |
|
2715 |
} |
|
2716 |
||
2717 |
} else if (opr1->is_single_xmm()) { |
|
2718 |
XMMRegister reg1 = opr1->as_xmm_float_reg(); |
|
2719 |
if (opr2->is_single_xmm()) { |
|
2720 |
// xmm register - xmm register |
|
2721 |
__ ucomiss(reg1, opr2->as_xmm_float_reg()); |
|
2722 |
} else if (opr2->is_stack()) { |
|
2723 |
// xmm register - stack |
|
2724 |
__ ucomiss(reg1, frame_map()->address_for_slot(opr2->single_stack_ix())); |
|
2725 |
} else if (opr2->is_constant()) { |
|
2726 |
// xmm register - constant |
|
2727 |
__ ucomiss(reg1, InternalAddress(float_constant(opr2->as_jfloat()))); |
|
2728 |
} else if (opr2->is_address()) { |
|
2729 |
// xmm register - address |
|
2730 |
if (op->info() != NULL) { |
|
2731 |
add_debug_info_for_null_check_here(op->info()); |
|
2732 |
} |
|
2733 |
__ ucomiss(reg1, as_Address(opr2->as_address_ptr())); |
|
2734 |
} else { |
|
2735 |
ShouldNotReachHere(); |
|
2736 |
} |
|
2737 |
||
2738 |
} else if (opr1->is_double_xmm()) { |
|
2739 |
XMMRegister reg1 = opr1->as_xmm_double_reg(); |
|
2740 |
if (opr2->is_double_xmm()) { |
|
2741 |
// xmm register - xmm register |
|
2742 |
__ ucomisd(reg1, opr2->as_xmm_double_reg()); |
|
2743 |
} else if (opr2->is_stack()) { |
|
2744 |
// xmm register - stack |
|
2745 |
__ ucomisd(reg1, frame_map()->address_for_slot(opr2->double_stack_ix())); |
|
2746 |
} else if (opr2->is_constant()) { |
|
2747 |
// xmm register - constant |
|
2748 |
__ ucomisd(reg1, InternalAddress(double_constant(opr2->as_jdouble()))); |
|
2749 |
} else if (opr2->is_address()) { |
|
2750 |
// xmm register - address |
|
2751 |
if (op->info() != NULL) { |
|
2752 |
add_debug_info_for_null_check_here(op->info()); |
|
2753 |
} |
|
2754 |
__ ucomisd(reg1, as_Address(opr2->pointer()->as_address())); |
|
2755 |
} else { |
|
2756 |
ShouldNotReachHere(); |
|
2757 |
} |
|
2758 |
||
2759 |
} else if(opr1->is_single_fpu() || opr1->is_double_fpu()) { |
|
2760 |
assert(opr1->is_fpu_register() && opr1->fpu() == 0, "currently left-hand side must be on TOS (relax this restriction)"); |
|
2761 |
assert(opr2->is_fpu_register(), "both must be registers"); |
|
2762 |
__ fcmp(noreg, opr2->fpu(), op->fpu_pop_count() > 0, op->fpu_pop_count() > 1); |
|
2763 |
||
2764 |
} else if (opr1->is_address() && opr2->is_constant()) { |
|
1066 | 2765 |
LIR_Const* c = opr2->as_constant_ptr(); |
2766 |
#ifdef _LP64 |
|
2767 |
if (c->type() == T_OBJECT || c->type() == T_ARRAY) { |
|
2768 |
assert(condition == lir_cond_equal || condition == lir_cond_notEqual, "need to reverse"); |
|
2769 |
__ movoop(rscratch1, c->as_jobject()); |
|
2770 |
} |
|
2771 |
#endif // LP64 |
|
1 | 2772 |
if (op->info() != NULL) { |
2773 |
add_debug_info_for_null_check_here(op->info()); |
|
2774 |
} |
|
2775 |
// special case: address - constant |
|
2776 |
LIR_Address* addr = opr1->as_address_ptr(); |
|
2777 |
if (c->type() == T_INT) { |
|
2778 |
__ cmpl(as_Address(addr), c->as_jint()); |
|
1066 | 2779 |
} else if (c->type() == T_OBJECT || c->type() == T_ARRAY) { |
2780 |
#ifdef _LP64 |
|
2781 |
// %%% Make this explode if addr isn't reachable until we figure out a |
|
2782 |
// better strategy by giving noreg as the temp for as_Address |
|
2783 |
__ cmpptr(rscratch1, as_Address(addr, noreg)); |
|
2784 |
#else |
|
1 | 2785 |
__ cmpoop(as_Address(addr), c->as_jobject()); |
1066 | 2786 |
#endif // _LP64 |
1 | 2787 |
} else { |
2788 |
ShouldNotReachHere(); |
|
2789 |
} |
|
2790 |
||
2791 |
} else { |
|
2792 |
ShouldNotReachHere(); |
|
2793 |
} |
|
2794 |
} |
|
2795 |
||
2796 |
void LIR_Assembler::comp_fl2i(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr dst, LIR_Op2* op) { |
|
2797 |
if (code == lir_cmp_fd2i || code == lir_ucmp_fd2i) { |
|
2798 |
if (left->is_single_xmm()) { |
|
2799 |
assert(right->is_single_xmm(), "must match"); |
|
2800 |
__ cmpss2int(left->as_xmm_float_reg(), right->as_xmm_float_reg(), dst->as_register(), code == lir_ucmp_fd2i); |
|
2801 |
} else if (left->is_double_xmm()) { |
|
2802 |
assert(right->is_double_xmm(), "must match"); |
|
2803 |
__ cmpsd2int(left->as_xmm_double_reg(), right->as_xmm_double_reg(), dst->as_register(), code == lir_ucmp_fd2i); |
|
2804 |
||
2805 |
} else { |
|
2806 |
assert(left->is_single_fpu() || left->is_double_fpu(), "must be"); |
|
2807 |
assert(right->is_single_fpu() || right->is_double_fpu(), "must match"); |
|
2808 |
||
2809 |
assert(left->fpu() == 0, "left must be on TOS"); |
|
2810 |
__ fcmp2int(dst->as_register(), code == lir_ucmp_fd2i, right->fpu(), |
|
2811 |
op->fpu_pop_count() > 0, op->fpu_pop_count() > 1); |
|
2812 |
} |
|
2813 |
} else { |
|
2814 |
assert(code == lir_cmp_l2i, "check"); |
|
1066 | 2815 |
#ifdef _LP64 |
5253 | 2816 |
Label done; |
2817 |
Register dest = dst->as_register(); |
|
2818 |
__ cmpptr(left->as_register_lo(), right->as_register_lo()); |
|
2819 |
__ movl(dest, -1); |
|
2820 |
__ jccb(Assembler::less, done); |
|
2821 |
__ set_byte_if_not_zero(dest); |
|
2822 |
__ movzbl(dest, dest); |
|
2823 |
__ bind(done); |
|
1066 | 2824 |
#else |
1 | 2825 |
__ lcmp2int(left->as_register_hi(), |
2826 |
left->as_register_lo(), |
|
2827 |
right->as_register_hi(), |
|
2828 |
right->as_register_lo()); |
|
2829 |
move_regs(left->as_register_hi(), dst->as_register()); |
|
1066 | 2830 |
#endif // _LP64 |
1 | 2831 |
} |
2832 |
} |
|
2833 |
||
2834 |
||
2835 |
void LIR_Assembler::align_call(LIR_Code code) { |
|
2836 |
if (os::is_MP()) { |
|
2837 |
// make sure that the displacement word of the call ends up word aligned |
|
2838 |
int offset = __ offset(); |
|
2839 |
switch (code) { |
|
2840 |
case lir_static_call: |
|
2841 |
case lir_optvirtual_call: |
|
5046 | 2842 |
case lir_dynamic_call: |
1 | 2843 |
offset += NativeCall::displacement_offset; |
2844 |
break; |
|
2845 |
case lir_icvirtual_call: |
|
2846 |
offset += NativeCall::displacement_offset + NativeMovConstReg::instruction_size; |
|
2847 |
break; |
|
2848 |
case lir_virtual_call: // currently, sparc-specific for niagara |
|
2849 |
default: ShouldNotReachHere(); |
|
2850 |
} |
|
2851 |
while (offset++ % BytesPerWord != 0) { |
|
2852 |
__ nop(); |
|
2853 |
} |
|
2854 |
} |
|
2855 |
} |
|
2856 |
||
2857 |
||
5046 | 2858 |
void LIR_Assembler::call(LIR_OpJavaCall* op, relocInfo::relocType rtype) { |
1 | 2859 |
assert(!os::is_MP() || (__ offset() + NativeCall::displacement_offset) % BytesPerWord == 0, |
2860 |
"must be aligned"); |
|
5046 | 2861 |
__ call(AddressLiteral(op->addr(), rtype)); |
5687 | 2862 |
add_call_info(code_offset(), op->info()); |
1 | 2863 |
} |
2864 |
||
2865 |
||
5046 | 2866 |
void LIR_Assembler::ic_call(LIR_OpJavaCall* op) { |
1 | 2867 |
RelocationHolder rh = virtual_call_Relocation::spec(pc()); |
2868 |
__ movoop(IC_Klass, (jobject)Universe::non_oop_word()); |
|
2869 |
assert(!os::is_MP() || |
|
2870 |
(__ offset() + NativeCall::displacement_offset) % BytesPerWord == 0, |
|
2871 |
"must be aligned"); |
|
5046 | 2872 |
__ call(AddressLiteral(op->addr(), rh)); |
5687 | 2873 |
add_call_info(code_offset(), op->info()); |
1 | 2874 |
} |
2875 |
||
2876 |
||
2877 |
/* Currently, vtable-dispatch is only enabled for sparc platforms */ |
|
5046 | 2878 |
void LIR_Assembler::vtable_call(LIR_OpJavaCall* op) { |
1 | 2879 |
ShouldNotReachHere(); |
2880 |
} |
|
2881 |
||
5046 | 2882 |
|
1 | 2883 |
void LIR_Assembler::emit_static_call_stub() { |
2884 |
address call_pc = __ pc(); |
|
2885 |
address stub = __ start_a_stub(call_stub_size); |
|
2886 |
if (stub == NULL) { |
|
2887 |
bailout("static call stub overflow"); |
|
2888 |
return; |
|
2889 |
} |
|
2890 |
||
2891 |
int start = __ offset(); |
|
2892 |
if (os::is_MP()) { |
|
2893 |
// make sure that the displacement word of the call ends up word aligned |
|
2894 |
int offset = __ offset() + NativeMovConstReg::instruction_size + NativeCall::displacement_offset; |
|
2895 |
while (offset++ % BytesPerWord != 0) { |
|
2896 |
__ nop(); |
|
2897 |
} |
|
2898 |
} |
|
2899 |
__ relocate(static_stub_Relocation::spec(call_pc)); |
|
2900 |
__ movoop(rbx, (jobject)NULL); |
|
2901 |
// must be set to -1 at code generation time |
|
2902 |
assert(!os::is_MP() || ((__ offset() + 1) % BytesPerWord) == 0, "must be aligned on MP"); |
|
1066 | 2903 |
// On 64bit this will die since it will take a movq & jmp, must be only a jmp |
2904 |
__ jump(RuntimeAddress(__ pc())); |
|
1 | 2905 |
|
5402
c51fd0c1d005
6888953: some calls to function-like macros are missing semicolons
jcoomes
parents:
5334
diff
changeset
|
2906 |
assert(__ offset() - start <= call_stub_size, "stub too big"); |
1 | 2907 |
__ end_a_stub(); |
2908 |
} |
|
2909 |
||
2910 |
||
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2911 |
void LIR_Assembler::throw_op(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) { |
1 | 2912 |
assert(exceptionOop->as_register() == rax, "must match"); |
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2913 |
assert(exceptionPC->as_register() == rdx, "must match"); |
1 | 2914 |
|
2915 |
// exception object is not added to oop map by LinearScan |
|
2916 |
// (LinearScan assumes that no oops are in fixed registers) |
|
2917 |
info->add_register_oop(exceptionOop); |
|
2918 |
Runtime1::StubID unwind_id; |
|
2919 |
||
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2920 |
// get current pc information |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2921 |
// pc is only needed if the method has an exception handler, the unwind code does not need it. |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2922 |
int pc_for_athrow_offset = __ offset(); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2923 |
InternalAddress pc_for_athrow(__ pc()); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2924 |
__ lea(exceptionPC->as_register(), pc_for_athrow); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2925 |
add_call_info(pc_for_athrow_offset, info); // for exception handler |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2926 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2927 |
__ verify_not_null_oop(rax); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2928 |
// search an exception handler (rax: exception oop, rdx: throwing pc) |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2929 |
if (compilation()->has_fpu_code()) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2930 |
unwind_id = Runtime1::handle_exception_id; |
1 | 2931 |
} else { |
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2932 |
unwind_id = Runtime1::handle_exception_nofpu_id; |
1 | 2933 |
} |
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2934 |
__ call(RuntimeAddress(Runtime1::entry_for(unwind_id))); |
1 | 2935 |
|
2936 |
// enough room for two byte trap |
|
2937 |
__ nop(); |
|
2938 |
} |
|
2939 |
||
2940 |
||
5334
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2941 |
void LIR_Assembler::unwind_op(LIR_Opr exceptionOop) { |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2942 |
assert(exceptionOop->as_register() == rax, "must match"); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2943 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2944 |
__ jmp(_unwind_handler_entry); |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2945 |
} |
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2946 |
|
b2d040a8d375
6939930: exception unwind changes in 6919934 hurts compilation speed
never
parents:
5253
diff
changeset
|
2947 |
|
1 | 2948 |
void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp) { |
2949 |
||
2950 |
// optimized version for linear scan: |
|
2951 |
// * count must be already in ECX (guaranteed by LinearScan) |
|
2952 |
// * left and dest must be equal |
|
2953 |
// * tmp must be unused |
|
2954 |
assert(count->as_register() == SHIFT_count, "count must be in ECX"); |
|
2955 |
assert(left == dest, "left and dest must be equal"); |
|
2956 |
assert(tmp->is_illegal(), "wasting a register if tmp is allocated"); |
|
2957 |
||
2958 |
if (left->is_single_cpu()) { |
|
2959 |
Register value = left->as_register(); |
|
2960 |
assert(value != SHIFT_count, "left cannot be ECX"); |
|
2961 |
||
2962 |
switch (code) { |
|
2963 |
case lir_shl: __ shll(value); break; |
|
2964 |
case lir_shr: __ sarl(value); break; |
|
2965 |
case lir_ushr: __ shrl(value); break; |
|
2966 |
default: ShouldNotReachHere(); |
|
2967 |
} |
|
2968 |
} else if (left->is_double_cpu()) { |
|
2969 |
Register lo = left->as_register_lo(); |
|
2970 |
Register hi = left->as_register_hi(); |
|
2971 |
assert(lo != SHIFT_count && hi != SHIFT_count, "left cannot be ECX"); |
|
1066 | 2972 |
#ifdef _LP64 |
2973 |
switch (code) { |
|
2974 |
case lir_shl: __ shlptr(lo); break; |
|
2975 |
case lir_shr: __ sarptr(lo); break; |
|
2976 |
case lir_ushr: __ shrptr(lo); break; |
|
2977 |
default: ShouldNotReachHere(); |
|
2978 |
} |
|
2979 |
#else |
|
1 | 2980 |
|
2981 |
switch (code) { |
|
2982 |
case lir_shl: __ lshl(hi, lo); break; |
|
2983 |
case lir_shr: __ lshr(hi, lo, true); break; |
|
2984 |
case lir_ushr: __ lshr(hi, lo, false); break; |
|
2985 |
default: ShouldNotReachHere(); |
|
2986 |
} |
|
1066 | 2987 |
#endif // LP64 |
1 | 2988 |
} else { |
2989 |
ShouldNotReachHere(); |
|
2990 |
} |
|
2991 |
} |
|
2992 |
||
2993 |
||
2994 |
void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest) { |
|
2995 |
if (dest->is_single_cpu()) { |
|
2996 |
// first move left into dest so that left is not destroyed by the shift |
|
2997 |
Register value = dest->as_register(); |
|
2998 |
count = count & 0x1F; // Java spec |
|
2999 |
||
3000 |
move_regs(left->as_register(), value); |
|
3001 |
switch (code) { |
|
3002 |
case lir_shl: __ shll(value, count); break; |
|
3003 |
case lir_shr: __ sarl(value, count); break; |
|
3004 |
case lir_ushr: __ shrl(value, count); break; |
|
3005 |
default: ShouldNotReachHere(); |
|
3006 |
} |
|
3007 |
} else if (dest->is_double_cpu()) { |
|
1066 | 3008 |
#ifndef _LP64 |
1 | 3009 |
Unimplemented(); |
1066 | 3010 |
#else |
3011 |
// first move left into dest so that left is not destroyed by the shift |
|
3012 |
Register value = dest->as_register_lo(); |
|
3013 |
count = count & 0x1F; // Java spec |
|
3014 |
||
3015 |
move_regs(left->as_register_lo(), value); |
|
3016 |
switch (code) { |
|
3017 |
case lir_shl: __ shlptr(value, count); break; |
|
3018 |
case lir_shr: __ sarptr(value, count); break; |
|
3019 |
case lir_ushr: __ shrptr(value, count); break; |
|
3020 |
default: ShouldNotReachHere(); |
|
3021 |
} |
|
3022 |
#endif // _LP64 |
|
1 | 3023 |
} else { |
3024 |
ShouldNotReachHere(); |
|
3025 |
} |
|
3026 |
} |
|
3027 |
||
3028 |
||
3029 |
void LIR_Assembler::store_parameter(Register r, int offset_from_rsp_in_words) { |
|
3030 |
assert(offset_from_rsp_in_words >= 0, "invalid offset from rsp"); |
|
3031 |
int offset_from_rsp_in_bytes = offset_from_rsp_in_words * BytesPerWord; |
|
3032 |
assert(offset_from_rsp_in_bytes < frame_map()->reserved_argument_area_size(), "invalid offset"); |
|
1066 | 3033 |
__ movptr (Address(rsp, offset_from_rsp_in_bytes), r); |
1 | 3034 |
} |
3035 |
||
3036 |
||
3037 |
void LIR_Assembler::store_parameter(jint c, int offset_from_rsp_in_words) { |
|
3038 |
assert(offset_from_rsp_in_words >= 0, "invalid offset from rsp"); |
|
3039 |
int offset_from_rsp_in_bytes = offset_from_rsp_in_words * BytesPerWord; |
|
3040 |
assert(offset_from_rsp_in_bytes < frame_map()->reserved_argument_area_size(), "invalid offset"); |
|
1066 | 3041 |
__ movptr (Address(rsp, offset_from_rsp_in_bytes), c); |
1 | 3042 |
} |
3043 |
||
3044 |
||
3045 |
void LIR_Assembler::store_parameter(jobject o, int offset_from_rsp_in_words) { |
|
3046 |
assert(offset_from_rsp_in_words >= 0, "invalid offset from rsp"); |
|
3047 |
int offset_from_rsp_in_bytes = offset_from_rsp_in_words * BytesPerWord; |
|
3048 |
assert(offset_from_rsp_in_bytes < frame_map()->reserved_argument_area_size(), "invalid offset"); |
|
3049 |
__ movoop (Address(rsp, offset_from_rsp_in_bytes), o); |
|
3050 |
} |
|
3051 |
||
3052 |
||
3053 |
// This code replaces a call to arraycopy; no exception may |
|
3054 |
// be thrown in this code, they must be thrown in the System.arraycopy |
|
3055 |
// activation frame; we could save some checks if this would not be the case |
|
3056 |
void LIR_Assembler::emit_arraycopy(LIR_OpArrayCopy* op) { |
|
3057 |
ciArrayKlass* default_type = op->expected_type(); |
|
3058 |
Register src = op->src()->as_register(); |
|
3059 |
Register dst = op->dst()->as_register(); |
|
3060 |
Register src_pos = op->src_pos()->as_register(); |
|
3061 |
Register dst_pos = op->dst_pos()->as_register(); |
|
3062 |
Register length = op->length()->as_register(); |
|
3063 |
Register tmp = op->tmp()->as_register(); |
|
3064 |
||
3065 |
CodeStub* stub = op->stub(); |
|
3066 |
int flags = op->flags(); |
|
3067 |
BasicType basic_type = default_type != NULL ? default_type->element_type()->basic_type() : T_ILLEGAL; |
|
3068 |
if (basic_type == T_ARRAY) basic_type = T_OBJECT; |
|
3069 |
||
9102 | 3070 |
// if we don't know anything, just go through the generic arraycopy |
1 | 3071 |
if (default_type == NULL) { |
3072 |
Label done; |
|
3073 |
// save outgoing arguments on stack in case call to System.arraycopy is needed |
|
3074 |
// HACK ALERT. This code used to push the parameters in a hardwired fashion |
|
3075 |
// for interpreter calling conventions. Now we have to do it in new style conventions. |
|
3076 |
// For the moment until C1 gets the new register allocator I just force all the |
|
3077 |
// args to the right place (except the register args) and then on the back side |
|
3078 |
// reload the register args properly if we go slow path. Yuck |
|
3079 |
||
3080 |
// These are proper for the calling convention |
|
3081 |
store_parameter(length, 2); |
|
3082 |
store_parameter(dst_pos, 1); |
|
3083 |
store_parameter(dst, 0); |
|
3084 |
||
3085 |
// these are just temporary placements until we need to reload |
|
3086 |
store_parameter(src_pos, 3); |
|
3087 |
store_parameter(src, 4); |
|
1066 | 3088 |
NOT_LP64(assert(src == rcx && src_pos == rdx, "mismatch in calling convention");) |
3089 |
||
9102 | 3090 |
address C_entry = CAST_FROM_FN_PTR(address, Runtime1::arraycopy); |
3091 |
||
3092 |
address copyfunc_addr = StubRoutines::generic_arraycopy(); |
|
1 | 3093 |
|
3094 |
// pass arguments: may push as this is not a safepoint; SP must be fix at each safepoint |
|
1066 | 3095 |
#ifdef _LP64 |
3096 |
// The arguments are in java calling convention so we can trivially shift them to C |
|
3097 |
// convention |
|
3098 |
assert_different_registers(c_rarg0, j_rarg1, j_rarg2, j_rarg3, j_rarg4); |
|
3099 |
__ mov(c_rarg0, j_rarg0); |
|
3100 |
assert_different_registers(c_rarg1, j_rarg2, j_rarg3, j_rarg4); |
|
3101 |
__ mov(c_rarg1, j_rarg1); |
|
3102 |
assert_different_registers(c_rarg2, j_rarg3, j_rarg4); |
|
3103 |
__ mov(c_rarg2, j_rarg2); |
|
3104 |
assert_different_registers(c_rarg3, j_rarg4); |
|
3105 |
__ mov(c_rarg3, j_rarg3); |
|
3106 |
#ifdef _WIN64 |
|
3107 |
// Allocate abi space for args but be sure to keep stack aligned |
|
3108 |
__ subptr(rsp, 6*wordSize); |
|
3109 |
store_parameter(j_rarg4, 4); |
|
9102 | 3110 |
if (copyfunc_addr == NULL) { // Use C version if stub was not generated |
3111 |
__ call(RuntimeAddress(C_entry)); |
|
3112 |
} else { |
|
3113 |
#ifndef PRODUCT |
|
3114 |
if (PrintC1Statistics) { |
|
3115 |
__ incrementl(ExternalAddress((address)&Runtime1::_generic_arraycopystub_cnt)); |
|
3116 |
} |
|
3117 |
#endif |
|
3118 |
__ call(RuntimeAddress(copyfunc_addr)); |
|
3119 |
} |
|
1066 | 3120 |
__ addptr(rsp, 6*wordSize); |
3121 |
#else |
|
3122 |
__ mov(c_rarg4, j_rarg4); |
|
9102 | 3123 |
if (copyfunc_addr == NULL) { // Use C version if stub was not generated |
3124 |
__ call(RuntimeAddress(C_entry)); |
|
3125 |
} else { |
|
3126 |
#ifndef PRODUCT |
|
3127 |
if (PrintC1Statistics) { |
|
3128 |
__ incrementl(ExternalAddress((address)&Runtime1::_generic_arraycopystub_cnt)); |
|
3129 |
} |
|
3130 |
#endif |
|
3131 |
__ call(RuntimeAddress(copyfunc_addr)); |
|
3132 |
} |
|
1066 | 3133 |
#endif // _WIN64 |
3134 |
#else |
|
3135 |
__ push(length); |
|
3136 |
__ push(dst_pos); |
|
3137 |
__ push(dst); |
|
3138 |
__ push(src_pos); |
|
3139 |
__ push(src); |
|
9102 | 3140 |
|
3141 |
if (copyfunc_addr == NULL) { // Use C version if stub was not generated |
|
3142 |
__ call_VM_leaf(C_entry, 5); // removes pushed parameter from the stack |
|
3143 |
} else { |
|
3144 |
#ifndef PRODUCT |
|
3145 |
if (PrintC1Statistics) { |
|
3146 |
__ incrementl(ExternalAddress((address)&Runtime1::_generic_arraycopystub_cnt)); |
|
3147 |
} |
|
3148 |
#endif |
|
3149 |
__ call_VM_leaf(copyfunc_addr, 5); // removes pushed parameter from the stack |
|
3150 |
} |
|
1 | 3151 |
|
1066 | 3152 |
#endif // _LP64 |
3153 |
||
1 | 3154 |
__ cmpl(rax, 0); |
3155 |
__ jcc(Assembler::equal, *stub->continuation()); |
|
3156 |
||
9102 | 3157 |
if (copyfunc_addr != NULL) { |
3158 |
__ mov(tmp, rax); |
|
3159 |
__ xorl(tmp, -1); |
|
3160 |
} |
|
3161 |
||
1 | 3162 |
// Reload values from the stack so they are where the stub |
3163 |
// expects them. |
|
1066 | 3164 |
__ movptr (dst, Address(rsp, 0*BytesPerWord)); |
3165 |
__ movptr (dst_pos, Address(rsp, 1*BytesPerWord)); |
|
3166 |
__ movptr (length, Address(rsp, 2*BytesPerWord)); |
|
3167 |
__ movptr (src_pos, Address(rsp, 3*BytesPerWord)); |
|
3168 |
__ movptr (src, Address(rsp, 4*BytesPerWord)); |
|
9102 | 3169 |
|
3170 |
if (copyfunc_addr != NULL) { |
|
3171 |
__ subl(length, tmp); |
|
3172 |
__ addl(src_pos, tmp); |
|
3173 |
__ addl(dst_pos, tmp); |
|
3174 |
} |
|
1 | 3175 |
__ jmp(*stub->entry()); |
3176 |
||
3177 |
__ bind(*stub->continuation()); |
|
3178 |
return; |
|
3179 |
} |
|
3180 |
||
3181 |
assert(default_type != NULL && default_type->is_array_klass() && default_type->is_loaded(), "must be true at this point"); |
|
3182 |
||
202
dc13bf0e5d5d
6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents:
1
diff
changeset
|
3183 |
int elem_size = type2aelembytes(basic_type); |
1 | 3184 |
int shift_amount; |
3185 |
Address::ScaleFactor scale; |
|
3186 |
||
3187 |
switch (elem_size) { |
|
3188 |
case 1 : |
|
3189 |
shift_amount = 0; |
|
3190 |
scale = Address::times_1; |
|
3191 |
break; |
|
3192 |
case 2 : |
|
3193 |
shift_amount = 1; |
|
3194 |
scale = Address::times_2; |
|
3195 |
break; |
|
3196 |
case 4 : |
|
3197 |
shift_amount = 2; |
|
3198 |
scale = Address::times_4; |
|
3199 |
break; |
|
3200 |
case 8 : |
|
3201 |
shift_amount = 3; |
|
3202 |
scale = Address::times_8; |
|
3203 |
break; |
|
3204 |
default: |
|
3205 |
ShouldNotReachHere(); |
|
3206 |
} |
|
3207 |
||
3208 |
Address src_length_addr = Address(src, arrayOopDesc::length_offset_in_bytes()); |
|
3209 |
Address dst_length_addr = Address(dst, arrayOopDesc::length_offset_in_bytes()); |
|
3210 |
Address src_klass_addr = Address(src, oopDesc::klass_offset_in_bytes()); |
|
3211 |
Address dst_klass_addr = Address(dst, oopDesc::klass_offset_in_bytes()); |
|
3212 |
||
1066 | 3213 |
// length and pos's are all sign extended at this point on 64bit |
3214 |
||
1 | 3215 |
// test for NULL |
3216 |
if (flags & LIR_OpArrayCopy::src_null_check) { |
|
1066 | 3217 |
__ testptr(src, src); |
1 | 3218 |
__ jcc(Assembler::zero, *stub->entry()); |
3219 |
} |
|
3220 |
if (flags & LIR_OpArrayCopy::dst_null_check) { |
|
1066 | 3221 |
__ testptr(dst, dst); |
1 | 3222 |
__ jcc(Assembler::zero, *stub->entry()); |
3223 |
} |
|
3224 |
||
3225 |
// check if negative |
|
3226 |
if (flags & LIR_OpArrayCopy::src_pos_positive_check) { |
|
3227 |
__ testl(src_pos, src_pos); |
|
3228 |
__ jcc(Assembler::less, *stub->entry()); |
|
3229 |
} |
|
3230 |
if (flags & LIR_OpArrayCopy::dst_pos_positive_check) { |
|
3231 |
__ testl(dst_pos, dst_pos); |
|
3232 |
__ jcc(Assembler::less, *stub->entry()); |
|
3233 |
} |
|
3234 |
||
3235 |
if (flags & LIR_OpArrayCopy::src_range_check) { |
|
1066 | 3236 |
__ lea(tmp, Address(src_pos, length, Address::times_1, 0)); |
1 | 3237 |
__ cmpl(tmp, src_length_addr); |
3238 |
__ jcc(Assembler::above, *stub->entry()); |
|
3239 |
} |
|
3240 |
if (flags & LIR_OpArrayCopy::dst_range_check) { |
|
1066 | 3241 |
__ lea(tmp, Address(dst_pos, length, Address::times_1, 0)); |
1 | 3242 |
__ cmpl(tmp, dst_length_addr); |
3243 |
__ jcc(Assembler::above, *stub->entry()); |
|
3244 |
} |
|
3245 |
||
9102 | 3246 |
if (flags & LIR_OpArrayCopy::length_positive_check) { |
3247 |
__ testl(length, length); |
|
3248 |
__ jcc(Assembler::less, *stub->entry()); |
|
3249 |
__ jcc(Assembler::zero, *stub->continuation()); |
|
3250 |
} |
|
3251 |
||
3252 |
#ifdef _LP64 |
|
3253 |
__ movl2ptr(src_pos, src_pos); //higher 32bits must be null |
|
3254 |
__ movl2ptr(dst_pos, dst_pos); //higher 32bits must be null |
|
3255 |
#endif |
|
3256 |
||
1 | 3257 |
if (flags & LIR_OpArrayCopy::type_check) { |
9102 | 3258 |
// We don't know the array types are compatible |
3259 |
if (basic_type != T_OBJECT) { |
|
3260 |
// Simple test for basic type arrays |
|
3261 |
if (UseCompressedOops) { |
|
3262 |
__ movl(tmp, src_klass_addr); |
|
3263 |
__ cmpl(tmp, dst_klass_addr); |
|
3264 |
} else { |
|
3265 |
__ movptr(tmp, src_klass_addr); |
|
3266 |
__ cmpptr(tmp, dst_klass_addr); |
|
3267 |
} |
|
3268 |
__ jcc(Assembler::notEqual, *stub->entry()); |
|
7427 | 3269 |
} else { |
9102 | 3270 |
// For object arrays, if src is a sub class of dst then we can |
3271 |
// safely do the copy. |
|
3272 |
Label cont, slow; |
|
3273 |
||
3274 |
__ push(src); |
|
3275 |
__ push(dst); |
|
3276 |
||
3277 |
__ load_klass(src, src); |
|
3278 |
__ load_klass(dst, dst); |
|
3279 |
||
3280 |
__ check_klass_subtype_fast_path(src, dst, tmp, &cont, &slow, NULL); |
|
3281 |
||
3282 |
__ push(src); |
|
3283 |
__ push(dst); |
|
3284 |
__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::slow_subtype_check_id))); |
|
3285 |
__ pop(dst); |
|
3286 |
__ pop(src); |
|
3287 |
||
3288 |
__ cmpl(src, 0); |
|
3289 |
__ jcc(Assembler::notEqual, cont); |
|
3290 |
||
3291 |
__ bind(slow); |
|
3292 |
__ pop(dst); |
|
3293 |
__ pop(src); |
|
3294 |
||
3295 |
address copyfunc_addr = StubRoutines::checkcast_arraycopy(); |
|
3296 |
if (copyfunc_addr != NULL) { // use stub if available |
|
3297 |
// src is not a sub class of dst so we have to do a |
|
3298 |
// per-element check. |
|
3299 |
||
3300 |
int mask = LIR_OpArrayCopy::src_objarray|LIR_OpArrayCopy::dst_objarray; |
|
3301 |
if ((flags & mask) != mask) { |
|
3302 |
// Check that at least both of them object arrays. |
|
3303 |
assert(flags & mask, "one of the two should be known to be an object array"); |
|
3304 |
||
3305 |
if (!(flags & LIR_OpArrayCopy::src_objarray)) { |
|
3306 |
__ load_klass(tmp, src); |
|
3307 |
} else if (!(flags & LIR_OpArrayCopy::dst_objarray)) { |
|
3308 |
__ load_klass(tmp, dst); |
|
3309 |
} |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3310 |
int lh_offset = in_bytes(Klass::layout_helper_offset()); |
9102 | 3311 |
Address klass_lh_addr(tmp, lh_offset); |
3312 |
jint objArray_lh = Klass::array_layout_helper(T_OBJECT); |
|
3313 |
__ cmpl(klass_lh_addr, objArray_lh); |
|
3314 |
__ jcc(Assembler::notEqual, *stub->entry()); |
|
3315 |
} |
|
3316 |
||
9962
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3317 |
// Spill because stubs can use any register they like and it's |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3318 |
// easier to restore just those that we care about. |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3319 |
store_parameter(dst, 0); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3320 |
store_parameter(dst_pos, 1); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3321 |
store_parameter(length, 2); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3322 |
store_parameter(src_pos, 3); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3323 |
store_parameter(src, 4); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3324 |
|
9102 | 3325 |
#ifndef _LP64 |
3326 |
__ movptr(tmp, dst_klass_addr); |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3327 |
__ movptr(tmp, Address(tmp, objArrayKlass::element_klass_offset())); |
9102 | 3328 |
__ push(tmp); |
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3329 |
__ movl(tmp, Address(tmp, Klass::super_check_offset_offset())); |
9102 | 3330 |
__ push(tmp); |
3331 |
__ push(length); |
|
3332 |
__ lea(tmp, Address(dst, dst_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3333 |
__ push(tmp); |
|
3334 |
__ lea(tmp, Address(src, src_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3335 |
__ push(tmp); |
|
3336 |
||
3337 |
__ call_VM_leaf(copyfunc_addr, 5); |
|
3338 |
#else |
|
3339 |
__ movl2ptr(length, length); //higher 32bits must be null |
|
3340 |
||
3341 |
__ lea(c_rarg0, Address(src, src_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3342 |
assert_different_registers(c_rarg0, dst, dst_pos, length); |
|
3343 |
__ lea(c_rarg1, Address(dst, dst_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3344 |
assert_different_registers(c_rarg1, dst, length); |
|
3345 |
||
3346 |
__ mov(c_rarg2, length); |
|
3347 |
assert_different_registers(c_rarg2, dst); |
|
3348 |
||
3349 |
#ifdef _WIN64 |
|
3350 |
// Allocate abi space for args but be sure to keep stack aligned |
|
3351 |
__ subptr(rsp, 6*wordSize); |
|
3352 |
__ load_klass(c_rarg3, dst); |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3353 |
__ movptr(c_rarg3, Address(c_rarg3, objArrayKlass::element_klass_offset())); |
9102 | 3354 |
store_parameter(c_rarg3, 4); |
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3355 |
__ movl(c_rarg3, Address(c_rarg3, Klass::super_check_offset_offset())); |
9102 | 3356 |
__ call(RuntimeAddress(copyfunc_addr)); |
3357 |
__ addptr(rsp, 6*wordSize); |
|
3358 |
#else |
|
3359 |
__ load_klass(c_rarg4, dst); |
|
11430
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3360 |
__ movptr(c_rarg4, Address(c_rarg4, objArrayKlass::element_klass_offset())); |
718fc06da49a
7118863: Move sizeof(klassOopDesc) into the *Klass::*_offset_in_bytes() functions
stefank
parents:
10565
diff
changeset
|
3361 |
__ movl(c_rarg3, Address(c_rarg4, Klass::super_check_offset_offset())); |
9102 | 3362 |
__ call(RuntimeAddress(copyfunc_addr)); |
3363 |
#endif |
|
3364 |
||
3365 |
#endif |
|
3366 |
||
3367 |
#ifndef PRODUCT |
|
3368 |
if (PrintC1Statistics) { |
|
3369 |
Label failed; |
|
3370 |
__ testl(rax, rax); |
|
3371 |
__ jcc(Assembler::notZero, failed); |
|
3372 |
__ incrementl(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_cnt)); |
|
3373 |
__ bind(failed); |
|
3374 |
} |
|
3375 |
#endif |
|
3376 |
||
3377 |
__ testl(rax, rax); |
|
3378 |
__ jcc(Assembler::zero, *stub->continuation()); |
|
3379 |
||
3380 |
#ifndef PRODUCT |
|
3381 |
if (PrintC1Statistics) { |
|
3382 |
__ incrementl(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_attempt_cnt)); |
|
3383 |
} |
|
3384 |
#endif |
|
3385 |
||
3386 |
__ mov(tmp, rax); |
|
3387 |
||
3388 |
__ xorl(tmp, -1); |
|
3389 |
||
9962
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3390 |
// Restore previously spilled arguments |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3391 |
__ movptr (dst, Address(rsp, 0*BytesPerWord)); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3392 |
__ movptr (dst_pos, Address(rsp, 1*BytesPerWord)); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3393 |
__ movptr (length, Address(rsp, 2*BytesPerWord)); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3394 |
__ movptr (src_pos, Address(rsp, 3*BytesPerWord)); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3395 |
__ movptr (src, Address(rsp, 4*BytesPerWord)); |
8d04042c0547
7047491: C1: registers saved incorrectly when calling checkcast_arraycopy stub
iveresov
parents:
9958
diff
changeset
|
3396 |
|
9102 | 3397 |
|
3398 |
__ subl(length, tmp); |
|
3399 |
__ addl(src_pos, tmp); |
|
3400 |
__ addl(dst_pos, tmp); |
|
3401 |
} |
|
3402 |
||
3403 |
__ jmp(*stub->entry()); |
|
3404 |
||
3405 |
__ bind(cont); |
|
3406 |
__ pop(dst); |
|
3407 |
__ pop(src); |
|
7427 | 3408 |
} |
1 | 3409 |
} |
3410 |
||
3411 |
#ifdef ASSERT |
|
3412 |
if (basic_type != T_OBJECT || !(flags & LIR_OpArrayCopy::type_check)) { |
|
3413 |
// Sanity check the known type with the incoming class. For the |
|
3414 |
// primitive case the types must match exactly with src.klass and |
|
3415 |
// dst.klass each exactly matching the default type. For the |
|
3416 |
// object array case, if no type check is needed then either the |
|
3417 |
// dst type is exactly the expected type and the src type is a |
|
3418 |
// subtype which we can't check or src is the same array as dst |
|
3419 |
// but not necessarily exactly of type default_type. |
|
3420 |
Label known_ok, halt; |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2867
diff
changeset
|
3421 |
__ movoop(tmp, default_type->constant_encoding()); |
7427 | 3422 |
#ifdef _LP64 |
3423 |
if (UseCompressedOops) { |
|
3424 |
__ encode_heap_oop(tmp); |
|
3425 |
} |
|
3426 |
#endif |
|
3427 |
||
1 | 3428 |
if (basic_type != T_OBJECT) { |
7427 | 3429 |
|
3430 |
if (UseCompressedOops) __ cmpl(tmp, dst_klass_addr); |
|
3431 |
else __ cmpptr(tmp, dst_klass_addr); |
|
1 | 3432 |
__ jcc(Assembler::notEqual, halt); |
7427 | 3433 |
if (UseCompressedOops) __ cmpl(tmp, src_klass_addr); |
3434 |
else __ cmpptr(tmp, src_klass_addr); |
|
1 | 3435 |
__ jcc(Assembler::equal, known_ok); |
3436 |
} else { |
|
7427 | 3437 |
if (UseCompressedOops) __ cmpl(tmp, dst_klass_addr); |
3438 |
else __ cmpptr(tmp, dst_klass_addr); |
|
1 | 3439 |
__ jcc(Assembler::equal, known_ok); |
1066 | 3440 |
__ cmpptr(src, dst); |
1 | 3441 |
__ jcc(Assembler::equal, known_ok); |
3442 |
} |
|
3443 |
__ bind(halt); |
|
3444 |
__ stop("incorrect type information in arraycopy"); |
|
3445 |
__ bind(known_ok); |
|
3446 |
} |
|
3447 |
#endif |
|
3448 |
||
9102 | 3449 |
#ifndef PRODUCT |
3450 |
if (PrintC1Statistics) { |
|
3451 |
__ incrementl(ExternalAddress(Runtime1::arraycopy_count_address(basic_type))); |
|
1066 | 3452 |
} |
9102 | 3453 |
#endif |
1066 | 3454 |
|
3455 |
#ifdef _LP64 |
|
3456 |
assert_different_registers(c_rarg0, dst, dst_pos, length); |
|
3457 |
__ lea(c_rarg0, Address(src, src_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3458 |
assert_different_registers(c_rarg1, length); |
|
3459 |
__ lea(c_rarg1, Address(dst, dst_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
3460 |
__ mov(c_rarg2, length); |
|
3461 |
||
3462 |
#else |
|
3463 |
__ lea(tmp, Address(src, src_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
|
1 | 3464 |
store_parameter(tmp, 0); |
1066 | 3465 |
__ lea(tmp, Address(dst, dst_pos, scale, arrayOopDesc::base_offset_in_bytes(basic_type))); |
1 | 3466 |
store_parameter(tmp, 1); |
3467 |
store_parameter(length, 2); |
|
1066 | 3468 |
#endif // _LP64 |
9102 | 3469 |
|
3470 |
bool disjoint = (flags & LIR_OpArrayCopy::overlapping) == 0; |
|
3471 |
bool aligned = (flags & LIR_OpArrayCopy::unaligned) == 0; |
|
3472 |
const char *name; |
|
3473 |
address entry = StubRoutines::select_arraycopy_function(basic_type, aligned, disjoint, name, false); |
|
3474 |
__ call_VM_leaf(entry, 0); |
|
1 | 3475 |
|
3476 |
__ bind(*stub->continuation()); |
|
3477 |
} |
|
3478 |
||
3479 |
||
3480 |
void LIR_Assembler::emit_lock(LIR_OpLock* op) { |
|
3481 |
Register obj = op->obj_opr()->as_register(); // may not be an oop |
|
3482 |
Register hdr = op->hdr_opr()->as_register(); |
|
3483 |
Register lock = op->lock_opr()->as_register(); |
|
3484 |
if (!UseFastLocking) { |
|
3485 |
__ jmp(*op->stub()->entry()); |
|
3486 |
} else if (op->code() == lir_lock) { |
|
3487 |
Register scratch = noreg; |
|
3488 |
if (UseBiasedLocking) { |
|
3489 |
scratch = op->scratch_opr()->as_register(); |
|
3490 |
} |
|
3491 |
assert(BasicLock::displaced_header_offset_in_bytes() == 0, "lock_reg must point to the displaced header"); |
|
3492 |
// add debug info for NullPointerException only if one is possible |
|
3493 |
int null_check_offset = __ lock_object(hdr, obj, lock, scratch, *op->stub()->entry()); |
|
3494 |
if (op->info() != NULL) { |
|
3495 |
add_debug_info_for_null_check(null_check_offset, op->info()); |
|
3496 |
} |
|
3497 |
// done |
|
3498 |
} else if (op->code() == lir_unlock) { |
|
3499 |
assert(BasicLock::displaced_header_offset_in_bytes() == 0, "lock_reg must point to the displaced header"); |
|
3500 |
__ unlock_object(hdr, obj, lock, *op->stub()->entry()); |
|
3501 |
} else { |
|
3502 |
Unimplemented(); |
|
3503 |
} |
|
3504 |
__ bind(*op->stub()->continuation()); |
|
3505 |
} |
|
3506 |
||
3507 |
||
3508 |
void LIR_Assembler::emit_profile_call(LIR_OpProfileCall* op) { |
|
3509 |
ciMethod* method = op->profiled_method(); |
|
3510 |
int bci = op->profiled_bci(); |
|
3511 |
||
3512 |
// Update counter for all call types |
|
7432
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
3513 |
ciMethodData* md = method->method_data_or_null(); |
f06f1253c317
7003554: (tiered) assert(is_null_object() || handle() != NULL) failed: cannot embed null pointer
iveresov
parents:
7427
diff
changeset
|
3514 |
assert(md != NULL, "Sanity"); |
1 | 3515 |
ciProfileData* data = md->bci_to_data(bci); |
3516 |
assert(data->is_CounterData(), "need CounterData for calls"); |
|
3517 |
assert(op->mdo()->is_single_cpu(), "mdo must be allocated"); |
|
3518 |
Register mdo = op->mdo()->as_register(); |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2867
diff
changeset
|
3519 |
__ movoop(mdo, md->constant_encoding()); |
1 | 3520 |
Address counter_addr(mdo, md->byte_offset_of_slot(data, CounterData::count_offset())); |
3521 |
Bytecodes::Code bc = method->java_code_at_bci(bci); |
|
3522 |
// Perform additional virtual call profiling for invokevirtual and |
|
3523 |
// invokeinterface bytecodes |
|
3524 |
if ((bc == Bytecodes::_invokevirtual || bc == Bytecodes::_invokeinterface) && |
|
6453 | 3525 |
C1ProfileVirtualCalls) { |
1 | 3526 |
assert(op->recv()->is_single_cpu(), "recv must be allocated"); |
3527 |
Register recv = op->recv()->as_register(); |
|
3528 |
assert_different_registers(mdo, recv); |
|
3529 |
assert(data->is_VirtualCallData(), "need VirtualCallData for virtual calls"); |
|
3530 |
ciKlass* known_klass = op->known_holder(); |
|
6453 | 3531 |
if (C1OptimizeVirtualCallProfiling && known_klass != NULL) { |
1 | 3532 |
// We know the type that will be seen at this call site; we can |
3533 |
// statically update the methodDataOop rather than needing to do |
|
3534 |
// dynamic tests on the receiver type |
|
3535 |
||
3536 |
// NOTE: we should probably put a lock around this search to |
|
3537 |
// avoid collisions by concurrent compilations |
|
3538 |
ciVirtualCallData* vc_data = (ciVirtualCallData*) data; |
|
3539 |
uint i; |
|
3540 |
for (i = 0; i < VirtualCallData::row_limit(); i++) { |
|
3541 |
ciKlass* receiver = vc_data->receiver(i); |
|
3542 |
if (known_klass->equals(receiver)) { |
|
3543 |
Address data_addr(mdo, md->byte_offset_of_slot(data, VirtualCallData::receiver_count_offset(i))); |
|
6453 | 3544 |
__ addptr(data_addr, DataLayout::counter_increment); |
1 | 3545 |
return; |
3546 |
} |
|
3547 |
} |
|
3548 |
||
3549 |
// Receiver type not found in profile data; select an empty slot |
|
3550 |
||
3551 |
// Note that this is less efficient than it should be because it |
|
3552 |
// always does a write to the receiver part of the |
|
3553 |
// VirtualCallData rather than just the first time |
|
3554 |
for (i = 0; i < VirtualCallData::row_limit(); i++) { |
|
3555 |
ciKlass* receiver = vc_data->receiver(i); |
|
3556 |
if (receiver == NULL) { |
|
3557 |
Address recv_addr(mdo, md->byte_offset_of_slot(data, VirtualCallData::receiver_offset(i))); |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2867
diff
changeset
|
3558 |
__ movoop(recv_addr, known_klass->constant_encoding()); |
1 | 3559 |
Address data_addr(mdo, md->byte_offset_of_slot(data, VirtualCallData::receiver_count_offset(i))); |
6453 | 3560 |
__ addptr(data_addr, DataLayout::counter_increment); |
1 | 3561 |
return; |
3562 |
} |
|
3563 |
} |
|
3564 |
} else { |
|
7427 | 3565 |
__ load_klass(recv, recv); |
1 | 3566 |
Label update_done; |
6453 | 3567 |
type_profile_helper(mdo, md, data, recv, &update_done); |
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4752
diff
changeset
|
3568 |
// Receiver did not match any saved receiver and there is no empty row for it. |
4892
e977b527544a
6923002: assert(false,"this call site should not be polymorphic")
kvn
parents:
4754
diff
changeset
|
3569 |
// Increment total counter to indicate polymorphic case. |
6453 | 3570 |
__ addptr(counter_addr, DataLayout::counter_increment); |
1 | 3571 |
|
3572 |
__ bind(update_done); |
|
3573 |
} |
|
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4752
diff
changeset
|
3574 |
} else { |
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4752
diff
changeset
|
3575 |
// Static call |
6453 | 3576 |
__ addptr(counter_addr, DataLayout::counter_increment); |
1 | 3577 |
} |
3578 |
} |
|
3579 |
||
3580 |
void LIR_Assembler::emit_delay(LIR_OpDelay*) { |
|
3581 |
Unimplemented(); |
|
3582 |
} |
|
3583 |
||
3584 |
||
3585 |
void LIR_Assembler::monitor_address(int monitor_no, LIR_Opr dst) { |
|
1066 | 3586 |
__ lea(dst->as_register(), frame_map()->address_for_monitor_lock(monitor_no)); |
1 | 3587 |
} |
3588 |
||
3589 |
||
3590 |
void LIR_Assembler::align_backward_branch_target() { |
|
3591 |
__ align(BytesPerWord); |
|
3592 |
} |
|
3593 |
||
3594 |
||
3595 |
void LIR_Assembler::negate(LIR_Opr left, LIR_Opr dest) { |
|
3596 |
if (left->is_single_cpu()) { |
|
3597 |
__ negl(left->as_register()); |
|
3598 |
move_regs(left->as_register(), dest->as_register()); |
|
3599 |
||
3600 |
} else if (left->is_double_cpu()) { |
|
3601 |
Register lo = left->as_register_lo(); |
|
1066 | 3602 |
#ifdef _LP64 |
3603 |
Register dst = dest->as_register_lo(); |
|
3604 |
__ movptr(dst, lo); |
|
3605 |
__ negptr(dst); |
|
3606 |
#else |
|
1 | 3607 |
Register hi = left->as_register_hi(); |
3608 |
__ lneg(hi, lo); |
|
3609 |
if (dest->as_register_lo() == hi) { |
|
3610 |
assert(dest->as_register_hi() != lo, "destroying register"); |
|
3611 |
move_regs(hi, dest->as_register_hi()); |
|
3612 |
move_regs(lo, dest->as_register_lo()); |
|
3613 |
} else { |
|
3614 |
move_regs(lo, dest->as_register_lo()); |
|
3615 |
move_regs(hi, dest->as_register_hi()); |
|
3616 |
} |
|
1066 | 3617 |
#endif // _LP64 |
1 | 3618 |
|
3619 |
} else if (dest->is_single_xmm()) { |
|
3620 |
if (left->as_xmm_float_reg() != dest->as_xmm_float_reg()) { |
|
3621 |
__ movflt(dest->as_xmm_float_reg(), left->as_xmm_float_reg()); |
|
3622 |
} |
|
3623 |
__ xorps(dest->as_xmm_float_reg(), |
|
3624 |
ExternalAddress((address)float_signflip_pool)); |
|
3625 |
||
3626 |
} else if (dest->is_double_xmm()) { |
|
3627 |
if (left->as_xmm_double_reg() != dest->as_xmm_double_reg()) { |
|
3628 |
__ movdbl(dest->as_xmm_double_reg(), left->as_xmm_double_reg()); |
|
3629 |
} |
|
3630 |
__ xorpd(dest->as_xmm_double_reg(), |
|
3631 |
ExternalAddress((address)double_signflip_pool)); |
|
3632 |
||
3633 |
} else if (left->is_single_fpu() || left->is_double_fpu()) { |
|
3634 |
assert(left->fpu() == 0, "arg must be on TOS"); |
|
3635 |
assert(dest->fpu() == 0, "dest must be TOS"); |
|
3636 |
__ fchs(); |
|
3637 |
||
3638 |
} else { |
|
3639 |
ShouldNotReachHere(); |
|
3640 |
} |
|
3641 |
} |
|
3642 |
||
3643 |
||
3644 |
void LIR_Assembler::leal(LIR_Opr addr, LIR_Opr dest) { |
|
3645 |
assert(addr->is_address() && dest->is_register(), "check"); |
|
1066 | 3646 |
Register reg; |
3647 |
reg = dest->as_pointer_register(); |
|
3648 |
__ lea(reg, as_Address(addr->as_address_ptr())); |
|
1 | 3649 |
} |
3650 |
||
3651 |
||
3652 |
||
3653 |
void LIR_Assembler::rt_call(LIR_Opr result, address dest, const LIR_OprList* args, LIR_Opr tmp, CodeEmitInfo* info) { |
|
3654 |
assert(!tmp->is_valid(), "don't need temporary"); |
|
3655 |
__ call(RuntimeAddress(dest)); |
|
3656 |
if (info != NULL) { |
|
3657 |
add_call_info_here(info); |
|
3658 |
} |
|
3659 |
} |
|
3660 |
||
3661 |
||
3662 |
void LIR_Assembler::volatile_move_op(LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info) { |
|
3663 |
assert(type == T_LONG, "only for volatile long fields"); |
|
3664 |
||
3665 |
if (info != NULL) { |
|
3666 |
add_debug_info_for_null_check_here(info); |
|
3667 |
} |
|
3668 |
||
3669 |
if (src->is_double_xmm()) { |
|
3670 |
if (dest->is_double_cpu()) { |
|
1066 | 3671 |
#ifdef _LP64 |
3672 |
__ movdq(dest->as_register_lo(), src->as_xmm_double_reg()); |
|
3673 |
#else |
|
3674 |
__ movdl(dest->as_register_lo(), src->as_xmm_double_reg()); |
|
1 | 3675 |
__ psrlq(src->as_xmm_double_reg(), 32); |
1066 | 3676 |
__ movdl(dest->as_register_hi(), src->as_xmm_double_reg()); |
3677 |
#endif // _LP64 |
|
1 | 3678 |
} else if (dest->is_double_stack()) { |
3679 |
__ movdbl(frame_map()->address_for_slot(dest->double_stack_ix()), src->as_xmm_double_reg()); |
|
3680 |
} else if (dest->is_address()) { |
|
3681 |
__ movdbl(as_Address(dest->as_address_ptr()), src->as_xmm_double_reg()); |
|
3682 |
} else { |
|
3683 |
ShouldNotReachHere(); |
|
3684 |
} |
|
3685 |
||
3686 |
} else if (dest->is_double_xmm()) { |
|
3687 |
if (src->is_double_stack()) { |
|
3688 |
__ movdbl(dest->as_xmm_double_reg(), frame_map()->address_for_slot(src->double_stack_ix())); |
|
3689 |
} else if (src->is_address()) { |
|
3690 |
__ movdbl(dest->as_xmm_double_reg(), as_Address(src->as_address_ptr())); |
|
3691 |
} else { |
|
3692 |
ShouldNotReachHere(); |
|
3693 |
} |
|
3694 |
||
3695 |
} else if (src->is_double_fpu()) { |
|
3696 |
assert(src->fpu_regnrLo() == 0, "must be TOS"); |
|
3697 |
if (dest->is_double_stack()) { |
|
3698 |
__ fistp_d(frame_map()->address_for_slot(dest->double_stack_ix())); |
|
3699 |
} else if (dest->is_address()) { |
|
3700 |
__ fistp_d(as_Address(dest->as_address_ptr())); |
|
3701 |
} else { |
|
3702 |
ShouldNotReachHere(); |
|
3703 |
} |
|
3704 |
||
3705 |
} else if (dest->is_double_fpu()) { |
|
3706 |
assert(dest->fpu_regnrLo() == 0, "must be TOS"); |
|
3707 |
if (src->is_double_stack()) { |
|
3708 |
__ fild_d(frame_map()->address_for_slot(src->double_stack_ix())); |
|
3709 |
} else if (src->is_address()) { |
|
3710 |
__ fild_d(as_Address(src->as_address_ptr())); |
|
3711 |
} else { |
|
3712 |
ShouldNotReachHere(); |
|
3713 |
} |
|
3714 |
} else { |
|
3715 |
ShouldNotReachHere(); |
|
3716 |
} |
|
3717 |
} |
|
3718 |
||
3719 |
||
3720 |
void LIR_Assembler::membar() { |
|
1066 | 3721 |
// QQQ sparc TSO uses this, |
3722 |
__ membar( Assembler::Membar_mask_bits(Assembler::StoreLoad)); |
|
1 | 3723 |
} |
3724 |
||
3725 |
void LIR_Assembler::membar_acquire() { |
|
3726 |
// No x86 machines currently require load fences |
|
3727 |
// __ load_fence(); |
|
3728 |
} |
|
3729 |
||
3730 |
void LIR_Assembler::membar_release() { |
|
3731 |
// No x86 machines currently require store fences |
|
3732 |
// __ store_fence(); |
|
3733 |
} |
|
3734 |
||
11886
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3735 |
void LIR_Assembler::membar_loadload() { |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3736 |
// no-op |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3737 |
//__ membar(Assembler::Membar_mask_bits(Assembler::loadload)); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3738 |
} |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3739 |
|
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3740 |
void LIR_Assembler::membar_storestore() { |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3741 |
// no-op |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3742 |
//__ membar(Assembler::Membar_mask_bits(Assembler::storestore)); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3743 |
} |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3744 |
|
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3745 |
void LIR_Assembler::membar_loadstore() { |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3746 |
// no-op |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3747 |
//__ membar(Assembler::Membar_mask_bits(Assembler::loadstore)); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3748 |
} |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3749 |
|
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3750 |
void LIR_Assembler::membar_storeload() { |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3751 |
__ membar(Assembler::Membar_mask_bits(Assembler::StoreLoad)); |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3752 |
} |
feebf5c9f40c
7120481: storeStore barrier in constructor with final field
jiangli
parents:
11488
diff
changeset
|
3753 |
|
1 | 3754 |
void LIR_Assembler::get_thread(LIR_Opr result_reg) { |
3755 |
assert(result_reg->is_register(), "check"); |
|
1066 | 3756 |
#ifdef _LP64 |
3757 |
// __ get_thread(result_reg->as_register_lo()); |
|
3758 |
__ mov(result_reg->as_register(), r15_thread); |
|
3759 |
#else |
|
1 | 3760 |
__ get_thread(result_reg->as_register()); |
1066 | 3761 |
#endif // _LP64 |
1 | 3762 |
} |
3763 |
||
3764 |
||
3765 |
void LIR_Assembler::peephole(LIR_List*) { |
|
3766 |
// do nothing for now |
|
3767 |
} |
|
3768 |
||
3769 |
||
3770 |
#undef __ |