HomeSort by relevance Sort by last modified time
    Searched defs:curMethod (Results 1 - 13 of 13) sorted by null

  /dalvik/vm/mterp/cstubs/
enddefs.cpp 6 #undef curMethod
stubdefs.cpp 28 #define curMethod self->interpSave.method
  /dalvik/vm/mterp/portable/
entry.cpp 11 DvmDex* methodClassDex; // curMethod->clazz->pDvmDex
15 const Method* curMethod; // method we're interpreting
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->name)
    [all...]
  /dalvik/vm/interp/
Jit.cpp 782 const Method* curMethod = self->methodToCall;
    [all...]
Interp.cpp 620 const Method* curMethod = self->interpSave.method;
632 int offset = self->interpSave.pc - curMethod->insns;
    [all...]
  /dalvik/vm/mterp/out/
InterpC-armv5te-vfp.cpp 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);
    [all...]
InterpC-armv5te.cpp 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);
    [all...]
InterpC-armv7-a-neon.cpp 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);
    [all...]
InterpC-armv7-a.cpp 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);
    [all...]
InterpC-allstubs.cpp 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);
    [all...]
InterpC-mips.cpp 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);
    [all...]
InterpC-portable.cpp 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);
    [all...]
InterpC-x86.cpp 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);
    [all...]

Completed in 554 milliseconds