Searched refs:curMethod (Results 1 - 25 of 30) sorted by relevance

12

/dalvik/vm/mterp/c/
H A DOP_THROW_VERIFICATION_ERROR.c5 dvmThrowVerificationError(curMethod, vsrc1, ref);
H A DOP_FILL_ARRAY_DATA.c13 if (arrayData < curMethod->insns ||
14 arrayData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
H A DOP_PACKED_SWITCH.c12 if (switchData < curMethod->insns ||
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
H A DOP_SPARSE_SWITCH.c12 if (switchData < curMethod->insns ||
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod))
H A DgotoTargets.c42 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
140 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
229 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
245 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
254 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
309 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod,
344 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
371 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
459 if (ref >= curMethod->clazz->super->vtableCount) {
464 assert(ref < curMethod
[all...]
H A Dheader.c104 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
113 if (pc + myoff < curMethod->insns || \
114 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
117 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
119 myoff, (int) (pc - curMethod->insns), \
120 curMethod->clazz->descriptor, curMethod->name, desc); \
143 if (curMethod != NULL) \
145 self->threadId, (int)(pc - curMethod
[all...]
H A DOP_CONST_CLASS.c11 clazz = dvmResolveClass(curMethod->clazz, ref, true);
H A DOP_CONST_STRING.c11 strObj = dvmResolveString(curMethod->clazz, ref);
H A DOP_CONST_STRING_JUMBO.c13 strObj = dvmResolveString(curMethod->clazz, tmp);
H A DOP_CHECK_CAST.c20 clazz = dvmResolveClass(curMethod->clazz, ref, false);
H A DOP_INSTANCE_OF.c22 clazz = dvmResolveClass(curMethod->clazz, ref, true);
H A DOP_NEW_INSTANCE.c13 clazz = dvmResolveClass(curMethod->clazz, ref, false);
H A DOP_NEW_ARRAY.c21 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
/dalvik/vm/mterp/cstubs/
H A Denddefs.c6 #undef curMethod macro
/dalvik/vm/mterp/portable/
H A Denddefs.c9 ILOGD("|-- Leaving interpreter loop"); // note "curMethod" may be NULL
31 interpState->method = curMethod;
39 curMethod->clazz->descriptor, curMethod->name,
40 pc - curMethod->insns, fp);
H A Dentry.c17 DvmDex* methodClassDex; // curMethod->clazz->pDvmDex
21 const Method* curMethod; // method we're interpreting local
67 curMethod = interpState->method;
72 methodClassDex = curMethod->clazz->pDvmDex;
76 curMethod->clazz->descriptor, curMethod->name, pc - curMethod->insns,
86 ILOGD("|-- Now interpreting %s.%s", curMethod->clazz->descriptor,
87 curMethod->name);
88 DUMP_REGS(curMethod, interpStat
[all...]
H A Dportdbg.c5 checkDebugAndProf(pc, fp, self, curMethod, &debugIsMethodEntry)
/dalvik/vm/mterp/out/
H A DInterpC-x86-atom.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
2244 #undef curMethod macro
[all...]
H A DInterpC-x86.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
2213 #undef curMethod macro
[all...]
H A DInterpC-portdbg.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
1457 const Method* curMethod; // method we're interpreting local
[all...]
H A DInterpC-portstd.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
1196 const Method* curMethod; // method we're interpreting local
[all...]
H A DInterpC-allstubs.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
4082 #undef curMethod macro
[all...]
H A DInterpC-armv4t.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
1201 #undef curMethod macro
[all...]
H A DInterpC-armv5te-vfp.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
1201 #undef curMethod macro
[all...]
H A DInterpC-armv5te.c111 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
120 if (pc + myoff < curMethod->insns || \
121 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
124 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
126 myoff, (int) (pc - curMethod->insns), \
127 curMethod->clazz->descriptor, curMethod->name, desc); \
150 if (curMethod != NULL) \
152 self->threadId, (int)(pc - curMethod
454 #define curMethod macro
1201 #undef curMethod macro
[all...]

Completed in 1183 milliseconds

12