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_; |