Searched refs:pDecInsn (Results 1 – 4 of 4) sorted by relevance
/dalvik/dexdump/ |
D | DexDump.c | 701 int insnWidth, const DecodedInstruction* pDecInsn) in dumpInstruction() argument 721 if (pDecInsn->opCode == OP_NOP) { in dumpInstruction() 736 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn->opCode)); in dumpInstruction() 739 switch (dexGetInstrFormat(gInstrFormat, pDecInsn->opCode)) { in dumpInstruction() 743 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction() 747 pDecInsn->vA, (s4)pDecInsn->vB, (u1)pDecInsn->vB); in dumpInstruction() 750 printf(" v%d", pDecInsn->vA); in dumpInstruction() 755 s4 targ = (s4) pDecInsn->vA; in dumpInstruction() 763 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction() 767 s4 targ = (s4) pDecInsn->vB; in dumpInstruction() [all …]
|
/dalvik/vm/analysis/ |
D | CodeVerify.c | 122 const int insnRegCount, const DecodedInstruction* pDecInsn, 1045 const int insnRegCount, const DecodedInstruction* pDecInsn, in verifyInvocationArgs() argument 1057 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB); in verifyInvocationArgs() 1059 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType, in verifyInvocationArgs() 1070 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); in verifyInvocationArgs() 1091 dvmMethodTypeStr(methodType), pDecInsn->vB, in verifyInvocationArgs() 1149 int expectedArgs = pDecInsn->vA; in verifyInvocationArgs() 1154 pDecInsn->vA); in verifyInvocationArgs() 1176 actualArgType = getInvocationThis(insnRegs, insnRegCount, pDecInsn, in verifyInvocationArgs() 1211 getReg = pDecInsn->vC + actualArgs; in verifyInvocationArgs() [all …]
|
D | DexVerify.c | 286 DecodedInstruction* pDecInsn) in decodeInstruction() argument 288 dexDecodeInstruction(gDvm.instrFormat, meth->insns + insnIdx, pDecInsn); in decodeInstruction()
|
D | RegisterMap.c | 2347 const DecodedInstruction* pDecInsn, MethodType methodType) 2357 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB); 2359 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType); 2369 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); 2375 dvmMethodTypeStr(methodType), pDecInsn->vB,
|