Home
last modified time | relevance | path

Searched refs:new_code (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dinstrumentation.cc1057 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()
Dart_method-inl.h416 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()
Dinstrumentation.h302 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/
Dimage_space.cc1317 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()