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

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: 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 54baa53b6c280f614e60a2937aa20d64567d0af3..4d97c5ad07f2903e3e0b14fc2dad1d6ee5daed2f 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_; }
@@ -1277,7 +1278,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_;
« no previous file with comments | « src/ic/x87/stub-cache-x87.cc ('k') | src/isolate.cc » ('j') | src/type-info.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698