Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(977)

Unified Diff: runtime/vm/thread.h

Issue 2226893002: Optimize AOT's switchable calls for the monomorphic case. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/thread.h
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h
index d9bef66114b9618bb5e43e9ce27b7eb45b1bcb60..2cb76a6a579a082ed65578b06c3aa19bc28bc75c 100644
--- a/runtime/vm/thread.h
+++ b/runtime/vm/thread.h
@@ -87,6 +87,8 @@ class Zone;
StubCode::InvokeDartCode_entry()->code(), NULL) \
V(RawCode*, call_to_runtime_stub_, \
StubCode::CallToRuntime_entry()->code(), NULL) \
+ V(RawCode*, monomorphic_miss_stub_, \
+ StubCode::MonomorphicMiss_entry()->code(), NULL) \
#endif
@@ -105,8 +107,8 @@ class Zone;
StubCode::UpdateStoreBuffer_entry()->EntryPoint(), 0) \
V(uword, call_to_runtime_entry_point_, \
StubCode::CallToRuntime_entry()->EntryPoint(), 0) \
- V(uword, megamorphic_lookup_entry_point_, \
- StubCode::MegamorphicLookup_entry()->EntryPoint(), 0) \
+ V(uword, megamorphic_lookup_checked_entry_, \
+ StubCode::MegamorphicLookup_entry()->CheckedEntryPoint(), 0) \
#endif

Powered by Google App Engine
This is Rietveld 408576698