Lines Matching defs:result

280       assert(in_opr1() == result_opr(), "opr1 and result must match");
286 assert(in_opr1() == result_opr() || in_opr2()->is_constant(), "opr1 and result must match or shift count is constant");
353 LIR_OpTypeCheck::LIR_OpTypeCheck(LIR_Code code, LIR_Opr result, LIR_Opr object, ciKlass* klass,
358 : LIR_Op(code, result, NULL)
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
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
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
513 case lir_pack64: // input and result always valid
514 case lir_unpack64: // input and result always valid
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
650 // to the result operand, otherwise the backend fails
699 assert(op2->_result->is_illegal(), "no result");
712 assert(op1->_result->is_illegal(), "no result");
987 XHandlers* result = NULL;
992 result = info_at(i)->exception_handlers();
1000 info_at(i)->exception_handlers() == result,
1005 if (result != NULL) {
1006 return result;
1011 return result;
1428 void LIR_List::checkcast (LIR_Opr result, LIR_Opr object, ciKlass* klass,
1432 LIR_OpTypeCheck* c = new LIR_OpTypeCheck(lir_checkcast, result, object, klass,
1442 void LIR_List::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) {
1443 LIR_OpTypeCheck* c = new LIR_OpTypeCheck(lir_instanceof, result, object, klass, tmp1, tmp2, tmp3, fast_check, NULL, info_for_patch, NULL);
1466 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1467 append(new LIR_OpCompareAndSwap(lir_cas_long, addr, cmp_value, new_value, t1, t2, result));
1471 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1472 append(new LIR_OpCompareAndSwap(lir_cas_obj, addr, cmp_value, new_value, t1, t2, result));
1476 LIR_Opr t1, LIR_Opr t2, LIR_Opr result) {
1477 append(new LIR_OpCompareAndSwap(lir_cas_int, addr, cmp_value, new_value, t1, t2, result));
1773 out->print(" [result: "); result_opr()->print(out); out->print("]");