Index: src/isolate.cc |
=================================================================== |
--- src/isolate.cc (revision 9328) |
+++ src/isolate.cc (working copy) |
@@ -1403,7 +1403,7 @@ |
in_use_list_(0), |
free_list_(0), |
preallocated_storage_preallocated_(false), |
- pc_to_code_cache_(NULL), |
+ inner_pointer_to_code_cache_(NULL), |
write_input_buffer_(NULL), |
global_handles_(NULL), |
context_switcher_(NULL), |
@@ -1576,8 +1576,8 @@ |
compilation_cache_ = NULL; |
delete bootstrapper_; |
bootstrapper_ = NULL; |
- delete pc_to_code_cache_; |
- pc_to_code_cache_ = NULL; |
+ delete inner_pointer_to_code_cache_; |
+ inner_pointer_to_code_cache_ = NULL; |
delete write_input_buffer_; |
write_input_buffer_ = NULL; |
@@ -1701,7 +1701,7 @@ |
context_slot_cache_ = new ContextSlotCache(); |
descriptor_lookup_cache_ = new DescriptorLookupCache(); |
unicode_cache_ = new UnicodeCache(); |
- pc_to_code_cache_ = new PcToCodeCache(this); |
+ inner_pointer_to_code_cache_ = new InnerPointerToCodeCache(this); |
write_input_buffer_ = new StringInputBuffer(); |
global_handles_ = new GlobalHandles(this); |
bootstrapper_ = new Bootstrapper(); |