/dalvik/vm/mterp/portable/ |
D | entry.c | 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, interpState->fp, false);
|
D | enddefs.c | 29 interpState->method = curMethod; 37 curMethod->clazz->descriptor, curMethod->name, 38 pc - curMethod->insns, fp);
|
D | portdbg.c | 5 checkDebugAndProf(pc, fp, self, curMethod, &debugIsMethodEntry)
|
/dalvik/vm/mterp/c/ |
D | gotoTargets.c | 42 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 …]
|
D | header.c | 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->insns), debugStrBuf); \ 239 ( (_idx) < curMethod->registersSize ? \ 242 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | OP_FILL_ARRAY_DATA.c | 13 if (arrayData < curMethod->insns || in HANDLE_OPCODE() 14 arrayData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
|
D | OP_SPARSE_SWITCH.c | 12 if (switchData < curMethod->insns || in HANDLE_OPCODE() 13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
|
D | OP_PACKED_SWITCH.c | 12 if (switchData < curMethod->insns || in HANDLE_OPCODE() 13 switchData >= curMethod->insns + dvmGetMethodInsnsSize(curMethod)) in HANDLE_OPCODE()
|
D | OP_THROW_VERIFICATION_ERROR.c | 5 dvmThrowVerificationError(curMethod, vsrc1, ref);
|
D | OP_CONST_STRING.c | 11 strObj = dvmResolveString(curMethod->clazz, ref); in HANDLE_OPCODE()
|
D | OP_CONST_CLASS.c | 11 clazz = dvmResolveClass(curMethod->clazz, ref, true); in HANDLE_OPCODE()
|
D | OP_CONST_STRING_JUMBO.c | 13 strObj = dvmResolveString(curMethod->clazz, tmp); in HANDLE_OPCODE()
|
D | OP_NEW_INSTANCE.c | 13 clazz = dvmResolveClass(curMethod->clazz, ref, false); in HANDLE_OPCODE()
|
D | OP_CHECK_CAST.c | 20 clazz = dvmResolveClass(curMethod->clazz, ref, false); in HANDLE_OPCODE()
|
/dalvik/vm/mterp/out/ |
D | InterpC-x86-atom.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-x86.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-portstd.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-portdbg.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-allstubs.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-armv7-a-neon.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-armv5te-vfp.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-armv7-a.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-armv4t.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
D | InterpC-armv5te.c | 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->insns), debugStrBuf); \ 246 ( (_idx) < curMethod->registersSize ? \ 249 ( (_idx) < curMethod->registersSize ? \ 256 ( (_idx) < curMethod->registersSize-1 ? \ [all …]
|
/dalvik/vm/mterp/cstubs/ |
D | enddefs.c | 6 #undef curMethod
|