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

Unified Diff: src/code-stubs.h

Issue 2116523002: [ic] [stubs] Add missing GetExtraICState method to CompareICStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [ic] [stubs] Add missing GetExtraICState method to CompareICStub. Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 19c40f4e8bd8412533144557f1e3480b0e37273f..1e2e85425228ab05c59364f15c66fa23f922cb66 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1972,6 +1972,10 @@ class CompareICStub : public PlatformCodeStub {
minor_key_ = extra_ic_state;
}
+ ExtraICState GetExtraICState() const final {
+ return static_cast<ExtraICState>(minor_key_);
+ }
+
void set_known_map(Handle<Map> map) { known_map_ = map; }
InlineCacheState GetICState() const;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698