Searched refs:curMethod (Results 1 - 25 of 32) 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);
143 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
236 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
252 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
261 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
320 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod,
355 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
382 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
484 if (ref >= curMethod->clazz->super->vtableCount) {
489 assert(ref < curMethod
[all...]
H A Dheader.c102 * Assumes the existence of "const u2* pc" and "const u2* curMethod->insns".
111 if (pc + myoff < curMethod->insns || \
112 pc + myoff >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) \
115 desc = dexProtoCopyMethodDescriptor(&curMethod->prototype); \
117 myoff, (int) (pc - curMethod->insns), \
118 curMethod->clazz->descriptor, curMethod->name, desc); \
141 if (curMethod != NULL) \
143 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
29 interpState->method = curMethod;
37 curMethod->clazz->descriptor, curMethod->name,
38 pc - curMethod->insns, fp);
H A Dentry.c18 DvmDex* methodClassDex; // curMethod->clazz->pDvmDex
22 const Method* curMethod; // method we're interpreting local
76 curMethod = interpState->method;
81 methodClassDex = curMethod->clazz->pDvmDex;
85 curMethod->clazz->descriptor, curMethod->name, pc - curMethod->insns,
95 ILOGD("|-- Now interpreting %s.%s", curMethod->clazz->descriptor,
96 curMethod->name);
97 DUMP_REGS(curMethod, interpStat
[all...]
H A Dportdbg.c5 checkDebugAndProf(pc, fp, self, curMethod, &debugIsMethodEntry)
/dalvik/vm/mterp/out/
H A DInterpC-x86-atom.c109 * 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
447 #define curMethod macro
2322 #undef curMethod macro
[all...]
H A DInterpC-x86.c109 * 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
447 #define curMethod macro
2259 #undef curMethod macro
[all...]
H A DInterpC-portdbg.c109 * 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
1452 const Method* curMethod; // method we're interpreting local
[all...]
H A DInterpC-portstd.c109 * 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
1202 const Method* curMethod; // method we're interpreting local
[all...]
H A DInterpC-allstubs.c109 * 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
447 #define curMethod macro
4128 #undef curMethod macro
[all...]
H A DInterpC-armv4t.c109 * 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
447 #define curMethod macro
1204 #undef curMethod macro
[all...]
H A DInterpC-armv5te-vfp.c109 * 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
447 #define curMethod macro
1204 #undef curMethod macro
[all...]
H A DInterpC-armv5te.c109 * 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
447 #define curMethod macro
1204 #undef curMethod macro
[all...]

Completed in 66 milliseconds

12