HomeSort by relevance Sort by last modified time
    Searched refs:OpCmpImmBranch (Results 1 - 12 of 12) sorted by null

  /art/compiler/dex/quick/arm/
int_arm.cc 151 OpCmpImmBranch(kCondNe, high_reg, val_hi, target);
154 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
155 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
159 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
160 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
164 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
165 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
169 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
170 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
176 OpCmpImmBranch(ccode, low_reg, val_lo, taken)
    [all...]
codegen_arm.h 140 LIR* OpCmpImmBranch(ConditionCode cond, int reg, int check_value, LIR* target);
call_arm.cc 543 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL);
  /art/compiler/dex/quick/x86/
call_x86.cc 48 OpCmpImmBranch(kCondEq, rl_src.low_reg, key,
204 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL);
int_x86.cc 98 LIR* X86Mir2Lir::OpCmpImmBranch(ConditionCode cond, int reg,
295 return OpCmpImmBranch(c_code, reg, 0, target);
531 LIR* null_value_check = OpCmpImmBranch(kCondEq, r_value, 0, NULL);
codegen_x86.h 141 LIR* OpCmpImmBranch(ConditionCode cond, int reg, int check_value, LIR* target);
  /art/compiler/dex/quick/mips/
int_mips.cc 53 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.low_reg, 0, NULL);
131 LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, int reg,
308 return OpCmpImmBranch((target == NULL) ? kCondEq : kCondNe, rMIPS_SUSPEND, 0, target);
314 return OpCmpImmBranch(c_code, reg, 0, target);
578 LIR* null_value_check = OpCmpImmBranch(kCondEq, r_value, 0, NULL);
call_mips.cc 195 LIR* branch_over = OpCmpImmBranch(kCondHi, r_key, size-1, NULL);
311 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, NULL);
codegen_mips.h 141 LIR* OpCmpImmBranch(ConditionCode cond, int reg, int check_value, LIR* target);
  /art/compiler/dex/quick/
gen_common.cc 59 branch = OpCmpImmBranch(c_code, reg, imm_val, tgt);
129 OpCmpImmBranch(cond, rl_src1.low_reg, mir_graph_->ConstantValue(rl_src2), taken);
166 OpCmpImmBranch(cond, rl_src.low_reg, 0, taken);
376 LIR* branch_over = OpCmpImmBranch(kCondNe, rBase, 0, NULL);
458 LIR* branch_over = OpCmpImmBranch(kCondNe, rBase, 0, NULL);
759 LIR* branch1 = OpCmpImmBranch(kCondEq, rl_result.low_reg, 0, NULL);
819 LIR* branch = OpCmpImmBranch(kCondNe, TargetReg(kRet0), 0, NULL);
    [all...]
gen_invoke.cc     [all...]
mir_to_lir.h     [all...]

Completed in 82 milliseconds