/dalvik/dx/src/com/android/dx/io/ |
D | Code.java | 22 private final int outsSize; field in Code 28 public Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, in Code() argument 32 this.outsSize = outsSize; in Code() 48 return outsSize; in getOutsSize()
|
D | DexBuffer.java | 436 int outsSize = readUnsignedShort(); 461 return new Code(registersSize, insSize, outsSize, debugInfoOffset, instructions,
|
/dalvik/vm/compiler/template/armv5te/ |
D | TEMPLATE_INVOKE_METHOD_CHAIN.S | 7 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 18 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
|
D | TEMPLATE_INVOKE_METHOD_NO_OPT.S | 8 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 15 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
|
D | TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S | 45 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
/dalvik/vm/mterp/x86/ |
D | footer.S | 348 movzwl offMethod_outsSize(%eax), %ecx # %ecx<- methodToCall->outsSize 358 shl $$2, %ecx # %ecx<- update offset for outsSize 360 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize)
|
/dalvik/vm/interp/ |
D | Stack.cpp | 71 + method->outsSize * 4; // args to other methods in dvmPushInterpFrame() 100 memset(stackPtr - (method->outsSize*4), 0xaf, stackReq); in dvmPushInterpFrame() 1020 method->registersSize * 4, sizeof(StackSaveArea), method->outsSize * 4, in dvmHandleStackOverflow() 1021 (method->registersSize + method->outsSize) * 4 + sizeof(StackSaveArea), in dvmHandleStackOverflow()
|
D | Jit.cpp | 73 unsigned preBytes = self->interpSave.method->outsSize*4 + in dvmSelfVerificationSaveState()
|
/dalvik/vm/mterp/c/ |
D | gotoTargets.cpp | 840 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET() 848 assert(count <= curMethod->outsSize); in GOTO_TARGET() 907 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
|
/dalvik/vm/mterp/common/ |
D | asm-constants.h | 140 MTERP_OFFSET(offMethod_outsSize, Method, outsSize, 12)
|
/dalvik/vm/mterp/x86-atom/ |
D | footer.S | 238 movzwl offMethod_outsSize(%ecx), %edx # %edx<- methodToCall->outsSize 248 shl $$2, %edx # %edx<- update offset for outsSize 250 sub %edx, %ecx # %ecx<- bottom; (newSaveArea - outsSize)
|
/dalvik/vm/oo/ |
D | Object.h | 511 u2 outsSize; member
|
D | Class.cpp | 2186 meth->outsSize = pDexCode->outsSize; in loadMethodFromDex() 2204 assert(meth->outsSize == 0); in loadMethodFromDex()
|
/dalvik/libdex/ |
D | DexSwapVerify.cpp | 1809 SWAP_FIELD2(item->outsSize); in swapCodeItem() 1820 if ((item->outsSize > 5) && (item->outsSize > item->registersSize)) { in swapCodeItem() 1828 LOGE("outsSize (%u) > registersSize (%u)", item->outsSize, in swapCodeItem()
|
D | DexFile.h | 340 u2 outsSize; member
|
/dalvik/vm/compiler/template/out/ |
D | CompilerTemplateAsm-armv5te.S | 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 1469 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
D | CompilerTemplateAsm-armv7-a-neon.S | 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 1738 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
D | CompilerTemplateAsm-armv5te-vfp.S | 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 1738 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
D | CompilerTemplateAsm-armv7-a.S | 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 1738 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
/dalvik/vm/mterp/out/ |
D | InterpC-x86.cpp | 2276 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET() 2284 assert(count <= curMethod->outsSize); in GOTO_TARGET() 2343 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
|
D | InterpC-x86-atom.cpp | 2334 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET() 2342 assert(count <= curMethod->outsSize); in GOTO_TARGET() 2401 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
|
D | InterpC-allstubs.cpp | 5245 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET() 5253 assert(count <= curMethod->outsSize); in GOTO_TARGET() 5312 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
|
D | InterpC-portable.cpp | 5201 assert(vsrc1 <= curMethod->outsSize); in dvmInterpretPortable() 5209 assert(count <= curMethod->outsSize); in dvmInterpretPortable() 5268 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4); in dvmInterpretPortable()
|
/dalvik/vm/mterp/armv5te/ |
D | footer.S | 575 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize 584 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
|
/dalvik/dexdump/ |
D | DexDump.cpp | 1130 printf(" outs : %d\n", pCode->outsSize); in dumpCode()
|