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

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

Issue 1619473006: Version 4.9.385.8 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.9
Patch Set: Created 4 years, 11 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 V(Code, js_entry_code, JsEntryCode) \ 162 V(Code, js_entry_code, JsEntryCode) \
163 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 163 V(Code, js_construct_entry_code, JsConstructEntryCode) \
164 V(FixedArray, natives_source_cache, NativesSourceCache) \ 164 V(FixedArray, natives_source_cache, NativesSourceCache) \
165 V(FixedArray, experimental_natives_source_cache, \ 165 V(FixedArray, experimental_natives_source_cache, \
166 ExperimentalNativesSourceCache) \ 166 ExperimentalNativesSourceCache) \
167 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ 167 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
168 V(FixedArray, experimental_extra_natives_source_cache, \ 168 V(FixedArray, experimental_extra_natives_source_cache, \
169 ExperimentalExtraNativesSourceCache) \ 169 ExperimentalExtraNativesSourceCache) \
170 V(Script, empty_script, EmptyScript) \ 170 V(Script, empty_script, EmptyScript) \
171 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \ 171 V(NameDictionary, intrinsic_function_names, IntrinsicFunctionNames) \
172 V(NameDictionary, empty_properties_dictionary, EmptyPropertiesDictionary) \
172 V(Cell, undefined_cell, UndefinedCell) \ 173 V(Cell, undefined_cell, UndefinedCell) \
173 V(JSObject, observation_state, ObservationState) \ 174 V(JSObject, observation_state, ObservationState) \
174 V(Object, symbol_registry, SymbolRegistry) \ 175 V(Object, symbol_registry, SymbolRegistry) \
175 V(Object, script_list, ScriptList) \ 176 V(Object, script_list, ScriptList) \
176 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 177 V(SeededNumberDictionary, empty_slow_element_dictionary, \
177 EmptySlowElementDictionary) \ 178 EmptySlowElementDictionary) \
178 V(FixedArray, materialized_objects, MaterializedObjects) \ 179 V(FixedArray, materialized_objects, MaterializedObjects) \
179 V(FixedArray, microtask_queue, MicrotaskQueue) \ 180 V(FixedArray, microtask_queue, MicrotaskQueue) \
180 V(TypeFeedbackVector, dummy_vector, DummyVector) \ 181 V(TypeFeedbackVector, dummy_vector, DummyVector) \
181 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ 182 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \
(...skipping 2604 matching lines...) Expand 10 before | Expand all | Expand 10 after
2786 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2787 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2787 2788
2788 private: 2789 private:
2789 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2790 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2790 }; 2791 };
2791 #endif // DEBUG 2792 #endif // DEBUG
2792 } // namespace internal 2793 } // namespace internal
2793 } // namespace v8 2794 } // namespace v8
2794 2795
2795 #endif // V8_HEAP_HEAP_H_ 2796 #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