src/cpu/x86/vm/c1_LIRGenerator_x86.cpp

Fri, 25 Jan 2013 10:04:08 -0500

author
zgu
date
Fri, 25 Jan 2013 10:04:08 -0500
changeset 4492
8b46b0196eb0
parent 4159
8e47bac5643a
child 4860
46f6f063b272
permissions
-rw-r--r--

8000692: Remove old KERNEL code
Summary: Removed depreciated kernel VM source code from hotspot VM
Reviewed-by: dholmes, acorn

duke@435 1 /*
coleenp@4037 2 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "c1/c1_Compilation.hpp"
stefank@2314 27 #include "c1/c1_FrameMap.hpp"
stefank@2314 28 #include "c1/c1_Instruction.hpp"
stefank@2314 29 #include "c1/c1_LIRAssembler.hpp"
stefank@2314 30 #include "c1/c1_LIRGenerator.hpp"
stefank@2314 31 #include "c1/c1_Runtime1.hpp"
stefank@2314 32 #include "c1/c1_ValueStack.hpp"
stefank@2314 33 #include "ci/ciArray.hpp"
stefank@2314 34 #include "ci/ciObjArrayKlass.hpp"
stefank@2314 35 #include "ci/ciTypeArrayKlass.hpp"
stefank@2314 36 #include "runtime/sharedRuntime.hpp"
stefank@2314 37 #include "runtime/stubRoutines.hpp"
stefank@2314 38 #include "vmreg_x86.inline.hpp"
duke@435 39
duke@435 40 #ifdef ASSERT
duke@435 41 #define __ gen()->lir(__FILE__, __LINE__)->
duke@435 42 #else
duke@435 43 #define __ gen()->lir()->
duke@435 44 #endif
duke@435 45
duke@435 46 // Item will be loaded into a byte register; Intel only
duke@435 47 void LIRItem::load_byte_item() {
duke@435 48 load_item();
duke@435 49 LIR_Opr res = result();
duke@435 50
duke@435 51 if (!res->is_virtual() || !_gen->is_vreg_flag_set(res, LIRGenerator::byte_reg)) {
duke@435 52 // make sure that it is a byte register
duke@435 53 assert(!value()->type()->is_float() && !value()->type()->is_double(),
duke@435 54 "can't load floats in byte register");
duke@435 55 LIR_Opr reg = _gen->rlock_byte(T_BYTE);
duke@435 56 __ move(res, reg);
duke@435 57
duke@435 58 _result = reg;
duke@435 59 }
duke@435 60 }
duke@435 61
duke@435 62
duke@435 63 void LIRItem::load_nonconstant() {
duke@435 64 LIR_Opr r = value()->operand();
duke@435 65 if (r->is_constant()) {
duke@435 66 _result = r;
duke@435 67 } else {
duke@435 68 load_item();
duke@435 69 }
duke@435 70 }
duke@435 71
duke@435 72 //--------------------------------------------------------------
duke@435 73 // LIRGenerator
duke@435 74 //--------------------------------------------------------------
duke@435 75
duke@435 76
duke@435 77 LIR_Opr LIRGenerator::exceptionOopOpr() { return FrameMap::rax_oop_opr; }
duke@435 78 LIR_Opr LIRGenerator::exceptionPcOpr() { return FrameMap::rdx_opr; }
duke@435 79 LIR_Opr LIRGenerator::divInOpr() { return FrameMap::rax_opr; }
duke@435 80 LIR_Opr LIRGenerator::divOutOpr() { return FrameMap::rax_opr; }
duke@435 81 LIR_Opr LIRGenerator::remOutOpr() { return FrameMap::rdx_opr; }
duke@435 82 LIR_Opr LIRGenerator::shiftCountOpr() { return FrameMap::rcx_opr; }
duke@435 83 LIR_Opr LIRGenerator::syncTempOpr() { return FrameMap::rax_opr; }
duke@435 84 LIR_Opr LIRGenerator::getThreadTemp() { return LIR_OprFact::illegalOpr; }
duke@435 85
duke@435 86
duke@435 87 LIR_Opr LIRGenerator::result_register_for(ValueType* type, bool callee) {
duke@435 88 LIR_Opr opr;
duke@435 89 switch (type->tag()) {
duke@435 90 case intTag: opr = FrameMap::rax_opr; break;
duke@435 91 case objectTag: opr = FrameMap::rax_oop_opr; break;
never@739 92 case longTag: opr = FrameMap::long0_opr; break;
duke@435 93 case floatTag: opr = UseSSE >= 1 ? FrameMap::xmm0_float_opr : FrameMap::fpu0_float_opr; break;
duke@435 94 case doubleTag: opr = UseSSE >= 2 ? FrameMap::xmm0_double_opr : FrameMap::fpu0_double_opr; break;
duke@435 95
duke@435 96 case addressTag:
duke@435 97 default: ShouldNotReachHere(); return LIR_OprFact::illegalOpr;
duke@435 98 }
duke@435 99
duke@435 100 assert(opr->type_field() == as_OprType(as_BasicType(type)), "type mismatch");
duke@435 101 return opr;
duke@435 102 }
duke@435 103
duke@435 104
duke@435 105 LIR_Opr LIRGenerator::rlock_byte(BasicType type) {
duke@435 106 LIR_Opr reg = new_register(T_INT);
duke@435 107 set_vreg_flag(reg, LIRGenerator::byte_reg);
duke@435 108 return reg;
duke@435 109 }
duke@435 110
duke@435 111
duke@435 112 //--------- loading items into registers --------------------------------
duke@435 113
duke@435 114
duke@435 115 // i486 instructions can inline constants
duke@435 116 bool LIRGenerator::can_store_as_constant(Value v, BasicType type) const {
duke@435 117 if (type == T_SHORT || type == T_CHAR) {
duke@435 118 // there is no immediate move of word values in asembler_i486.?pp
duke@435 119 return false;
duke@435 120 }
duke@435 121 Constant* c = v->as_Constant();
roland@2174 122 if (c && c->state_before() == NULL) {
duke@435 123 // constants of any type can be stored directly, except for
duke@435 124 // unloaded object constants.
duke@435 125 return true;
duke@435 126 }
duke@435 127 return false;
duke@435 128 }
duke@435 129
duke@435 130
duke@435 131 bool LIRGenerator::can_inline_as_constant(Value v) const {
never@739 132 if (v->type()->tag() == longTag) return false;
duke@435 133 return v->type()->tag() != objectTag ||
duke@435 134 (v->type()->is_constant() && v->type()->as_ObjectType()->constant_value()->is_null_object());
duke@435 135 }
duke@435 136
duke@435 137
duke@435 138 bool LIRGenerator::can_inline_as_constant(LIR_Const* c) const {
never@739 139 if (c->type() == T_LONG) return false;
duke@435 140 return c->type() != T_OBJECT || c->as_jobject() == NULL;
duke@435 141 }
duke@435 142
duke@435 143
duke@435 144 LIR_Opr LIRGenerator::safepoint_poll_register() {
duke@435 145 return LIR_OprFact::illegalOpr;
duke@435 146 }
duke@435 147
duke@435 148
duke@435 149 LIR_Address* LIRGenerator::generate_address(LIR_Opr base, LIR_Opr index,
duke@435 150 int shift, int disp, BasicType type) {
duke@435 151 assert(base->is_register(), "must be");
duke@435 152 if (index->is_constant()) {
duke@435 153 return new LIR_Address(base,
duke@435 154 (index->as_constant_ptr()->as_jint() << shift) + disp,
duke@435 155 type);
duke@435 156 } else {
duke@435 157 return new LIR_Address(base, index, (LIR_Address::Scale)shift, disp, type);
duke@435 158 }
duke@435 159 }
duke@435 160
duke@435 161
duke@435 162 LIR_Address* LIRGenerator::emit_array_address(LIR_Opr array_opr, LIR_Opr index_opr,
duke@435 163 BasicType type, bool needs_card_mark) {
duke@435 164 int offset_in_bytes = arrayOopDesc::base_offset_in_bytes(type);
duke@435 165
duke@435 166 LIR_Address* addr;
duke@435 167 if (index_opr->is_constant()) {
kvn@464 168 int elem_size = type2aelembytes(type);
duke@435 169 addr = new LIR_Address(array_opr,
duke@435 170 offset_in_bytes + index_opr->as_jint() * elem_size, type);
duke@435 171 } else {
never@739 172 #ifdef _LP64
never@739 173 if (index_opr->type() == T_INT) {
never@739 174 LIR_Opr tmp = new_register(T_LONG);
never@739 175 __ convert(Bytecodes::_i2l, index_opr, tmp);
never@739 176 index_opr = tmp;
never@739 177 }
never@739 178 #endif // _LP64
duke@435 179 addr = new LIR_Address(array_opr,
duke@435 180 index_opr,
duke@435 181 LIR_Address::scale(type),
duke@435 182 offset_in_bytes, type);
duke@435 183 }
duke@435 184 if (needs_card_mark) {
duke@435 185 // This store will need a precise card mark, so go ahead and
duke@435 186 // compute the full adddres instead of computing once for the
duke@435 187 // store and again for the card mark.
never@739 188 LIR_Opr tmp = new_pointer_register();
duke@435 189 __ leal(LIR_OprFact::address(addr), tmp);
iveresov@1927 190 return new LIR_Address(tmp, type);
duke@435 191 } else {
duke@435 192 return addr;
duke@435 193 }
duke@435 194 }
duke@435 195
duke@435 196
iveresov@2138 197 LIR_Opr LIRGenerator::load_immediate(int x, BasicType type) {
iveresov@2138 198 LIR_Opr r;
iveresov@2138 199 if (type == T_LONG) {
iveresov@2138 200 r = LIR_OprFact::longConst(x);
iveresov@2138 201 } else if (type == T_INT) {
iveresov@2138 202 r = LIR_OprFact::intConst(x);
iveresov@2138 203 } else {
iveresov@2138 204 ShouldNotReachHere();
iveresov@2138 205 }
iveresov@2138 206 return r;
iveresov@2138 207 }
iveresov@2138 208
iveresov@2138 209 void LIRGenerator::increment_counter(address counter, BasicType type, int step) {
never@739 210 LIR_Opr pointer = new_pointer_register();
never@739 211 __ move(LIR_OprFact::intptrConst(counter), pointer);
iveresov@2138 212 LIR_Address* addr = new LIR_Address(pointer, type);
duke@435 213 increment_counter(addr, step);
duke@435 214 }
duke@435 215
duke@435 216
duke@435 217 void LIRGenerator::increment_counter(LIR_Address* addr, int step) {
duke@435 218 __ add((LIR_Opr)addr, LIR_OprFact::intConst(step), (LIR_Opr)addr);
duke@435 219 }
duke@435 220
duke@435 221 void LIRGenerator::cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info) {
duke@435 222 __ cmp_mem_int(condition, base, disp, c, info);
duke@435 223 }
duke@435 224
duke@435 225
duke@435 226 void LIRGenerator::cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, int disp, BasicType type, CodeEmitInfo* info) {
duke@435 227 __ cmp_reg_mem(condition, reg, new LIR_Address(base, disp, type), info);
duke@435 228 }
duke@435 229
duke@435 230
duke@435 231 void LIRGenerator::cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Opr base, LIR_Opr disp, BasicType type, CodeEmitInfo* info) {
duke@435 232 __ cmp_reg_mem(condition, reg, new LIR_Address(base, disp, type), info);
duke@435 233 }
duke@435 234
duke@435 235
duke@435 236 bool LIRGenerator::strength_reduce_multiply(LIR_Opr left, int c, LIR_Opr result, LIR_Opr tmp) {
duke@435 237 if (tmp->is_valid()) {
duke@435 238 if (is_power_of_2(c + 1)) {
duke@435 239 __ move(left, tmp);
duke@435 240 __ shift_left(left, log2_intptr(c + 1), left);
duke@435 241 __ sub(left, tmp, result);
duke@435 242 return true;
duke@435 243 } else if (is_power_of_2(c - 1)) {
duke@435 244 __ move(left, tmp);
duke@435 245 __ shift_left(left, log2_intptr(c - 1), left);
duke@435 246 __ add(left, tmp, result);
duke@435 247 return true;
duke@435 248 }
duke@435 249 }
duke@435 250 return false;
duke@435 251 }
duke@435 252
duke@435 253
duke@435 254 void LIRGenerator::store_stack_parameter (LIR_Opr item, ByteSize offset_from_sp) {
duke@435 255 BasicType type = item->type();
duke@435 256 __ store(item, new LIR_Address(FrameMap::rsp_opr, in_bytes(offset_from_sp), type));
duke@435 257 }
duke@435 258
duke@435 259 //----------------------------------------------------------------------
duke@435 260 // visitor functions
duke@435 261 //----------------------------------------------------------------------
duke@435 262
duke@435 263
duke@435 264 void LIRGenerator::do_StoreIndexed(StoreIndexed* x) {
roland@2174 265 assert(x->is_pinned(),"");
duke@435 266 bool needs_range_check = true;
duke@435 267 bool use_length = x->length() != NULL;
duke@435 268 bool obj_store = x->elt_type() == T_ARRAY || x->elt_type() == T_OBJECT;
duke@435 269 bool needs_store_check = obj_store && (x->value()->as_Constant() == NULL ||
iveresov@3153 270 !get_jobject_constant(x->value())->is_null_object() ||
iveresov@3153 271 x->should_profile());
duke@435 272
duke@435 273 LIRItem array(x->array(), this);
duke@435 274 LIRItem index(x->index(), this);
duke@435 275 LIRItem value(x->value(), this);
duke@435 276 LIRItem length(this);
duke@435 277
duke@435 278 array.load_item();
duke@435 279 index.load_nonconstant();
duke@435 280
duke@435 281 if (use_length) {
duke@435 282 needs_range_check = x->compute_needs_range_check();
duke@435 283 if (needs_range_check) {
duke@435 284 length.set_instruction(x->length());
duke@435 285 length.load_item();
duke@435 286 }
duke@435 287 }
duke@435 288 if (needs_store_check) {
duke@435 289 value.load_item();
duke@435 290 } else {
duke@435 291 value.load_for_store(x->elt_type());
duke@435 292 }
duke@435 293
duke@435 294 set_no_result(x);
duke@435 295
duke@435 296 // the CodeEmitInfo must be duplicated for each different
duke@435 297 // LIR-instruction because spilling can occur anywhere between two
duke@435 298 // instructions and so the debug information must be different
duke@435 299 CodeEmitInfo* range_check_info = state_for(x);
duke@435 300 CodeEmitInfo* null_check_info = NULL;
duke@435 301 if (x->needs_null_check()) {
duke@435 302 null_check_info = new CodeEmitInfo(range_check_info);
duke@435 303 }
duke@435 304
duke@435 305 // emit array address setup early so it schedules better
duke@435 306 LIR_Address* array_addr = emit_array_address(array.result(), index.result(), x->elt_type(), obj_store);
duke@435 307
duke@435 308 if (GenerateRangeChecks && needs_range_check) {
duke@435 309 if (use_length) {
duke@435 310 __ cmp(lir_cond_belowEqual, length.result(), index.result());
duke@435 311 __ branch(lir_cond_belowEqual, T_INT, new RangeCheckStub(range_check_info, index.result()));
duke@435 312 } else {
duke@435 313 array_range_check(array.result(), index.result(), null_check_info, range_check_info);
duke@435 314 // range_check also does the null check
duke@435 315 null_check_info = NULL;
duke@435 316 }
duke@435 317 }
duke@435 318
duke@435 319 if (GenerateArrayStoreCheck && needs_store_check) {
duke@435 320 LIR_Opr tmp1 = new_register(objectType);
duke@435 321 LIR_Opr tmp2 = new_register(objectType);
duke@435 322 LIR_Opr tmp3 = new_register(objectType);
duke@435 323
duke@435 324 CodeEmitInfo* store_check_info = new CodeEmitInfo(range_check_info);
iveresov@3153 325 __ store_check(value.result(), array.result(), tmp1, tmp2, tmp3, store_check_info, x->profiled_method(), x->profiled_bci());
duke@435 326 }
duke@435 327
duke@435 328 if (obj_store) {
ysr@777 329 // Needs GC write barriers.
johnc@2781 330 pre_barrier(LIR_OprFact::address(array_addr), LIR_OprFact::illegalOpr /* pre_val */,
johnc@2781 331 true /* do_load */, false /* patch */, NULL);
duke@435 332 __ move(value.result(), array_addr, null_check_info);
duke@435 333 // Seems to be a precise
duke@435 334 post_barrier(LIR_OprFact::address(array_addr), value.result());
duke@435 335 } else {
duke@435 336 __ move(value.result(), array_addr, null_check_info);
duke@435 337 }
duke@435 338 }
duke@435 339
duke@435 340
duke@435 341 void LIRGenerator::do_MonitorEnter(MonitorEnter* x) {
roland@2174 342 assert(x->is_pinned(),"");
duke@435 343 LIRItem obj(x->obj(), this);
duke@435 344 obj.load_item();
duke@435 345
duke@435 346 set_no_result(x);
duke@435 347
duke@435 348 // "lock" stores the address of the monitor stack slot, so this is not an oop
duke@435 349 LIR_Opr lock = new_register(T_INT);
duke@435 350 // Need a scratch register for biased locking on x86
duke@435 351 LIR_Opr scratch = LIR_OprFact::illegalOpr;
duke@435 352 if (UseBiasedLocking) {
duke@435 353 scratch = new_register(T_INT);
duke@435 354 }
duke@435 355
duke@435 356 CodeEmitInfo* info_for_exception = NULL;
duke@435 357 if (x->needs_null_check()) {
roland@2174 358 info_for_exception = state_for(x);
duke@435 359 }
duke@435 360 // this CodeEmitInfo must not have the xhandlers because here the
duke@435 361 // object is already locked (xhandlers expect object to be unlocked)
duke@435 362 CodeEmitInfo* info = state_for(x, x->state(), true);
duke@435 363 monitor_enter(obj.result(), lock, syncTempOpr(), scratch,
duke@435 364 x->monitor_no(), info_for_exception, info);
duke@435 365 }
duke@435 366
duke@435 367
duke@435 368 void LIRGenerator::do_MonitorExit(MonitorExit* x) {
roland@2174 369 assert(x->is_pinned(),"");
duke@435 370
duke@435 371 LIRItem obj(x->obj(), this);
duke@435 372 obj.dont_load_item();
duke@435 373
duke@435 374 LIR_Opr lock = new_register(T_INT);
duke@435 375 LIR_Opr obj_temp = new_register(T_INT);
duke@435 376 set_no_result(x);
bobv@2036 377 monitor_exit(obj_temp, lock, syncTempOpr(), LIR_OprFact::illegalOpr, x->monitor_no());
duke@435 378 }
duke@435 379
duke@435 380
duke@435 381 // _ineg, _lneg, _fneg, _dneg
duke@435 382 void LIRGenerator::do_NegateOp(NegateOp* x) {
duke@435 383 LIRItem value(x->x(), this);
duke@435 384 value.set_destroys_register();
duke@435 385 value.load_item();
duke@435 386 LIR_Opr reg = rlock(x);
duke@435 387 __ negate(value.result(), reg);
duke@435 388
duke@435 389 set_result(x, round_item(reg));
duke@435 390 }
duke@435 391
duke@435 392
duke@435 393 // for _fadd, _fmul, _fsub, _fdiv, _frem
duke@435 394 // _dadd, _dmul, _dsub, _ddiv, _drem
duke@435 395 void LIRGenerator::do_ArithmeticOp_FPU(ArithmeticOp* x) {
duke@435 396 LIRItem left(x->x(), this);
duke@435 397 LIRItem right(x->y(), this);
duke@435 398 LIRItem* left_arg = &left;
duke@435 399 LIRItem* right_arg = &right;
duke@435 400 assert(!left.is_stack() || !right.is_stack(), "can't both be memory operands");
duke@435 401 bool must_load_both = (x->op() == Bytecodes::_frem || x->op() == Bytecodes::_drem);
duke@435 402 if (left.is_register() || x->x()->type()->is_constant() || must_load_both) {
duke@435 403 left.load_item();
duke@435 404 } else {
duke@435 405 left.dont_load_item();
duke@435 406 }
duke@435 407
duke@435 408 // do not load right operand if it is a constant. only 0 and 1 are
duke@435 409 // loaded because there are special instructions for loading them
duke@435 410 // without memory access (not needed for SSE2 instructions)
duke@435 411 bool must_load_right = false;
duke@435 412 if (right.is_constant()) {
duke@435 413 LIR_Const* c = right.result()->as_constant_ptr();
duke@435 414 assert(c != NULL, "invalid constant");
duke@435 415 assert(c->type() == T_FLOAT || c->type() == T_DOUBLE, "invalid type");
duke@435 416
duke@435 417 if (c->type() == T_FLOAT) {
duke@435 418 must_load_right = UseSSE < 1 && (c->is_one_float() || c->is_zero_float());
duke@435 419 } else {
duke@435 420 must_load_right = UseSSE < 2 && (c->is_one_double() || c->is_zero_double());
duke@435 421 }
duke@435 422 }
duke@435 423
duke@435 424 if (must_load_both) {
duke@435 425 // frem and drem destroy also right operand, so move it to a new register
duke@435 426 right.set_destroys_register();
duke@435 427 right.load_item();
duke@435 428 } else if (right.is_register() || must_load_right) {
duke@435 429 right.load_item();
duke@435 430 } else {
duke@435 431 right.dont_load_item();
duke@435 432 }
duke@435 433 LIR_Opr reg = rlock(x);
duke@435 434 LIR_Opr tmp = LIR_OprFact::illegalOpr;
duke@435 435 if (x->is_strictfp() && (x->op() == Bytecodes::_dmul || x->op() == Bytecodes::_ddiv)) {
duke@435 436 tmp = new_register(T_DOUBLE);
duke@435 437 }
duke@435 438
duke@435 439 if ((UseSSE >= 1 && x->op() == Bytecodes::_frem) || (UseSSE >= 2 && x->op() == Bytecodes::_drem)) {
duke@435 440 // special handling for frem and drem: no SSE instruction, so must use FPU with temporary fpu stack slots
duke@435 441 LIR_Opr fpu0, fpu1;
duke@435 442 if (x->op() == Bytecodes::_frem) {
duke@435 443 fpu0 = LIR_OprFact::single_fpu(0);
duke@435 444 fpu1 = LIR_OprFact::single_fpu(1);
duke@435 445 } else {
duke@435 446 fpu0 = LIR_OprFact::double_fpu(0);
duke@435 447 fpu1 = LIR_OprFact::double_fpu(1);
duke@435 448 }
duke@435 449 __ move(right.result(), fpu1); // order of left and right operand is important!
duke@435 450 __ move(left.result(), fpu0);
duke@435 451 __ rem (fpu0, fpu1, fpu0);
duke@435 452 __ move(fpu0, reg);
duke@435 453
duke@435 454 } else {
duke@435 455 arithmetic_op_fpu(x->op(), reg, left.result(), right.result(), x->is_strictfp(), tmp);
duke@435 456 }
duke@435 457
duke@435 458 set_result(x, round_item(reg));
duke@435 459 }
duke@435 460
duke@435 461
duke@435 462 // for _ladd, _lmul, _lsub, _ldiv, _lrem
duke@435 463 void LIRGenerator::do_ArithmeticOp_Long(ArithmeticOp* x) {
duke@435 464 if (x->op() == Bytecodes::_ldiv || x->op() == Bytecodes::_lrem ) {
duke@435 465 // long division is implemented as a direct call into the runtime
duke@435 466 LIRItem left(x->x(), this);
duke@435 467 LIRItem right(x->y(), this);
duke@435 468
duke@435 469 // the check for division by zero destroys the right operand
duke@435 470 right.set_destroys_register();
duke@435 471
duke@435 472 BasicTypeList signature(2);
duke@435 473 signature.append(T_LONG);
duke@435 474 signature.append(T_LONG);
duke@435 475 CallingConvention* cc = frame_map()->c_calling_convention(&signature);
duke@435 476
duke@435 477 // check for division by zero (destroys registers of right operand!)
duke@435 478 CodeEmitInfo* info = state_for(x);
duke@435 479
duke@435 480 const LIR_Opr result_reg = result_register_for(x->type());
duke@435 481 left.load_item_force(cc->at(1));
duke@435 482 right.load_item();
duke@435 483
duke@435 484 __ move(right.result(), cc->at(0));
duke@435 485
duke@435 486 __ cmp(lir_cond_equal, right.result(), LIR_OprFact::longConst(0));
duke@435 487 __ branch(lir_cond_equal, T_LONG, new DivByZeroStub(info));
duke@435 488
duke@435 489 address entry;
duke@435 490 switch (x->op()) {
duke@435 491 case Bytecodes::_lrem:
duke@435 492 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lrem);
duke@435 493 break; // check if dividend is 0 is done elsewhere
duke@435 494 case Bytecodes::_ldiv:
duke@435 495 entry = CAST_FROM_FN_PTR(address, SharedRuntime::ldiv);
duke@435 496 break; // check if dividend is 0 is done elsewhere
duke@435 497 case Bytecodes::_lmul:
duke@435 498 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lmul);
duke@435 499 break;
duke@435 500 default:
duke@435 501 ShouldNotReachHere();
duke@435 502 }
duke@435 503
duke@435 504 LIR_Opr result = rlock_result(x);
duke@435 505 __ call_runtime_leaf(entry, getThreadTemp(), result_reg, cc->args());
duke@435 506 __ move(result_reg, result);
duke@435 507 } else if (x->op() == Bytecodes::_lmul) {
duke@435 508 // missing test if instr is commutative and if we should swap
duke@435 509 LIRItem left(x->x(), this);
duke@435 510 LIRItem right(x->y(), this);
duke@435 511
duke@435 512 // right register is destroyed by the long mul, so it must be
duke@435 513 // copied to a new register.
duke@435 514 right.set_destroys_register();
duke@435 515
duke@435 516 left.load_item();
duke@435 517 right.load_item();
duke@435 518
never@739 519 LIR_Opr reg = FrameMap::long0_opr;
duke@435 520 arithmetic_op_long(x->op(), reg, left.result(), right.result(), NULL);
duke@435 521 LIR_Opr result = rlock_result(x);
duke@435 522 __ move(reg, result);
duke@435 523 } else {
duke@435 524 // missing test if instr is commutative and if we should swap
duke@435 525 LIRItem left(x->x(), this);
duke@435 526 LIRItem right(x->y(), this);
duke@435 527
duke@435 528 left.load_item();
twisti@1040 529 // don't load constants to save register
duke@435 530 right.load_nonconstant();
duke@435 531 rlock_result(x);
duke@435 532 arithmetic_op_long(x->op(), x->operand(), left.result(), right.result(), NULL);
duke@435 533 }
duke@435 534 }
duke@435 535
duke@435 536
duke@435 537
duke@435 538 // for: _iadd, _imul, _isub, _idiv, _irem
duke@435 539 void LIRGenerator::do_ArithmeticOp_Int(ArithmeticOp* x) {
duke@435 540 if (x->op() == Bytecodes::_idiv || x->op() == Bytecodes::_irem) {
duke@435 541 // The requirements for division and modulo
duke@435 542 // input : rax,: dividend min_int
duke@435 543 // reg: divisor (may not be rax,/rdx) -1
duke@435 544 //
duke@435 545 // output: rax,: quotient (= rax, idiv reg) min_int
duke@435 546 // rdx: remainder (= rax, irem reg) 0
duke@435 547
duke@435 548 // rax, and rdx will be destroyed
duke@435 549
duke@435 550 // Note: does this invalidate the spec ???
duke@435 551 LIRItem right(x->y(), this);
duke@435 552 LIRItem left(x->x() , this); // visit left second, so that the is_register test is valid
duke@435 553
duke@435 554 // call state_for before load_item_force because state_for may
duke@435 555 // force the evaluation of other instructions that are needed for
duke@435 556 // correct debug info. Otherwise the live range of the fix
duke@435 557 // register might be too long.
duke@435 558 CodeEmitInfo* info = state_for(x);
duke@435 559
duke@435 560 left.load_item_force(divInOpr());
duke@435 561
duke@435 562 right.load_item();
duke@435 563
duke@435 564 LIR_Opr result = rlock_result(x);
duke@435 565 LIR_Opr result_reg;
duke@435 566 if (x->op() == Bytecodes::_idiv) {
duke@435 567 result_reg = divOutOpr();
duke@435 568 } else {
duke@435 569 result_reg = remOutOpr();
duke@435 570 }
duke@435 571
duke@435 572 if (!ImplicitDiv0Checks) {
duke@435 573 __ cmp(lir_cond_equal, right.result(), LIR_OprFact::intConst(0));
duke@435 574 __ branch(lir_cond_equal, T_INT, new DivByZeroStub(info));
duke@435 575 }
duke@435 576 LIR_Opr tmp = FrameMap::rdx_opr; // idiv and irem use rdx in their implementation
duke@435 577 if (x->op() == Bytecodes::_irem) {
duke@435 578 __ irem(left.result(), right.result(), result_reg, tmp, info);
duke@435 579 } else if (x->op() == Bytecodes::_idiv) {
duke@435 580 __ idiv(left.result(), right.result(), result_reg, tmp, info);
duke@435 581 } else {
duke@435 582 ShouldNotReachHere();
duke@435 583 }
duke@435 584
duke@435 585 __ move(result_reg, result);
duke@435 586 } else {
duke@435 587 // missing test if instr is commutative and if we should swap
duke@435 588 LIRItem left(x->x(), this);
duke@435 589 LIRItem right(x->y(), this);
duke@435 590 LIRItem* left_arg = &left;
duke@435 591 LIRItem* right_arg = &right;
duke@435 592 if (x->is_commutative() && left.is_stack() && right.is_register()) {
duke@435 593 // swap them if left is real stack (or cached) and right is real register(not cached)
duke@435 594 left_arg = &right;
duke@435 595 right_arg = &left;
duke@435 596 }
duke@435 597
duke@435 598 left_arg->load_item();
duke@435 599
duke@435 600 // do not need to load right, as we can handle stack and constants
duke@435 601 if (x->op() == Bytecodes::_imul ) {
duke@435 602 // check if we can use shift instead
duke@435 603 bool use_constant = false;
duke@435 604 bool use_tmp = false;
duke@435 605 if (right_arg->is_constant()) {
duke@435 606 int iconst = right_arg->get_jint_constant();
duke@435 607 if (iconst > 0) {
duke@435 608 if (is_power_of_2(iconst)) {
duke@435 609 use_constant = true;
duke@435 610 } else if (is_power_of_2(iconst - 1) || is_power_of_2(iconst + 1)) {
duke@435 611 use_constant = true;
duke@435 612 use_tmp = true;
duke@435 613 }
duke@435 614 }
duke@435 615 }
duke@435 616 if (use_constant) {
duke@435 617 right_arg->dont_load_item();
duke@435 618 } else {
duke@435 619 right_arg->load_item();
duke@435 620 }
duke@435 621 LIR_Opr tmp = LIR_OprFact::illegalOpr;
duke@435 622 if (use_tmp) {
duke@435 623 tmp = new_register(T_INT);
duke@435 624 }
duke@435 625 rlock_result(x);
duke@435 626
duke@435 627 arithmetic_op_int(x->op(), x->operand(), left_arg->result(), right_arg->result(), tmp);
duke@435 628 } else {
duke@435 629 right_arg->dont_load_item();
duke@435 630 rlock_result(x);
duke@435 631 LIR_Opr tmp = LIR_OprFact::illegalOpr;
duke@435 632 arithmetic_op_int(x->op(), x->operand(), left_arg->result(), right_arg->result(), tmp);
duke@435 633 }
duke@435 634 }
duke@435 635 }
duke@435 636
duke@435 637
duke@435 638 void LIRGenerator::do_ArithmeticOp(ArithmeticOp* x) {
duke@435 639 // when an operand with use count 1 is the left operand, then it is
duke@435 640 // likely that no move for 2-operand-LIR-form is necessary
duke@435 641 if (x->is_commutative() && x->y()->as_Constant() == NULL && x->x()->use_count() > x->y()->use_count()) {
duke@435 642 x->swap_operands();
duke@435 643 }
duke@435 644
duke@435 645 ValueTag tag = x->type()->tag();
duke@435 646 assert(x->x()->type()->tag() == tag && x->y()->type()->tag() == tag, "wrong parameters");
duke@435 647 switch (tag) {
duke@435 648 case floatTag:
duke@435 649 case doubleTag: do_ArithmeticOp_FPU(x); return;
duke@435 650 case longTag: do_ArithmeticOp_Long(x); return;
duke@435 651 case intTag: do_ArithmeticOp_Int(x); return;
duke@435 652 }
duke@435 653 ShouldNotReachHere();
duke@435 654 }
duke@435 655
duke@435 656
duke@435 657 // _ishl, _lshl, _ishr, _lshr, _iushr, _lushr
duke@435 658 void LIRGenerator::do_ShiftOp(ShiftOp* x) {
duke@435 659 // count must always be in rcx
duke@435 660 LIRItem value(x->x(), this);
duke@435 661 LIRItem count(x->y(), this);
duke@435 662
duke@435 663 ValueTag elemType = x->type()->tag();
duke@435 664 bool must_load_count = !count.is_constant() || elemType == longTag;
duke@435 665 if (must_load_count) {
duke@435 666 // count for long must be in register
duke@435 667 count.load_item_force(shiftCountOpr());
duke@435 668 } else {
duke@435 669 count.dont_load_item();
duke@435 670 }
duke@435 671 value.load_item();
duke@435 672 LIR_Opr reg = rlock_result(x);
duke@435 673
duke@435 674 shift_op(x->op(), reg, value.result(), count.result(), LIR_OprFact::illegalOpr);
duke@435 675 }
duke@435 676
duke@435 677
duke@435 678 // _iand, _land, _ior, _lor, _ixor, _lxor
duke@435 679 void LIRGenerator::do_LogicOp(LogicOp* x) {
duke@435 680 // when an operand with use count 1 is the left operand, then it is
duke@435 681 // likely that no move for 2-operand-LIR-form is necessary
duke@435 682 if (x->is_commutative() && x->y()->as_Constant() == NULL && x->x()->use_count() > x->y()->use_count()) {
duke@435 683 x->swap_operands();
duke@435 684 }
duke@435 685
duke@435 686 LIRItem left(x->x(), this);
duke@435 687 LIRItem right(x->y(), this);
duke@435 688
duke@435 689 left.load_item();
duke@435 690 right.load_nonconstant();
duke@435 691 LIR_Opr reg = rlock_result(x);
duke@435 692
duke@435 693 logic_op(x->op(), reg, left.result(), right.result());
duke@435 694 }
duke@435 695
duke@435 696
duke@435 697
duke@435 698 // _lcmp, _fcmpl, _fcmpg, _dcmpl, _dcmpg
duke@435 699 void LIRGenerator::do_CompareOp(CompareOp* x) {
duke@435 700 LIRItem left(x->x(), this);
duke@435 701 LIRItem right(x->y(), this);
duke@435 702 ValueTag tag = x->x()->type()->tag();
duke@435 703 if (tag == longTag) {
duke@435 704 left.set_destroys_register();
duke@435 705 }
duke@435 706 left.load_item();
duke@435 707 right.load_item();
duke@435 708 LIR_Opr reg = rlock_result(x);
duke@435 709
duke@435 710 if (x->x()->type()->is_float_kind()) {
duke@435 711 Bytecodes::Code code = x->op();
duke@435 712 __ fcmp2int(left.result(), right.result(), reg, (code == Bytecodes::_fcmpl || code == Bytecodes::_dcmpl));
duke@435 713 } else if (x->x()->type()->tag() == longTag) {
duke@435 714 __ lcmp2int(left.result(), right.result(), reg);
duke@435 715 } else {
duke@435 716 Unimplemented();
duke@435 717 }
duke@435 718 }
duke@435 719
duke@435 720
duke@435 721 void LIRGenerator::do_CompareAndSwap(Intrinsic* x, ValueType* type) {
duke@435 722 assert(x->number_of_arguments() == 4, "wrong type");
duke@435 723 LIRItem obj (x->argument_at(0), this); // object
duke@435 724 LIRItem offset(x->argument_at(1), this); // offset of field
duke@435 725 LIRItem cmp (x->argument_at(2), this); // value to compare with field
duke@435 726 LIRItem val (x->argument_at(3), this); // replace field with val if matches cmp
duke@435 727
duke@435 728 assert(obj.type()->tag() == objectTag, "invalid type");
never@739 729
never@739 730 // In 64bit the type can be long, sparc doesn't have this assert
never@739 731 // assert(offset.type()->tag() == intTag, "invalid type");
never@739 732
duke@435 733 assert(cmp.type()->tag() == type->tag(), "invalid type");
duke@435 734 assert(val.type()->tag() == type->tag(), "invalid type");
duke@435 735
duke@435 736 // get address of field
duke@435 737 obj.load_item();
duke@435 738 offset.load_nonconstant();
duke@435 739
duke@435 740 if (type == objectType) {
duke@435 741 cmp.load_item_force(FrameMap::rax_oop_opr);
duke@435 742 val.load_item();
duke@435 743 } else if (type == intType) {
duke@435 744 cmp.load_item_force(FrameMap::rax_opr);
duke@435 745 val.load_item();
duke@435 746 } else if (type == longType) {
never@739 747 cmp.load_item_force(FrameMap::long0_opr);
never@739 748 val.load_item_force(FrameMap::long1_opr);
duke@435 749 } else {
duke@435 750 ShouldNotReachHere();
duke@435 751 }
duke@435 752
never@2228 753 LIR_Opr addr = new_pointer_register();
roland@1495 754 LIR_Address* a;
roland@1495 755 if(offset.result()->is_constant()) {
roland@4106 756 #ifdef _LP64
roland@4106 757 jlong c = offset.result()->as_jlong();
roland@4106 758 if ((jlong)((jint)c) == c) {
roland@4106 759 a = new LIR_Address(obj.result(),
roland@4106 760 (jint)c,
roland@4106 761 as_BasicType(type));
roland@4106 762 } else {
roland@4106 763 LIR_Opr tmp = new_register(T_LONG);
roland@4106 764 __ move(offset.result(), tmp);
roland@4106 765 a = new LIR_Address(obj.result(),
roland@4106 766 tmp,
roland@4106 767 as_BasicType(type));
roland@4106 768 }
roland@4106 769 #else
roland@1495 770 a = new LIR_Address(obj.result(),
roland@4106 771 offset.result()->as_jint(),
roland@1495 772 as_BasicType(type));
roland@4106 773 #endif
roland@1495 774 } else {
roland@1495 775 a = new LIR_Address(obj.result(),
roland@1495 776 offset.result(),
roland@1495 777 LIR_Address::times_1,
roland@1495 778 0,
roland@1495 779 as_BasicType(type));
roland@1495 780 }
roland@1495 781 __ leal(LIR_OprFact::address(a), addr);
duke@435 782
ysr@777 783 if (type == objectType) { // Write-barrier needed for Object fields.
ysr@777 784 // Do the pre-write barrier, if any.
johnc@2781 785 pre_barrier(addr, LIR_OprFact::illegalOpr /* pre_val */,
johnc@2781 786 true /* do_load */, false /* patch */, NULL);
ysr@777 787 }
duke@435 788
duke@435 789 LIR_Opr ill = LIR_OprFact::illegalOpr; // for convenience
duke@435 790 if (type == objectType)
duke@435 791 __ cas_obj(addr, cmp.result(), val.result(), ill, ill);
duke@435 792 else if (type == intType)
duke@435 793 __ cas_int(addr, cmp.result(), val.result(), ill, ill);
duke@435 794 else if (type == longType)
duke@435 795 __ cas_long(addr, cmp.result(), val.result(), ill, ill);
duke@435 796 else {
duke@435 797 ShouldNotReachHere();
duke@435 798 }
duke@435 799
duke@435 800 // generate conditional move of boolean result
duke@435 801 LIR_Opr result = rlock_result(x);
iveresov@2412 802 __ cmove(lir_cond_equal, LIR_OprFact::intConst(1), LIR_OprFact::intConst(0),
iveresov@2412 803 result, as_BasicType(type));
duke@435 804 if (type == objectType) { // Write-barrier needed for Object fields.
duke@435 805 // Seems to be precise
duke@435 806 post_barrier(addr, val.result());
duke@435 807 }
duke@435 808 }
duke@435 809
duke@435 810
duke@435 811 void LIRGenerator::do_MathIntrinsic(Intrinsic* x) {
roland@3787 812 assert(x->number_of_arguments() == 1 || (x->number_of_arguments() == 2 && x->id() == vmIntrinsics::_dpow), "wrong type");
duke@435 813 LIRItem value(x->argument_at(0), this);
duke@435 814
duke@435 815 bool use_fpu = false;
duke@435 816 if (UseSSE >= 2) {
duke@435 817 switch(x->id()) {
duke@435 818 case vmIntrinsics::_dsin:
duke@435 819 case vmIntrinsics::_dcos:
duke@435 820 case vmIntrinsics::_dtan:
duke@435 821 case vmIntrinsics::_dlog:
duke@435 822 case vmIntrinsics::_dlog10:
roland@3787 823 case vmIntrinsics::_dexp:
roland@3787 824 case vmIntrinsics::_dpow:
duke@435 825 use_fpu = true;
duke@435 826 }
duke@435 827 } else {
duke@435 828 value.set_destroys_register();
duke@435 829 }
duke@435 830
duke@435 831 value.load_item();
duke@435 832
duke@435 833 LIR_Opr calc_input = value.result();
roland@3787 834 LIR_Opr calc_input2 = NULL;
roland@3787 835 if (x->id() == vmIntrinsics::_dpow) {
roland@3787 836 LIRItem extra_arg(x->argument_at(1), this);
roland@3787 837 if (UseSSE < 2) {
roland@3787 838 extra_arg.set_destroys_register();
roland@3787 839 }
roland@3787 840 extra_arg.load_item();
roland@3787 841 calc_input2 = extra_arg.result();
roland@3787 842 }
duke@435 843 LIR_Opr calc_result = rlock_result(x);
duke@435 844
roland@3787 845 // sin, cos, pow and exp need two free fpu stack slots, so register
roland@3787 846 // two temporary operands
duke@435 847 LIR_Opr tmp1 = FrameMap::caller_save_fpu_reg_at(0);
duke@435 848 LIR_Opr tmp2 = FrameMap::caller_save_fpu_reg_at(1);
duke@435 849
duke@435 850 if (use_fpu) {
duke@435 851 LIR_Opr tmp = FrameMap::fpu0_double_opr;
roland@3787 852 int tmp_start = 1;
roland@3787 853 if (calc_input2 != NULL) {
roland@3787 854 __ move(calc_input2, tmp);
roland@3787 855 tmp_start = 2;
roland@3787 856 calc_input2 = tmp;
roland@3787 857 }
duke@435 858 __ move(calc_input, tmp);
duke@435 859
duke@435 860 calc_input = tmp;
duke@435 861 calc_result = tmp;
roland@3787 862
roland@3787 863 tmp1 = FrameMap::caller_save_fpu_reg_at(tmp_start);
roland@3787 864 tmp2 = FrameMap::caller_save_fpu_reg_at(tmp_start + 1);
duke@435 865 }
duke@435 866
duke@435 867 switch(x->id()) {
duke@435 868 case vmIntrinsics::_dabs: __ abs (calc_input, calc_result, LIR_OprFact::illegalOpr); break;
duke@435 869 case vmIntrinsics::_dsqrt: __ sqrt (calc_input, calc_result, LIR_OprFact::illegalOpr); break;
duke@435 870 case vmIntrinsics::_dsin: __ sin (calc_input, calc_result, tmp1, tmp2); break;
duke@435 871 case vmIntrinsics::_dcos: __ cos (calc_input, calc_result, tmp1, tmp2); break;
duke@435 872 case vmIntrinsics::_dtan: __ tan (calc_input, calc_result, tmp1, tmp2); break;
never@1388 873 case vmIntrinsics::_dlog: __ log (calc_input, calc_result, tmp1); break;
never@1388 874 case vmIntrinsics::_dlog10: __ log10(calc_input, calc_result, tmp1); break;
roland@3787 875 case vmIntrinsics::_dexp: __ exp (calc_input, calc_result, tmp1, tmp2, FrameMap::rax_opr, FrameMap::rcx_opr, FrameMap::rdx_opr); break;
roland@3787 876 case vmIntrinsics::_dpow: __ pow (calc_input, calc_input2, calc_result, tmp1, tmp2, FrameMap::rax_opr, FrameMap::rcx_opr, FrameMap::rdx_opr); break;
duke@435 877 default: ShouldNotReachHere();
duke@435 878 }
duke@435 879
duke@435 880 if (use_fpu) {
duke@435 881 __ move(calc_result, x->operand());
duke@435 882 }
duke@435 883 }
duke@435 884
duke@435 885
duke@435 886 void LIRGenerator::do_ArrayCopy(Intrinsic* x) {
duke@435 887 assert(x->number_of_arguments() == 5, "wrong type");
never@2347 888
never@2347 889 // Make all state_for calls early since they can emit code
never@2347 890 CodeEmitInfo* info = state_for(x, x->state());
never@2347 891
duke@435 892 LIRItem src(x->argument_at(0), this);
duke@435 893 LIRItem src_pos(x->argument_at(1), this);
duke@435 894 LIRItem dst(x->argument_at(2), this);
duke@435 895 LIRItem dst_pos(x->argument_at(3), this);
duke@435 896 LIRItem length(x->argument_at(4), this);
duke@435 897
duke@435 898 // operands for arraycopy must use fixed registers, otherwise
duke@435 899 // LinearScan will fail allocation (because arraycopy always needs a
duke@435 900 // call)
never@739 901
never@739 902 #ifndef _LP64
duke@435 903 src.load_item_force (FrameMap::rcx_oop_opr);
duke@435 904 src_pos.load_item_force (FrameMap::rdx_opr);
duke@435 905 dst.load_item_force (FrameMap::rax_oop_opr);
duke@435 906 dst_pos.load_item_force (FrameMap::rbx_opr);
duke@435 907 length.load_item_force (FrameMap::rdi_opr);
duke@435 908 LIR_Opr tmp = (FrameMap::rsi_opr);
never@739 909 #else
never@739 910
never@739 911 // The java calling convention will give us enough registers
never@739 912 // so that on the stub side the args will be perfect already.
never@739 913 // On the other slow/special case side we call C and the arg
never@739 914 // positions are not similar enough to pick one as the best.
never@739 915 // Also because the java calling convention is a "shifted" version
never@739 916 // of the C convention we can process the java args trivially into C
never@739 917 // args without worry of overwriting during the xfer
never@739 918
never@739 919 src.load_item_force (FrameMap::as_oop_opr(j_rarg0));
never@739 920 src_pos.load_item_force (FrameMap::as_opr(j_rarg1));
never@739 921 dst.load_item_force (FrameMap::as_oop_opr(j_rarg2));
never@739 922 dst_pos.load_item_force (FrameMap::as_opr(j_rarg3));
never@739 923 length.load_item_force (FrameMap::as_opr(j_rarg4));
never@739 924
never@739 925 LIR_Opr tmp = FrameMap::as_opr(j_rarg5);
never@739 926 #endif // LP64
never@739 927
duke@435 928 set_no_result(x);
duke@435 929
duke@435 930 int flags;
duke@435 931 ciArrayKlass* expected_type;
duke@435 932 arraycopy_helper(x, &flags, &expected_type);
duke@435 933
duke@435 934 __ arraycopy(src.result(), src_pos.result(), dst.result(), dst_pos.result(), length.result(), tmp, expected_type, flags, info); // does add_safepoint
duke@435 935 }
duke@435 936
duke@435 937
duke@435 938 // _i2l, _i2f, _i2d, _l2i, _l2f, _l2d, _f2i, _f2l, _f2d, _d2i, _d2l, _d2f
duke@435 939 // _i2b, _i2c, _i2s
duke@435 940 LIR_Opr fixed_register_for(BasicType type) {
duke@435 941 switch (type) {
duke@435 942 case T_FLOAT: return FrameMap::fpu0_float_opr;
duke@435 943 case T_DOUBLE: return FrameMap::fpu0_double_opr;
duke@435 944 case T_INT: return FrameMap::rax_opr;
never@739 945 case T_LONG: return FrameMap::long0_opr;
duke@435 946 default: ShouldNotReachHere(); return LIR_OprFact::illegalOpr;
duke@435 947 }
duke@435 948 }
duke@435 949
duke@435 950 void LIRGenerator::do_Convert(Convert* x) {
duke@435 951 // flags that vary for the different operations and different SSE-settings
duke@435 952 bool fixed_input, fixed_result, round_result, needs_stub;
duke@435 953
duke@435 954 switch (x->op()) {
duke@435 955 case Bytecodes::_i2l: // fall through
duke@435 956 case Bytecodes::_l2i: // fall through
duke@435 957 case Bytecodes::_i2b: // fall through
duke@435 958 case Bytecodes::_i2c: // fall through
duke@435 959 case Bytecodes::_i2s: fixed_input = false; fixed_result = false; round_result = false; needs_stub = false; break;
duke@435 960
duke@435 961 case Bytecodes::_f2d: fixed_input = UseSSE == 1; fixed_result = false; round_result = false; needs_stub = false; break;
duke@435 962 case Bytecodes::_d2f: fixed_input = false; fixed_result = UseSSE == 1; round_result = UseSSE < 1; needs_stub = false; break;
duke@435 963 case Bytecodes::_i2f: fixed_input = false; fixed_result = false; round_result = UseSSE < 1; needs_stub = false; break;
duke@435 964 case Bytecodes::_i2d: fixed_input = false; fixed_result = false; round_result = false; needs_stub = false; break;
duke@435 965 case Bytecodes::_f2i: fixed_input = false; fixed_result = false; round_result = false; needs_stub = true; break;
duke@435 966 case Bytecodes::_d2i: fixed_input = false; fixed_result = false; round_result = false; needs_stub = true; break;
duke@435 967 case Bytecodes::_l2f: fixed_input = false; fixed_result = UseSSE >= 1; round_result = UseSSE < 1; needs_stub = false; break;
duke@435 968 case Bytecodes::_l2d: fixed_input = false; fixed_result = UseSSE >= 2; round_result = UseSSE < 2; needs_stub = false; break;
duke@435 969 case Bytecodes::_f2l: fixed_input = true; fixed_result = true; round_result = false; needs_stub = false; break;
duke@435 970 case Bytecodes::_d2l: fixed_input = true; fixed_result = true; round_result = false; needs_stub = false; break;
duke@435 971 default: ShouldNotReachHere();
duke@435 972 }
duke@435 973
duke@435 974 LIRItem value(x->value(), this);
duke@435 975 value.load_item();
duke@435 976 LIR_Opr input = value.result();
duke@435 977 LIR_Opr result = rlock(x);
duke@435 978
duke@435 979 // arguments of lir_convert
duke@435 980 LIR_Opr conv_input = input;
duke@435 981 LIR_Opr conv_result = result;
duke@435 982 ConversionStub* stub = NULL;
duke@435 983
duke@435 984 if (fixed_input) {
duke@435 985 conv_input = fixed_register_for(input->type());
duke@435 986 __ move(input, conv_input);
duke@435 987 }
duke@435 988
duke@435 989 assert(fixed_result == false || round_result == false, "cannot set both");
duke@435 990 if (fixed_result) {
duke@435 991 conv_result = fixed_register_for(result->type());
duke@435 992 } else if (round_result) {
duke@435 993 result = new_register(result->type());
duke@435 994 set_vreg_flag(result, must_start_in_memory);
duke@435 995 }
duke@435 996
duke@435 997 if (needs_stub) {
duke@435 998 stub = new ConversionStub(x->op(), conv_input, conv_result);
duke@435 999 }
duke@435 1000
duke@435 1001 __ convert(x->op(), conv_input, conv_result, stub);
duke@435 1002
duke@435 1003 if (result != conv_result) {
duke@435 1004 __ move(conv_result, result);
duke@435 1005 }
duke@435 1006
duke@435 1007 assert(result->is_virtual(), "result must be virtual register");
duke@435 1008 set_result(x, result);
duke@435 1009 }
duke@435 1010
duke@435 1011
duke@435 1012 void LIRGenerator::do_NewInstance(NewInstance* x) {
roland@2174 1013 #ifndef PRODUCT
duke@435 1014 if (PrintNotLoaded && !x->klass()->is_loaded()) {
roland@2174 1015 tty->print_cr(" ###class not loaded at new bci %d", x->printable_bci());
duke@435 1016 }
roland@2174 1017 #endif
duke@435 1018 CodeEmitInfo* info = state_for(x, x->state());
duke@435 1019 LIR_Opr reg = result_register_for(x->type());
duke@435 1020 new_instance(reg, x->klass(),
duke@435 1021 FrameMap::rcx_oop_opr,
duke@435 1022 FrameMap::rdi_oop_opr,
duke@435 1023 FrameMap::rsi_oop_opr,
duke@435 1024 LIR_OprFact::illegalOpr,
roland@4051 1025 FrameMap::rdx_metadata_opr, info);
duke@435 1026 LIR_Opr result = rlock_result(x);
duke@435 1027 __ move(reg, result);
duke@435 1028 }
duke@435 1029
duke@435 1030
duke@435 1031 void LIRGenerator::do_NewTypeArray(NewTypeArray* x) {
duke@435 1032 CodeEmitInfo* info = state_for(x, x->state());
duke@435 1033
duke@435 1034 LIRItem length(x->length(), this);
duke@435 1035 length.load_item_force(FrameMap::rbx_opr);
duke@435 1036
duke@435 1037 LIR_Opr reg = result_register_for(x->type());
duke@435 1038 LIR_Opr tmp1 = FrameMap::rcx_oop_opr;
duke@435 1039 LIR_Opr tmp2 = FrameMap::rsi_oop_opr;
duke@435 1040 LIR_Opr tmp3 = FrameMap::rdi_oop_opr;
duke@435 1041 LIR_Opr tmp4 = reg;
roland@4051 1042 LIR_Opr klass_reg = FrameMap::rdx_metadata_opr;
duke@435 1043 LIR_Opr len = length.result();
duke@435 1044 BasicType elem_type = x->elt_type();
duke@435 1045
roland@4051 1046 __ metadata2reg(ciTypeArrayKlass::make(elem_type)->constant_encoding(), klass_reg);
duke@435 1047
duke@435 1048 CodeStub* slow_path = new NewTypeArrayStub(klass_reg, len, reg, info);
duke@435 1049 __ allocate_array(reg, len, tmp1, tmp2, tmp3, tmp4, elem_type, klass_reg, slow_path);
duke@435 1050
duke@435 1051 LIR_Opr result = rlock_result(x);
duke@435 1052 __ move(reg, result);
duke@435 1053 }
duke@435 1054
duke@435 1055
duke@435 1056 void LIRGenerator::do_NewObjectArray(NewObjectArray* x) {
duke@435 1057 LIRItem length(x->length(), this);
duke@435 1058 // in case of patching (i.e., object class is not yet loaded), we need to reexecute the instruction
duke@435 1059 // and therefore provide the state before the parameters have been consumed
duke@435 1060 CodeEmitInfo* patching_info = NULL;
duke@435 1061 if (!x->klass()->is_loaded() || PatchALot) {
duke@435 1062 patching_info = state_for(x, x->state_before());
duke@435 1063 }
duke@435 1064
duke@435 1065 CodeEmitInfo* info = state_for(x, x->state());
duke@435 1066
duke@435 1067 const LIR_Opr reg = result_register_for(x->type());
duke@435 1068 LIR_Opr tmp1 = FrameMap::rcx_oop_opr;
duke@435 1069 LIR_Opr tmp2 = FrameMap::rsi_oop_opr;
duke@435 1070 LIR_Opr tmp3 = FrameMap::rdi_oop_opr;
duke@435 1071 LIR_Opr tmp4 = reg;
roland@4051 1072 LIR_Opr klass_reg = FrameMap::rdx_metadata_opr;
duke@435 1073
duke@435 1074 length.load_item_force(FrameMap::rbx_opr);
duke@435 1075 LIR_Opr len = length.result();
duke@435 1076
duke@435 1077 CodeStub* slow_path = new NewObjectArrayStub(klass_reg, len, reg, info);
coleenp@4037 1078 ciKlass* obj = (ciKlass*) ciObjArrayKlass::make(x->klass());
duke@435 1079 if (obj == ciEnv::unloaded_ciobjarrayklass()) {
duke@435 1080 BAILOUT("encountered unloaded_ciobjarrayklass due to out of memory error");
duke@435 1081 }
coleenp@4037 1082 klass2reg_with_patching(klass_reg, obj, patching_info);
duke@435 1083 __ allocate_array(reg, len, tmp1, tmp2, tmp3, tmp4, T_OBJECT, klass_reg, slow_path);
duke@435 1084
duke@435 1085 LIR_Opr result = rlock_result(x);
duke@435 1086 __ move(reg, result);
duke@435 1087 }
duke@435 1088
duke@435 1089
duke@435 1090 void LIRGenerator::do_NewMultiArray(NewMultiArray* x) {
duke@435 1091 Values* dims = x->dims();
duke@435 1092 int i = dims->length();
duke@435 1093 LIRItemList* items = new LIRItemList(dims->length(), NULL);
duke@435 1094 while (i-- > 0) {
duke@435 1095 LIRItem* size = new LIRItem(dims->at(i), this);
duke@435 1096 items->at_put(i, size);
duke@435 1097 }
duke@435 1098
never@1368 1099 // Evaluate state_for early since it may emit code.
duke@435 1100 CodeEmitInfo* patching_info = NULL;
duke@435 1101 if (!x->klass()->is_loaded() || PatchALot) {
duke@435 1102 patching_info = state_for(x, x->state_before());
duke@435 1103
twisti@3848 1104 // Cannot re-use same xhandlers for multiple CodeEmitInfos, so
twisti@3848 1105 // clone all handlers (NOTE: Usually this is handled transparently
twisti@3848 1106 // by the CodeEmitInfo cloning logic in CodeStub constructors but
twisti@3848 1107 // is done explicitly here because a stub isn't being used).
duke@435 1108 x->set_exception_handlers(new XHandlers(x->exception_handlers()));
duke@435 1109 }
duke@435 1110 CodeEmitInfo* info = state_for(x, x->state());
duke@435 1111
duke@435 1112 i = dims->length();
duke@435 1113 while (i-- > 0) {
duke@435 1114 LIRItem* size = items->at(i);
duke@435 1115 size->load_nonconstant();
duke@435 1116
duke@435 1117 store_stack_parameter(size->result(), in_ByteSize(i*4));
duke@435 1118 }
duke@435 1119
roland@4051 1120 LIR_Opr klass_reg = FrameMap::rax_metadata_opr;
roland@4051 1121 klass2reg_with_patching(klass_reg, x->klass(), patching_info);
duke@435 1122
duke@435 1123 LIR_Opr rank = FrameMap::rbx_opr;
duke@435 1124 __ move(LIR_OprFact::intConst(x->rank()), rank);
duke@435 1125 LIR_Opr varargs = FrameMap::rcx_opr;
duke@435 1126 __ move(FrameMap::rsp_opr, varargs);
duke@435 1127 LIR_OprList* args = new LIR_OprList(3);
roland@4051 1128 args->append(klass_reg);
duke@435 1129 args->append(rank);
duke@435 1130 args->append(varargs);
roland@4051 1131 LIR_Opr reg = result_register_for(x->type());
duke@435 1132 __ call_runtime(Runtime1::entry_for(Runtime1::new_multi_array_id),
duke@435 1133 LIR_OprFact::illegalOpr,
duke@435 1134 reg, args, info);
duke@435 1135
duke@435 1136 LIR_Opr result = rlock_result(x);
duke@435 1137 __ move(reg, result);
duke@435 1138 }
duke@435 1139
duke@435 1140
duke@435 1141 void LIRGenerator::do_BlockBegin(BlockBegin* x) {
duke@435 1142 // nothing to do for now
duke@435 1143 }
duke@435 1144
duke@435 1145
duke@435 1146 void LIRGenerator::do_CheckCast(CheckCast* x) {
duke@435 1147 LIRItem obj(x->obj(), this);
duke@435 1148
duke@435 1149 CodeEmitInfo* patching_info = NULL;
duke@435 1150 if (!x->klass()->is_loaded() || (PatchALot && !x->is_incompatible_class_change_check())) {
duke@435 1151 // must do this before locking the destination register as an oop register,
duke@435 1152 // and before the obj is loaded (the latter is for deoptimization)
duke@435 1153 patching_info = state_for(x, x->state_before());
duke@435 1154 }
duke@435 1155 obj.load_item();
duke@435 1156
duke@435 1157 // info for exceptions
roland@2174 1158 CodeEmitInfo* info_for_exception = state_for(x);
duke@435 1159
duke@435 1160 CodeStub* stub;
duke@435 1161 if (x->is_incompatible_class_change_check()) {
duke@435 1162 assert(patching_info == NULL, "can't patch this");
duke@435 1163 stub = new SimpleExceptionStub(Runtime1::throw_incompatible_class_change_error_id, LIR_OprFact::illegalOpr, info_for_exception);
duke@435 1164 } else {
duke@435 1165 stub = new SimpleExceptionStub(Runtime1::throw_class_cast_exception_id, obj.result(), info_for_exception);
duke@435 1166 }
duke@435 1167 LIR_Opr reg = rlock_result(x);
iveresov@2344 1168 LIR_Opr tmp3 = LIR_OprFact::illegalOpr;
roland@4159 1169 if (!x->klass()->is_loaded() || UseCompressedKlassPointers) {
iveresov@2344 1170 tmp3 = new_register(objectType);
iveresov@2344 1171 }
duke@435 1172 __ checkcast(reg, obj.result(), x->klass(),
iveresov@2344 1173 new_register(objectType), new_register(objectType), tmp3,
duke@435 1174 x->direct_compare(), info_for_exception, patching_info, stub,
duke@435 1175 x->profiled_method(), x->profiled_bci());
duke@435 1176 }
duke@435 1177
duke@435 1178
duke@435 1179 void LIRGenerator::do_InstanceOf(InstanceOf* x) {
duke@435 1180 LIRItem obj(x->obj(), this);
duke@435 1181
duke@435 1182 // result and test object may not be in same register
duke@435 1183 LIR_Opr reg = rlock_result(x);
duke@435 1184 CodeEmitInfo* patching_info = NULL;
duke@435 1185 if ((!x->klass()->is_loaded() || PatchALot)) {
duke@435 1186 // must do this before locking the destination register as an oop register
duke@435 1187 patching_info = state_for(x, x->state_before());
duke@435 1188 }
duke@435 1189 obj.load_item();
iveresov@2344 1190 LIR_Opr tmp3 = LIR_OprFact::illegalOpr;
roland@4159 1191 if (!x->klass()->is_loaded() || UseCompressedKlassPointers) {
iveresov@2344 1192 tmp3 = new_register(objectType);
iveresov@2344 1193 }
duke@435 1194 __ instanceof(reg, obj.result(), x->klass(),
iveresov@2344 1195 new_register(objectType), new_register(objectType), tmp3,
iveresov@2146 1196 x->direct_compare(), patching_info, x->profiled_method(), x->profiled_bci());
duke@435 1197 }
duke@435 1198
duke@435 1199
duke@435 1200 void LIRGenerator::do_If(If* x) {
duke@435 1201 assert(x->number_of_sux() == 2, "inconsistency");
duke@435 1202 ValueTag tag = x->x()->type()->tag();
duke@435 1203 bool is_safepoint = x->is_safepoint();
duke@435 1204
duke@435 1205 If::Condition cond = x->cond();
duke@435 1206
duke@435 1207 LIRItem xitem(x->x(), this);
duke@435 1208 LIRItem yitem(x->y(), this);
duke@435 1209 LIRItem* xin = &xitem;
duke@435 1210 LIRItem* yin = &yitem;
duke@435 1211
duke@435 1212 if (tag == longTag) {
duke@435 1213 // for longs, only conditions "eql", "neq", "lss", "geq" are valid;
duke@435 1214 // mirror for other conditions
duke@435 1215 if (cond == If::gtr || cond == If::leq) {
duke@435 1216 cond = Instruction::mirror(cond);
duke@435 1217 xin = &yitem;
duke@435 1218 yin = &xitem;
duke@435 1219 }
duke@435 1220 xin->set_destroys_register();
duke@435 1221 }
duke@435 1222 xin->load_item();
duke@435 1223 if (tag == longTag && yin->is_constant() && yin->get_jlong_constant() == 0 && (cond == If::eql || cond == If::neq)) {
duke@435 1224 // inline long zero
duke@435 1225 yin->dont_load_item();
duke@435 1226 } else if (tag == longTag || tag == floatTag || tag == doubleTag) {
duke@435 1227 // longs cannot handle constants at right side
duke@435 1228 yin->load_item();
duke@435 1229 } else {
duke@435 1230 yin->dont_load_item();
duke@435 1231 }
duke@435 1232
duke@435 1233 // add safepoint before generating condition code so it can be recomputed
duke@435 1234 if (x->is_safepoint()) {
duke@435 1235 // increment backedge counter if needed
iveresov@2138 1236 increment_backedge_counter(state_for(x, x->state_before()), x->profiled_bci());
duke@435 1237 __ safepoint(LIR_OprFact::illegalOpr, state_for(x, x->state_before()));
duke@435 1238 }
duke@435 1239 set_no_result(x);
duke@435 1240
duke@435 1241 LIR_Opr left = xin->result();
duke@435 1242 LIR_Opr right = yin->result();
duke@435 1243 __ cmp(lir_cond(cond), left, right);
iveresov@2138 1244 // Generate branch profiling. Profiling code doesn't kill flags.
duke@435 1245 profile_branch(x, cond);
duke@435 1246 move_to_phi(x->state());
duke@435 1247 if (x->x()->type()->is_float_kind()) {
duke@435 1248 __ branch(lir_cond(cond), right->type(), x->tsux(), x->usux());
duke@435 1249 } else {
duke@435 1250 __ branch(lir_cond(cond), right->type(), x->tsux());
duke@435 1251 }
duke@435 1252 assert(x->default_sux() == x->fsux(), "wrong destination above");
duke@435 1253 __ jump(x->default_sux());
duke@435 1254 }
duke@435 1255
duke@435 1256
duke@435 1257 LIR_Opr LIRGenerator::getThreadPointer() {
never@739 1258 #ifdef _LP64
never@739 1259 return FrameMap::as_pointer_opr(r15_thread);
never@739 1260 #else
duke@435 1261 LIR_Opr result = new_register(T_INT);
duke@435 1262 __ get_thread(result);
duke@435 1263 return result;
never@739 1264 #endif //
duke@435 1265 }
duke@435 1266
duke@435 1267 void LIRGenerator::trace_block_entry(BlockBegin* block) {
duke@435 1268 store_stack_parameter(LIR_OprFact::intConst(block->block_id()), in_ByteSize(0));
duke@435 1269 LIR_OprList* args = new LIR_OprList();
duke@435 1270 address func = CAST_FROM_FN_PTR(address, Runtime1::trace_block_entry);
duke@435 1271 __ call_runtime_leaf(func, LIR_OprFact::illegalOpr, LIR_OprFact::illegalOpr, args);
duke@435 1272 }
duke@435 1273
duke@435 1274
duke@435 1275 void LIRGenerator::volatile_field_store(LIR_Opr value, LIR_Address* address,
duke@435 1276 CodeEmitInfo* info) {
duke@435 1277 if (address->type() == T_LONG) {
duke@435 1278 address = new LIR_Address(address->base(),
duke@435 1279 address->index(), address->scale(),
duke@435 1280 address->disp(), T_DOUBLE);
duke@435 1281 // Transfer the value atomically by using FP moves. This means
duke@435 1282 // the value has to be moved between CPU and FPU registers. It
duke@435 1283 // always has to be moved through spill slot since there's no
duke@435 1284 // quick way to pack the value into an SSE register.
duke@435 1285 LIR_Opr temp_double = new_register(T_DOUBLE);
duke@435 1286 LIR_Opr spill = new_register(T_LONG);
duke@435 1287 set_vreg_flag(spill, must_start_in_memory);
duke@435 1288 __ move(value, spill);
duke@435 1289 __ volatile_move(spill, temp_double, T_LONG);
duke@435 1290 __ volatile_move(temp_double, LIR_OprFact::address(address), T_LONG, info);
duke@435 1291 } else {
duke@435 1292 __ store(value, address, info);
duke@435 1293 }
duke@435 1294 }
duke@435 1295
duke@435 1296
duke@435 1297
duke@435 1298 void LIRGenerator::volatile_field_load(LIR_Address* address, LIR_Opr result,
duke@435 1299 CodeEmitInfo* info) {
duke@435 1300 if (address->type() == T_LONG) {
duke@435 1301 address = new LIR_Address(address->base(),
duke@435 1302 address->index(), address->scale(),
duke@435 1303 address->disp(), T_DOUBLE);
duke@435 1304 // Transfer the value atomically by using FP moves. This means
duke@435 1305 // the value has to be moved between CPU and FPU registers. In
duke@435 1306 // SSE0 and SSE1 mode it has to be moved through spill slot but in
duke@435 1307 // SSE2+ mode it can be moved directly.
duke@435 1308 LIR_Opr temp_double = new_register(T_DOUBLE);
duke@435 1309 __ volatile_move(LIR_OprFact::address(address), temp_double, T_LONG, info);
duke@435 1310 __ volatile_move(temp_double, result, T_LONG);
duke@435 1311 if (UseSSE < 2) {
duke@435 1312 // no spill slot needed in SSE2 mode because xmm->cpu register move is possible
duke@435 1313 set_vreg_flag(result, must_start_in_memory);
duke@435 1314 }
duke@435 1315 } else {
duke@435 1316 __ load(address, result, info);
duke@435 1317 }
duke@435 1318 }
duke@435 1319
duke@435 1320 void LIRGenerator::get_Object_unsafe(LIR_Opr dst, LIR_Opr src, LIR_Opr offset,
duke@435 1321 BasicType type, bool is_volatile) {
duke@435 1322 if (is_volatile && type == T_LONG) {
duke@435 1323 LIR_Address* addr = new LIR_Address(src, offset, T_DOUBLE);
duke@435 1324 LIR_Opr tmp = new_register(T_DOUBLE);
duke@435 1325 __ load(addr, tmp);
duke@435 1326 LIR_Opr spill = new_register(T_LONG);
duke@435 1327 set_vreg_flag(spill, must_start_in_memory);
duke@435 1328 __ move(tmp, spill);
duke@435 1329 __ move(spill, dst);
duke@435 1330 } else {
duke@435 1331 LIR_Address* addr = new LIR_Address(src, offset, type);
duke@435 1332 __ load(addr, dst);
duke@435 1333 }
duke@435 1334 }
duke@435 1335
duke@435 1336
duke@435 1337 void LIRGenerator::put_Object_unsafe(LIR_Opr src, LIR_Opr offset, LIR_Opr data,
duke@435 1338 BasicType type, bool is_volatile) {
duke@435 1339 if (is_volatile && type == T_LONG) {
duke@435 1340 LIR_Address* addr = new LIR_Address(src, offset, T_DOUBLE);
duke@435 1341 LIR_Opr tmp = new_register(T_DOUBLE);
duke@435 1342 LIR_Opr spill = new_register(T_DOUBLE);
duke@435 1343 set_vreg_flag(spill, must_start_in_memory);
duke@435 1344 __ move(data, spill);
duke@435 1345 __ move(spill, tmp);
duke@435 1346 __ move(tmp, addr);
duke@435 1347 } else {
duke@435 1348 LIR_Address* addr = new LIR_Address(src, offset, type);
duke@435 1349 bool is_obj = (type == T_ARRAY || type == T_OBJECT);
duke@435 1350 if (is_obj) {
ysr@777 1351 // Do the pre-write barrier, if any.
johnc@2781 1352 pre_barrier(LIR_OprFact::address(addr), LIR_OprFact::illegalOpr /* pre_val */,
johnc@2781 1353 true /* do_load */, false /* patch */, NULL);
duke@435 1354 __ move(data, addr);
duke@435 1355 assert(src->is_register(), "must be register");
duke@435 1356 // Seems to be a precise address
duke@435 1357 post_barrier(LIR_OprFact::address(addr), data);
duke@435 1358 } else {
duke@435 1359 __ move(data, addr);
duke@435 1360 }
duke@435 1361 }
duke@435 1362 }
roland@4106 1363
roland@4106 1364 void LIRGenerator::do_UnsafeGetAndSetObject(UnsafeGetAndSetObject* x) {
roland@4106 1365 BasicType type = x->basic_type();
roland@4106 1366 LIRItem src(x->object(), this);
roland@4106 1367 LIRItem off(x->offset(), this);
roland@4106 1368 LIRItem value(x->value(), this);
roland@4106 1369
roland@4106 1370 src.load_item();
roland@4106 1371 value.load_item();
roland@4106 1372 off.load_nonconstant();
roland@4106 1373
roland@4106 1374 LIR_Opr dst = rlock_result(x, type);
roland@4106 1375 LIR_Opr data = value.result();
roland@4106 1376 bool is_obj = (type == T_ARRAY || type == T_OBJECT);
roland@4106 1377 LIR_Opr offset = off.result();
roland@4106 1378
roland@4106 1379 assert (type == T_INT || (!x->is_add() && is_obj) LP64_ONLY( || type == T_LONG ), "unexpected type");
roland@4106 1380 LIR_Address* addr;
roland@4106 1381 if (offset->is_constant()) {
roland@4106 1382 #ifdef _LP64
roland@4106 1383 jlong c = offset->as_jlong();
roland@4106 1384 if ((jlong)((jint)c) == c) {
roland@4106 1385 addr = new LIR_Address(src.result(), (jint)c, type);
roland@4106 1386 } else {
roland@4106 1387 LIR_Opr tmp = new_register(T_LONG);
roland@4106 1388 __ move(offset, tmp);
roland@4106 1389 addr = new LIR_Address(src.result(), tmp, type);
roland@4106 1390 }
roland@4106 1391 #else
roland@4106 1392 addr = new LIR_Address(src.result(), offset->as_jint(), type);
roland@4106 1393 #endif
roland@4106 1394 } else {
roland@4106 1395 addr = new LIR_Address(src.result(), offset, type);
roland@4106 1396 }
roland@4106 1397
roland@4106 1398 if (data != dst) {
roland@4106 1399 __ move(data, dst);
roland@4106 1400 data = dst;
roland@4106 1401 }
roland@4106 1402 if (x->is_add()) {
roland@4106 1403 __ xadd(LIR_OprFact::address(addr), data, dst, LIR_OprFact::illegalOpr);
roland@4106 1404 } else {
roland@4106 1405 if (is_obj) {
roland@4106 1406 // Do the pre-write barrier, if any.
roland@4106 1407 pre_barrier(LIR_OprFact::address(addr), LIR_OprFact::illegalOpr /* pre_val */,
roland@4106 1408 true /* do_load */, false /* patch */, NULL);
roland@4106 1409 }
roland@4106 1410 __ xchg(LIR_OprFact::address(addr), data, dst, LIR_OprFact::illegalOpr);
roland@4106 1411 if (is_obj) {
roland@4106 1412 // Seems to be a precise address
roland@4106 1413 post_barrier(LIR_OprFact::address(addr), data);
roland@4106 1414 }
roland@4106 1415 }
roland@4106 1416 }

mercurial