 Chromium Code Reviews
 Chromium Code Reviews Issue 2366283003:
  Remove runtime zone.  (Closed)
    
  
    Issue 2366283003:
  Remove runtime zone.  (Closed) 
  | Index: src/isolate.h | 
| diff --git a/src/isolate.h b/src/isolate.h | 
| index 61a064118099c85f2cf1f01113b9891aa51405de..13e7c25abe131b03b6768249b08fb912efcd4307 100644 | 
| --- a/src/isolate.h | 
| +++ b/src/isolate.h | 
| @@ -885,7 +885,6 @@ class Isolate { | 
| DCHECK(handle_scope_implementer_); | 
| return handle_scope_implementer_; | 
| } | 
| - Zone* runtime_zone() { return runtime_zone_; } | 
| UnicodeCache* unicode_cache() { | 
| return unicode_cache_; | 
| @@ -926,6 +925,8 @@ class Isolate { | 
| RegExpStack* regexp_stack() { return regexp_stack_; } | 
| + List<int>* regex_indices() { return ®ex_indices_; } | 
| 
jgruber
2016/10/04 11:23:31
Nit: This could be const. And please rename to reg
 | 
| + | 
| unibrow::Mapping<unibrow::Ecma262Canonicalize>* | 
| interp_canonicalize_mapping() { | 
| return ®exp_macro_assembler_canonicalize_; | 
| @@ -1325,7 +1326,6 @@ class Isolate { | 
| HandleScopeImplementer* handle_scope_implementer_; | 
| UnicodeCache* unicode_cache_; | 
| AccountingAllocator* allocator_; | 
| - Zone* runtime_zone_; | 
| InnerPointerToCodeCache* inner_pointer_to_code_cache_; | 
| GlobalHandles* global_handles_; | 
| EternalHandles* eternal_handles_; | 
| @@ -1338,6 +1338,7 @@ class Isolate { | 
| unibrow::Mapping<unibrow::Ecma262Canonicalize> | 
| regexp_macro_assembler_canonicalize_; | 
| RegExpStack* regexp_stack_; | 
| + List<int> regex_indices_; | 
| 
jgruber
2016/10/04 11:23:31
Please rename to regexp_indices_
 | 
| DateCache* date_cache_; | 
| CallInterfaceDescriptorData* call_descriptor_data_; | 
| base::RandomNumberGenerator* random_number_generator_; |