HomeSort by relevance Sort by last modified time
    Searched refs:LOWREG (Results 1 - 5 of 5) sorted by null

  /dalvik/vm/compiler/codegen/arm/Thumb2/
Factory.cpp 154 if (LOWREG(rDest) && (value >= 0) && (value <= 255)) {
309 bool thumbForm = ((shift == 0) && LOWREG(rDestSrc1) && LOWREG(rSrc2));
328 else if ((shift == 0) && !LOWREG(rDestSrc1) && !LOWREG(rSrc2))
330 else if ((shift == 0) && LOWREG(rDestSrc1))
342 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
344 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2)
    [all...]
  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp 27 static void storePair(CompilationUnit *cUnit, int base, int lowReg,
29 static void loadPair(CompilationUnit *cUnit, int base, int lowReg, int highReg);
53 int tDest = LOWREG(rDest) ? rDest : dvmCompilerAllocTemp(cUnit);
223 if (LOWREG(rDestSrc1) && shortForm) {
225 } else if (LOWREG(rDestSrc1)) {
398 if (LOWREG(rDestSrc1) && LOWREG(rSrc2))
400 else if (!LOWREG(rDestSrc1) && !LOWREG(rSrc2))
402 else if (LOWREG(rDestSrc1)
    [all...]
  /dalvik/vm/compiler/codegen/arm/
ArmLIR.h 71 #define LOWREG(x) ((x & 0x7) == x)
    [all...]
  /dalvik/vm/compiler/codegen/mips/
MipsLIR.h 72 #define LOWREG(x) ((x & 0x1f) == x)
  /dalvik/vm/compiler/codegen/mips/Mips32/
Factory.cpp 32 static void storePair(CompilationUnit *cUnit, int base, int lowReg,
34 static void loadPair(CompilationUnit *cUnit, int base, int lowReg, int highReg);
823 static void storePair(CompilationUnit *cUnit, int base, int lowReg, int highReg)
825 storeWordDisp(cUnit, base, LOWORD_OFFSET, lowReg);
829 static void loadPair(CompilationUnit *cUnit, int base, int lowReg, int highReg)
831 loadWordDisp(cUnit, base, LOWORD_OFFSET , lowReg);
845 assert(LOWREG(rDest) && LOWREG(rSrc));

Completed in 64 milliseconds