Searched defs:codeAddress (Results 1 - 6 of 6) sorted by relevance

/dalvik/vm/interp/
H A DJit.h145 void* codeAddress; /* Code address of native translation */ member in struct:JitEntry
H A DJit.cpp482 if (gDvmJit.pJitEntryTable[i].codeAddress ==
641 * Initialize codeAddress and allocate the slot. Must
646 /* for simulator mode, we need to initialized codeAddress to null */
647 gDvmJit.pJitEntryTable[idx].codeAddress = NULL;
1036 intptr_t codeAddress = local
1037 (intptr_t)gDvmJit.pJitEntryTable[idx].codeAddress;
1041 return hideTranslation || !codeAddress ? NULL :
1042 (void *)(codeAddress + offset);
1053 intptr_t codeAddress = local
1054 (intptr_t)gDvmJit.pJitEntryTable[idx].codeAddress;
[all...]
/dalvik/vm/compiler/
H A DCompiler.h84 void *codeAddress; member in struct:JitTranslationInfo
/dalvik/vm/compiler/codegen/x86/
H A DCodegenInterface.cpp191 void dvmJitInstallClassObjectPointers(CompilationUnit *cUnit, char *codeAddress) argument
207 if (entry->dPC == 0 || entry->codeAddress == 0)
599 gDvmJit.pJitEntryTable[i].codeAddress) {
600 dvmJitUnchain(gDvmJit.pJitEntryTable[i].codeAddress);
1082 info->codeAddress = NULL;
1452 info->codeAddress = (char*)cUnit->baseAddr;// + cUnit->headerSize;
1533 work->result.codeAddress = NULL;
/dalvik/vm/compiler/codegen/arm/
H A DAssemble.cpp1192 * Translation layout in the code cache. Note that the codeAddress pointer
1193 * in JitTable will point directly to the code body (field codeAddress). The
1194 * chain cell offset codeAddress - 2, and the address of the trace profile
1195 * counter is at codeAddress - 6.
1246 return (char*)p->codeAddress -
1254 if (entry->dPC == 0 || entry->codeAddress == 0 ||
1255 entry->codeAddress == dvmCompilerGetInterpretTemplate())
1266 if (entry->dPC == 0 || entry->codeAddress == 0 ||
1267 entry->codeAddress == dvmCompilerGetInterpretTemplate())
1496 info->codeAddress
2267 dvmJitInstallClassObjectPointers(CompilationUnit *cUnit, char *codeAddress) argument
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DAssemble.cpp578 * Translation layout in the code cache. Note that the codeAddress pointer
579 * in JitTable will point directly to the code body (field codeAddress). The
580 * chain cell offset codeAddress - 4, and the address of the trace profile
581 * counter is at codeAddress - 8.
632 return (char*)p->codeAddress -
639 if (entry->dPC == 0 || entry->codeAddress == 0 ||
640 entry->codeAddress == dvmCompilerGetInterpretTemplate())
651 if (entry->dPC == 0 || entry->codeAddress == 0 ||
652 entry->codeAddress == dvmCompilerGetInterpretTemplate())
874 info->codeAddress
1639 dvmJitInstallClassObjectPointers(CompilationUnit *cUnit, char *codeAddress) argument
[all...]

Completed in 340 milliseconds