Searched defs:pDecInsn (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/analysis/
H A DDexVerify.cpp550 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 DCodeVerify.cpp112 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 DDexDump.cpp712 const DecodedInstruction* pDecInsn, char* buf, size_t bufSize)
719 switch (dexGetFormatFromOpcode(pDecInsn->opcode)) {
728 index = pDecInsn->vB;
732 index = pDecInsn->vB;
737 index = pDecInsn->vC;
746 switch (pDecInsn->indexType) {
840 return indexString(pDexFile, pDecInsn, buf, outSize);
850 int insnWidth, const DecodedInstruction* pDecInsn)
872 if (pDecInsn->opcode == OP_NOP) {
887 printf("|%04x: %s", insnIdx, dexGetOpcodeName(pDecInsn
711 indexString(DexFile* pDexFile, const DecodedInstruction* pDecInsn, char* buf, size_t bufSize) argument
849 dumpInstruction(DexFile* pDexFile, const DexCode* pCode, int insnIdx, int insnWidth, const DecodedInstruction* pDecInsn) argument
[all...]

Completed in 872 milliseconds