Lines Matching defs:curMethod

99  * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
108 if (pc + myoff < curMethod->insns || \
109 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
112 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
114 myoff, (int) (pc - curMethod->insns), \
115 curMethod->clazz->descriptor, curMethod->name, desc); \
138 if (curMethod != NULL) \
140 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
228 ( (_idx) < curMethod->registersSize ? \
231 ( (_idx) < curMethod->registersSize ? \
238 ( (_idx) < curMethod->registersSize-1 ? \
241 ( (_idx) < curMethod->registersSize-1 ? \
244 ( (_idx) < curMethod->registersSize ? \
247 ( (_idx) < curMethod->registersSize ? \
250 ( (_idx) < curMethod->registersSize-1 ? \
253 ( (_idx) < curMethod->registersSize-1 ? \
406 #define curMethod self->interpSave.method
1038 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1082 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1129 sfield = dvmResolveStaticField(curMethod->clazz, ref); \
1152 sfield = dvmResolveStaticField(curMethod->clazz, ref); \
1309 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
1409 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1503 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1519 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
1527 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
1583 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod,
1623 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
1650 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
1755 if (ref >= curMethod->clazz->super->vtableCount) {
1760 assert(ref < (unsigned int) curMethod->clazz->super->vtableCount);
1772 methodToCall = curMethod->clazz->super->vtable[ref];
1809 retval.j, curMethod->clazz->descriptor, curMethod->name,
1810 curMethod->shorty);
1811 //DUMP_REGS(curMethod, fp);
1837 curMethod = SAVEAREA_FROM_FP(fp)->method;
1838 self->interpSave.method = curMethod;
1839 //methodClass = curMethod->clazz;
1840 methodClassDex = curMethod->clazz->pDvmDex;
1842 ILOGD("> (return to %s.%s %s)", curMethod->clazz->descriptor,
1843 curMethod->name, curMethod->shorty);
1853 // invokeInstr, (int) (pc - curMethod->insns));
1885 exception->clazz->descriptor, curMethod->name,
1886 dvmLineNumFromPC(curMethod, pc - curMethod->insns));
1922 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
1953 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
1954 dvmLineNumFromPC(curMethod, pc - curMethod->insns));
1965 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
1966 dvmLineNumFromPC(curMethod, pc - curMethod->insns),
1977 curMethod = SAVEAREA_FROM_FP(fp)->method;
1978 self->interpSave.method = curMethod;
1979 //methodClass = curMethod->clazz;
1980 methodClassDex = curMethod->clazz->pDvmDex;
1981 pc = curMethod->insns + catchRelPc;
1982 ILOGV("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
1983 curMethod->name, curMethod->shorty);
1984 DUMP_REGS(curMethod, fp, false); // show all regs
2044 assert(vsrc1 <= curMethod->outsSize);
2052 assert(count <= curMethod->outsSize);
2164 curMethod = methodToCall;
2165 self->interpSave.method = curMethod;
2166 methodClassDex = curMethod->clazz->pDvmDex;
2174 ILOGD("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
2175 curMethod->name, curMethod->shorty);
2176 DUMP_REGS(curMethod, fp, true); // show input args
2222 curMethod->clazz->descriptor, curMethod->name,
2223 curMethod->shorty);
2232 // invokeInstr, (int) (pc - curMethod->insns));
2246 #undef curMethod