Home | History | Annotate | Download | only in out

Lines Matching defs:curMethod

109  * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
118 if (pc + myoff < curMethod->insns || \
119 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
122 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
124 myoff, (int) (pc - curMethod->insns), \
125 curMethod->clazz->descriptor, curMethod->name, desc); \
148 if (curMethod != NULL) \
150 self->threadId, (int)(pc - curMethod->insns), debugStrBuf); \
246 ( (_idx) < curMethod->registersSize ? \
249 ( (_idx) < curMethod->registersSize ? \
256 ( (_idx) < curMethod->registersSize-1 ? \
259 ( (_idx) < curMethod->registersSize-1 ? \
262 ( (_idx) < curMethod->registersSize ? \
265 ( (_idx) < curMethod->registersSize ? \
268 ( (_idx) < curMethod->registersSize-1 ? \
271 ( (_idx) < curMethod->registersSize-1 ? \
447 #define curMethod
1070 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1115 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1160 sfield = dvmResolveStaticField(curMethod->clazz, ref); \
1184 curMethod->clazz, ref); \
1364 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
1465 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1558 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1574 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
1583 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
1642 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod,
1677 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
1704 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
1806 if (ref >= curMethod->clazz->super->vtableCount) {
1811 assert(ref < curMethod->clazz->super->vtableCount);
1823 methodToCall = curMethod->clazz->super->vtable[ref];
1862 retval.j, curMethod->clazz->descriptor, curMethod->name,
1863 curMethod->shorty);
1864 //DUMP_REGS(curMethod, fp);
1872 TRACE_METHOD_EXIT(self, curMethod);
1890 curMethod = SAVEAREA_FROM_FP(fp)->method;
1891 //methodClass = curMethod->clazz;
1892 methodClassDex = curMethod->clazz->pDvmDex;
1894 ILOGD("> (return to %s.%s %s)", curMethod->clazz->descriptor,
1895 curMethod->name, curMethod->shorty);
1905 // invokeInstr, (int) (pc - curMethod->insns));
1945 exception->clazz->descriptor, curMethod->name,
1946 dvmLineNumFromPC(curMethod, pc - curMethod->insns));
1965 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
1967 dvmDbgPostException(fp, pc - curMethod->insns, catchFrame,
1987 catchRelPc = dvmFindCatchBlock(self, pc - curMethod->insns,
2018 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
2019 dvmLineNumFromPC(curMethod, pc - curMethod->insns));
2030 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
2031 dvmLineNumFromPC(curMethod, pc - curMethod->insns),
2042 curMethod = SAVEAREA_FROM_FP(fp)->method;
2043 //methodClass = curMethod->clazz;
2044 methodClassDex = curMethod->clazz->pDvmDex;
2045 pc = curMethod->insns + catchRelPc;
2046 ILOGV("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
2047 curMethod->name, curMethod->shorty);
2048 DUMP_REGS(curMethod, fp, false); // show all regs
2108 assert(vsrc1 <= curMethod->outsSize);
2116 assert(count <= curMethod->outsSize);
2218 curMethod = methodToCall;
2219 methodClassDex = curMethod->clazz->pDvmDex;
2228 ILOGD("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
2229 curMethod->name, curMethod->shorty);
2230 DUMP_REGS(curMethod, fp, true); // show input args
2247 dvmGetThisPtr(curMethod, fp), DBG_METHOD_ENTRY);
2274 dvmGetThisPtr(curMethod, fp), DBG_METHOD_EXIT);
2298 curMethod->clazz->descriptor, curMethod->name,
2299 curMethod->shorty);
2308 // invokeInstr, (int) (pc - curMethod->insns));
2322 #undef curMethod