/external/dexmaker/src/dx/java/com/android/dx/io/ |
Code.java | 22 private final int outsSize; 28 public Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, 32 this.outsSize = outsSize; 48 return outsSize;
|
/libcore/dex/src/main/java/com/android/dex/ |
Code.java | 22 private final int outsSize; 28 public Code(int registersSize, int insSize, int outsSize, int debugInfoOffset, 32 this.outsSize = outsSize; 48 return outsSize;
|
Dex.java | 645 int outsSize = readUnsignedShort(); 670 return new Code(registersSize, insSize, outsSize, debugInfoOffset, instructions, [all...] |
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_INVOKE_METHOD_CHAIN.S | 11 lh a2, offMethod_outsSize(a0) # a2<- methodToCall->outsSize 21 sll t6, a2, 2 # multiply outsSize by 4 (4 bytes per reg) 22 sub t0, t0, t6 # t0<- bottom (newsave-outsSize)
|
TEMPLATE_INVOKE_METHOD_NO_OPT.S | 8 lh a2, offMethod_outsSize(a0) # a2<- methodToCall->outsSize 16 sll t6, a2, 2 # multiply outsSize by 4 (4 bytes per reg) 17 sub t0, t0, t6 # t0<- bottom (newsave-outsSize)
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_CHAIN.S | 7 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 18 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize)
|
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)
|
TEMPLATE_INVOKE_METHOD_PREDICTED_CHAIN.S | 45 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize
|
/dalvik/vm/compiler/template/out/ |
CompilerTemplateAsm-armv5te.S | 232 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 296 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize [all...] |
CompilerTemplateAsm-armv7-a-neon.S | 232 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 296 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize [all...] |
CompilerTemplateAsm-armv7-a.S | 232 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 296 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize [all...] |
CompilerTemplateAsm-armv5te-vfp.S | 232 ldrh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize 239 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 296 @ r0 = methodToCall, r1 = returnCell, r2 = methodToCall->outsSize 307 sub r10, r10, r2, lsl #2 @ r10<- bottom (newsave - outsSize) 388 ldreqh r2, [r0, #offMethod_outsSize] @ r2<- methodToCall->outsSize [all...] |
CompilerTemplateAsm-mips.S | 557 lh a2, offMethod_outsSize(a0) # a2<- methodToCall->outsSize 565 sll t6, a2, 2 # multiply outsSize by 4 (4 bytes per reg) 566 sub t0, t0, t6 # t0<- bottom (newsave-outsSize) 645 lh a2, offMethod_outsSize(a0) # a2<- methodToCall->outsSize 655 sll t6, a2, 2 # multiply outsSize by 4 (4 bytes per reg) 656 sub t0, t0, t6 # t0<- bottom (newsave-outsSize) [all...] |
/dalvik/vm/mterp/common/ |
asm-constants.h | 140 MTERP_OFFSET(offMethod_outsSize, Method, outsSize, 12)
|
/dalvik/vm/mterp/c/ |
gotoTargets.cpp | 777 assert(vsrc1 <= curMethod->outsSize); 785 assert(count <= curMethod->outsSize); 844 bottom = (u1*) newSaveArea - methodToCall->outsSize * sizeof(u4); [all...] |
/dalvik/vm/mterp/x86/ |
footer.S | 500 movzwl offMethod_outsSize(%eax), %ecx # %ecx<- methodToCall->outsSize 510 shl $$2, %ecx # %ecx<- update offset for outsSize 512 sub %ecx, %eax # %eax<- bottom; (newSaveArea - outsSize) [all...] |
/dalvik/vm/interp/ |
Stack.cpp | 75 + method->outsSize * 4; // args to other methods 104 memset(stackPtr - (method->outsSize*4), 0xaf, stackReq); 1022 method->registersSize * 4, sizeof(StackSaveArea), method->outsSize * 4, 1023 (method->registersSize + method->outsSize) * 4 + sizeof(StackSaveArea) [all...] |
/dalvik/libdex/ |
DexSwapVerify.cpp | [all...] |
DexFile.h | 340 u2 outsSize;
|
/dalvik/vm/mterp/out/ |
InterpC-x86.cpp | [all...] |
InterpC-mips.cpp | [all...] |
InterpC-allstubs.cpp | [all...] |
/dalvik/vm/mterp/armv5te/ |
footer.S | 546 ldrh r3, [r0, #offMethod_outsSize] @ r3<- methodToCall->outsSize 555 sub r3, r10, r3, lsl #2 @ r3<- bottom (newsave - outsSize) [all...] |
/dalvik/vm/oo/ |
Object.h | 509 u2 outsSize;
|
/dalvik/vm/compiler/codegen/arm/ |
CodegenDriver.cpp | [all...] |