Searched defs:curMethod (Results 1 - 13 of 13) sorted by relevance

/dalvik/vm/mterp/cstubs/
H A Denddefs.cpp6 #undef curMethod macro
H A Dstubdefs.cpp28 #define curMethod self->interpSave.method macro
/dalvik/vm/mterp/portable/
H A Dentry.cpp11 DvmDex* methodClassDex; // curMethod->clazz->pDvmDex
15 const Method* curMethod; // method we're interpreting local
30 curMethod = self->interpSave.method;
35 methodClassDex = curMethod->clazz->pDvmDex;
38 self->threadId, curMethod->clazz->descriptor, curMethod->name,
39 pc - curMethod->insns, fp);
45 TRACE_METHOD_ENTER(self, curMethod);
55 ILOGD("|-- Now interpreting %s.%s", curMethod->clazz->descriptor,
56 curMethod
[all...]
/dalvik/vm/mterp/out/
H A DInterpC-armv5te-vfp.cpp99 * 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
406 #define curMethod macro
1171 #undef curMethod macro
[all...]
H A DInterpC-armv5te.cpp99 * 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
406 #define curMethod macro
1171 #undef curMethod macro
[all...]
H A DInterpC-armv7-a-neon.cpp99 * 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
406 #define curMethod macro
1171 #undef curMethod macro
[all...]
H A DInterpC-armv7-a.cpp99 * 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
406 #define curMethod macro
1171 #undef curMethod macro
[all...]
H A DInterpC-allstubs.cpp99 * 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
406 #define curMethod macro
4065 #undef curMethod macro
[all...]
H A DInterpC-mips.cpp99 * 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
406 #define curMethod macro
2170 #undef curMethod macro
[all...]
H A DInterpC-portable.cpp99 * 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
1126 const Method* curMethod; // method we're interpreting local
[all...]
H A DInterpC-x86.cpp99 * 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
406 #define curMethod macro
2246 #undef curMethod macro
[all...]
/dalvik/vm/interp/
H A DInterp.cpp620 const Method* curMethod = self->interpSave.method; local
632 int offset = self->interpSave.pc - curMethod->insns;
H A DJit.cpp782 const Method* curMethod = self->methodToCall; local
879 insertClassMethodInfo(self, thisClass, curMethod,

Completed in 599 milliseconds