Searched defs:OpCmpImmBranch (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/quick/mips/
H A Dint_mips.cc71 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.reg, 0, nullptr);
149 LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { function in class:art::MipsMir2Lir
456 return OpCmpImmBranch((target == nullptr) ? kCondEq : kCondNe, TargetPtrReg(kSuspend), 0, target);
462 return OpCmpImmBranch(c_code, reg, 0, target);
/art/compiler/dex/quick/arm/
H A Dint_arm.cc189 OpCmpImmBranch(kCondNe, high_reg, val_hi, (ccode == kCondEq) ? not_taken : taken);
192 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
193 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
197 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken);
198 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken);
202 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
203 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
207 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken);
208 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken);
214 OpCmpImmBranch(ccod
380 LIR* ArmMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { function in class:art::ArmMir2Lir
[all...]
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc243 OpCmpImmBranch(ccode, rl_src1.reg, 0, taken);
244 OpCmpImmBranch(NegateComparison(ccode), rl_src1.reg, 0, not_taken);
268 LIR* Arm64Mir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, function in class:art::Arm64Mir2Lir
310 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target);
849 LIR* src_check_branch = OpCmpImmBranch(kCondEq, rs_src, 0, nullptr);
850 LIR* dst_check_branch = OpCmpImmBranch(kCondEq, rs_dst, 0, nullptr);
857 LIR* len_neg_or_too_big = OpCmpImmBranch(kCondHi, rs_length, kLargeArrayThreshold, nullptr);
862 LIR* src_pos_negative = OpCmpImmBranch(kCondLt, rs_src_pos, 0, nullptr);
869 LIR* dst_pos_negative = OpCmpImmBranch(kCondLt, rs_dst_pos, 0, nullptr);
907 LIR* jmp_to_ret = OpCmpImmBranch(kCondE
[all...]
/art/compiler/dex/quick/x86/
H A Dint_x86.cc108 LIR* X86Mir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, function in class:art::X86Mir2Lir
3025 LIR* null_branchover = OpCmpImmBranch(kCondEq, object.reg, 0, nullptr);

Completed in 307 milliseconds