Home
last modified time | relevance | path

Searched refs:check_value (Results 1 – 11 of 11) sorted by relevance

/art/compiler/dex/quick/mips/
Dint_mips.cc149 LIR* MipsMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { in OpCmpImmBranch() argument
151 if (check_value != 0) { in OpCmpImmBranch()
154 LoadConstant(t_reg, check_value); in OpCmpImmBranch()
171 LoadConstant(t_reg, check_value); in OpCmpImmBranch()
Dcodegen_mips.h197 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target);
/art/compiler/dex/quick/arm64/
Dcodegen_arm64.h86 int offset, int check_value, LIR* target, LIR** compare) OVERRIDE;
203 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) OVERRIDE;
Dint_arm64.cc268 LIR* Arm64Mir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, in OpCmpImmBranch() argument
272 if (check_value == 0) { in OpCmpImmBranch()
292 OpRegImm(kOpCmp, reg, check_value); in OpCmpImmBranch()
301 RegStorage base_reg, int offset, int check_value, in OpCmpMemImmBranch() argument
310 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target); in OpCmpMemImmBranch()
/art/compiler/dex/quick/x86/
Dutility_x86.cc946 int offset, int check_value, LIR* target, LIR** compare) { in OpCmpMemImmBranch() argument
948 LIR* inst = NewLIR3(IS_SIMM8(check_value) ? kX86Cmp32MI8 : kX86Cmp32MI, base_reg.GetReg(), in OpCmpMemImmBranch()
949 offset, check_value); in OpCmpMemImmBranch()
Dcodegen_x86.h296 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) OVERRIDE;
815 int offset, int check_value, LIR* target, LIR** compare);
Dint_x86.cc109 int check_value, LIR* target) { in OpCmpImmBranch() argument
110 if ((check_value == 0) && (cond == kCondEq || cond == kCondNe)) { in OpCmpImmBranch()
115 NewLIR2(IS_SIMM8(check_value) ? kX86Cmp64RI8 : kX86Cmp64RI, reg.GetReg(), check_value); in OpCmpImmBranch()
117 NewLIR2(IS_SIMM8(check_value) ? kX86Cmp32RI8 : kX86Cmp32RI, reg.GetReg(), check_value); in OpCmpImmBranch()
/art/compiler/dex/quick/arm/
Dcodegen_arm.h199 LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target);
Dint_arm.cc380 LIR* ArmMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { in OpCmpImmBranch() argument
394 if (!skip && reg.Low8() && (check_value == 0)) { in OpCmpImmBranch()
406 OpRegImm(kOpCmp, reg, check_value); in OpCmpImmBranch()
/art/compiler/dex/quick/
Dcodegen_util.cc1258 int offset, int check_value, LIR* target, LIR** compare) { in OpCmpMemImmBranch() argument
1264 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target); in OpCmpMemImmBranch()
Dmir_to_lir.h1137 int offset, int check_value, LIR* target, LIR** compare);
1407 virtual LIR* OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value,