Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: src/isolate.cc

Issue 21133006: introduce eternal handles (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added new space iterability Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1765 descriptor_lookup_cache_(NULL), 1765 descriptor_lookup_cache_(NULL),
1766 handle_scope_implementer_(NULL), 1766 handle_scope_implementer_(NULL),
1767 unicode_cache_(NULL), 1767 unicode_cache_(NULL),
1768 runtime_zone_(this), 1768 runtime_zone_(this),
1769 in_use_list_(0), 1769 in_use_list_(0),
1770 free_list_(0), 1770 free_list_(0),
1771 preallocated_storage_preallocated_(false), 1771 preallocated_storage_preallocated_(false),
1772 inner_pointer_to_code_cache_(NULL), 1772 inner_pointer_to_code_cache_(NULL),
1773 write_iterator_(NULL), 1773 write_iterator_(NULL),
1774 global_handles_(NULL), 1774 global_handles_(NULL),
1775 eternal_handles_(NULL),
1775 context_switcher_(NULL), 1776 context_switcher_(NULL),
1776 thread_manager_(NULL), 1777 thread_manager_(NULL),
1777 fp_stubs_generated_(false), 1778 fp_stubs_generated_(false),
1778 has_installed_extensions_(false), 1779 has_installed_extensions_(false),
1779 string_tracker_(NULL), 1780 string_tracker_(NULL),
1780 regexp_stack_(NULL), 1781 regexp_stack_(NULL),
1781 date_cache_(NULL), 1782 date_cache_(NULL),
1782 code_stub_interface_descriptors_(NULL), 1783 code_stub_interface_descriptors_(NULL),
1783 context_exit_happened_(false), 1784 context_exit_happened_(false),
1784 initialized_from_snapshot_(false), 1785 initialized_from_snapshot_(false),
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
2039 2040
2040 delete string_tracker_; 2041 delete string_tracker_;
2041 string_tracker_ = NULL; 2042 string_tracker_ = NULL;
2042 2043
2043 delete memory_allocator_; 2044 delete memory_allocator_;
2044 memory_allocator_ = NULL; 2045 memory_allocator_ = NULL;
2045 delete code_range_; 2046 delete code_range_;
2046 code_range_ = NULL; 2047 code_range_ = NULL;
2047 delete global_handles_; 2048 delete global_handles_;
2048 global_handles_ = NULL; 2049 global_handles_ = NULL;
2050 delete eternal_handles_;
2051 eternal_handles_ = NULL;
2049 2052
2050 delete string_stream_debug_object_cache_; 2053 delete string_stream_debug_object_cache_;
2051 string_stream_debug_object_cache_ = NULL; 2054 string_stream_debug_object_cache_ = NULL;
2052 2055
2053 delete external_reference_table_; 2056 delete external_reference_table_;
2054 external_reference_table_ = NULL; 2057 external_reference_table_ = NULL;
2055 2058
2056 delete callback_table_; 2059 delete callback_table_;
2057 callback_table_ = NULL; 2060 callback_table_ = NULL;
2058 2061
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2170 string_tracker_->isolate_ = this; 2173 string_tracker_->isolate_ = this;
2171 compilation_cache_ = new CompilationCache(this); 2174 compilation_cache_ = new CompilationCache(this);
2172 transcendental_cache_ = new TranscendentalCache(); 2175 transcendental_cache_ = new TranscendentalCache();
2173 keyed_lookup_cache_ = new KeyedLookupCache(); 2176 keyed_lookup_cache_ = new KeyedLookupCache();
2174 context_slot_cache_ = new ContextSlotCache(); 2177 context_slot_cache_ = new ContextSlotCache();
2175 descriptor_lookup_cache_ = new DescriptorLookupCache(); 2178 descriptor_lookup_cache_ = new DescriptorLookupCache();
2176 unicode_cache_ = new UnicodeCache(); 2179 unicode_cache_ = new UnicodeCache();
2177 inner_pointer_to_code_cache_ = new InnerPointerToCodeCache(this); 2180 inner_pointer_to_code_cache_ = new InnerPointerToCodeCache(this);
2178 write_iterator_ = new ConsStringIteratorOp(); 2181 write_iterator_ = new ConsStringIteratorOp();
2179 global_handles_ = new GlobalHandles(this); 2182 global_handles_ = new GlobalHandles(this);
2183 eternal_handles_ = new EternalHandles();
2180 bootstrapper_ = new Bootstrapper(this); 2184 bootstrapper_ = new Bootstrapper(this);
2181 handle_scope_implementer_ = new HandleScopeImplementer(this); 2185 handle_scope_implementer_ = new HandleScopeImplementer(this);
2182 stub_cache_ = new StubCache(this); 2186 stub_cache_ = new StubCache(this);
2183 regexp_stack_ = new RegExpStack(); 2187 regexp_stack_ = new RegExpStack();
2184 regexp_stack_->isolate_ = this; 2188 regexp_stack_->isolate_ = this;
2185 date_cache_ = new DateCache(); 2189 date_cache_ = new DateCache();
2186 code_stub_interface_descriptors_ = 2190 code_stub_interface_descriptors_ =
2187 new CodeStubInterfaceDescriptor[CodeStub::NUMBER_OF_IDS]; 2191 new CodeStubInterfaceDescriptor[CodeStub::NUMBER_OF_IDS];
2188 cpu_profiler_ = new CpuProfiler(this); 2192 cpu_profiler_ = new CpuProfiler(this);
2189 heap_profiler_ = new HeapProfiler(heap()); 2193 heap_profiler_ = new HeapProfiler(heap());
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
2516 2520
2517 #ifdef DEBUG 2521 #ifdef DEBUG
2518 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ 2522 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \
2519 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); 2523 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_);
2520 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) 2524 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET)
2521 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) 2525 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET)
2522 #undef ISOLATE_FIELD_OFFSET 2526 #undef ISOLATE_FIELD_OFFSET
2523 #endif 2527 #endif
2524 2528
2525 } } // namespace v8::internal 2529 } } // namespace v8::internal
OLDNEW
« src/global-handles.cc ('K') | « src/isolate.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698