Searched refs:new_code (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | instrumentation.cc | 1057 void Instrumentation::UpdateMethodsCodeImpl(ArtMethod* method, const void* new_code) { in UpdateMethodsCodeImpl() argument 1061 UpdateEntryPoints(method, new_code); in UpdateMethodsCodeImpl() 1066 if (class_linker->IsQuickToInterpreterBridge(new_code)) { in UpdateMethodsCodeImpl() 1068 UpdateEntryPoints(method, new_code); in UpdateMethodsCodeImpl() 1079 if (EntryExitStubsInstalled() && CodeNeedsEntryExitStub(new_code, method)) { in UpdateMethodsCodeImpl() 1089 UpdateEntryPoints(method, new_code); in UpdateMethodsCodeImpl() 1092 void Instrumentation::UpdateNativeMethodsCodeToJitCode(ArtMethod* method, const void* new_code) { in UpdateNativeMethodsCodeToJitCode() argument 1100 UpdateEntryPoints(method, new_code); in UpdateNativeMethodsCodeToJitCode() 1103 void Instrumentation::UpdateMethodsCode(ArtMethod* method, const void* new_code) { in UpdateMethodsCode() argument 1105 UpdateMethodsCodeImpl(method, new_code); in UpdateMethodsCode()
|
D | art_method-inl.h | 416 const void* new_code = visitor(old_code); in UpdateEntrypoints() local 417 if (old_code != new_code) { in UpdateEntrypoints() 418 SetEntryPointFromQuickCompiledCodePtrSize(new_code, pointer_size); in UpdateEntrypoints()
|
D | instrumentation.h | 302 void UpdateMethodsCode(ArtMethod* method, const void* new_code) 306 void UpdateNativeMethodsCodeToJitCode(ArtMethod* method, const void* new_code) 632 void UpdateMethodsCodeImpl(ArtMethod* method, const void* new_code)
|
/art/runtime/gc/space/ |
D | image_space.cc | 1317 const void* new_code = forward_code(old_code); in RelocateInPlace() local 1318 if (old_code != new_code) { in RelocateInPlace() 1319 method.SetEntryPointFromQuickCompiledCodePtrSize(new_code, kPointerSize); in RelocateInPlace()
|