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

Unified Diff: src/isolate.h

Issue 2123983004: [ic] Split megamorphic stub cache in two caches (for loads and for stores). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@flags-fix
Patch Set: Rebasing Created 4 years, 5 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: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 74ec944c194da43429a9e7d7df30b0a98ee8bf29..0b80c7485c5270de31c069d5d103dc2b0550700a 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -838,7 +838,8 @@ class Isolate {
StackGuard* stack_guard() { return &stack_guard_; }
Heap* heap() { return &heap_; }
StatsTable* stats_table();
- StubCache* stub_cache() { return stub_cache_; }
+ StubCache* load_stub_cache() { return load_stub_cache_; }
+ StubCache* store_stub_cache() { return store_stub_cache_; }
CodeAgingHelper* code_aging_helper() { return code_aging_helper_; }
DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
bool deoptimizer_lazy_throw() const { return deoptimizer_lazy_throw_; }
@@ -1280,7 +1281,8 @@ class Isolate {
Logger* logger_;
StackGuard stack_guard_;
StatsTable* stats_table_;
- StubCache* stub_cache_;
+ StubCache* load_stub_cache_;
+ StubCache* store_stub_cache_;
CodeAgingHelper* code_aging_helper_;
DeoptimizerData* deoptimizer_data_;
bool deoptimizer_lazy_throw_;
« src/ic/x64/stub-cache-x64.cc ('K') | « src/ic/x87/stub-cache-x87.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698