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

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

Issue 2277253003: [modules] Partial scope info support of modules (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@modules-refactor
Patch Set: This is so much fun. Created 4 years, 3 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/factory.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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 V(String, empty_string, empty_string) \ 42 V(String, empty_string, empty_string) \
43 V(Map, meta_map, MetaMap) \ 43 V(Map, meta_map, MetaMap) \
44 V(Map, byte_array_map, ByteArrayMap) \ 44 V(Map, byte_array_map, ByteArrayMap) \
45 V(Map, fixed_array_map, FixedArrayMap) \ 45 V(Map, fixed_array_map, FixedArrayMap) \
46 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 46 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
47 V(Map, hash_table_map, HashTableMap) \ 47 V(Map, hash_table_map, HashTableMap) \
48 V(Map, symbol_map, SymbolMap) \ 48 V(Map, symbol_map, SymbolMap) \
49 V(Map, one_byte_string_map, OneByteStringMap) \ 49 V(Map, one_byte_string_map, OneByteStringMap) \
50 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ 50 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \
51 V(Map, scope_info_map, ScopeInfoMap) \ 51 V(Map, scope_info_map, ScopeInfoMap) \
52 V(Map, module_info_map, ModuleInfoMap) \
52 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 53 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
53 V(Map, code_map, CodeMap) \ 54 V(Map, code_map, CodeMap) \
54 V(Map, function_context_map, FunctionContextMap) \ 55 V(Map, function_context_map, FunctionContextMap) \
55 V(Map, cell_map, CellMap) \ 56 V(Map, cell_map, CellMap) \
56 V(Map, weak_cell_map, WeakCellMap) \ 57 V(Map, weak_cell_map, WeakCellMap) \
57 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 58 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
58 V(Map, foreign_map, ForeignMap) \ 59 V(Map, foreign_map, ForeignMap) \
59 V(Map, heap_number_map, HeapNumberMap) \ 60 V(Map, heap_number_map, HeapNumberMap) \
60 V(Map, transition_array_map, TransitionArrayMap) \ 61 V(Map, transition_array_map, TransitionArrayMap) \
61 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ 62 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 V(Int16x8Map) \ 269 V(Int16x8Map) \
269 V(Uint16x8Map) \ 270 V(Uint16x8Map) \
270 V(Bool16x8Map) \ 271 V(Bool16x8Map) \
271 V(Int8x16Map) \ 272 V(Int8x16Map) \
272 V(Uint8x16Map) \ 273 V(Uint8x16Map) \
273 V(Bool8x16Map) \ 274 V(Bool8x16Map) \
274 V(NativeContextMap) \ 275 V(NativeContextMap) \
275 V(FixedArrayMap) \ 276 V(FixedArrayMap) \
276 V(CodeMap) \ 277 V(CodeMap) \
277 V(ScopeInfoMap) \ 278 V(ScopeInfoMap) \
279 V(ModuleInfoMap) \
278 V(FixedCOWArrayMap) \ 280 V(FixedCOWArrayMap) \
279 V(FixedDoubleArrayMap) \ 281 V(FixedDoubleArrayMap) \
280 V(WeakCellMap) \ 282 V(WeakCellMap) \
281 V(TransitionArrayMap) \ 283 V(TransitionArrayMap) \
282 V(NoInterceptorResultSentinel) \ 284 V(NoInterceptorResultSentinel) \
283 V(HashTableMap) \ 285 V(HashTableMap) \
284 V(OrderedHashTableMap) \ 286 V(OrderedHashTableMap) \
285 V(EmptyFixedArray) \ 287 V(EmptyFixedArray) \
286 V(EmptyByteArray) \ 288 V(EmptyByteArray) \
287 V(EmptyDescriptorArray) \ 289 V(EmptyDescriptorArray) \
(...skipping 2437 matching lines...) Expand 10 before | Expand all | Expand 10 after
2725 friend class LargeObjectSpace; 2727 friend class LargeObjectSpace;
2726 friend class NewSpace; 2728 friend class NewSpace;
2727 friend class PagedSpace; 2729 friend class PagedSpace;
2728 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2730 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2729 }; 2731 };
2730 2732
2731 } // namespace internal 2733 } // namespace internal
2732 } // namespace v8 2734 } // namespace v8
2733 2735
2734 #endif // V8_HEAP_HEAP_H_ 2736 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698