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

Side by Side Diff: src/heap/heap.h

Issue 1131903002: Revert of Make V8 extras a separate type of native (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 V(HeapNumber, minus_zero_value, MinusZeroValue) \ 168 V(HeapNumber, minus_zero_value, MinusZeroValue) \
169 V(JSObject, message_listeners, MessageListeners) \ 169 V(JSObject, message_listeners, MessageListeners) \
170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ 171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ 172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \
173 V(Code, js_entry_code, JsEntryCode) \ 173 V(Code, js_entry_code, JsEntryCode) \
174 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 174 V(Code, js_construct_entry_code, JsConstructEntryCode) \
175 V(FixedArray, natives_source_cache, NativesSourceCache) \ 175 V(FixedArray, natives_source_cache, NativesSourceCache) \
176 V(FixedArray, experimental_natives_source_cache, \ 176 V(FixedArray, experimental_natives_source_cache, \
177 ExperimentalNativesSourceCache) \ 177 ExperimentalNativesSourceCache) \
178 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
179 V(Script, empty_script, EmptyScript) \ 178 V(Script, empty_script, EmptyScript) \
180 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 179 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
181 V(Cell, undefined_cell, UndefinedCell) \ 180 V(Cell, undefined_cell, UndefinedCell) \
182 V(JSObject, observation_state, ObservationState) \ 181 V(JSObject, observation_state, ObservationState) \
183 V(Object, symbol_registry, SymbolRegistry) \ 182 V(Object, symbol_registry, SymbolRegistry) \
184 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 183 V(SeededNumberDictionary, empty_slow_element_dictionary, \
185 EmptySlowElementDictionary) \ 184 EmptySlowElementDictionary) \
186 V(FixedArray, materialized_objects, MaterializedObjects) \ 185 V(FixedArray, materialized_objects, MaterializedObjects) \
187 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ 186 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \
188 V(FixedArray, microtask_queue, MicrotaskQueue) \ 187 V(FixedArray, microtask_queue, MicrotaskQueue) \
(...skipping 2451 matching lines...) Expand 10 before | Expand all | Expand 10 after
2640 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2639 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2641 2640
2642 private: 2641 private:
2643 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2642 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2644 }; 2643 };
2645 #endif // DEBUG 2644 #endif // DEBUG
2646 } 2645 }
2647 } // namespace v8::internal 2646 } // namespace v8::internal
2648 2647
2649 #endif // V8_HEAP_HEAP_H_ 2648 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698