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

Unified Diff: runtime/vm/stub_code.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: sync 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
« no previous file with comments | « runtime/vm/stack_frame.cc ('k') | runtime/vm/stub_code.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code.h
diff --git a/runtime/vm/stub_code.h b/runtime/vm/stub_code.h
index d5103e61d639616091e4dcbb17b48db803687908..bb971e284a16cbdbff1c86b0e8afd7d70db0877b 100644
--- a/runtime/vm/stub_code.h
+++ b/runtime/vm/stub_code.h
@@ -40,6 +40,7 @@ class Deserializer;
V(ICLookupThroughFunction) \
V(ICLookupThroughCode) \
V(MegamorphicLookup) \
+ V(MonomorphicMiss) \
V(FixAllocationStubTarget) \
V(Deoptimize) \
V(DeoptimizeLazy) \
@@ -90,6 +91,7 @@ class StubEntry {
const ExternalLabel& label() const { return label_; }
uword EntryPoint() const { return entry_point_; }
+ uword CheckedEntryPoint() const { return checked_entry_point_; }
RawCode* code() const { return code_; }
intptr_t Size() const { return size_; }
@@ -99,6 +101,7 @@ class StubEntry {
private:
RawCode* code_;
uword entry_point_;
+ uword checked_entry_point_;
intptr_t size_;
ExternalLabel label_;
« no previous file with comments | « runtime/vm/stack_frame.cc ('k') | runtime/vm/stub_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698