Home
last modified time | relevance | path

Searched refs:OpCondBranch (Results 1 – 21 of 21) sorted by relevance

/art/compiler/dex/quick/arm/
Dint_arm.cc37 return OpCondBranch(cond, target); in OpCmpBranch()
141 LIR* branch1 = OpCondBranch(kCondLt, nullptr); in GenCmpLong()
142 LIR* branch2 = OpCondBranch(kCondGt, nullptr); in GenCmpLong()
144 LIR* branch3 = OpCondBranch(kCondEq, nullptr); in GenCmpLong()
182 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
344 OpCondBranch(kCondNe, not_taken); in GenFusedLongCmpBranch()
347 OpCondBranch(kCondNe, taken); in GenFusedLongCmpBranch()
350 OpCondBranch(kCondLt, taken); in GenFusedLongCmpBranch()
351 OpCondBranch(kCondGt, not_taken); in GenFusedLongCmpBranch()
355 OpCondBranch(kCondLt, taken); in GenFusedLongCmpBranch()
[all …]
Dcall_arm.cc97 OpCondBranch(kCondNe, target); in GenLargeSparseSwitch()
128 LIR* branch_over = OpCondBranch(kCondHi, nullptr); in GenLargePackedSwitch()
Dfp_arm.cc292 OpCondBranch(ccode, target); in GenFusedFPCmpBranch()
Dcodegen_arm.h200 LIR* OpCondBranch(ConditionCode cc, LIR* target);
Dutility_arm.cc263 LIR* ArmMir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { in OpCondBranch() function in art::ArmMir2Lir
/art/compiler/dex/quick/x86/
Dcall_x86.cc84 LIR* branch_over = OpCondBranch(kCondHi, nullptr); in GenLargePackedSwitch()
231 LIR* branch = OpCondBranch(kCondUlt, nullptr); in GenEntrySequence()
Dint_x86.cc410 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
448 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
471 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
493 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
526 OpCondBranch(ccode, taken); in GenFusedLongCmpImmBranch()
1540 LIR* branch = OpCondBranch(kCondUge, nullptr); in GenArrayBoundsCheck()
1577 LIR* branch = OpCondBranch(kCondLs, nullptr); in GenArrayBoundsCheck()
1589 return OpCondBranch((target == nullptr) ? kCondNe : kCondEq, target); in OpTestSuspend()
1595 return OpCondBranch(c_code, target); in OpDecAndBranch()
Dutility_x86.cc119 LIR* X86Mir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { in OpCondBranch() function in art::X86Mir2Lir
953 LIR* branch = OpCondBranch(cond, target); in OpCmpMemImmBranch()
Dfp_x86.cc577 OpCondBranch(ccode, taken); in GenFusedFPCmpBranch()
Dcodegen_x86.h297 LIR* OpCondBranch(ConditionCode cc, LIR* target) OVERRIDE;
Dtarget_x86.cc1401 LIR* failed_branch = OpCondBranch(kCondNe, nullptr); in GenInlinedIndexOf()
2442 range_check_branch = OpCondBranch(kCondUge, nullptr); in GenInlinedCharAt()
/art/compiler/dex/quick/arm64/
Dint_arm64.cc37 return OpCondBranch(cond, target); in OpCmpBranch()
252 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
253 OpCondBranch(NegateComparison(ccode), not_taken); in GenFusedLongCmpBranch()
260 OpCondBranch(ccode, taken); in GenFusedLongCmpBranch()
261 OpCondBranch(NegateComparison(ccode), not_taken); in GenFusedLongCmpBranch()
806 LIR* early_exit = OpCondBranch(kCondNe, nullptr); in GenInlinedCas()
810 OpCondBranch(kCondNe, loop); in GenInlinedCas()
1032 return OpCondBranch(c_code, target); in OpDecAndBranch()
Dcall_arm64.cc88 OpCondBranch(kCondNe, loop_entry); in GenLargeSparseSwitch()
131 LIR* branch_over = OpCondBranch(kCondHi, nullptr); in GenLargePackedSwitch()
Dfp_arm64.cc275 OpCondBranch(ccode, target); in GenFusedFPCmpBranch()
Dcodegen_arm64.h204 LIR* OpCondBranch(ConditionCode cc, LIR* target) OVERRIDE;
Dutility_arm64.cc545 LIR* Arm64Mir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { in OpCondBranch() function in art::Arm64Mir2Lir
/art/compiler/dex/quick/mips/
Dcodegen_mips.h198 LIR* OpCondBranch(ConditionCode cc, LIR* target);
Dutility_mips.cc1040 LIR* MipsMir2Lir::OpCondBranch(ConditionCode cc, LIR* target) { in OpCondBranch() function in art::MipsMir2Lir
/art/compiler/dex/quick/
Dgen_invoke.cc967 slow_path_branch = OpCondBranch(kCondNe, nullptr); in GenInlinedReferenceGetReferent()
1010 range_check_branch = OpCondBranch(kCondUge, nullptr); in GenInlinedCharAt()
Dmir_to_lir.h1409 virtual LIR* OpCondBranch(ConditionCode cc, LIR* target) = 0;
Dgen_common.cc187 LIR* branch = OpCondBranch(c_code, nullptr); in GenDivZeroCheck()