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

/dalvik/vm/compiler/codegen/arm/
H A DArchFactory.cpp31 int checkValue, int dOffset,
34 TGT_LIR *branch = genCmpImmBranch(cUnit, cond, reg, checkValue);
29 genRegImmCheck(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue, int dOffset, TGT_LIR *pcrLabel) argument
/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp885 int checkValue)
887 if ((checkValue & 0xff) != checkValue) {
889 loadConstant(cUnit, tReg, checkValue);
893 newLIR2(cUnit, kThumbCmpRI8, reg, checkValue);
883 genCmpImmBranch(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue) argument
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp908 int checkValue, int dOffset,
913 if (checkValue == 0) {
932 } else if (IS_SIMM16(checkValue)) {
935 newLIR3(cUnit, kMipsSlti, tReg, reg, checkValue);
906 genRegImmCheck(CompilationUnit *cUnit, MipsConditionCode cond, int reg, int checkValue, int dOffset, MipsLIR *pcrLabel) argument
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp1134 int checkValue)
1138 if ((LOWREG(reg)) && (checkValue == 0) &&
1144 modImm = modifiedImmediate(checkValue);
1145 if (LOWREG(reg) && ((checkValue & 0xff) == checkValue)) {
1146 newLIR2(cUnit, kThumbCmpRI8, reg, checkValue);
1151 loadConstant(cUnit, tReg, checkValue);
1132 genCmpImmBranch(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue) argument

Completed in 371 milliseconds