Home
last modified time | relevance | path

Searched refs:curMethod (Results 1 – 25 of 32) sorted by relevance

12

/dalvik/vm/mterp/portable/
Dentry.c22 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, interpState->fp, false);
Denddefs.c29 interpState->method = curMethod;
37 curMethod->clazz->descriptor, curMethod->name,
38 pc - curMethod->insns, fp);
Dportdbg.c5 checkDebugAndProf(pc, fp, self, curMethod, &debugIsMethodEntry)
/dalvik/vm/mterp/c/
DgotoTargets.c42 arrayClass = dvmResolveClass(curMethod->clazz, ref, false); in GOTO_TARGET()
143 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
236 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
252 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) { in GOTO_TARGET()
261 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
320 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod, in GOTO_TARGET()
355 methodToCall = dvmResolveMethod(curMethod->clazz, ref, in GOTO_TARGET()
382 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
484 if (ref >= curMethod->clazz->super->vtableCount) { in GOTO_TARGET()
489 assert(ref < curMethod->clazz->super->vtableCount); in GOTO_TARGET()
[all …]
Dheader.c111 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->insns), debugStrBuf); \
239 ( (_idx) < curMethod->registersSize ? \
242 ( (_idx) < curMethod->registersSize ? \
249 ( (_idx) < curMethod->registersSize-1 ? \
[all …]
DOP_FILL_ARRAY_DATA.c13 if (arrayData < curMethod->insns || in HANDLE_OPCODE()
14 arrayData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
DOP_SPARSE_SWITCH.c12 if (switchData < curMethod->insns || in HANDLE_OPCODE()
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
DOP_PACKED_SWITCH.c12 if (switchData < curMethod->insns || in HANDLE_OPCODE()
13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
DOP_THROW_VERIFICATION_ERROR.c5 dvmThrowVerificationError(curMethod, vsrc1, ref);
DOP_CONST_STRING.c11 strObj = dvmResolveString(curMethod->clazz, ref); in HANDLE_OPCODE()
DOP_CONST_CLASS.c11 clazz = dvmResolveClass(curMethod->clazz, ref, true); in HANDLE_OPCODE()
DOP_CONST_STRING_JUMBO.c13 strObj = dvmResolveString(curMethod->clazz, tmp); in HANDLE_OPCODE()
DOP_NEW_INSTANCE.c13 clazz = dvmResolveClass(curMethod->clazz, ref, false); in HANDLE_OPCODE()
DOP_CHECK_CAST.c20 clazz = dvmResolveClass(curMethod->clazz, ref, false); in HANDLE_OPCODE()
/dalvik/vm/mterp/out/
DInterpC-x86-atom.c118 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 ? \
[all …]
DInterpC-x86.c118 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 ? \
[all …]
DInterpC-portstd.c118 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 ? \
[all …]
DInterpC-portdbg.c118 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 ? \
[all …]
DInterpC-allstubs.c118 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 ? \
[all …]
DInterpC-armv7-a-neon.c118 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 ? \
[all …]
DInterpC-armv5te-vfp.c118 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 ? \
[all …]
DInterpC-armv7-a.c118 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 ? \
[all …]
DInterpC-armv4t.c118 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 ? \
[all …]
DInterpC-armv5te.c118 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 ? \
[all …]
/dalvik/vm/mterp/cstubs/
Denddefs.c6 #undef curMethod

12