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

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

Issue 1284413002: Add experimental, non-snapshotted V8 extras (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@non-experimental-extras
Patch Set: Missing gn entries Created 5 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
« no previous file with comments | « src/flag-definitions.h ('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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 V(JSObject, message_listeners, MessageListeners) \ 155 V(JSObject, message_listeners, MessageListeners) \
156 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 156 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
157 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ 157 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
158 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ 158 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \
159 V(Code, js_entry_code, JsEntryCode) \ 159 V(Code, js_entry_code, JsEntryCode) \
160 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 160 V(Code, js_construct_entry_code, JsConstructEntryCode) \
161 V(FixedArray, natives_source_cache, NativesSourceCache) \ 161 V(FixedArray, natives_source_cache, NativesSourceCache) \
162 V(FixedArray, experimental_natives_source_cache, \ 162 V(FixedArray, experimental_natives_source_cache, \
163 ExperimentalNativesSourceCache) \ 163 ExperimentalNativesSourceCache) \
164 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ 164 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
165 V(FixedArray, experimental_extra_natives_source_cache, \
166 ExperimentalExtraNativesSourceCache) \
165 V(FixedArray, code_stub_natives_source_cache, CodeStubNativesSourceCache) \ 167 V(FixedArray, code_stub_natives_source_cache, CodeStubNativesSourceCache) \
166 V(Script, empty_script, EmptyScript) \ 168 V(Script, empty_script, EmptyScript) \
167 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 169 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
168 V(Cell, undefined_cell, UndefinedCell) \ 170 V(Cell, undefined_cell, UndefinedCell) \
169 V(JSObject, observation_state, ObservationState) \ 171 V(JSObject, observation_state, ObservationState) \
170 V(Object, symbol_registry, SymbolRegistry) \ 172 V(Object, symbol_registry, SymbolRegistry) \
171 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 173 V(SeededNumberDictionary, empty_slow_element_dictionary, \
172 EmptySlowElementDictionary) \ 174 EmptySlowElementDictionary) \
173 V(FixedArray, materialized_objects, MaterializedObjects) \ 175 V(FixedArray, materialized_objects, MaterializedObjects) \
174 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ 176 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \
(...skipping 2528 matching lines...) Expand 10 before | Expand all | Expand 10 after
2703 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2705 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2704 2706
2705 private: 2707 private:
2706 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2708 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2707 }; 2709 };
2708 #endif // DEBUG 2710 #endif // DEBUG
2709 } 2711 }
2710 } // namespace v8::internal 2712 } // namespace v8::internal
2711 2713
2712 #endif // V8_HEAP_HEAP_H_ 2714 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698