Home
last modified time | relevance | path

Searched refs:outsSize (Results 1 – 22 of 22) sorted by relevance

/dalvik/vm/compiler/template/armv5te/
DTEMPLATE_INVOKE_METHOD_CHAIN.S10 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
18 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
DTEMPLATE_INVOKE_METHOD_NO_OPT.S8 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
15 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
/dalvik/vm/mterp/c/
DgotoTargets.c740 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET()
748 assert(count <= curMethod->outsSize); in GOTO_TARGET()
807 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
/dalvik/vm/mterp/x86/
Dfooter.S145 movzwl offMethod_outsSize(%eax), %ecx # %ecx<- methodToCall->outsSize
155 shl $$2, %ecx # %ecx<- update offset for outsSize
157 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize)
/dalvik/vm/mterp/common/
Dasm-constants.h191 MTERP_OFFSET(offMethod_outsSize, Method, outsSize, 12)
/dalvik/vm/mterp/armv5te/
Dfooter.S313 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
329 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
368 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
/dalvik/vm/interp/
DStack.c70 + method->outsSize * 4; // args to other methods in dvmPushInterpFrame()
99 memset(stackPtr - (method->outsSize*4), 0xaf, stackReq); in dvmPushInterpFrame()
/dalvik/vm/mterp/out/
DInterpC-x86.c1928 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET()
1936 assert(count <= curMethod->outsSize); in GOTO_TARGET()
1995 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
DInterpC-portstd.c3778 assert(vsrc1 <= curMethod->outsSize); in INTERP_FUNC_NAME()
3786 assert(count <= curMethod->outsSize); in INTERP_FUNC_NAME()
3845 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4); in INTERP_FUNC_NAME()
DInterpC-allstubs.c3773 assert(vsrc1 <= curMethod->outsSize); in GOTO_TARGET()
3781 assert(count <= curMethod->outsSize); in GOTO_TARGET()
3840 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4);
DInterpC-portdbg.c4064 assert(vsrc1 <= curMethod->outsSize); in INTERP_FUNC_NAME()
4072 assert(count <= curMethod->outsSize); in INTERP_FUNC_NAME()
4131 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4); in INTERP_FUNC_NAME()
DInterpAsm-armv7-a.S9239 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9255 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9294 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
DInterpAsm-armv5te-vfp.S9303 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9319 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9358 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
DInterpAsm-armv4t.S9785 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9801 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9840 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
DInterpAsm-armv5te.S9779 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9795 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize
9834 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize)
DInterpAsm-x86.S8645 movzwl offMethod_outsSize(%eax), %ecx # %ecx<- methodToCall->outsSize
8655 shl $2, %ecx # %ecx<- update offset for outsSize
8657 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize)
/dalvik/vm/oo/
DObject.h495 u2 outsSize; member
DClass.c2090 meth->outsSize = pDexCode->outsSize; in loadMethodFromDex()
2108 assert(meth->outsSize == 0); in loadMethodFromDex()
/dalvik/libdex/
DDexFile.h318 u2 outsSize; member
DDexSwapVerify.c1770 SWAP_FIELD2(item->outsSize); in swapCodeItem()
/dalvik/dexdump/
DDexDump.c983 printf(" outs : %d\n", pCode->outsSize); in dumpCode()
/dalvik/vm/analysis/
DCodeVerify.c1125 if (expectedArgs > meth->outsSize) { in verifyInvocationArgs()
1127 expectedArgs, meth->outsSize); in verifyInvocationArgs()