Searched defs:pDecInsn (Results 1 - 3 of 3) sorted by relevance
/dalvik/vm/analysis/ |
H A D | DexVerify.cpp | 550 const DecodedInstruction* pDecInsn) 555 if (pDecInsn->vA > 5) { 557 pDecInsn->vA); 561 for (idx = 0; idx < pDecInsn->vA; idx++) { 562 if (pDecInsn->arg[idx] > registersSize) { 564 pDecInsn->arg[idx], registersSize); 579 const DecodedInstruction* pDecInsn) 587 if (pDecInsn->vA + pDecInsn->vC > registersSize) { 589 pDecInsn 549 checkVarargRegs(const Method* meth, const DecodedInstruction* pDecInsn) argument 578 checkVarargRangeRegs(const Method* meth, const DecodedInstruction* pDecInsn) argument [all...] |
H A D | CodeVerify.cpp | 112 const DecodedInstruction* pDecInsn, VerifyError* pFailure); 1105 const DecodedInstruction* pDecInsn, UninitInstanceMap* uninitMap, 1119 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB); 1121 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType, 1128 const DexMethodId* pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB); 1145 dvmMethodTypeStr(methodType), pDecInsn->vB, 1203 expectedArgs = pDecInsn->vA; 1228 actualArgType = getInvocationThis(registerLine, pDecInsn, pFailure); 1262 getReg = pDecInsn->vC + actualArgs; 1264 getReg = pDecInsn 1103 verifyInvocationArgs(const Method* meth, RegisterLine* registerLine, const int insnRegCount, const DecodedInstruction* pDecInsn, UninitInstanceMap* uninitMap, MethodType methodType, bool isRange, bool isSuper, VerifyError* pFailure) argument 1467 getInvocationThis(const RegisterLine* registerLine, const DecodedInstruction* pDecInsn, VerifyError* pFailure) argument 2108 checkLitop(RegisterLine* registerLine, DecodedInstruction* pDecInsn, RegType dstType, RegType srcType, bool checkBooleanOp, VerifyError* pFailure) argument 2130 checkBinop(RegisterLine* registerLine, DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1, RegType srcType2, bool checkBooleanOp, VerifyError* pFailure) argument 2148 checkBinop2addr(RegisterLine* registerLine, DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1, RegType srcType2, bool checkBooleanOp, VerifyError* pFailure) argument 3181 verifyFilledNewArrayRegs(const Method* meth, RegisterLine* registerLine, const DecodedInstruction* pDecInsn, ClassObject* resClass, bool isRange, VerifyError* pFailure) argument [all...] |
/dalvik/dexdump/ |
H A D | DexDump.cpp | 709 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) 716 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) { 725 index = pDecInsn->vB; 729 index = pDecInsn->vB; 734 index = pDecInsn->vC; 743 switch (pDecInsn->indexType) { 827 return indexString(pDexFile, pDecInsn, buf, outSize); 837 int insnWidth, const DecodedInstruction* pDecInsn) 859 if (pDecInsn->opcode == OP_NOP) { 874 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn 708 indexString(DexFile* pDexFile, const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) argument 836 dumpInstruction(DexFile* pDexFile, const DexCode* pCode, int insnIdx, int insnWidth, const DecodedInstruction* pDecInsn) argument [all...] |
Completed in 73 milliseconds