Lines Matching refs:quick_code
252 static void UpdateEntryPoints(ArtMethod* method, const void* quick_code) in UpdateEntryPoints() argument
256 CHECK(CanHandleInitializationCheck(quick_code)); in UpdateEntryPoints()
259 if (jit != nullptr && jit->GetCodeCache()->ContainsPc(quick_code)) { in UpdateEntryPoints()
262 CHECK_EQ(reinterpret_cast<uintptr_t>(quick_code) & 1, 1u); in UpdateEntryPoints()
267 CHECK(CodeSupportsEntryExitHooks(quick_code, method)); in UpdateEntryPoints()
270 CHECK_EQ(quick_code, GetQuickToInterpreterBridge()); in UpdateEntryPoints()
275 if (method->GetEntryPointFromQuickCompiledCode() != quick_code) { in UpdateEntryPoints()
276 method->SetEntryPointFromQuickCompiledCode(quick_code); in UpdateEntryPoints()
291 static bool CanUseAotCode(const void* quick_code) in CanUseAotCode() argument
293 if (quick_code == nullptr) { in CanUseAotCode()
309 return runtime->GetHeap()->IsInBootImageOatFile(quick_code); in CanUseAotCode()