Searched refs:regClass (Results 1 – 5 of 5) sorted by relevance
/dalvik/vm/compiler/codegen/arm/Thumb2/ |
D | Ralloc.cpp | 33 bool fpHint, int regClass) in dvmCompilerAllocTypedTempPair() argument 43 if (((regClass == kAnyReg) && fpHint) || (regClass == kFPReg)) { in dvmCompilerAllocTypedTempPair() 55 int regClass) in dvmCompilerAllocTypedTemp() argument 60 if (((regClass == kAnyReg) && fpHint) || (regClass == kFPReg)) in dvmCompilerAllocTypedTemp()
|
/dalvik/vm/compiler/codegen/arm/Thumb/ |
D | Ralloc.cpp | 30 int regClass) in dvmCompilerAllocTypedTempPair() argument 41 int dvmCompilerAllocTypedTemp(CompilationUnit *cUnit, bool fpHint, int regClass) in dvmCompilerAllocTypedTemp() argument
|
/dalvik/vm/compiler/codegen/ |
D | Ralloc.h | 80 int regClass, bool update); 211 bool fpHint, int regClass); 214 int regClass);
|
D | RallocUtil.cpp | 317 int regClass) in allocLive() argument 320 switch(regClass) { in allocLive() 606 static bool regClassMatches(int regClass, int reg) in regClassMatches() argument 608 if (regClass == kAnyReg) { in regClassMatches() 610 } else if (regClass == kCoreReg) { in regClassMatches() 747 int regClass, bool update) in evalLocWide() argument 760 if (!regClassMatches(regClass, loc.lowReg)) { in evalLocWide() 762 newRegs = dvmCompilerAllocTypedTempPair(cUnit, loc.fp, regClass); in evalLocWide() 783 newRegs = dvmCompilerAllocTypedTempPair(cUnit, loc.fp, regClass); in evalLocWide() 798 int regClass, bool update) in dvmCompilerEvalLoc() argument [all …]
|
/dalvik/vm/compiler/codegen/arm/ |
D | CodegenDriver.cpp | 352 RegisterClass regClass = dvmCompilerRegClassBySize(size); in genIGet() local 356 rlResult = dvmCompilerEvalLoc(cUnit, rlDest, regClass, true); in genIGet() 378 RegisterClass regClass = dvmCompilerRegClassBySize(size); in genIPut() local 382 rlSrc = loadValue(cUnit, rlSrc, regClass); in genIPut() 409 RegisterClass regClass = dvmCompilerRegClassBySize(size); in genArrayGet() local 449 rlResult = dvmCompilerEvalLoc(cUnit, rlDest, regClass, true); in genArrayGet() 458 rlResult = dvmCompilerEvalLoc(cUnit, rlDest, regClass, true); in genArrayGet() 478 RegisterClass regClass = dvmCompilerRegClassBySize(size); in genArrayPut() local 527 rlSrc = loadValueWide(cUnit, rlSrc, regClass); in genArrayPut() 535 rlSrc = loadValue(cUnit, rlSrc, regClass); in genArrayPut()
|