Searched defs:cond (Results 1 - 8 of 8) sorted by relevance

/dalvik/vm/compiler/codegen/arm/
H A DArchFactory.cpp30 ArmConditionCode cond, int reg,
34 TGT_LIR *branch = genCmpImmBranch(cUnit, cond, reg, checkValue);
73 ArmConditionCode cond,
79 TGT_LIR *branch = opCondBranch(cUnit, cond);
29 genRegImmCheck(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue, int dOffset, TGT_LIR *pcrLabel) argument
72 genRegRegCheck(CompilationUnit *cUnit, ArmConditionCode cond, int reg1, int reg2, int dOffset, TGT_LIR *pcrLabel) argument
H A DCodegenDriver.cpp284 ArmConditionCode cond,
287 ArmLIR *branch = opCondBranch(cUnit, cond);
2104 ArmConditionCode cond; local
2121 cond = kArmCondEq;
2124 cond = kArmCondNe;
2127 cond = kArmCondLt;
2130 cond = kArmCondGe;
2133 cond = kArmCondGt;
2136 cond = kArmCondLe;
2139 cond
283 genConditionalBranch(CompilationUnit *cUnit, ArmConditionCode cond, ArmLIR *target) argument
2605 ArmConditionCode cond; local
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DCodegenFactory.cpp283 MipsConditionCode cond,
288 if (cond == kMipsCondGe) { /* signed >= case */
293 } else if (cond == kMipsCondCs) { /* unsigned >= case */
299 ALOGE("Unexpected condition in genRegRegCheck: %d\n", (int) cond);
282 genRegRegCheck(CompilationUnit *cUnit, MipsConditionCode cond, int reg1, int reg2, int dOffset, MipsLIR *pcrLabel) argument
H A DCodegenDriver.cpp2657 MipsConditionCode cond; local
2712 cond = (MipsConditionCode)0;
/dalvik/vm/
H A DSync.cpp582 int dvmRelativeCondWait(pthread_cond_t* cond, pthread_mutex_t* mutex, argument
589 ret = pthread_cond_timedwait_monotonic(cond, mutex, &ts);
591 ret = pthread_cond_timedwait(cond, mutex, &ts);
/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp35 ArmConditionCode cond,
884 ArmConditionCode cond, int reg,
895 ArmLIR *branch = newLIR2(cUnit, kThumbBCond, 0, cond);
883 genCmpImmBranch(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue) argument
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp40 MipsConditionCode cond,
907 MipsConditionCode cond, int reg,
915 if (cond == kMipsCondEq) {
917 } else if (cond == kMipsCondNe) {
919 } else if (cond == kMipsCondLt || cond == kMipsCondMi) {
921 } else if (cond == kMipsCondLe) {
923 } else if (cond == kMipsCondGt) {
925 } else if (cond == kMipsCondGe) {
933 if (cond
906 genRegImmCheck(CompilationUnit *cUnit, MipsConditionCode cond, int reg, int checkValue, int dOffset, MipsLIR *pcrLabel) argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp1133 ArmConditionCode cond, int reg,
1139 ((cond == kArmCondEq) || (cond == kArmCondNe))) {
1141 (cond == kArmCondEq) ? kThumb2Cbz : kThumb2Cbnz,
1154 branch = newLIR2(cUnit, kThumbBCond, 0, cond);
1132 genCmpImmBranch(CompilationUnit *cUnit, ArmConditionCode cond, int reg, int checkValue) argument

Completed in 1749 milliseconds