Home
last modified time | relevance | path

Searched refs:pDecInsn (Results 1 – 3 of 3) sorted by relevance

/dalvik/dexdump/
DDexDump.cpp709 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) in indexString() argument
716 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) { in indexString()
725 index = pDecInsn->vB; in indexString()
729 index = pDecInsn->vB; in indexString()
734 index = pDecInsn->vC; in indexString()
743 switch (pDecInsn->indexType) { in indexString()
827 return indexString(pDexFile, pDecInsn, buf, outSize); in indexString()
837 int insnWidth, const DecodedInstruction* pDecInsn) in dumpInstruction() argument
859 if (pDecInsn->opcode == OP_NOP) { in dumpInstruction()
874 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn->opcode)); in dumpInstruction()
[all …]
/dalvik/vm/analysis/
DDexVerify.cpp550 const DecodedInstruction* pDecInsn) in checkVarargRegs() argument
555 if (pDecInsn->vA > 5) { in checkVarargRegs()
557 pDecInsn->vA); in checkVarargRegs()
561 for (idx = 0; idx < pDecInsn->vA; idx++) { in checkVarargRegs()
562 if (pDecInsn->arg[idx] > registersSize) { in checkVarargRegs()
564 pDecInsn->arg[idx], registersSize); in checkVarargRegs()
579 const DecodedInstruction* pDecInsn) in checkVarargRangeRegs() argument
587 if (pDecInsn->vA + pDecInsn->vC > registersSize) { in checkVarargRangeRegs()
589 pDecInsn->vA, pDecInsn->vC, registersSize); in checkVarargRangeRegs()
DCodeVerify.cpp112 const DecodedInstruction* pDecInsn, VerifyError* pFailure);
1105 const DecodedInstruction* pDecInsn, UninitInstanceMap* uninitMap, in verifyInvocationArgs() argument
1119 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB); in verifyInvocationArgs()
1121 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType, in verifyInvocationArgs()
1128 const DexMethodId* pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); in verifyInvocationArgs()
1145 dvmMethodTypeStr(methodType), pDecInsn->vB, in verifyInvocationArgs()
1203 expectedArgs = pDecInsn->vA; in verifyInvocationArgs()
1228 actualArgType = getInvocationThis(registerLine, pDecInsn, pFailure); in verifyInvocationArgs()
1262 getReg = pDecInsn->vC + actualArgs; in verifyInvocationArgs()
1264 getReg = pDecInsn->arg[actualArgs]; in verifyInvocationArgs()
[all …]