1 /* 2 * Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved. 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 * 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 * or visit www.oracle.com if you need additional information or have any 21 * questions. 22 * 23 */ 24 25 #ifndef SHARE_C1_C1_LIR_HPP 26 #define SHARE_C1_C1_LIR_HPP 27 28 #include "c1/c1_Defs.hpp" 29 #include "c1/c1_ValueType.hpp" 30 #include "oops/method.hpp" 31 #include "utilities/globalDefinitions.hpp" 32 33 class BlockBegin; 34 class BlockList; 35 class LIR_Assembler; 36 class CodeEmitInfo; 37 class CodeStub; 38 class CodeStubList; 39 class C1SafepointPollStub; 40 class ArrayCopyStub; 41 class LIR_Op; 42 class ciType; 43 class ValueType; 44 class LIR_OpVisitState; 45 class FpuStackSim; 46 47 //--------------------------------------------------------------------- 48 // LIR Operands 49 // LIR_OprDesc 50 // LIR_OprPtr 51 // LIR_Const 52 // LIR_Address 53 //--------------------------------------------------------------------- 54 class LIR_OprDesc; 55 class LIR_OprPtr; 56 class LIR_Const; 57 class LIR_Address; 58 class LIR_OprVisitor; 59 60 61 typedef LIR_OprDesc* LIR_Opr; 62 typedef int RegNr; 63 64 typedef GrowableArray<LIR_Opr> LIR_OprList; 65 typedef GrowableArray<LIR_Op*> LIR_OpArray; 66 typedef GrowableArray<LIR_Op*> LIR_OpList; 67 68 // define LIR_OprPtr early so LIR_OprDesc can refer to it 69 class LIR_OprPtr: public CompilationResourceObj { 70 public: 71 bool is_oop_pointer() const { return (type() == T_OBJECT); } 72 bool is_float_kind() const { BasicType t = type(); return (t == T_FLOAT) || (t == T_DOUBLE); } 73 74 virtual LIR_Const* as_constant() { return NULL; } 75 virtual LIR_Address* as_address() { return NULL; } 76 virtual BasicType type() const = 0; 77 virtual void print_value_on(outputStream* out) const = 0; 78 }; 79 80 81 82 // LIR constants 83 class LIR_Const: public LIR_OprPtr { 84 private: 85 JavaValue _value; 86 87 void type_check(BasicType t) const { assert(type() == t, "type check"); } 88 void type_check(BasicType t1, BasicType t2) const { assert(type() == t1 || type() == t2, "type check"); } 89 void type_check(BasicType t1, BasicType t2, BasicType t3) const { assert(type() == t1 || type() == t2 || type() == t3, "type check"); } 90 91 public: 92 LIR_Const(jint i, bool is_address=false) { _value.set_type(is_address?T_ADDRESS:T_INT); _value.set_jint(i); } 93 LIR_Const(jlong l) { _value.set_type(T_LONG); _value.set_jlong(l); } 94 LIR_Const(jfloat f) { _value.set_type(T_FLOAT); _value.set_jfloat(f); } 95 LIR_Const(jdouble d) { _value.set_type(T_DOUBLE); _value.set_jdouble(d); } 96 LIR_Const(jobject o) { _value.set_type(T_OBJECT); _value.set_jobject(o); } 97 LIR_Const(void* p) { 98 #ifdef _LP64 99 assert(sizeof(jlong) >= sizeof(p), "too small");; 100 _value.set_type(T_LONG); _value.set_jlong((jlong)p); 101 #else 102 assert(sizeof(jint) >= sizeof(p), "too small");; 103 _value.set_type(T_INT); _value.set_jint((jint)p); 104 #endif 105 } 106 LIR_Const(Metadata* m) { 107 _value.set_type(T_METADATA); 108 #ifdef _LP64 109 _value.set_jlong((jlong)m); 110 #else 111 _value.set_jint((jint)m); 112 #endif // _LP64 113 } 114 115 virtual BasicType type() const { return _value.get_type(); } 116 virtual LIR_Const* as_constant() { return this; } 117 118 jint as_jint() const { type_check(T_INT, T_ADDRESS); return _value.get_jint(); } 119 jlong as_jlong() const { type_check(T_LONG ); return _value.get_jlong(); } 120 jfloat as_jfloat() const { type_check(T_FLOAT ); return _value.get_jfloat(); } 121 jdouble as_jdouble() const { type_check(T_DOUBLE); return _value.get_jdouble(); } 122 jobject as_jobject() const { type_check(T_OBJECT); return _value.get_jobject(); } 123 jint as_jint_lo() const { type_check(T_LONG ); return low(_value.get_jlong()); } 124 jint as_jint_hi() const { type_check(T_LONG ); return high(_value.get_jlong()); } 125 126 #ifdef _LP64 127 address as_pointer() const { type_check(T_LONG ); return (address)_value.get_jlong(); } 128 Metadata* as_metadata() const { type_check(T_METADATA); return (Metadata*)_value.get_jlong(); } 129 #else 130 address as_pointer() const { type_check(T_INT ); return (address)_value.get_jint(); } 131 Metadata* as_metadata() const { type_check(T_METADATA); return (Metadata*)_value.get_jint(); } 132 #endif 133 134 135 jint as_jint_bits() const { type_check(T_FLOAT, T_INT, T_ADDRESS); return _value.get_jint(); } 136 jint as_jint_lo_bits() const { 137 if (type() == T_DOUBLE) { 138 return low(jlong_cast(_value.get_jdouble())); 139 } else { 140 return as_jint_lo(); 141 } 142 } 143 jint as_jint_hi_bits() const { 144 if (type() == T_DOUBLE) { 145 return high(jlong_cast(_value.get_jdouble())); 146 } else { 147 return as_jint_hi(); 148 } 149 } 150 jlong as_jlong_bits() const { 151 if (type() == T_DOUBLE) { 152 return jlong_cast(_value.get_jdouble()); 153 } else { 154 return as_jlong(); 155 } 156 } 157 158 virtual void print_value_on(outputStream* out) const PRODUCT_RETURN; 159 160 161 bool is_zero_float() { 162 jfloat f = as_jfloat(); 163 jfloat ok = 0.0f; 164 return jint_cast(f) == jint_cast(ok); 165 } 166 167 bool is_one_float() { 168 jfloat f = as_jfloat(); 169 return !g_isnan(f) && g_isfinite(f) && f == 1.0; 170 } 171 172 bool is_zero_double() { 173 jdouble d = as_jdouble(); 174 jdouble ok = 0.0; 175 return jlong_cast(d) == jlong_cast(ok); 176 } 177 178 bool is_one_double() { 179 jdouble d = as_jdouble(); 180 return !g_isnan(d) && g_isfinite(d) && d == 1.0; 181 } 182 }; 183 184 185 //---------------------LIR Operand descriptor------------------------------------ 186 // 187 // The class LIR_OprDesc represents a LIR instruction operand; 188 // it can be a register (ALU/FPU), stack location or a constant; 189 // Constants and addresses are represented as resource area allocated 190 // structures (see above). 191 // Registers and stack locations are inlined into the this pointer 192 // (see value function). 193 194 class LIR_OprDesc: public CompilationResourceObj { 195 public: 196 // value structure: 197 // data opr-type opr-kind 198 // +--------------+-------+-------+ 199 // [max...........|7 6 5 4|3 2 1 0] 200 // ^ 201 // is_pointer bit 202 // 203 // lowest bit cleared, means it is a structure pointer 204 // we need 4 bits to represent types 205 206 private: 207 friend class LIR_OprFact; 208 209 // Conversion 210 intptr_t value() const { return (intptr_t) this; } 211 212 bool check_value_mask(intptr_t mask, intptr_t masked_value) const { 213 return (value() & mask) == masked_value; 214 } 215 216 enum OprKind { 217 pointer_value = 0 218 , stack_value = 1 219 , cpu_register = 3 220 , fpu_register = 5 221 , illegal_value = 7 222 }; 223 224 enum OprBits { 225 pointer_bits = 1 226 , kind_bits = 3 227 , type_bits = 4 228 , size_bits = 2 229 , destroys_bits = 1 230 , virtual_bits = 1 231 , is_xmm_bits = 1 232 , last_use_bits = 1 233 , is_fpu_stack_offset_bits = 1 // used in assertion checking on x86 for FPU stack slot allocation 234 , non_data_bits = kind_bits + type_bits + size_bits + destroys_bits + virtual_bits 235 + is_xmm_bits + last_use_bits + is_fpu_stack_offset_bits 236 , data_bits = BitsPerInt - non_data_bits 237 , reg_bits = data_bits / 2 // for two registers in one value encoding 238 }; 239 240 enum OprShift : uintptr_t { 241 kind_shift = 0 242 , type_shift = kind_shift + kind_bits 243 , size_shift = type_shift + type_bits 244 , destroys_shift = size_shift + size_bits 245 , last_use_shift = destroys_shift + destroys_bits 246 , is_fpu_stack_offset_shift = last_use_shift + last_use_bits 247 , virtual_shift = is_fpu_stack_offset_shift + is_fpu_stack_offset_bits 248 , is_xmm_shift = virtual_shift + virtual_bits 249 , data_shift = is_xmm_shift + is_xmm_bits 250 , reg1_shift = data_shift 251 , reg2_shift = data_shift + reg_bits 252 253 }; 254 255 enum OprSize { 256 single_size = 0 << size_shift 257 , double_size = 1 << size_shift 258 }; 259 260 enum OprMask { 261 kind_mask = right_n_bits(kind_bits) 262 , type_mask = right_n_bits(type_bits) << type_shift 263 , size_mask = right_n_bits(size_bits) << size_shift 264 , last_use_mask = right_n_bits(last_use_bits) << last_use_shift 265 , is_fpu_stack_offset_mask = right_n_bits(is_fpu_stack_offset_bits) << is_fpu_stack_offset_shift 266 , virtual_mask = right_n_bits(virtual_bits) << virtual_shift 267 , is_xmm_mask = right_n_bits(is_xmm_bits) << is_xmm_shift 268 , pointer_mask = right_n_bits(pointer_bits) 269 , lower_reg_mask = right_n_bits(reg_bits) 270 , no_type_mask = (int)(~(type_mask | last_use_mask | is_fpu_stack_offset_mask)) 271 }; 272 273 uint32_t data() const { return (uint32_t)value() >> data_shift; } 274 int lo_reg_half() const { return data() & lower_reg_mask; } 275 int hi_reg_half() const { return (data() >> reg_bits) & lower_reg_mask; } 276 OprKind kind_field() const { return (OprKind)(value() & kind_mask); } 277 OprSize size_field() const { return (OprSize)(value() & size_mask); } 278 279 static char type_char(BasicType t); 280 281 public: 282 enum { 283 vreg_base = ConcreteRegisterImpl::number_of_registers, 284 data_max = (1 << data_bits) - 1, // max unsigned value for data bit field 285 vreg_limit = 10000, // choose a reasonable limit, 286 vreg_max = MIN2(vreg_limit, data_max) // and make sure if fits in the bit field 287 }; 288 289 static inline LIR_Opr illegalOpr(); 290 291 enum OprType { 292 unknown_type = 0 << type_shift // means: not set (catch uninitialized types) 293 , int_type = 1 << type_shift 294 , long_type = 2 << type_shift 295 , object_type = 3 << type_shift 296 , address_type = 4 << type_shift 297 , float_type = 5 << type_shift 298 , double_type = 6 << type_shift 299 , metadata_type = 7 << type_shift 300 }; 301 friend OprType as_OprType(BasicType t); 302 friend BasicType as_BasicType(OprType t); 303 304 OprType type_field_valid() const { assert(is_register() || is_stack(), "should not be called otherwise"); return (OprType)(value() & type_mask); } 305 OprType type_field() const { return is_illegal() ? unknown_type : (OprType)(value() & type_mask); } 306 307 static OprSize size_for(BasicType t) { 308 switch (t) { 309 case T_LONG: 310 case T_DOUBLE: 311 return double_size; 312 break; 313 314 case T_FLOAT: 315 case T_BOOLEAN: 316 case T_CHAR: 317 case T_BYTE: 318 case T_SHORT: 319 case T_INT: 320 case T_ADDRESS: 321 case T_OBJECT: 322 case T_ARRAY: 323 case T_METADATA: 324 return single_size; 325 break; 326 327 default: 328 ShouldNotReachHere(); 329 return single_size; 330 } 331 } 332 333 334 void validate_type() const PRODUCT_RETURN; 335 336 BasicType type() const { 337 if (is_pointer()) { 338 return pointer()->type(); 339 } 340 return as_BasicType(type_field()); 341 } 342 343 344 ValueType* value_type() const { return as_ValueType(type()); } 345 346 char type_char() const { return type_char((is_pointer()) ? pointer()->type() : type()); } 347 348 bool is_equal(LIR_Opr opr) const { return this == opr; } 349 // checks whether types are same 350 bool is_same_type(LIR_Opr opr) const { 351 assert(type_field() != unknown_type && 352 opr->type_field() != unknown_type, "shouldn't see unknown_type"); 353 return type_field() == opr->type_field(); 354 } 355 bool is_same_register(LIR_Opr opr) { 356 return (is_register() && opr->is_register() && 357 kind_field() == opr->kind_field() && 358 (value() & no_type_mask) == (opr->value() & no_type_mask)); 359 } 360 361 bool is_pointer() const { return check_value_mask(pointer_mask, pointer_value); } 362 bool is_illegal() const { return kind_field() == illegal_value; } 363 bool is_valid() const { return kind_field() != illegal_value; } 364 365 bool is_register() const { return is_cpu_register() || is_fpu_register(); } 366 bool is_virtual() const { return is_virtual_cpu() || is_virtual_fpu(); } 367 368 bool is_constant() const { return is_pointer() && pointer()->as_constant() != NULL; } 369 bool is_address() const { return is_pointer() && pointer()->as_address() != NULL; } 370 371 bool is_float_kind() const { return is_pointer() ? pointer()->is_float_kind() : (kind_field() == fpu_register); } 372 bool is_oop() const; 373 374 // semantic for fpu- and xmm-registers: 375 // * is_float and is_double return true for xmm_registers 376 // (so is_single_fpu and is_single_xmm are true) 377 // * So you must always check for is_???_xmm prior to is_???_fpu to 378 // distinguish between fpu- and xmm-registers 379 380 bool is_stack() const { validate_type(); return check_value_mask(kind_mask, stack_value); } 381 bool is_single_stack() const { validate_type(); return check_value_mask(kind_mask | size_mask, stack_value | single_size); } 382 bool is_double_stack() const { validate_type(); return check_value_mask(kind_mask | size_mask, stack_value | double_size); } 383 384 bool is_cpu_register() const { validate_type(); return check_value_mask(kind_mask, cpu_register); } 385 bool is_virtual_cpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, cpu_register | virtual_mask); } 386 bool is_fixed_cpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, cpu_register); } 387 bool is_single_cpu() const { validate_type(); return check_value_mask(kind_mask | size_mask, cpu_register | single_size); } 388 bool is_double_cpu() const { validate_type(); return check_value_mask(kind_mask | size_mask, cpu_register | double_size); } 389 390 bool is_fpu_register() const { validate_type(); return check_value_mask(kind_mask, fpu_register); } 391 bool is_virtual_fpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, fpu_register | virtual_mask); } 392 bool is_fixed_fpu() const { validate_type(); return check_value_mask(kind_mask | virtual_mask, fpu_register); } 393 bool is_single_fpu() const { validate_type(); return check_value_mask(kind_mask | size_mask, fpu_register | single_size); } 394 bool is_double_fpu() const { validate_type(); return check_value_mask(kind_mask | size_mask, fpu_register | double_size); } 395 396 bool is_xmm_register() const { validate_type(); return check_value_mask(kind_mask | is_xmm_mask, fpu_register | is_xmm_mask); } 397 bool is_single_xmm() const { validate_type(); return check_value_mask(kind_mask | size_mask | is_xmm_mask, fpu_register | single_size | is_xmm_mask); } 398 bool is_double_xmm() const { validate_type(); return check_value_mask(kind_mask | size_mask | is_xmm_mask, fpu_register | double_size | is_xmm_mask); } 399 400 // fast accessor functions for special bits that do not work for pointers 401 // (in this functions, the check for is_pointer() is omitted) 402 bool is_single_word() const { assert(is_register() || is_stack(), "type check"); return check_value_mask(size_mask, single_size); } 403 bool is_double_word() const { assert(is_register() || is_stack(), "type check"); return check_value_mask(size_mask, double_size); } 404 bool is_virtual_register() const { assert(is_register(), "type check"); return check_value_mask(virtual_mask, virtual_mask); } 405 bool is_oop_register() const { assert(is_register() || is_stack(), "type check"); return type_field_valid() == object_type; } 406 BasicType type_register() const { assert(is_register() || is_stack(), "type check"); return as_BasicType(type_field_valid()); } 407 408 bool is_last_use() const { assert(is_register(), "only works for registers"); return (value() & last_use_mask) != 0; } 409 bool is_fpu_stack_offset() const { assert(is_register(), "only works for registers"); return (value() & is_fpu_stack_offset_mask) != 0; } 410 LIR_Opr make_last_use() { assert(is_register(), "only works for registers"); return (LIR_Opr)(value() | last_use_mask); } 411 LIR_Opr make_fpu_stack_offset() { assert(is_register(), "only works for registers"); return (LIR_Opr)(value() | is_fpu_stack_offset_mask); } 412 413 414 int single_stack_ix() const { assert(is_single_stack() && !is_virtual(), "type check"); return (int)data(); } 415 int double_stack_ix() const { assert(is_double_stack() && !is_virtual(), "type check"); return (int)data(); } 416 RegNr cpu_regnr() const { assert(is_single_cpu() && !is_virtual(), "type check"); return (RegNr)data(); } 417 RegNr cpu_regnrLo() const { assert(is_double_cpu() && !is_virtual(), "type check"); return (RegNr)lo_reg_half(); } 418 RegNr cpu_regnrHi() const { assert(is_double_cpu() && !is_virtual(), "type check"); return (RegNr)hi_reg_half(); } 419 RegNr fpu_regnr() const { assert(is_single_fpu() && !is_virtual(), "type check"); return (RegNr)data(); } 420 RegNr fpu_regnrLo() const { assert(is_double_fpu() && !is_virtual(), "type check"); return (RegNr)lo_reg_half(); } 421 RegNr fpu_regnrHi() const { assert(is_double_fpu() && !is_virtual(), "type check"); return (RegNr)hi_reg_half(); } 422 RegNr xmm_regnr() const { assert(is_single_xmm() && !is_virtual(), "type check"); return (RegNr)data(); } 423 RegNr xmm_regnrLo() const { assert(is_double_xmm() && !is_virtual(), "type check"); return (RegNr)lo_reg_half(); } 424 RegNr xmm_regnrHi() const { assert(is_double_xmm() && !is_virtual(), "type check"); return (RegNr)hi_reg_half(); } 425 int vreg_number() const { assert(is_virtual(), "type check"); return (RegNr)data(); } 426 427 LIR_OprPtr* pointer() const { assert(is_pointer(), "type check"); return (LIR_OprPtr*)this; } 428 LIR_Const* as_constant_ptr() const { return pointer()->as_constant(); } 429 LIR_Address* as_address_ptr() const { return pointer()->as_address(); } 430 431 Register as_register() const; 432 Register as_register_lo() const; 433 Register as_register_hi() const; 434 435 Register as_pointer_register() { 436 #ifdef _LP64 437 if (is_double_cpu()) { 438 assert(as_register_lo() == as_register_hi(), "should be a single register"); 439 return as_register_lo(); 440 } 441 #endif 442 return as_register(); 443 } 444 445 FloatRegister as_float_reg () const; 446 FloatRegister as_double_reg () const; 447 #ifdef X86 448 XMMRegister as_xmm_float_reg () const; 449 XMMRegister as_xmm_double_reg() const; 450 // for compatibility with RInfo 451 int fpu() const { return lo_reg_half(); } 452 #endif 453 454 jint as_jint() const { return as_constant_ptr()->as_jint(); } 455 jlong as_jlong() const { return as_constant_ptr()->as_jlong(); } 456 jfloat as_jfloat() const { return as_constant_ptr()->as_jfloat(); } 457 jdouble as_jdouble() const { return as_constant_ptr()->as_jdouble(); } 458 jobject as_jobject() const { return as_constant_ptr()->as_jobject(); } 459 460 void print() const PRODUCT_RETURN; 461 void print(outputStream* out) const PRODUCT_RETURN; 462 }; 463 464 465 inline LIR_OprDesc::OprType as_OprType(BasicType type) { 466 switch (type) { 467 case T_INT: return LIR_OprDesc::int_type; 468 case T_LONG: return LIR_OprDesc::long_type; 469 case T_FLOAT: return LIR_OprDesc::float_type; 470 case T_DOUBLE: return LIR_OprDesc::double_type; 471 case T_OBJECT: 472 case T_ARRAY: return LIR_OprDesc::object_type; 473 case T_ADDRESS: return LIR_OprDesc::address_type; 474 case T_METADATA: return LIR_OprDesc::metadata_type; 475 case T_ILLEGAL: // fall through 476 default: ShouldNotReachHere(); return LIR_OprDesc::unknown_type; 477 } 478 } 479 480 inline BasicType as_BasicType(LIR_OprDesc::OprType t) { 481 switch (t) { 482 case LIR_OprDesc::int_type: return T_INT; 483 case LIR_OprDesc::long_type: return T_LONG; 484 case LIR_OprDesc::float_type: return T_FLOAT; 485 case LIR_OprDesc::double_type: return T_DOUBLE; 486 case LIR_OprDesc::object_type: return T_OBJECT; 487 case LIR_OprDesc::address_type: return T_ADDRESS; 488 case LIR_OprDesc::metadata_type:return T_METADATA; 489 case LIR_OprDesc::unknown_type: // fall through 490 default: ShouldNotReachHere(); return T_ILLEGAL; 491 } 492 } 493 494 495 // LIR_Address 496 class LIR_Address: public LIR_OprPtr { 497 friend class LIR_OpVisitState; 498 499 public: 500 // NOTE: currently these must be the log2 of the scale factor (and 501 // must also be equivalent to the ScaleFactor enum in 502 // assembler_i486.hpp) 503 enum Scale { 504 times_1 = 0, 505 times_2 = 1, 506 times_4 = 2, 507 times_8 = 3 508 }; 509 510 private: 511 LIR_Opr _base; 512 LIR_Opr _index; 513 Scale _scale; 514 intx _disp; 515 BasicType _type; 516 517 public: 518 LIR_Address(LIR_Opr base, LIR_Opr index, BasicType type): 519 _base(base) 520 , _index(index) 521 , _scale(times_1) 522 , _disp(0) 523 , _type(type) { verify(); } 524 525 LIR_Address(LIR_Opr base, intx disp, BasicType type): 526 _base(base) 527 , _index(LIR_OprDesc::illegalOpr()) 528 , _scale(times_1) 529 , _disp(disp) 530 , _type(type) { verify(); } 531 532 LIR_Address(LIR_Opr base, BasicType type): 533 _base(base) 534 , _index(LIR_OprDesc::illegalOpr()) 535 , _scale(times_1) 536 , _disp(0) 537 , _type(type) { verify(); } 538 539 LIR_Address(LIR_Opr base, LIR_Opr index, intx disp, BasicType type): 540 _base(base) 541 , _index(index) 542 , _scale(times_1) 543 , _disp(disp) 544 , _type(type) { verify(); } 545 546 LIR_Address(LIR_Opr base, LIR_Opr index, Scale scale, intx disp, BasicType type): 547 _base(base) 548 , _index(index) 549 , _scale(scale) 550 , _disp(disp) 551 , _type(type) { verify(); } 552 553 LIR_Opr base() const { return _base; } 554 LIR_Opr index() const { return _index; } 555 Scale scale() const { return _scale; } 556 intx disp() const { return _disp; } 557 558 bool equals(LIR_Address* other) const { return base() == other->base() && index() == other->index() && disp() == other->disp() && scale() == other->scale(); } 559 560 virtual LIR_Address* as_address() { return this; } 561 virtual BasicType type() const { return _type; } 562 virtual void print_value_on(outputStream* out) const PRODUCT_RETURN; 563 564 void verify() const PRODUCT_RETURN; 565 566 static Scale scale(BasicType type); 567 }; 568 569 570 // operand factory 571 class LIR_OprFact: public AllStatic { 572 public: 573 574 static LIR_Opr illegalOpr; 575 576 static LIR_Opr single_cpu(int reg) { 577 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 578 LIR_OprDesc::int_type | 579 LIR_OprDesc::cpu_register | 580 LIR_OprDesc::single_size); 581 } 582 static LIR_Opr single_cpu_oop(int reg) { 583 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 584 LIR_OprDesc::object_type | 585 LIR_OprDesc::cpu_register | 586 LIR_OprDesc::single_size); 587 } 588 static LIR_Opr single_cpu_address(int reg) { 589 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 590 LIR_OprDesc::address_type | 591 LIR_OprDesc::cpu_register | 592 LIR_OprDesc::single_size); 593 } 594 static LIR_Opr single_cpu_metadata(int reg) { 595 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 596 LIR_OprDesc::metadata_type | 597 LIR_OprDesc::cpu_register | 598 LIR_OprDesc::single_size); 599 } 600 static LIR_Opr double_cpu(int reg1, int reg2) { 601 LP64_ONLY(assert(reg1 == reg2, "must be identical")); 602 return (LIR_Opr)(intptr_t)((reg1 << LIR_OprDesc::reg1_shift) | 603 (reg2 << LIR_OprDesc::reg2_shift) | 604 LIR_OprDesc::long_type | 605 LIR_OprDesc::cpu_register | 606 LIR_OprDesc::double_size); 607 } 608 609 static LIR_Opr single_fpu(int reg) { 610 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 611 LIR_OprDesc::float_type | 612 LIR_OprDesc::fpu_register | 613 LIR_OprDesc::single_size); 614 } 615 616 // Platform dependant. 617 static LIR_Opr double_fpu(int reg1, int reg2 = -1 /*fnoreg*/); 618 619 #ifdef ARM32 620 static LIR_Opr single_softfp(int reg) { 621 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 622 LIR_OprDesc::float_type | 623 LIR_OprDesc::cpu_register | 624 LIR_OprDesc::single_size); 625 } 626 static LIR_Opr double_softfp(int reg1, int reg2) { 627 return (LIR_Opr)(intptr_t)((reg1 << LIR_OprDesc::reg1_shift) | 628 (reg2 << LIR_OprDesc::reg2_shift) | 629 LIR_OprDesc::double_type | 630 LIR_OprDesc::cpu_register | 631 LIR_OprDesc::double_size); 632 } 633 #endif // ARM32 634 635 #if defined(X86) 636 static LIR_Opr single_xmm(int reg) { 637 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 638 LIR_OprDesc::float_type | 639 LIR_OprDesc::fpu_register | 640 LIR_OprDesc::single_size | 641 LIR_OprDesc::is_xmm_mask); 642 } 643 static LIR_Opr double_xmm(int reg) { 644 return (LIR_Opr)(intptr_t)((reg << LIR_OprDesc::reg1_shift) | 645 (reg << LIR_OprDesc::reg2_shift) | 646 LIR_OprDesc::double_type | 647 LIR_OprDesc::fpu_register | 648 LIR_OprDesc::double_size | 649 LIR_OprDesc::is_xmm_mask); 650 } 651 #endif // X86 652 653 static LIR_Opr virtual_register(int index, BasicType type) { 654 if (index > LIR_OprDesc::vreg_max) { 655 // Running out of virtual registers. Caller should bailout. 656 return illegalOpr; 657 } 658 659 LIR_Opr res; 660 switch (type) { 661 case T_OBJECT: // fall through 662 case T_ARRAY: 663 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 664 LIR_OprDesc::object_type | 665 LIR_OprDesc::cpu_register | 666 LIR_OprDesc::single_size | 667 LIR_OprDesc::virtual_mask); 668 break; 669 670 case T_METADATA: 671 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 672 LIR_OprDesc::metadata_type| 673 LIR_OprDesc::cpu_register | 674 LIR_OprDesc::single_size | 675 LIR_OprDesc::virtual_mask); 676 break; 677 678 case T_INT: 679 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 680 LIR_OprDesc::int_type | 681 LIR_OprDesc::cpu_register | 682 LIR_OprDesc::single_size | 683 LIR_OprDesc::virtual_mask); 684 break; 685 686 case T_ADDRESS: 687 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 688 LIR_OprDesc::address_type | 689 LIR_OprDesc::cpu_register | 690 LIR_OprDesc::single_size | 691 LIR_OprDesc::virtual_mask); 692 break; 693 694 case T_LONG: 695 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 696 LIR_OprDesc::long_type | 697 LIR_OprDesc::cpu_register | 698 LIR_OprDesc::double_size | 699 LIR_OprDesc::virtual_mask); 700 break; 701 702 #ifdef __SOFTFP__ 703 case T_FLOAT: 704 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 705 LIR_OprDesc::float_type | 706 LIR_OprDesc::cpu_register | 707 LIR_OprDesc::single_size | 708 LIR_OprDesc::virtual_mask); 709 break; 710 case T_DOUBLE: 711 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 712 LIR_OprDesc::double_type | 713 LIR_OprDesc::cpu_register | 714 LIR_OprDesc::double_size | 715 LIR_OprDesc::virtual_mask); 716 break; 717 #else // __SOFTFP__ 718 case T_FLOAT: 719 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 720 LIR_OprDesc::float_type | 721 LIR_OprDesc::fpu_register | 722 LIR_OprDesc::single_size | 723 LIR_OprDesc::virtual_mask); 724 break; 725 726 case 727 T_DOUBLE: res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 728 LIR_OprDesc::double_type | 729 LIR_OprDesc::fpu_register | 730 LIR_OprDesc::double_size | 731 LIR_OprDesc::virtual_mask); 732 break; 733 #endif // __SOFTFP__ 734 default: ShouldNotReachHere(); res = illegalOpr; 735 } 736 737 #ifdef ASSERT 738 res->validate_type(); 739 assert(res->vreg_number() == index, "conversion check"); 740 assert(index >= LIR_OprDesc::vreg_base, "must start at vreg_base"); 741 742 // old-style calculation; check if old and new method are equal 743 LIR_OprDesc::OprType t = as_OprType(type); 744 #ifdef __SOFTFP__ 745 LIR_Opr old_res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 746 t | 747 LIR_OprDesc::cpu_register | 748 LIR_OprDesc::size_for(type) | LIR_OprDesc::virtual_mask); 749 #else // __SOFTFP__ 750 LIR_Opr old_res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | t | 751 ((type == T_FLOAT || type == T_DOUBLE) ? LIR_OprDesc::fpu_register : LIR_OprDesc::cpu_register) | 752 LIR_OprDesc::size_for(type) | LIR_OprDesc::virtual_mask); 753 assert(res == old_res, "old and new method not equal"); 754 #endif // __SOFTFP__ 755 #endif // ASSERT 756 757 return res; 758 } 759 760 // 'index' is computed by FrameMap::local_stack_pos(index); do not use other parameters as 761 // the index is platform independent; a double stack useing indeces 2 and 3 has always 762 // index 2. 763 static LIR_Opr stack(int index, BasicType type) { 764 LIR_Opr res; 765 switch (type) { 766 case T_OBJECT: // fall through 767 case T_ARRAY: 768 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 769 LIR_OprDesc::object_type | 770 LIR_OprDesc::stack_value | 771 LIR_OprDesc::single_size); 772 break; 773 774 case T_METADATA: 775 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 776 LIR_OprDesc::metadata_type | 777 LIR_OprDesc::stack_value | 778 LIR_OprDesc::single_size); 779 break; 780 case T_INT: 781 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 782 LIR_OprDesc::int_type | 783 LIR_OprDesc::stack_value | 784 LIR_OprDesc::single_size); 785 break; 786 787 case T_ADDRESS: 788 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 789 LIR_OprDesc::address_type | 790 LIR_OprDesc::stack_value | 791 LIR_OprDesc::single_size); 792 break; 793 794 case T_LONG: 795 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 796 LIR_OprDesc::long_type | 797 LIR_OprDesc::stack_value | 798 LIR_OprDesc::double_size); 799 break; 800 801 case T_FLOAT: 802 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 803 LIR_OprDesc::float_type | 804 LIR_OprDesc::stack_value | 805 LIR_OprDesc::single_size); 806 break; 807 case T_DOUBLE: 808 res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 809 LIR_OprDesc::double_type | 810 LIR_OprDesc::stack_value | 811 LIR_OprDesc::double_size); 812 break; 813 814 default: ShouldNotReachHere(); res = illegalOpr; 815 } 816 817 #ifdef ASSERT 818 assert(index >= 0, "index must be positive"); 819 assert(index == (int)res->data(), "conversion check"); 820 821 LIR_Opr old_res = (LIR_Opr)(intptr_t)((index << LIR_OprDesc::data_shift) | 822 LIR_OprDesc::stack_value | 823 as_OprType(type) | 824 LIR_OprDesc::size_for(type)); 825 assert(res == old_res, "old and new method not equal"); 826 #endif 827 828 return res; 829 } 830 831 static LIR_Opr intConst(jint i) { return (LIR_Opr)(new LIR_Const(i)); } 832 static LIR_Opr longConst(jlong l) { return (LIR_Opr)(new LIR_Const(l)); } 833 static LIR_Opr floatConst(jfloat f) { return (LIR_Opr)(new LIR_Const(f)); } 834 static LIR_Opr doubleConst(jdouble d) { return (LIR_Opr)(new LIR_Const(d)); } 835 static LIR_Opr oopConst(jobject o) { return (LIR_Opr)(new LIR_Const(o)); } 836 static LIR_Opr address(LIR_Address* a) { return (LIR_Opr)a; } 837 static LIR_Opr intptrConst(void* p) { return (LIR_Opr)(new LIR_Const(p)); } 838 static LIR_Opr intptrConst(intptr_t v) { return (LIR_Opr)(new LIR_Const((void*)v)); } 839 static LIR_Opr illegal() { return (LIR_Opr)-1; } 840 static LIR_Opr addressConst(jint i) { return (LIR_Opr)(new LIR_Const(i, true)); } 841 static LIR_Opr metadataConst(Metadata* m) { return (LIR_Opr)(new LIR_Const(m)); } 842 843 static LIR_Opr value_type(ValueType* type); 844 }; 845 846 847 //------------------------------------------------------------------------------- 848 // LIR Instructions 849 //------------------------------------------------------------------------------- 850 // 851 // Note: 852 // - every instruction has a result operand 853 // - every instruction has an CodeEmitInfo operand (can be revisited later) 854 // - every instruction has a LIR_OpCode operand 855 // - LIR_OpN, means an instruction that has N input operands 856 // 857 // class hierarchy: 858 // 859 class LIR_Op; 860 class LIR_Op0; 861 class LIR_OpLabel; 862 class LIR_Op1; 863 class LIR_OpBranch; 864 class LIR_OpConvert; 865 class LIR_OpAllocObj; 866 class LIR_OpReturn; 867 class LIR_OpRoundFP; 868 class LIR_Op2; 869 class LIR_OpDelay; 870 class LIR_Op3; 871 class LIR_OpAllocArray; 872 #ifdef RISCV 873 class LIR_Op4; 874 #endif 875 class LIR_OpCall; 876 class LIR_OpJavaCall; 877 class LIR_OpRTCall; 878 class LIR_OpArrayCopy; 879 class LIR_OpUpdateCRC32; 880 class LIR_OpLock; 881 class LIR_OpTypeCheck; 882 class LIR_OpCompareAndSwap; 883 class LIR_OpProfileCall; 884 class LIR_OpProfileType; 885 #ifdef ASSERT 886 class LIR_OpAssert; 887 #endif 888 889 // LIR operation codes 890 enum LIR_Code { 891 lir_none 892 , begin_op0 893 , lir_label 894 , lir_nop 895 , lir_backwardbranch_target 896 , lir_std_entry 897 , lir_osr_entry 898 , lir_fpop_raw 899 , lir_breakpoint 900 , lir_rtcall 901 , lir_membar 902 , lir_membar_acquire 903 , lir_membar_release 904 , lir_membar_loadload 905 , lir_membar_storestore 906 , lir_membar_loadstore 907 , lir_membar_storeload 908 , lir_get_thread 909 , lir_on_spin_wait 910 , end_op0 911 , begin_op1 912 , lir_fxch 913 , lir_fld 914 , lir_push 915 , lir_pop 916 , lir_null_check 917 , lir_return 918 , lir_leal 919 #ifndef RISCV 920 , lir_branch 921 , lir_cond_float_branch 922 #endif 923 , lir_move 924 , lir_convert 925 , lir_alloc_object 926 , lir_monaddr 927 , lir_roundfp 928 , lir_safepoint 929 , lir_unwind 930 , end_op1 931 , begin_op2 932 #ifdef RISCV 933 , lir_branch 934 , lir_cond_float_branch 935 #endif 936 , lir_cmp 937 , lir_cmp_l2i 938 , lir_ucmp_fd2i 939 , lir_cmp_fd2i 940 #ifndef RISCV 941 , lir_cmove 942 #endif 943 , lir_add 944 , lir_sub 945 , lir_mul 946 , lir_div 947 , lir_rem 948 , lir_sqrt 949 , lir_abs 950 , lir_neg 951 , lir_tan 952 , lir_log10 953 , lir_logic_and 954 , lir_logic_or 955 , lir_logic_xor 956 , lir_shl 957 , lir_shr 958 , lir_ushr 959 , lir_alloc_array 960 , lir_throw 961 , lir_xadd 962 , lir_xchg 963 , end_op2 964 , begin_op3 965 , lir_idiv 966 , lir_irem 967 , lir_fmad 968 , lir_fmaf 969 , end_op3 970 #ifdef RISCV 971 , begin_op4 972 , lir_cmove 973 , end_op4 974 #endif 975 , begin_opJavaCall 976 , lir_static_call 977 , lir_optvirtual_call 978 , lir_icvirtual_call 979 , lir_dynamic_call 980 , end_opJavaCall 981 , begin_opArrayCopy 982 , lir_arraycopy 983 , end_opArrayCopy 984 , begin_opUpdateCRC32 985 , lir_updatecrc32 986 , end_opUpdateCRC32 987 , begin_opLock 988 , lir_lock 989 , lir_unlock 990 , end_opLock 991 , begin_delay_slot 992 , lir_delay_slot 993 , end_delay_slot 994 , begin_opTypeCheck 995 , lir_instanceof 996 , lir_checkcast 997 , lir_store_check 998 , end_opTypeCheck 999 , begin_opCompareAndSwap 1000 , lir_cas_long 1001 , lir_cas_obj 1002 , lir_cas_int 1003 , end_opCompareAndSwap 1004 , begin_opMDOProfile 1005 , lir_profile_call 1006 , lir_profile_type 1007 , end_opMDOProfile 1008 , begin_opAssert 1009 , lir_assert 1010 , end_opAssert 1011 #if defined(RISCV) && defined(INCLUDE_ZGC) 1012 , begin_opZLoadBarrierTest 1013 , lir_zloadbarrier_test 1014 , end_opZLoadBarrierTest 1015 #endif 1016 }; 1017 1018 1019 enum LIR_Condition { 1020 lir_cond_equal 1021 , lir_cond_notEqual 1022 , lir_cond_less 1023 , lir_cond_lessEqual 1024 , lir_cond_greaterEqual 1025 , lir_cond_greater 1026 , lir_cond_belowEqual 1027 , lir_cond_aboveEqual 1028 , lir_cond_always 1029 , lir_cond_unknown = -1 1030 }; 1031 1032 1033 enum LIR_PatchCode { 1034 lir_patch_none, 1035 lir_patch_low, 1036 lir_patch_high, 1037 lir_patch_normal 1038 }; 1039 1040 1041 enum LIR_MoveKind { 1042 lir_move_normal, 1043 lir_move_volatile, 1044 lir_move_unaligned, 1045 lir_move_wide, 1046 lir_move_max_flag 1047 }; 1048 1049 1050 // -------------------------------------------------- 1051 // LIR_Op 1052 // -------------------------------------------------- 1053 class LIR_Op: public CompilationResourceObj { 1054 friend class LIR_OpVisitState; 1055 1056 #ifdef ASSERT 1057 private: 1058 const char * _file; 1059 int _line; 1060 #endif 1061 1062 protected: 1063 LIR_Opr _result; 1064 unsigned short _code; 1065 unsigned short _flags; 1066 CodeEmitInfo* _info; 1067 int _id; // value id for register allocation 1068 int _fpu_pop_count; 1069 Instruction* _source; // for debugging 1070 1071 static void print_condition(outputStream* out, LIR_Condition cond) PRODUCT_RETURN; 1072 1073 protected: 1074 static bool is_in_range(LIR_Code test, LIR_Code start, LIR_Code end) { return start < test && test < end; } 1075 1076 public: 1077 LIR_Op() 1078 : 1079 #ifdef ASSERT 1080 _file(NULL) 1081 , _line(0), 1082 #endif 1083 _result(LIR_OprFact::illegalOpr) 1084 , _code(lir_none) 1085 , _flags(0) 1086 , _info(NULL) 1087 , _id(-1) 1088 , _fpu_pop_count(0) 1089 , _source(NULL) {} 1090 1091 LIR_Op(LIR_Code code, LIR_Opr result, CodeEmitInfo* info) 1092 : 1093 #ifdef ASSERT 1094 _file(NULL) 1095 , _line(0), 1096 #endif 1097 _result(result) 1098 , _code(code) 1099 , _flags(0) 1100 , _info(info) 1101 , _id(-1) 1102 , _fpu_pop_count(0) 1103 , _source(NULL) {} 1104 1105 CodeEmitInfo* info() const { return _info; } 1106 LIR_Code code() const { return (LIR_Code)_code; } 1107 LIR_Opr result_opr() const { return _result; } 1108 void set_result_opr(LIR_Opr opr) { _result = opr; } 1109 1110 #ifdef ASSERT 1111 void set_file_and_line(const char * file, int line) { 1112 _file = file; 1113 _line = line; 1114 } 1115 #endif 1116 1117 virtual const char * name() const PRODUCT_RETURN0; 1118 virtual void visit(LIR_OpVisitState* state); 1119 1120 int id() const { return _id; } 1121 void set_id(int id) { _id = id; } 1122 1123 // FPU stack simulation helpers -- only used on Intel 1124 void set_fpu_pop_count(int count) { assert(count >= 0 && count <= 1, "currently only 0 and 1 are valid"); _fpu_pop_count = count; } 1125 int fpu_pop_count() const { return _fpu_pop_count; } 1126 bool pop_fpu_stack() { return _fpu_pop_count > 0; } 1127 1128 Instruction* source() const { return _source; } 1129 void set_source(Instruction* ins) { _source = ins; } 1130 1131 virtual void emit_code(LIR_Assembler* masm) = 0; 1132 virtual void print_instr(outputStream* out) const = 0; 1133 virtual void print_on(outputStream* st) const PRODUCT_RETURN; 1134 1135 virtual bool is_patching() { return false; } 1136 virtual LIR_OpCall* as_OpCall() { return NULL; } 1137 virtual LIR_OpJavaCall* as_OpJavaCall() { return NULL; } 1138 virtual LIR_OpLabel* as_OpLabel() { return NULL; } 1139 virtual LIR_OpDelay* as_OpDelay() { return NULL; } 1140 virtual LIR_OpLock* as_OpLock() { return NULL; } 1141 virtual LIR_OpAllocArray* as_OpAllocArray() { return NULL; } 1142 virtual LIR_OpAllocObj* as_OpAllocObj() { return NULL; } 1143 virtual LIR_OpRoundFP* as_OpRoundFP() { return NULL; } 1144 virtual LIR_OpBranch* as_OpBranch() { return NULL; } 1145 virtual LIR_OpReturn* as_OpReturn() { return NULL; } 1146 virtual LIR_OpRTCall* as_OpRTCall() { return NULL; } 1147 virtual LIR_OpConvert* as_OpConvert() { return NULL; } 1148 virtual LIR_Op0* as_Op0() { return NULL; } 1149 virtual LIR_Op1* as_Op1() { return NULL; } 1150 virtual LIR_Op2* as_Op2() { return NULL; } 1151 virtual LIR_Op3* as_Op3() { return NULL; } 1152 #ifdef RISCV 1153 virtual LIR_Op4* as_Op4() { return NULL; } 1154 #endif 1155 virtual LIR_OpArrayCopy* as_OpArrayCopy() { return NULL; } 1156 virtual LIR_OpUpdateCRC32* as_OpUpdateCRC32() { return NULL; } 1157 virtual LIR_OpTypeCheck* as_OpTypeCheck() { return NULL; } 1158 virtual LIR_OpCompareAndSwap* as_OpCompareAndSwap() { return NULL; } 1159 virtual LIR_OpProfileCall* as_OpProfileCall() { return NULL; } 1160 virtual LIR_OpProfileType* as_OpProfileType() { return NULL; } 1161 #ifdef ASSERT 1162 virtual LIR_OpAssert* as_OpAssert() { return NULL; } 1163 #endif 1164 1165 virtual void verify() const {} 1166 }; 1167 1168 // for calls 1169 class LIR_OpCall: public LIR_Op { 1170 friend class LIR_OpVisitState; 1171 1172 protected: 1173 address _addr; 1174 LIR_OprList* _arguments; 1175 protected: 1176 LIR_OpCall(LIR_Code code, address addr, LIR_Opr result, 1177 LIR_OprList* arguments, CodeEmitInfo* info = NULL) 1178 : LIR_Op(code, result, info) 1179 , _addr(addr) 1180 , _arguments(arguments) {} 1181 1182 public: 1183 address addr() const { return _addr; } 1184 const LIR_OprList* arguments() const { return _arguments; } 1185 virtual LIR_OpCall* as_OpCall() { return this; } 1186 }; 1187 1188 1189 // -------------------------------------------------- 1190 // LIR_OpJavaCall 1191 // -------------------------------------------------- 1192 class LIR_OpJavaCall: public LIR_OpCall { 1193 friend class LIR_OpVisitState; 1194 1195 private: 1196 ciMethod* _method; 1197 LIR_Opr _receiver; 1198 LIR_Opr _method_handle_invoke_SP_save_opr; // Used in LIR_OpVisitState::visit to store the reference to FrameMap::method_handle_invoke_SP_save_opr. 1199 1200 public: 1201 LIR_OpJavaCall(LIR_Code code, ciMethod* method, 1202 LIR_Opr receiver, LIR_Opr result, 1203 address addr, LIR_OprList* arguments, 1204 CodeEmitInfo* info) 1205 : LIR_OpCall(code, addr, result, arguments, info) 1206 , _method(method) 1207 , _receiver(receiver) 1208 , _method_handle_invoke_SP_save_opr(LIR_OprFact::illegalOpr) 1209 { assert(is_in_range(code, begin_opJavaCall, end_opJavaCall), "code check"); } 1210 1211 LIR_OpJavaCall(LIR_Code code, ciMethod* method, 1212 LIR_Opr receiver, LIR_Opr result, intptr_t vtable_offset, 1213 LIR_OprList* arguments, CodeEmitInfo* info) 1214 : LIR_OpCall(code, (address)vtable_offset, result, arguments, info) 1215 , _method(method) 1216 , _receiver(receiver) 1217 , _method_handle_invoke_SP_save_opr(LIR_OprFact::illegalOpr) 1218 { assert(is_in_range(code, begin_opJavaCall, end_opJavaCall), "code check"); } 1219 1220 LIR_Opr receiver() const { return _receiver; } 1221 ciMethod* method() const { return _method; } 1222 1223 // JSR 292 support. 1224 bool is_invokedynamic() const { return code() == lir_dynamic_call; } 1225 bool is_method_handle_invoke() const { 1226 return method()->is_compiled_lambda_form() || // Java-generated lambda form 1227 method()->is_method_handle_intrinsic(); // JVM-generated MH intrinsic 1228 } 1229 1230 virtual void emit_code(LIR_Assembler* masm); 1231 virtual LIR_OpJavaCall* as_OpJavaCall() { return this; } 1232 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1233 }; 1234 1235 // -------------------------------------------------- 1236 // LIR_OpLabel 1237 // -------------------------------------------------- 1238 // Location where a branch can continue 1239 class LIR_OpLabel: public LIR_Op { 1240 friend class LIR_OpVisitState; 1241 1242 private: 1243 Label* _label; 1244 public: 1245 LIR_OpLabel(Label* lbl) 1246 : LIR_Op(lir_label, LIR_OprFact::illegalOpr, NULL) 1247 , _label(lbl) {} 1248 Label* label() const { return _label; } 1249 1250 virtual void emit_code(LIR_Assembler* masm); 1251 virtual LIR_OpLabel* as_OpLabel() { return this; } 1252 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1253 }; 1254 1255 // LIR_OpArrayCopy 1256 class LIR_OpArrayCopy: public LIR_Op { 1257 friend class LIR_OpVisitState; 1258 1259 private: 1260 ArrayCopyStub* _stub; 1261 LIR_Opr _src; 1262 LIR_Opr _src_pos; 1263 LIR_Opr _dst; 1264 LIR_Opr _dst_pos; 1265 LIR_Opr _length; 1266 LIR_Opr _tmp; 1267 ciArrayKlass* _expected_type; 1268 int _flags; 1269 1270 public: 1271 enum Flags { 1272 src_null_check = 1 << 0, 1273 dst_null_check = 1 << 1, 1274 src_pos_positive_check = 1 << 2, 1275 dst_pos_positive_check = 1 << 3, 1276 length_positive_check = 1 << 4, 1277 src_range_check = 1 << 5, 1278 dst_range_check = 1 << 6, 1279 type_check = 1 << 7, 1280 overlapping = 1 << 8, 1281 unaligned = 1 << 9, 1282 src_objarray = 1 << 10, 1283 dst_objarray = 1 << 11, 1284 all_flags = (1 << 12) - 1 1285 }; 1286 1287 LIR_OpArrayCopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp, 1288 ciArrayKlass* expected_type, int flags, CodeEmitInfo* info); 1289 1290 LIR_Opr src() const { return _src; } 1291 LIR_Opr src_pos() const { return _src_pos; } 1292 LIR_Opr dst() const { return _dst; } 1293 LIR_Opr dst_pos() const { return _dst_pos; } 1294 LIR_Opr length() const { return _length; } 1295 LIR_Opr tmp() const { return _tmp; } 1296 int flags() const { return _flags; } 1297 ciArrayKlass* expected_type() const { return _expected_type; } 1298 ArrayCopyStub* stub() const { return _stub; } 1299 1300 virtual void emit_code(LIR_Assembler* masm); 1301 virtual LIR_OpArrayCopy* as_OpArrayCopy() { return this; } 1302 void print_instr(outputStream* out) const PRODUCT_RETURN; 1303 }; 1304 1305 // LIR_OpUpdateCRC32 1306 class LIR_OpUpdateCRC32: public LIR_Op { 1307 friend class LIR_OpVisitState; 1308 1309 private: 1310 LIR_Opr _crc; 1311 LIR_Opr _val; 1312 1313 public: 1314 1315 LIR_OpUpdateCRC32(LIR_Opr crc, LIR_Opr val, LIR_Opr res); 1316 1317 LIR_Opr crc() const { return _crc; } 1318 LIR_Opr val() const { return _val; } 1319 1320 virtual void emit_code(LIR_Assembler* masm); 1321 virtual LIR_OpUpdateCRC32* as_OpUpdateCRC32() { return this; } 1322 void print_instr(outputStream* out) const PRODUCT_RETURN; 1323 }; 1324 1325 // -------------------------------------------------- 1326 // LIR_Op0 1327 // -------------------------------------------------- 1328 class LIR_Op0: public LIR_Op { 1329 friend class LIR_OpVisitState; 1330 1331 public: 1332 LIR_Op0(LIR_Code code) 1333 : LIR_Op(code, LIR_OprFact::illegalOpr, NULL) { assert(is_in_range(code, begin_op0, end_op0), "code check"); } 1334 LIR_Op0(LIR_Code code, LIR_Opr result, CodeEmitInfo* info = NULL) 1335 : LIR_Op(code, result, info) { assert(is_in_range(code, begin_op0, end_op0), "code check"); } 1336 1337 virtual void emit_code(LIR_Assembler* masm); 1338 virtual LIR_Op0* as_Op0() { return this; } 1339 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1340 }; 1341 1342 1343 // -------------------------------------------------- 1344 // LIR_Op1 1345 // -------------------------------------------------- 1346 1347 class LIR_Op1: public LIR_Op { 1348 friend class LIR_OpVisitState; 1349 1350 protected: 1351 LIR_Opr _opr; // input operand 1352 BasicType _type; // Operand types 1353 LIR_PatchCode _patch; // only required with patchin (NEEDS_CLEANUP: do we want a special instruction for patching?) 1354 1355 static void print_patch_code(outputStream* out, LIR_PatchCode code); 1356 1357 void set_kind(LIR_MoveKind kind) { 1358 assert(code() == lir_move, "must be"); 1359 _flags = kind; 1360 } 1361 1362 public: 1363 LIR_Op1(LIR_Code code, LIR_Opr opr, LIR_Opr result = LIR_OprFact::illegalOpr, BasicType type = T_ILLEGAL, LIR_PatchCode patch = lir_patch_none, CodeEmitInfo* info = NULL) 1364 : LIR_Op(code, result, info) 1365 , _opr(opr) 1366 , _type(type) 1367 , _patch(patch) { assert(is_in_range(code, begin_op1, end_op1), "code check"); } 1368 1369 LIR_Op1(LIR_Code code, LIR_Opr opr, LIR_Opr result, BasicType type, LIR_PatchCode patch, CodeEmitInfo* info, LIR_MoveKind kind) 1370 : LIR_Op(code, result, info) 1371 , _opr(opr) 1372 , _type(type) 1373 , _patch(patch) { 1374 assert(code == lir_move, "must be"); 1375 set_kind(kind); 1376 } 1377 1378 LIR_Op1(LIR_Code code, LIR_Opr opr, CodeEmitInfo* info) 1379 : LIR_Op(code, LIR_OprFact::illegalOpr, info) 1380 , _opr(opr) 1381 , _type(T_ILLEGAL) 1382 , _patch(lir_patch_none) { assert(is_in_range(code, begin_op1, end_op1), "code check"); } 1383 1384 LIR_Opr in_opr() const { return _opr; } 1385 LIR_PatchCode patch_code() const { return _patch; } 1386 BasicType type() const { return _type; } 1387 1388 LIR_MoveKind move_kind() const { 1389 assert(code() == lir_move, "must be"); 1390 return (LIR_MoveKind)_flags; 1391 } 1392 1393 virtual bool is_patching() { return _patch != lir_patch_none; } 1394 virtual void emit_code(LIR_Assembler* masm); 1395 virtual LIR_Op1* as_Op1() { return this; } 1396 virtual const char * name() const PRODUCT_RETURN0; 1397 1398 void set_in_opr(LIR_Opr opr) { _opr = opr; } 1399 1400 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1401 virtual void verify() const; 1402 }; 1403 1404 1405 // for runtime calls 1406 class LIR_OpRTCall: public LIR_OpCall { 1407 friend class LIR_OpVisitState; 1408 1409 private: 1410 LIR_Opr _tmp; 1411 public: 1412 LIR_OpRTCall(address addr, LIR_Opr tmp, 1413 LIR_Opr result, LIR_OprList* arguments, CodeEmitInfo* info = NULL) 1414 : LIR_OpCall(lir_rtcall, addr, result, arguments, info) 1415 , _tmp(tmp) {} 1416 1417 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1418 virtual void emit_code(LIR_Assembler* masm); 1419 virtual LIR_OpRTCall* as_OpRTCall() { return this; } 1420 1421 LIR_Opr tmp() const { return _tmp; } 1422 1423 virtual void verify() const; 1424 }; 1425 1426 class LIR_OpReturn: public LIR_Op1 { 1427 friend class LIR_OpVisitState; 1428 1429 private: 1430 C1SafepointPollStub* _stub; 1431 1432 public: 1433 LIR_OpReturn(LIR_Opr opr); 1434 1435 C1SafepointPollStub* stub() const { return _stub; } 1436 virtual LIR_OpReturn* as_OpReturn() { return this; } 1437 }; 1438 1439 class ConversionStub; 1440 1441 class LIR_OpConvert: public LIR_Op1 { 1442 friend class LIR_OpVisitState; 1443 1444 private: 1445 Bytecodes::Code _bytecode; 1446 ConversionStub* _stub; 1447 1448 public: 1449 LIR_OpConvert(Bytecodes::Code code, LIR_Opr opr, LIR_Opr result, ConversionStub* stub) 1450 : LIR_Op1(lir_convert, opr, result) 1451 , _bytecode(code) 1452 , _stub(stub) {} 1453 1454 Bytecodes::Code bytecode() const { return _bytecode; } 1455 ConversionStub* stub() const { return _stub; } 1456 1457 virtual void emit_code(LIR_Assembler* masm); 1458 virtual LIR_OpConvert* as_OpConvert() { return this; } 1459 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1460 1461 static void print_bytecode(outputStream* out, Bytecodes::Code code) PRODUCT_RETURN; 1462 }; 1463 1464 1465 // LIR_OpAllocObj 1466 class LIR_OpAllocObj : public LIR_Op1 { 1467 friend class LIR_OpVisitState; 1468 1469 private: 1470 LIR_Opr _tmp1; 1471 LIR_Opr _tmp2; 1472 LIR_Opr _tmp3; 1473 LIR_Opr _tmp4; 1474 int _hdr_size; 1475 int _obj_size; 1476 CodeStub* _stub; 1477 bool _init_check; 1478 1479 public: 1480 LIR_OpAllocObj(LIR_Opr klass, LIR_Opr result, 1481 LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, 1482 int hdr_size, int obj_size, bool init_check, CodeStub* stub) 1483 : LIR_Op1(lir_alloc_object, klass, result) 1484 , _tmp1(t1) 1485 , _tmp2(t2) 1486 , _tmp3(t3) 1487 , _tmp4(t4) 1488 , _hdr_size(hdr_size) 1489 , _obj_size(obj_size) 1490 , _stub(stub) 1491 , _init_check(init_check) { } 1492 1493 LIR_Opr klass() const { return in_opr(); } 1494 LIR_Opr obj() const { return result_opr(); } 1495 LIR_Opr tmp1() const { return _tmp1; } 1496 LIR_Opr tmp2() const { return _tmp2; } 1497 LIR_Opr tmp3() const { return _tmp3; } 1498 LIR_Opr tmp4() const { return _tmp4; } 1499 int header_size() const { return _hdr_size; } 1500 int object_size() const { return _obj_size; } 1501 bool init_check() const { return _init_check; } 1502 CodeStub* stub() const { return _stub; } 1503 1504 virtual void emit_code(LIR_Assembler* masm); 1505 virtual LIR_OpAllocObj * as_OpAllocObj () { return this; } 1506 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1507 }; 1508 1509 1510 // LIR_OpRoundFP 1511 class LIR_OpRoundFP : public LIR_Op1 { 1512 friend class LIR_OpVisitState; 1513 1514 private: 1515 LIR_Opr _tmp; 1516 1517 public: 1518 LIR_OpRoundFP(LIR_Opr reg, LIR_Opr stack_loc_temp, LIR_Opr result) 1519 : LIR_Op1(lir_roundfp, reg, result) 1520 , _tmp(stack_loc_temp) {} 1521 1522 LIR_Opr tmp() const { return _tmp; } 1523 virtual LIR_OpRoundFP* as_OpRoundFP() { return this; } 1524 void print_instr(outputStream* out) const PRODUCT_RETURN; 1525 }; 1526 1527 // LIR_OpTypeCheck 1528 class LIR_OpTypeCheck: public LIR_Op { 1529 friend class LIR_OpVisitState; 1530 1531 private: 1532 LIR_Opr _object; 1533 LIR_Opr _array; 1534 ciKlass* _klass; 1535 LIR_Opr _tmp1; 1536 LIR_Opr _tmp2; 1537 LIR_Opr _tmp3; 1538 bool _fast_check; 1539 CodeEmitInfo* _info_for_patch; 1540 CodeEmitInfo* _info_for_exception; 1541 CodeStub* _stub; 1542 ciMethod* _profiled_method; 1543 int _profiled_bci; 1544 bool _should_profile; 1545 1546 public: 1547 LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass, 1548 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, 1549 CodeEmitInfo* info_for_exception, CodeEmitInfo* info_for_patch, CodeStub* stub); 1550 LIR_OpTypeCheck(LIR_Code code, LIR_Opr object, LIR_Opr array, 1551 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception); 1552 1553 LIR_Opr object() const { return _object; } 1554 LIR_Opr array() const { assert(code() == lir_store_check, "not valid"); return _array; } 1555 LIR_Opr tmp1() const { return _tmp1; } 1556 LIR_Opr tmp2() const { return _tmp2; } 1557 LIR_Opr tmp3() const { return _tmp3; } 1558 ciKlass* klass() const { assert(code() == lir_instanceof || code() == lir_checkcast, "not valid"); return _klass; } 1559 bool fast_check() const { assert(code() == lir_instanceof || code() == lir_checkcast, "not valid"); return _fast_check; } 1560 CodeEmitInfo* info_for_patch() const { return _info_for_patch; } 1561 CodeEmitInfo* info_for_exception() const { return _info_for_exception; } 1562 CodeStub* stub() const { return _stub; } 1563 1564 // MethodData* profiling 1565 void set_profiled_method(ciMethod *method) { _profiled_method = method; } 1566 void set_profiled_bci(int bci) { _profiled_bci = bci; } 1567 void set_should_profile(bool b) { _should_profile = b; } 1568 ciMethod* profiled_method() const { return _profiled_method; } 1569 int profiled_bci() const { return _profiled_bci; } 1570 bool should_profile() const { return _should_profile; } 1571 1572 virtual bool is_patching() { return _info_for_patch != NULL; } 1573 virtual void emit_code(LIR_Assembler* masm); 1574 virtual LIR_OpTypeCheck* as_OpTypeCheck() { return this; } 1575 void print_instr(outputStream* out) const PRODUCT_RETURN; 1576 }; 1577 1578 // LIR_Op2 1579 class LIR_Op2: public LIR_Op { 1580 friend class LIR_OpVisitState; 1581 1582 int _fpu_stack_size; // for sin/cos implementation on Intel 1583 1584 protected: 1585 LIR_Opr _opr1; 1586 LIR_Opr _opr2; 1587 BasicType _type; 1588 LIR_Opr _tmp1; 1589 LIR_Opr _tmp2; 1590 LIR_Opr _tmp3; 1591 LIR_Opr _tmp4; 1592 LIR_Opr _tmp5; 1593 LIR_Condition _condition; 1594 1595 void verify() const; 1596 1597 public: 1598 LIR_Op2(LIR_Code code, LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, CodeEmitInfo* info = NULL, BasicType type = T_ILLEGAL) 1599 : LIR_Op(code, LIR_OprFact::illegalOpr, info) 1600 , _fpu_stack_size(0) 1601 , _opr1(opr1) 1602 , _opr2(opr2) 1603 , _type(type) 1604 , _tmp1(LIR_OprFact::illegalOpr) 1605 , _tmp2(LIR_OprFact::illegalOpr) 1606 , _tmp3(LIR_OprFact::illegalOpr) 1607 , _tmp4(LIR_OprFact::illegalOpr) 1608 , _tmp5(LIR_OprFact::illegalOpr) 1609 , _condition(condition) { 1610 assert(code == lir_cmp || code == lir_assert RISCV_ONLY(|| code == lir_branch || code == lir_cond_float_branch), "code check"); 1611 } 1612 1613 LIR_Op2(LIR_Code code, LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr result, BasicType type) 1614 : LIR_Op(code, result, NULL) 1615 , _fpu_stack_size(0) 1616 , _opr1(opr1) 1617 , _opr2(opr2) 1618 , _type(type) 1619 , _tmp1(LIR_OprFact::illegalOpr) 1620 , _tmp2(LIR_OprFact::illegalOpr) 1621 , _tmp3(LIR_OprFact::illegalOpr) 1622 , _tmp4(LIR_OprFact::illegalOpr) 1623 , _tmp5(LIR_OprFact::illegalOpr) 1624 , _condition(condition) { 1625 assert(code == lir_cmove, "code check"); 1626 assert(type != T_ILLEGAL, "cmove should have type"); 1627 } 1628 1629 LIR_Op2(LIR_Code code, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr result = LIR_OprFact::illegalOpr, 1630 CodeEmitInfo* info = NULL, BasicType type = T_ILLEGAL) 1631 : LIR_Op(code, result, info) 1632 , _fpu_stack_size(0) 1633 , _opr1(opr1) 1634 , _opr2(opr2) 1635 , _type(type) 1636 , _tmp1(LIR_OprFact::illegalOpr) 1637 , _tmp2(LIR_OprFact::illegalOpr) 1638 , _tmp3(LIR_OprFact::illegalOpr) 1639 , _tmp4(LIR_OprFact::illegalOpr) 1640 , _tmp5(LIR_OprFact::illegalOpr) 1641 , _condition(lir_cond_unknown) { 1642 assert(code != lir_cmp && RISCV_ONLY(code != lir_branch && code != lir_cond_float_branch &&) is_in_range(code, begin_op2, end_op2), "code check"); 1643 } 1644 1645 LIR_Op2(LIR_Code code, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr result, LIR_Opr tmp1, LIR_Opr tmp2 = LIR_OprFact::illegalOpr, 1646 LIR_Opr tmp3 = LIR_OprFact::illegalOpr, LIR_Opr tmp4 = LIR_OprFact::illegalOpr, LIR_Opr tmp5 = LIR_OprFact::illegalOpr) 1647 : LIR_Op(code, result, NULL) 1648 , _fpu_stack_size(0) 1649 , _opr1(opr1) 1650 , _opr2(opr2) 1651 , _type(T_ILLEGAL) 1652 , _tmp1(tmp1) 1653 , _tmp2(tmp2) 1654 , _tmp3(tmp3) 1655 , _tmp4(tmp4) 1656 , _tmp5(tmp5) 1657 , _condition(lir_cond_unknown) { 1658 assert(code != lir_cmp && RISCV_ONLY(code != lir_branch && code != lir_cond_float_branch &&) is_in_range(code, begin_op2, end_op2), "code check"); 1659 } 1660 1661 LIR_Opr in_opr1() const { return _opr1; } 1662 LIR_Opr in_opr2() const { return _opr2; } 1663 BasicType type() const { return _type; } 1664 LIR_Opr tmp1_opr() const { return _tmp1; } 1665 LIR_Opr tmp2_opr() const { return _tmp2; } 1666 LIR_Opr tmp3_opr() const { return _tmp3; } 1667 LIR_Opr tmp4_opr() const { return _tmp4; } 1668 LIR_Opr tmp5_opr() const { return _tmp5; } 1669 LIR_Condition condition() const { 1670 #ifdef RISCV 1671 assert(code() == lir_cmp || code() == lir_branch || code() == lir_cond_float_branch || code() == lir_assert, "only valid for branch and assert"); return _condition; 1672 #else 1673 assert(code() == lir_cmp || code() == lir_cmove || code() == lir_assert, "only valid for cmp and cmove and assert"); return _condition; 1674 #endif 1675 } 1676 void set_condition(LIR_Condition condition) { 1677 #ifdef RISCV 1678 assert(code() == lir_cmp || code() == lir_branch || code() == lir_cond_float_branch, "only valid for branch"); _condition = condition; 1679 #else 1680 assert(code() == lir_cmp || code() == lir_cmove, "only valid for cmp and cmove"); _condition = condition; 1681 #endif 1682 } 1683 1684 void set_fpu_stack_size(int size) { _fpu_stack_size = size; } 1685 int fpu_stack_size() const { return _fpu_stack_size; } 1686 1687 void set_in_opr1(LIR_Opr opr) { _opr1 = opr; } 1688 void set_in_opr2(LIR_Opr opr) { _opr2 = opr; } 1689 1690 virtual void emit_code(LIR_Assembler* masm); 1691 virtual LIR_Op2* as_Op2() { return this; } 1692 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1693 }; 1694 1695 #ifdef RISCV 1696 class LIR_OpBranch: public LIR_Op2 { 1697 #else 1698 class LIR_OpBranch: public LIR_Op { 1699 #endif 1700 friend class LIR_OpVisitState; 1701 1702 private: 1703 #ifndef RISCV 1704 LIR_Condition _cond; 1705 #endif 1706 Label* _label; 1707 BlockBegin* _block; // if this is a branch to a block, this is the block 1708 BlockBegin* _ublock; // if this is a float-branch, this is the unordered block 1709 CodeStub* _stub; // if this is a branch to a stub, this is the stub 1710 1711 public: 1712 LIR_OpBranch(LIR_Condition cond, Label* lbl) 1713 #ifdef RISCV 1714 : LIR_Op2(lir_branch, cond, LIR_OprFact::illegalOpr, LIR_OprFact::illegalOpr, (CodeEmitInfo*) NULL) 1715 #else 1716 : LIR_Op(lir_branch, LIR_OprFact::illegalOpr, (CodeEmitInfo*) NULL) 1717 , _cond(cond) 1718 #endif 1719 , _label(lbl) 1720 , _block(NULL) 1721 , _ublock(NULL) 1722 , _stub(NULL) { } 1723 1724 LIR_OpBranch(LIR_Condition cond, BlockBegin* block); 1725 LIR_OpBranch(LIR_Condition cond, CodeStub* stub); 1726 1727 // for unordered comparisons 1728 LIR_OpBranch(LIR_Condition cond, BlockBegin* block, BlockBegin* ublock); 1729 1730 #ifdef RISCV 1731 LIR_Condition cond() const { return condition(); } 1732 void set_cond(LIR_Condition cond) { set_condition(cond); } 1733 #else 1734 LIR_Condition cond() const { return _cond; } 1735 void set_cond(LIR_Condition cond) { _cond = cond; } 1736 #endif 1737 Label* label() const { return _label; } 1738 BlockBegin* block() const { return _block; } 1739 BlockBegin* ublock() const { return _ublock; } 1740 CodeStub* stub() const { return _stub; } 1741 1742 void change_block(BlockBegin* b); 1743 void change_ublock(BlockBegin* b); 1744 void negate_cond(); 1745 1746 virtual void emit_code(LIR_Assembler* masm); 1747 virtual LIR_OpBranch* as_OpBranch() { return this; } 1748 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1749 1750 }; 1751 1752 class LIR_OpAllocArray : public LIR_Op { 1753 friend class LIR_OpVisitState; 1754 1755 private: 1756 LIR_Opr _klass; 1757 LIR_Opr _len; 1758 LIR_Opr _tmp1; 1759 LIR_Opr _tmp2; 1760 LIR_Opr _tmp3; 1761 LIR_Opr _tmp4; 1762 BasicType _type; 1763 CodeStub* _stub; 1764 1765 public: 1766 LIR_OpAllocArray(LIR_Opr klass, LIR_Opr len, LIR_Opr result, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, BasicType type, CodeStub* stub) 1767 : LIR_Op(lir_alloc_array, result, NULL) 1768 , _klass(klass) 1769 , _len(len) 1770 , _tmp1(t1) 1771 , _tmp2(t2) 1772 , _tmp3(t3) 1773 , _tmp4(t4) 1774 , _type(type) 1775 , _stub(stub) {} 1776 1777 LIR_Opr klass() const { return _klass; } 1778 LIR_Opr len() const { return _len; } 1779 LIR_Opr obj() const { return result_opr(); } 1780 LIR_Opr tmp1() const { return _tmp1; } 1781 LIR_Opr tmp2() const { return _tmp2; } 1782 LIR_Opr tmp3() const { return _tmp3; } 1783 LIR_Opr tmp4() const { return _tmp4; } 1784 BasicType type() const { return _type; } 1785 CodeStub* stub() const { return _stub; } 1786 1787 virtual void emit_code(LIR_Assembler* masm); 1788 virtual LIR_OpAllocArray * as_OpAllocArray () { return this; } 1789 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1790 }; 1791 1792 1793 class LIR_Op3: public LIR_Op { 1794 friend class LIR_OpVisitState; 1795 1796 private: 1797 LIR_Opr _opr1; 1798 LIR_Opr _opr2; 1799 LIR_Opr _opr3; 1800 public: 1801 LIR_Op3(LIR_Code code, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr opr3, LIR_Opr result, CodeEmitInfo* info = NULL) 1802 : LIR_Op(code, result, info) 1803 , _opr1(opr1) 1804 , _opr2(opr2) 1805 , _opr3(opr3) { assert(is_in_range(code, begin_op3, end_op3), "code check"); } 1806 LIR_Opr in_opr1() const { return _opr1; } 1807 LIR_Opr in_opr2() const { return _opr2; } 1808 LIR_Opr in_opr3() const { return _opr3; } 1809 1810 virtual void emit_code(LIR_Assembler* masm); 1811 virtual LIR_Op3* as_Op3() { return this; } 1812 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1813 }; 1814 1815 #ifdef RISCV 1816 class LIR_Op4: public LIR_Op { 1817 friend class LIR_OpVisitState; 1818 protected: 1819 LIR_Opr _opr1; 1820 LIR_Opr _opr2; 1821 LIR_Opr _opr3; 1822 LIR_Opr _opr4; 1823 BasicType _type; 1824 LIR_Opr _tmp1; 1825 LIR_Opr _tmp2; 1826 LIR_Opr _tmp3; 1827 LIR_Opr _tmp4; 1828 LIR_Opr _tmp5; 1829 LIR_Condition _condition; 1830 1831 public: 1832 LIR_Op4(LIR_Code code, LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, LIR_Opr opr3, LIR_Opr opr4, 1833 LIR_Opr result, BasicType type) 1834 : LIR_Op(code, result, NULL) 1835 , _opr1(opr1) 1836 , _opr2(opr2) 1837 , _opr3(opr3) 1838 , _opr4(opr4) 1839 , _type(type) 1840 , _tmp1(LIR_OprFact::illegalOpr) 1841 , _tmp2(LIR_OprFact::illegalOpr) 1842 , _tmp3(LIR_OprFact::illegalOpr) 1843 , _tmp4(LIR_OprFact::illegalOpr) 1844 , _tmp5(LIR_OprFact::illegalOpr) 1845 , _condition(condition) { 1846 assert(code == lir_cmove, "code check"); 1847 assert(type != T_ILLEGAL, "cmove should have type"); 1848 } 1849 1850 LIR_Opr in_opr1() const { return _opr1; } 1851 LIR_Opr in_opr2() const { return _opr2; } 1852 LIR_Opr in_opr3() const { return _opr3; } 1853 LIR_Opr in_opr4() const { return _opr4; } 1854 BasicType type() const { return _type; } 1855 LIR_Opr tmp1_opr() const { return _tmp1; } 1856 LIR_Opr tmp2_opr() const { return _tmp2; } 1857 LIR_Opr tmp3_opr() const { return _tmp3; } 1858 LIR_Opr tmp4_opr() const { return _tmp4; } 1859 LIR_Opr tmp5_opr() const { return _tmp5; } 1860 1861 LIR_Condition condition() const { return _condition; } 1862 void set_condition(LIR_Condition condition) { _condition = condition; } 1863 1864 void set_in_opr1(LIR_Opr opr) { _opr1 = opr; } 1865 void set_in_opr2(LIR_Opr opr) { _opr2 = opr; } 1866 void set_in_opr3(LIR_Opr opr) { _opr3 = opr; } 1867 void set_in_opr4(LIR_Opr opr) { _opr4 = opr; } 1868 virtual void emit_code(LIR_Assembler* masm); 1869 virtual LIR_Op4* as_Op4() { return this; } 1870 1871 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1872 }; 1873 #endif 1874 1875 //-------------------------------- 1876 class LabelObj: public CompilationResourceObj { 1877 private: 1878 Label _label; 1879 public: 1880 LabelObj() {} 1881 Label* label() { return &_label; } 1882 }; 1883 1884 1885 class LIR_OpLock: public LIR_Op { 1886 friend class LIR_OpVisitState; 1887 1888 private: 1889 LIR_Opr _hdr; 1890 LIR_Opr _obj; 1891 LIR_Opr _lock; 1892 LIR_Opr _scratch; 1893 CodeStub* _stub; 1894 public: 1895 LIR_OpLock(LIR_Code code, LIR_Opr hdr, LIR_Opr obj, LIR_Opr lock, LIR_Opr scratch, CodeStub* stub, CodeEmitInfo* info) 1896 : LIR_Op(code, LIR_OprFact::illegalOpr, info) 1897 , _hdr(hdr) 1898 , _obj(obj) 1899 , _lock(lock) 1900 , _scratch(scratch) 1901 , _stub(stub) {} 1902 1903 LIR_Opr hdr_opr() const { return _hdr; } 1904 LIR_Opr obj_opr() const { return _obj; } 1905 LIR_Opr lock_opr() const { return _lock; } 1906 LIR_Opr scratch_opr() const { return _scratch; } 1907 CodeStub* stub() const { return _stub; } 1908 1909 virtual void emit_code(LIR_Assembler* masm); 1910 virtual LIR_OpLock* as_OpLock() { return this; } 1911 void print_instr(outputStream* out) const PRODUCT_RETURN; 1912 }; 1913 1914 1915 class LIR_OpDelay: public LIR_Op { 1916 friend class LIR_OpVisitState; 1917 1918 private: 1919 LIR_Op* _op; 1920 1921 public: 1922 LIR_OpDelay(LIR_Op* op, CodeEmitInfo* info): 1923 LIR_Op(lir_delay_slot, LIR_OprFact::illegalOpr, info), 1924 _op(op) { 1925 assert(op->code() == lir_nop, "should be filling with nops"); 1926 } 1927 virtual void emit_code(LIR_Assembler* masm); 1928 virtual LIR_OpDelay* as_OpDelay() { return this; } 1929 void print_instr(outputStream* out) const PRODUCT_RETURN; 1930 LIR_Op* delay_op() const { return _op; } 1931 CodeEmitInfo* call_info() const { return info(); } 1932 }; 1933 1934 #ifdef ASSERT 1935 // LIR_OpAssert 1936 class LIR_OpAssert : public LIR_Op2 { 1937 friend class LIR_OpVisitState; 1938 1939 private: 1940 const char* _msg; 1941 bool _halt; 1942 1943 public: 1944 LIR_OpAssert(LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, const char* msg, bool halt) 1945 : LIR_Op2(lir_assert, condition, opr1, opr2) 1946 , _msg(msg) 1947 , _halt(halt) { 1948 } 1949 1950 const char* msg() const { return _msg; } 1951 bool halt() const { return _halt; } 1952 1953 virtual void emit_code(LIR_Assembler* masm); 1954 virtual LIR_OpAssert* as_OpAssert() { return this; } 1955 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1956 }; 1957 #endif 1958 1959 // LIR_OpCompareAndSwap 1960 class LIR_OpCompareAndSwap : public LIR_Op { 1961 friend class LIR_OpVisitState; 1962 1963 private: 1964 LIR_Opr _addr; 1965 LIR_Opr _cmp_value; 1966 LIR_Opr _new_value; 1967 LIR_Opr _tmp1; 1968 LIR_Opr _tmp2; 1969 1970 public: 1971 LIR_OpCompareAndSwap(LIR_Code code, LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, 1972 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) 1973 : LIR_Op(code, result, NULL) // no result, no info 1974 , _addr(addr) 1975 , _cmp_value(cmp_value) 1976 , _new_value(new_value) 1977 , _tmp1(t1) 1978 , _tmp2(t2) { } 1979 1980 LIR_Opr addr() const { return _addr; } 1981 LIR_Opr cmp_value() const { return _cmp_value; } 1982 LIR_Opr new_value() const { return _new_value; } 1983 LIR_Opr tmp1() const { return _tmp1; } 1984 LIR_Opr tmp2() const { return _tmp2; } 1985 1986 virtual void emit_code(LIR_Assembler* masm); 1987 virtual LIR_OpCompareAndSwap * as_OpCompareAndSwap () { return this; } 1988 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 1989 }; 1990 1991 // LIR_OpProfileCall 1992 class LIR_OpProfileCall : public LIR_Op { 1993 friend class LIR_OpVisitState; 1994 1995 private: 1996 ciMethod* _profiled_method; 1997 int _profiled_bci; 1998 ciMethod* _profiled_callee; 1999 LIR_Opr _mdo; 2000 LIR_Opr _recv; 2001 LIR_Opr _tmp1; 2002 ciKlass* _known_holder; 2003 2004 public: 2005 // Destroys recv 2006 LIR_OpProfileCall(ciMethod* profiled_method, int profiled_bci, ciMethod* profiled_callee, LIR_Opr mdo, LIR_Opr recv, LIR_Opr t1, ciKlass* known_holder) 2007 : LIR_Op(lir_profile_call, LIR_OprFact::illegalOpr, NULL) // no result, no info 2008 , _profiled_method(profiled_method) 2009 , _profiled_bci(profiled_bci) 2010 , _profiled_callee(profiled_callee) 2011 , _mdo(mdo) 2012 , _recv(recv) 2013 , _tmp1(t1) 2014 , _known_holder(known_holder) { } 2015 2016 ciMethod* profiled_method() const { return _profiled_method; } 2017 int profiled_bci() const { return _profiled_bci; } 2018 ciMethod* profiled_callee() const { return _profiled_callee; } 2019 LIR_Opr mdo() const { return _mdo; } 2020 LIR_Opr recv() const { return _recv; } 2021 LIR_Opr tmp1() const { return _tmp1; } 2022 ciKlass* known_holder() const { return _known_holder; } 2023 2024 virtual void emit_code(LIR_Assembler* masm); 2025 virtual LIR_OpProfileCall* as_OpProfileCall() { return this; } 2026 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 2027 bool should_profile_receiver_type() const { 2028 bool callee_is_static = _profiled_callee->is_loaded() && _profiled_callee->is_static(); 2029 Bytecodes::Code bc = _profiled_method->java_code_at_bci(_profiled_bci); 2030 bool call_is_virtual = (bc == Bytecodes::_invokevirtual && !_profiled_callee->can_be_statically_bound()) || bc == Bytecodes::_invokeinterface; 2031 return C1ProfileVirtualCalls && call_is_virtual && !callee_is_static; 2032 } 2033 }; 2034 2035 // LIR_OpProfileType 2036 class LIR_OpProfileType : public LIR_Op { 2037 friend class LIR_OpVisitState; 2038 2039 private: 2040 LIR_Opr _mdp; 2041 LIR_Opr _obj; 2042 LIR_Opr _tmp; 2043 ciKlass* _exact_klass; // non NULL if we know the klass statically (no need to load it from _obj) 2044 intptr_t _current_klass; // what the profiling currently reports 2045 bool _not_null; // true if we know statically that _obj cannot be null 2046 bool _no_conflict; // true if we're profling parameters, _exact_klass is not NULL and we know 2047 // _exact_klass it the only possible type for this parameter in any context. 2048 2049 public: 2050 // Destroys recv 2051 LIR_OpProfileType(LIR_Opr mdp, LIR_Opr obj, ciKlass* exact_klass, intptr_t current_klass, LIR_Opr tmp, bool not_null, bool no_conflict) 2052 : LIR_Op(lir_profile_type, LIR_OprFact::illegalOpr, NULL) // no result, no info 2053 , _mdp(mdp) 2054 , _obj(obj) 2055 , _tmp(tmp) 2056 , _exact_klass(exact_klass) 2057 , _current_klass(current_klass) 2058 , _not_null(not_null) 2059 , _no_conflict(no_conflict) { } 2060 2061 LIR_Opr mdp() const { return _mdp; } 2062 LIR_Opr obj() const { return _obj; } 2063 LIR_Opr tmp() const { return _tmp; } 2064 ciKlass* exact_klass() const { return _exact_klass; } 2065 intptr_t current_klass() const { return _current_klass; } 2066 bool not_null() const { return _not_null; } 2067 bool no_conflict() const { return _no_conflict; } 2068 2069 virtual void emit_code(LIR_Assembler* masm); 2070 virtual LIR_OpProfileType* as_OpProfileType() { return this; } 2071 virtual void print_instr(outputStream* out) const PRODUCT_RETURN; 2072 }; 2073 2074 class LIR_InsertionBuffer; 2075 2076 //--------------------------------LIR_List--------------------------------------------------- 2077 // Maintains a list of LIR instructions (one instance of LIR_List per basic block) 2078 // The LIR instructions are appended by the LIR_List class itself; 2079 // 2080 // Notes: 2081 // - all offsets are(should be) in bytes 2082 // - local positions are specified with an offset, with offset 0 being local 0 2083 2084 class LIR_List: public CompilationResourceObj { 2085 private: 2086 LIR_OpList _operations; 2087 2088 Compilation* _compilation; 2089 #ifndef PRODUCT 2090 BlockBegin* _block; 2091 #endif 2092 #ifdef ASSERT 2093 const char * _file; 2094 int _line; 2095 #endif 2096 #ifdef RISCV 2097 LIR_Opr _cmp_opr1; 2098 LIR_Opr _cmp_opr2; 2099 #endif 2100 2101 public: 2102 void append(LIR_Op* op) { 2103 if (op->source() == NULL) 2104 op->set_source(_compilation->current_instruction()); 2105 #ifndef PRODUCT 2106 if (PrintIRWithLIR) { 2107 _compilation->maybe_print_current_instruction(); 2108 op->print(); tty->cr(); 2109 } 2110 #endif // PRODUCT 2111 2112 #ifdef RISCV 2113 set_cmp_oprs(op); 2114 // lir_cmp set cmp oprs only on riscv 2115 if (op->code() == lir_cmp) return; 2116 #endif 2117 2118 _operations.append(op); 2119 2120 #ifdef ASSERT 2121 op->verify(); 2122 op->set_file_and_line(_file, _line); 2123 _file = NULL; 2124 _line = 0; 2125 #endif 2126 } 2127 2128 LIR_List(Compilation* compilation, BlockBegin* block = NULL); 2129 2130 #ifdef ASSERT 2131 void set_file_and_line(const char * file, int line); 2132 #endif 2133 2134 #ifdef RISCV 2135 void set_cmp_oprs(LIR_Op* op); 2136 #endif 2137 2138 //---------- accessors --------------- 2139 LIR_OpList* instructions_list() { return &_operations; } 2140 int length() const { return _operations.length(); } 2141 LIR_Op* at(int i) const { return _operations.at(i); } 2142 2143 NOT_PRODUCT(BlockBegin* block() const { return _block; }); 2144 2145 // insert LIR_Ops in buffer to right places in LIR_List 2146 void append(LIR_InsertionBuffer* buffer); 2147 2148 //---------- mutators --------------- 2149 void insert_before(int i, LIR_List* op_list) { _operations.insert_before(i, op_list->instructions_list()); } 2150 void insert_before(int i, LIR_Op* op) { _operations.insert_before(i, op); } 2151 void remove_at(int i) { _operations.remove_at(i); } 2152 2153 //---------- printing ------------- 2154 void print_instructions() PRODUCT_RETURN; 2155 2156 2157 //---------- instructions ------------- 2158 void call_opt_virtual(ciMethod* method, LIR_Opr receiver, LIR_Opr result, 2159 address dest, LIR_OprList* arguments, 2160 CodeEmitInfo* info) { 2161 append(new LIR_OpJavaCall(lir_optvirtual_call, method, receiver, result, dest, arguments, info)); 2162 } 2163 void call_static(ciMethod* method, LIR_Opr result, 2164 address dest, LIR_OprList* arguments, CodeEmitInfo* info) { 2165 append(new LIR_OpJavaCall(lir_static_call, method, LIR_OprFact::illegalOpr, result, dest, arguments, info)); 2166 } 2167 void call_icvirtual(ciMethod* method, LIR_Opr receiver, LIR_Opr result, 2168 address dest, LIR_OprList* arguments, CodeEmitInfo* info) { 2169 append(new LIR_OpJavaCall(lir_icvirtual_call, method, receiver, result, dest, arguments, info)); 2170 } 2171 void call_dynamic(ciMethod* method, LIR_Opr receiver, LIR_Opr result, 2172 address dest, LIR_OprList* arguments, CodeEmitInfo* info) { 2173 append(new LIR_OpJavaCall(lir_dynamic_call, method, receiver, result, dest, arguments, info)); 2174 } 2175 2176 void get_thread(LIR_Opr result) { append(new LIR_Op0(lir_get_thread, result)); } 2177 void membar() { append(new LIR_Op0(lir_membar)); } 2178 void membar_acquire() { append(new LIR_Op0(lir_membar_acquire)); } 2179 void membar_release() { append(new LIR_Op0(lir_membar_release)); } 2180 void membar_loadload() { append(new LIR_Op0(lir_membar_loadload)); } 2181 void membar_storestore() { append(new LIR_Op0(lir_membar_storestore)); } 2182 void membar_loadstore() { append(new LIR_Op0(lir_membar_loadstore)); } 2183 void membar_storeload() { append(new LIR_Op0(lir_membar_storeload)); } 2184 2185 void nop() { append(new LIR_Op0(lir_nop)); } 2186 2187 void std_entry(LIR_Opr receiver) { append(new LIR_Op0(lir_std_entry, receiver)); } 2188 void osr_entry(LIR_Opr osrPointer) { append(new LIR_Op0(lir_osr_entry, osrPointer)); } 2189 2190 void on_spin_wait() { append(new LIR_Op0(lir_on_spin_wait)); } 2191 2192 void branch_destination(Label* lbl) { append(new LIR_OpLabel(lbl)); } 2193 2194 void leal(LIR_Opr from, LIR_Opr result_reg, LIR_PatchCode patch_code = lir_patch_none, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_leal, from, result_reg, T_ILLEGAL, patch_code, info)); } 2195 2196 // result is a stack location for old backend and vreg for UseLinearScan 2197 // stack_loc_temp is an illegal register for old backend 2198 void roundfp(LIR_Opr reg, LIR_Opr stack_loc_temp, LIR_Opr result) { append(new LIR_OpRoundFP(reg, stack_loc_temp, result)); } 2199 void unaligned_move(LIR_Address* src, LIR_Opr dst) { append(new LIR_Op1(lir_move, LIR_OprFact::address(src), dst, dst->type(), lir_patch_none, NULL, lir_move_unaligned)); } 2200 void unaligned_move(LIR_Opr src, LIR_Address* dst) { append(new LIR_Op1(lir_move, src, LIR_OprFact::address(dst), src->type(), lir_patch_none, NULL, lir_move_unaligned)); } 2201 void unaligned_move(LIR_Opr src, LIR_Opr dst) { append(new LIR_Op1(lir_move, src, dst, dst->type(), lir_patch_none, NULL, lir_move_unaligned)); } 2202 void move(LIR_Opr src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, src, dst, dst->type(), lir_patch_none, info)); } 2203 void move(LIR_Address* src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, LIR_OprFact::address(src), dst, src->type(), lir_patch_none, info)); } 2204 void move(LIR_Opr src, LIR_Address* dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, src, LIR_OprFact::address(dst), dst->type(), lir_patch_none, info)); } 2205 void move_wide(LIR_Address* src, LIR_Opr dst, CodeEmitInfo* info = NULL) { 2206 if (UseCompressedOops) { 2207 append(new LIR_Op1(lir_move, LIR_OprFact::address(src), dst, src->type(), lir_patch_none, info, lir_move_wide)); 2208 } else { 2209 move(src, dst, info); 2210 } 2211 } 2212 void move_wide(LIR_Opr src, LIR_Address* dst, CodeEmitInfo* info = NULL) { 2213 if (UseCompressedOops) { 2214 append(new LIR_Op1(lir_move, src, LIR_OprFact::address(dst), dst->type(), lir_patch_none, info, lir_move_wide)); 2215 } else { 2216 move(src, dst, info); 2217 } 2218 } 2219 void volatile_move(LIR_Opr src, LIR_Opr dst, BasicType type, CodeEmitInfo* info = NULL, LIR_PatchCode patch_code = lir_patch_none) { append(new LIR_Op1(lir_move, src, dst, type, patch_code, info, lir_move_volatile)); } 2220 2221 void oop2reg (jobject o, LIR_Opr reg) { assert(reg->type() == T_OBJECT, "bad reg"); append(new LIR_Op1(lir_move, LIR_OprFact::oopConst(o), reg)); } 2222 void oop2reg_patch(jobject o, LIR_Opr reg, CodeEmitInfo* info); 2223 2224 void metadata2reg (Metadata* o, LIR_Opr reg) { assert(reg->type() == T_METADATA, "bad reg"); append(new LIR_Op1(lir_move, LIR_OprFact::metadataConst(o), reg)); } 2225 void klass2reg_patch(Metadata* o, LIR_Opr reg, CodeEmitInfo* info); 2226 2227 void safepoint(LIR_Opr tmp, CodeEmitInfo* info) { append(new LIR_Op1(lir_safepoint, tmp, info)); } 2228 void return_op(LIR_Opr result) { append(new LIR_OpReturn(result)); } 2229 2230 void convert(Bytecodes::Code code, LIR_Opr left, LIR_Opr dst, ConversionStub* stub = NULL/*, bool is_32bit = false*/) { append(new LIR_OpConvert(code, left, dst, stub)); } 2231 2232 void logical_and (LIR_Opr left, LIR_Opr right, LIR_Opr dst) { append(new LIR_Op2(lir_logic_and, left, right, dst)); } 2233 void logical_or (LIR_Opr left, LIR_Opr right, LIR_Opr dst) { append(new LIR_Op2(lir_logic_or, left, right, dst)); } 2234 void logical_xor (LIR_Opr left, LIR_Opr right, LIR_Opr dst) { append(new LIR_Op2(lir_logic_xor, left, right, dst)); } 2235 2236 void null_check(LIR_Opr opr, CodeEmitInfo* info, bool deoptimize_on_null = false); 2237 void throw_exception(LIR_Opr exceptionPC, LIR_Opr exceptionOop, CodeEmitInfo* info) { 2238 append(new LIR_Op2(lir_throw, exceptionPC, exceptionOop, LIR_OprFact::illegalOpr, info)); 2239 } 2240 void unwind_exception(LIR_Opr exceptionOop) { 2241 append(new LIR_Op1(lir_unwind, exceptionOop)); 2242 } 2243 2244 void push(LIR_Opr opr) { append(new LIR_Op1(lir_push, opr)); } 2245 void pop(LIR_Opr reg) { append(new LIR_Op1(lir_pop, reg)); } 2246 2247 void cmp(LIR_Condition condition, LIR_Opr left, LIR_Opr right, CodeEmitInfo* info = NULL) { 2248 append(new LIR_Op2(lir_cmp, condition, left, right, info)); 2249 } 2250 void cmp(LIR_Condition condition, LIR_Opr left, int right, CodeEmitInfo* info = NULL) { 2251 cmp(condition, left, LIR_OprFact::intConst(right), info); 2252 } 2253 2254 void cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info); 2255 void cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Address* addr, CodeEmitInfo* info); 2256 2257 #ifdef RISCV 2258 void cmove(LIR_Condition condition, LIR_Opr src1, LIR_Opr src2, LIR_Opr dst, BasicType type, 2259 LIR_Opr cmp_opr1 = LIR_OprFact::illegalOpr, LIR_Opr cmp_opr2 = LIR_OprFact::illegalOpr) { 2260 append(new LIR_Op4(lir_cmove, condition, src1, src2, cmp_opr1, cmp_opr2, dst, type)); 2261 } 2262 #else 2263 void cmove(LIR_Condition condition, LIR_Opr src1, LIR_Opr src2, LIR_Opr dst, BasicType type) { 2264 append(new LIR_Op2(lir_cmove, condition, src1, src2, dst, type)); 2265 } 2266 #endif 2267 2268 void cas_long(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, 2269 LIR_Opr t1, LIR_Opr t2, LIR_Opr result = LIR_OprFact::illegalOpr); 2270 void cas_obj(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, 2271 LIR_Opr t1, LIR_Opr t2, LIR_Opr result = LIR_OprFact::illegalOpr); 2272 void cas_int(LIR_Opr addr, LIR_Opr cmp_value, LIR_Opr new_value, 2273 LIR_Opr t1, LIR_Opr t2, LIR_Opr result = LIR_OprFact::illegalOpr); 2274 2275 void abs (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_abs , from, tmp, to)); } 2276 void negate(LIR_Opr from, LIR_Opr to, LIR_Opr tmp = LIR_OprFact::illegalOpr) { append(new LIR_Op2(lir_neg, from, tmp, to)); } 2277 void sqrt(LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_sqrt, from, tmp, to)); } 2278 void fmad(LIR_Opr from, LIR_Opr from1, LIR_Opr from2, LIR_Opr to) { append(new LIR_Op3(lir_fmad, from, from1, from2, to)); } 2279 void fmaf(LIR_Opr from, LIR_Opr from1, LIR_Opr from2, LIR_Opr to) { append(new LIR_Op3(lir_fmaf, from, from1, from2, to)); } 2280 void log10 (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_log10, from, LIR_OprFact::illegalOpr, to, tmp)); } 2281 void tan (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) { append(new LIR_Op2(lir_tan , from, tmp1, to, tmp2)); } 2282 2283 void add (LIR_Opr left, LIR_Opr right, LIR_Opr res) { append(new LIR_Op2(lir_add, left, right, res)); } 2284 void sub (LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) { append(new LIR_Op2(lir_sub, left, right, res, info)); } 2285 void mul (LIR_Opr left, LIR_Opr right, LIR_Opr res) { append(new LIR_Op2(lir_mul, left, right, res)); } 2286 void mul (LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp) { append(new LIR_Op2(lir_mul, left, right, res, tmp)); } 2287 void div (LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) { append(new LIR_Op2(lir_div, left, right, res, info)); } 2288 void div (LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp) { append(new LIR_Op2(lir_div, left, right, res, tmp)); } 2289 void rem (LIR_Opr left, LIR_Opr right, LIR_Opr res, CodeEmitInfo* info = NULL) { append(new LIR_Op2(lir_rem, left, right, res, info)); } 2290 2291 void volatile_load_mem_reg(LIR_Address* address, LIR_Opr dst, CodeEmitInfo* info, LIR_PatchCode patch_code = lir_patch_none); 2292 void volatile_load_unsafe_reg(LIR_Opr base, LIR_Opr offset, LIR_Opr dst, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code); 2293 2294 void load(LIR_Address* addr, LIR_Opr src, CodeEmitInfo* info = NULL, LIR_PatchCode patch_code = lir_patch_none); 2295 2296 void store_mem_int(jint v, LIR_Opr base, int offset_in_bytes, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code = lir_patch_none); 2297 void store_mem_oop(jobject o, LIR_Opr base, int offset_in_bytes, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code = lir_patch_none); 2298 void store(LIR_Opr src, LIR_Address* addr, CodeEmitInfo* info = NULL, LIR_PatchCode patch_code = lir_patch_none); 2299 void volatile_store_mem_reg(LIR_Opr src, LIR_Address* address, CodeEmitInfo* info, LIR_PatchCode patch_code = lir_patch_none); 2300 void volatile_store_unsafe_reg(LIR_Opr src, LIR_Opr base, LIR_Opr offset, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code); 2301 2302 void idiv(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info); 2303 void idiv(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info); 2304 void irem(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info); 2305 void irem(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info); 2306 2307 void allocate_object(LIR_Opr dst, LIR_Opr t1, LIR_Opr t2, LIR_Opr t3, LIR_Opr t4, int header_size, int object_size, LIR_Opr klass, bool init_check, CodeStub* stub); 2308 void allocate_array(LIR_Opr dst, LIR_Opr len, LIR_Opr t1,LIR_Opr t2, LIR_Opr t3,LIR_Opr t4, BasicType type, LIR_Opr klass, CodeStub* stub); 2309 2310 // jump is an unconditional branch 2311 void jump(BlockBegin* block) { 2312 append(new LIR_OpBranch(lir_cond_always, block)); 2313 } 2314 void jump(CodeStub* stub) { 2315 append(new LIR_OpBranch(lir_cond_always, stub)); 2316 } 2317 void branch(LIR_Condition cond, Label* lbl) { 2318 append(new LIR_OpBranch(cond, lbl)); 2319 } 2320 // Should not be used for fp comparisons 2321 void branch(LIR_Condition cond, BlockBegin* block) { 2322 append(new LIR_OpBranch(cond, block)); 2323 } 2324 // Should not be used for fp comparisons 2325 void branch(LIR_Condition cond, CodeStub* stub) { 2326 append(new LIR_OpBranch(cond, stub)); 2327 } 2328 // Should only be used for fp comparisons 2329 void branch(LIR_Condition cond, BlockBegin* block, BlockBegin* unordered) { 2330 append(new LIR_OpBranch(cond, block, unordered)); 2331 } 2332 2333 void shift_left(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp); 2334 void shift_right(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp); 2335 void unsigned_shift_right(LIR_Opr value, LIR_Opr count, LIR_Opr dst, LIR_Opr tmp); 2336 2337 void shift_left(LIR_Opr value, int count, LIR_Opr dst) { shift_left(value, LIR_OprFact::intConst(count), dst, LIR_OprFact::illegalOpr); } 2338 void shift_right(LIR_Opr value, int count, LIR_Opr dst) { shift_right(value, LIR_OprFact::intConst(count), dst, LIR_OprFact::illegalOpr); } 2339 void unsigned_shift_right(LIR_Opr value, int count, LIR_Opr dst) { unsigned_shift_right(value, LIR_OprFact::intConst(count), dst, LIR_OprFact::illegalOpr); } 2340 2341 void lcmp2int(LIR_Opr left, LIR_Opr right, LIR_Opr dst) { append(new LIR_Op2(lir_cmp_l2i, left, right, dst)); } 2342 void fcmp2int(LIR_Opr left, LIR_Opr right, LIR_Opr dst, bool is_unordered_less); 2343 2344 void call_runtime_leaf(address routine, LIR_Opr tmp, LIR_Opr result, LIR_OprList* arguments) { 2345 append(new LIR_OpRTCall(routine, tmp, result, arguments)); 2346 } 2347 2348 void call_runtime(address routine, LIR_Opr tmp, LIR_Opr result, 2349 LIR_OprList* arguments, CodeEmitInfo* info) { 2350 append(new LIR_OpRTCall(routine, tmp, result, arguments, info)); 2351 } 2352 2353 void load_stack_address_monitor(int monitor_ix, LIR_Opr dst) { append(new LIR_Op1(lir_monaddr, LIR_OprFact::intConst(monitor_ix), dst)); } 2354 void unlock_object(LIR_Opr hdr, LIR_Opr obj, LIR_Opr lock, LIR_Opr scratch, CodeStub* stub); 2355 void lock_object(LIR_Opr hdr, LIR_Opr obj, LIR_Opr lock, LIR_Opr scratch, CodeStub* stub, CodeEmitInfo* info); 2356 2357 void breakpoint() { append(new LIR_Op0(lir_breakpoint)); } 2358 2359 void arraycopy(LIR_Opr src, LIR_Opr src_pos, LIR_Opr dst, LIR_Opr dst_pos, LIR_Opr length, LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info) { append(new LIR_OpArrayCopy(src, src_pos, dst, dst_pos, length, tmp, expected_type, flags, info)); } 2360 2361 void update_crc32(LIR_Opr crc, LIR_Opr val, LIR_Opr res) { append(new LIR_OpUpdateCRC32(crc, val, res)); } 2362 2363 void instanceof(LIR_Opr result, LIR_Opr object, ciKlass* klass, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, CodeEmitInfo* info_for_patch, ciMethod* profiled_method, int profiled_bci); 2364 void store_check(LIR_Opr object, LIR_Opr array, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, CodeEmitInfo* info_for_exception, ciMethod* profiled_method, int profiled_bci); 2365 2366 void checkcast (LIR_Opr result, LIR_Opr object, ciKlass* klass, 2367 LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, bool fast_check, 2368 CodeEmitInfo* info_for_exception, CodeEmitInfo* info_for_patch, CodeStub* stub, 2369 ciMethod* profiled_method, int profiled_bci); 2370 // MethodData* profiling 2371 void profile_call(ciMethod* method, int bci, ciMethod* callee, LIR_Opr mdo, LIR_Opr recv, LIR_Opr t1, ciKlass* cha_klass) { 2372 append(new LIR_OpProfileCall(method, bci, callee, mdo, recv, t1, cha_klass)); 2373 } 2374 void profile_type(LIR_Address* mdp, LIR_Opr obj, ciKlass* exact_klass, intptr_t current_klass, LIR_Opr tmp, bool not_null, bool no_conflict) { 2375 append(new LIR_OpProfileType(LIR_OprFact::address(mdp), obj, exact_klass, current_klass, tmp, not_null, no_conflict)); 2376 } 2377 2378 void xadd(LIR_Opr src, LIR_Opr add, LIR_Opr res, LIR_Opr tmp) { append(new LIR_Op2(lir_xadd, src, add, res, tmp)); } 2379 void xchg(LIR_Opr src, LIR_Opr set, LIR_Opr res, LIR_Opr tmp) { append(new LIR_Op2(lir_xchg, src, set, res, tmp)); } 2380 #ifdef ASSERT 2381 void lir_assert(LIR_Condition condition, LIR_Opr opr1, LIR_Opr opr2, const char* msg, bool halt) { append(new LIR_OpAssert(condition, opr1, opr2, msg, halt)); } 2382 #endif 2383 }; 2384 2385 void print_LIR(BlockList* blocks); 2386 2387 class LIR_InsertionBuffer : public CompilationResourceObj { 2388 private: 2389 LIR_List* _lir; // the lir list where ops of this buffer should be inserted later (NULL when uninitialized) 2390 2391 // list of insertion points. index and count are stored alternately: 2392 // _index_and_count[i * 2]: the index into lir list where "count" ops should be inserted 2393 // _index_and_count[i * 2 + 1]: the number of ops to be inserted at index 2394 intStack _index_and_count; 2395 2396 // the LIR_Ops to be inserted 2397 LIR_OpList _ops; 2398 2399 void append_new(int index, int count) { _index_and_count.append(index); _index_and_count.append(count); } 2400 void set_index_at(int i, int value) { _index_and_count.at_put((i << 1), value); } 2401 void set_count_at(int i, int value) { _index_and_count.at_put((i << 1) + 1, value); } 2402 2403 #ifdef ASSERT 2404 void verify(); 2405 #endif 2406 public: 2407 LIR_InsertionBuffer() : _lir(NULL), _index_and_count(8), _ops(8) { } 2408 2409 // must be called before using the insertion buffer 2410 void init(LIR_List* lir) { assert(!initialized(), "already initialized"); _lir = lir; _index_and_count.clear(); _ops.clear(); } 2411 bool initialized() const { return _lir != NULL; } 2412 // called automatically when the buffer is appended to the LIR_List 2413 void finish() { _lir = NULL; } 2414 2415 // accessors 2416 LIR_List* lir_list() const { return _lir; } 2417 int number_of_insertion_points() const { return _index_and_count.length() >> 1; } 2418 int index_at(int i) const { return _index_and_count.at((i << 1)); } 2419 int count_at(int i) const { return _index_and_count.at((i << 1) + 1); } 2420 2421 int number_of_ops() const { return _ops.length(); } 2422 LIR_Op* op_at(int i) const { return _ops.at(i); } 2423 2424 // append an instruction to the buffer 2425 void append(int index, LIR_Op* op); 2426 2427 // instruction 2428 void move(int index, LIR_Opr src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(index, new LIR_Op1(lir_move, src, dst, dst->type(), lir_patch_none, info)); } 2429 }; 2430 2431 2432 // 2433 // LIR_OpVisitState is used for manipulating LIR_Ops in an abstract way. 2434 // Calling a LIR_Op's visit function with a LIR_OpVisitState causes 2435 // information about the input, output and temporaries used by the 2436 // op to be recorded. It also records whether the op has call semantics 2437 // and also records all the CodeEmitInfos used by this op. 2438 // 2439 2440 2441 class LIR_OpVisitState: public StackObj { 2442 public: 2443 typedef enum { inputMode, firstMode = inputMode, tempMode, outputMode, numModes, invalidMode = -1 } OprMode; 2444 2445 enum { 2446 maxNumberOfOperands = 21, 2447 maxNumberOfInfos = 4 2448 }; 2449 2450 private: 2451 LIR_Op* _op; 2452 2453 // optimization: the operands and infos are not stored in a variable-length 2454 // list, but in a fixed-size array to save time of size checks and resizing 2455 int _oprs_len[numModes]; 2456 LIR_Opr* _oprs_new[numModes][maxNumberOfOperands]; 2457 int _info_len; 2458 CodeEmitInfo* _info_new[maxNumberOfInfos]; 2459 2460 bool _has_call; 2461 bool _has_slow_case; 2462 2463 2464 // only include register operands 2465 // addresses are decomposed to the base and index registers 2466 // constants and stack operands are ignored 2467 void append(LIR_Opr& opr, OprMode mode) { 2468 assert(opr->is_valid(), "should not call this otherwise"); 2469 assert(mode >= 0 && mode < numModes, "bad mode"); 2470 2471 if (opr->is_register()) { 2472 assert(_oprs_len[mode] < maxNumberOfOperands, "array overflow"); 2473 _oprs_new[mode][_oprs_len[mode]++] = &opr; 2474 2475 } else if (opr->is_pointer()) { 2476 LIR_Address* address = opr->as_address_ptr(); 2477 if (address != NULL) { 2478 // special handling for addresses: add base and index register of the address 2479 // both are always input operands or temp if we want to extend 2480 // their liveness! 2481 if (mode == outputMode) { 2482 mode = inputMode; 2483 } 2484 assert (mode == inputMode || mode == tempMode, "input or temp only for addresses"); 2485 if (address->_base->is_valid()) { 2486 assert(address->_base->is_register(), "must be"); 2487 assert(_oprs_len[mode] < maxNumberOfOperands, "array overflow"); 2488 _oprs_new[mode][_oprs_len[mode]++] = &address->_base; 2489 } 2490 if (address->_index->is_valid()) { 2491 assert(address->_index->is_register(), "must be"); 2492 assert(_oprs_len[mode] < maxNumberOfOperands, "array overflow"); 2493 _oprs_new[mode][_oprs_len[mode]++] = &address->_index; 2494 } 2495 2496 } else { 2497 assert(opr->is_constant(), "constant operands are not processed"); 2498 } 2499 } else { 2500 assert(opr->is_stack(), "stack operands are not processed"); 2501 } 2502 } 2503 2504 void append(CodeEmitInfo* info) { 2505 assert(info != NULL, "should not call this otherwise"); 2506 assert(_info_len < maxNumberOfInfos, "array overflow"); 2507 _info_new[_info_len++] = info; 2508 } 2509 2510 public: 2511 LIR_OpVisitState() { reset(); } 2512 2513 LIR_Op* op() const { return _op; } 2514 void set_op(LIR_Op* op) { reset(); _op = op; } 2515 2516 bool has_call() const { return _has_call; } 2517 bool has_slow_case() const { return _has_slow_case; } 2518 2519 void reset() { 2520 _op = NULL; 2521 _has_call = false; 2522 _has_slow_case = false; 2523 2524 _oprs_len[inputMode] = 0; 2525 _oprs_len[tempMode] = 0; 2526 _oprs_len[outputMode] = 0; 2527 _info_len = 0; 2528 } 2529 2530 2531 int opr_count(OprMode mode) const { 2532 assert(mode >= 0 && mode < numModes, "bad mode"); 2533 return _oprs_len[mode]; 2534 } 2535 2536 LIR_Opr opr_at(OprMode mode, int index) const { 2537 assert(mode >= 0 && mode < numModes, "bad mode"); 2538 assert(index >= 0 && index < _oprs_len[mode], "index out of bound"); 2539 return *_oprs_new[mode][index]; 2540 } 2541 2542 void set_opr_at(OprMode mode, int index, LIR_Opr opr) const { 2543 assert(mode >= 0 && mode < numModes, "bad mode"); 2544 assert(index >= 0 && index < _oprs_len[mode], "index out of bound"); 2545 *_oprs_new[mode][index] = opr; 2546 } 2547 2548 int info_count() const { 2549 return _info_len; 2550 } 2551 2552 CodeEmitInfo* info_at(int index) const { 2553 assert(index < _info_len, "index out of bounds"); 2554 return _info_new[index]; 2555 } 2556 2557 XHandlers* all_xhandler(); 2558 2559 // collects all register operands of the instruction 2560 void visit(LIR_Op* op); 2561 2562 #ifdef ASSERT 2563 // check that an operation has no operands 2564 bool no_operands(LIR_Op* op); 2565 #endif 2566 2567 // LIR_Op visitor functions use these to fill in the state 2568 void do_input(LIR_Opr& opr) { append(opr, LIR_OpVisitState::inputMode); } 2569 void do_output(LIR_Opr& opr) { append(opr, LIR_OpVisitState::outputMode); } 2570 void do_temp(LIR_Opr& opr) { append(opr, LIR_OpVisitState::tempMode); } 2571 void do_info(CodeEmitInfo* info) { append(info); } 2572 2573 void do_stub(CodeStub* stub); 2574 void do_call() { _has_call = true; } 2575 void do_slow_case() { _has_slow_case = true; } 2576 void do_slow_case(CodeEmitInfo* info) { 2577 _has_slow_case = true; 2578 append(info); 2579 } 2580 }; 2581 2582 2583 inline LIR_Opr LIR_OprDesc::illegalOpr() { return LIR_OprFact::illegalOpr; }; 2584 2585 #endif // SHARE_C1_C1_LIR_HPP