| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index db70f1a034b35b9c4abd05c35a0cd41cfdd702a7..e18ee4ba95361058b625ad51e346ea8eff8df688 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -37,6 +37,7 @@ namespace v8 {
|
| namespace internal {
|
|
|
| class Bootstrapper;
|
| +class ContextSlotCache;
|
| class Deserializer;
|
| class HandleScopeImplementer;
|
| class SaveContext;
|
| @@ -164,10 +165,22 @@ class Isolate {
|
| StubCache* stub_cache() { return stub_cache_; }
|
| ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
|
|
|
| - TranscendentalCache* transcendental_cache() const {
|
| + TranscendentalCache* transcendental_cache() {
|
| return transcendental_cache_;
|
| }
|
|
|
| + KeyedLookupCache* keyed_lookup_cache() {
|
| + return keyed_lookup_cache_;
|
| + }
|
| +
|
| + ContextSlotCache* context_slot_cache() {
|
| + return context_slot_cache_;
|
| + }
|
| +
|
| + DescriptorLookupCache* descriptor_lookup_cache() {
|
| + return descriptor_lookup_cache_;
|
| + }
|
| +
|
| v8::ImplementationUtilities::HandleScopeData* handle_scope_data() {
|
| return &handle_scope_data_;
|
| }
|
| @@ -211,6 +224,9 @@ class Isolate {
|
| StubCache* stub_cache_;
|
| ThreadLocalTop thread_local_top_;
|
| TranscendentalCache* transcendental_cache_;
|
| + KeyedLookupCache* keyed_lookup_cache_;
|
| + ContextSlotCache* context_slot_cache_;
|
| + DescriptorLookupCache* descriptor_lookup_cache_;
|
| v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
|
| HandleScopeImplementer* handle_scope_implementer_;
|
| Zone zone_;
|
|
|