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