| Index: src/isolate.h
|
| ===================================================================
|
| --- src/isolate.h (revision 14041)
|
| +++ src/isolate.h (working copy)
|
| @@ -891,6 +891,10 @@
|
| }
|
| Zone* runtime_zone() { return &runtime_zone_; }
|
|
|
| +#ifdef ENABLE_GDB_JIT_INTERFACE
|
| + Zone* gdbjit_zone() { return &gdbjit_zone_; }
|
| +#endif
|
| +
|
| UnicodeCache* unicode_cache() {
|
| return unicode_cache_;
|
| }
|
| @@ -1261,6 +1265,9 @@
|
| HandleScopeImplementer* handle_scope_implementer_;
|
| UnicodeCache* unicode_cache_;
|
| Zone runtime_zone_;
|
| +#ifdef ENABLE_GDB_JIT_INTERFACE
|
| + Zone gdbjit_zone_;
|
| +#endif
|
| PreallocatedStorage in_use_list_;
|
| PreallocatedStorage free_list_;
|
| bool preallocated_storage_preallocated_;
|
|
|