| /dalvik/vm/mterp/c/ |
| header.c | 239 ( (_idx) < curMethod->registersSize ? \ 242 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize-1 ? \ 252 ( (_idx) < curMethod->registersSize-1 ? \ 255 ( (_idx) < curMethod->registersSize ? \ 258 ( (_idx) < curMethod->registersSize ? \ 261 ( (_idx) < curMethod->registersSize-1 ? \ 264 ( (_idx) < curMethod->registersSize-1 ? \
|
| gotoTargets.c | 847 newFp = (u4*) SAVEAREA_FROM_FP(fp) - methodToCall->registersSize; 869 if (methodToCall->registersSize > methodToCall->insSize) { 877 (methodToCall->registersSize - methodToCall->insSize) * 4); [all...] |
| /dalvik/vm/alloc/ |
| Visit.c | 113 for (i = 0; i < method->registersSize; ++i) { 128 for (i = 0; i < method->registersSize; ++i) {
|
| Copying.c | [all...] |
| /dalvik/vm/interp/ |
| Stack.c | 69 stackReq = method->registersSize * 4 // params + locals 95 stackPtr -= method->registersSize * 4 + sizeof(StackSaveArea); 143 stackReq = method->registersSize * 4 // params only 169 stackPtr -= method->registersSize * 4 + sizeof(StackSaveArea); 460 ins = ((u4*)self->curFrame) + (method->registersSize - method->insSize); 564 ins = ((u4*)self->curFrame) + (method->registersSize - method->insSize); 682 ins = ((s4*)self->curFrame) + (method->registersSize - method->insSize); 1038 method->registersSize * 4, sizeof(StackSaveArea), method->outsSize * 4, 1039 (method->registersSize + method->outsSize) * 4 + sizeof(StackSaveArea) [all...] |
| /dalvik/libdex/ |
| DexFile.c | 861 LocalInfo localInReg[pCode->registersSize]; 865 memset(localInReg, 0, sizeof(LocalInfo) * pCode->registersSize); 874 u2 argReg = pCode->registersSize - pCode->insSize; 901 if ((argReg >= pCode->registersSize) || (descriptor == NULL)) { 946 if (reg > pCode->registersSize) goto invalid_stream; 966 if (reg > pCode->registersSize) goto invalid_stream; 974 if (reg > pCode->registersSize) goto invalid_stream; 1019 for (reg = 0; reg < pCode->registersSize; reg++) {
|
| /dalvik/vm/analysis/ |
| RegisterMap.c | 198 if (vdata->method->registersSize >= 2048) { 200 vdata->method->registersSize); 203 regWidth = (vdata->method->registersSize + 7) / 8; 395 * Pass in method->registersSize if known, or -1 if not. 397 static void dumpRegisterMap(const RegisterMap* pMap, int registersSize) 418 if (registersSize < 0) 419 registersSize = 8 * regWidth; 420 assert(registersSize <= regWidth * 8); 434 char outBuf[registersSize +1]; 435 for (i = 0; i < registersSize; i++) [all...] |
| CodeVerify.h | 141 * to the method's declared "registersSize". (Does not include the
|
| DexVerify.c | 134 vdata.insnRegCount = meth->registersSize; 158 if (meth->insSize > meth->registersSize) { 160 meth->insSize, meth->registersSize);
|
| CodeVerify.c | 105 * to the method's declared "registersSize" plus kExtraRegs. 727 argStart = meth->registersSize - meth->insSize; [all...] |
| /dalvik/vm/compiler/ |
| Dataflow.c | 942 dvmCompilerAllocBitVector(cUnit->method->registersSize, false); 944 dvmCompilerAllocBitVector(cUnit->method->registersSize, false); 946 dvmCompilerAllocBitVector(cUnit->method->registersSize, false); 1148 dvmCompilerNew(sizeof(int) * cUnit->method->registersSize, false); 1152 sizeof(int) * cUnit->method->registersSize); [all...] |
| CompilerIR.h | 200 int *dalvikToSSAMap; // length == method->registersSize
|
| Loop.c | 47 BitVector *phiV = dvmCompilerAllocBitVector(cUnit->method->registersSize, 56 for (i = 0; i < cUnit->method->registersSize; i++) {
|
| InlineTransformation.c | 28 (calleeMethod->registersSize - calleeMethod->insSize);
|
| /dalvik/vm/mterp/out/ |
| InterpC-armv4t.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-armv5te-vfp.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-armv5te.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-armv7-a-neon.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-armv7-a.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-x86.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-x86-atom.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-allstubs.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-portdbg.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| InterpC-portstd.c | 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ 259 ( (_idx) < curMethod->registersSize-1 ? \ 262 ( (_idx) < curMethod->registersSize ? \ 265 ( (_idx) < curMethod->registersSize ? \ 268 ( (_idx) < curMethod->registersSize-1 ? \ 271 ( (_idx) < curMethod->registersSize-1 ? \ [all...] |
| /dalvik/vm/mterp/common/ |
| asm-constants.h | 178 MTERP_OFFSET(offMethod_registersSize, Method, registersSize, 10)
|