Lines Matching defs:info

410                                  LIR_Opr tmp, ciArrayKlass* expected_type, int flags, CodeEmitInfo* info)
411 : LIR_Op(lir_arraycopy, LIR_OprFact::illegalOpr, info)
458 case lir_word_align: // result and info always invalid
459 case lir_backwardbranch_target: // result and info always invalid
460 case lir_build_frame: // result and info always invalid
461 case lir_fpop_raw: // result and info always invalid
462 case lir_24bit_FPU: // result and info always invalid
463 case lir_reset_FPU: // result and info always invalid
464 case lir_breakpoint: // result and info always invalid
465 case lir_membar: // result and info always invalid
466 case lir_membar_acquire: // result and info always invalid
467 case lir_membar_release: // result and info always invalid
468 case lir_membar_loadload: // result and info always invalid
469 case lir_membar_storestore: // result and info always invalid
470 case lir_membar_loadstore: // result and info always invalid
471 case lir_membar_storeload: // result and info always invalid
474 assert(op->_info == NULL, "info not used by this instruction");
479 case lir_nop: // may have info, result always invalid
480 case lir_std_entry: // may have result, info always invalid
481 case lir_osr_entry: // may have result, info always invalid
482 case lir_get_thread: // may have result, info always invalid
492 case lir_label: // result and info always invalid
495 assert(op->_info == NULL, "info not used by this instruction");
502 case lir_fxch: // input always valid, result and info always invalid
503 case lir_fld: // input always valid, result and info always invalid
504 case lir_ffree: // input always valid, result and info always invalid
505 case lir_push: // input always valid, result and info always invalid
506 case lir_pop: // input always valid, result and info always invalid
507 case lir_return: // input always valid, result and info always invalid
508 case lir_leal: // input and result always valid, info always invalid
509 case lir_neg: // input and result always valid, info always invalid
510 case lir_monaddr: // input and result always valid, info always invalid
511 case lir_null_check: // input and info always valid, result always invalid
512 case lir_move: // input and result always valid, may have info
515 case lir_prefetchr: // input always valid, result and info always invalid
516 case lir_prefetchw: // input always valid, result and info always invalid
541 case lir_convert: // input and result always valid, info always invalid
559 case lir_branch: // may have info, input and result register always invalid
560 case lir_cond_float_branch: // may have info, input and result register always invalid
598 assert(op->_info == NULL, "info not used by this instruction");
710 assert(op1->_info == NULL, "no info");
1173 void LIR_List::oop2reg_patch(jobject o, LIR_Opr reg, CodeEmitInfo* info) {
1174 append(new LIR_Op1(lir_move, LIR_OprFact::oopConst(o), reg, T_OBJECT, lir_patch_normal, info));
1178 void LIR_List::load(LIR_Address* addr, LIR_Opr src, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1185 info));
1189 void LIR_List::volatile_load_mem_reg(LIR_Address* address, LIR_Opr dst, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1196 info, lir_move_volatile));
1199 void LIR_List::volatile_load_unsafe_reg(LIR_Opr base, LIR_Opr offset, LIR_Opr dst, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1206 info, lir_move_volatile));
1217 void LIR_List::store_mem_int(jint v, LIR_Opr base, int offset_in_bytes, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1224 info));
1228 void LIR_List::store_mem_oop(jobject o, LIR_Opr base, int offset_in_bytes, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1235 info));
1239 void LIR_List::store(LIR_Opr src, LIR_Address* addr, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1246 info));
1250 void LIR_List::volatile_store_mem_reg(LIR_Opr src, LIR_Address* addr, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1257 info,
1261 void LIR_List::volatile_store_unsafe_reg(LIR_Opr src, LIR_Opr base, LIR_Opr offset, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1268 info, lir_move_volatile));
1272 void LIR_List::idiv(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) {
1279 info));
1283 void LIR_List::idiv(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) {
1290 info));
1294 void LIR_List::irem(LIR_Opr left, LIR_Opr right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) {
1301 info));
1305 void LIR_List::irem(LIR_Opr left, int right, LIR_Opr res, LIR_Opr tmp, CodeEmitInfo* info) {
1312 info));
1316 void LIR_List::cmp_mem_int(LIR_Condition condition, LIR_Opr base, int disp, int c, CodeEmitInfo* info) {
1322 info));
1326 void LIR_List::cmp_reg_mem(LIR_Condition condition, LIR_Opr reg, LIR_Address* addr, CodeEmitInfo* info) {
1332 info));
1398 void LIR_List::lock_object(LIR_Opr hdr, LIR_Opr obj, LIR_Opr lock, LIR_Opr scratch, CodeStub* stub, CodeEmitInfo* info) {
1406 info));
1648 if (info() != NULL) out->print(" [bci:%d]", info()->stack()->bci());
1863 if (stub()->info() != NULL) out->print(" [bci:%d]", stub()->info()->stack()->bci());