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

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

Issue 2302783002: [modules] Basic support of exports (Closed)
Patch Set: Disable module tests for deopt fuzzer. 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 30 matching lines...) Expand all
41 V(String, empty_string, empty_string) \ 41 V(String, empty_string, empty_string) \
42 V(Map, meta_map, MetaMap) \ 42 V(Map, meta_map, MetaMap) \
43 V(Map, byte_array_map, ByteArrayMap) \ 43 V(Map, byte_array_map, ByteArrayMap) \
44 V(Map, fixed_array_map, FixedArrayMap) \ 44 V(Map, fixed_array_map, FixedArrayMap) \
45 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 45 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
46 V(Map, hash_table_map, HashTableMap) \ 46 V(Map, hash_table_map, HashTableMap) \
47 V(Map, symbol_map, SymbolMap) \ 47 V(Map, symbol_map, SymbolMap) \
48 V(Map, one_byte_string_map, OneByteStringMap) \ 48 V(Map, one_byte_string_map, OneByteStringMap) \
49 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \ 49 V(Map, one_byte_internalized_string_map, OneByteInternalizedStringMap) \
50 V(Map, scope_info_map, ScopeInfoMap) \ 50 V(Map, scope_info_map, ScopeInfoMap) \
51 V(Map, module_info_entry_map, ModuleInfoEntryMap) \
51 V(Map, module_info_map, ModuleInfoMap) \ 52 V(Map, module_info_map, ModuleInfoMap) \
53 V(Map, js_module_map, JSModuleMap) \
52 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 54 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
53 V(Map, code_map, CodeMap) \ 55 V(Map, code_map, CodeMap) \
54 V(Map, function_context_map, FunctionContextMap) \ 56 V(Map, function_context_map, FunctionContextMap) \
55 V(Map, cell_map, CellMap) \ 57 V(Map, cell_map, CellMap) \
56 V(Map, weak_cell_map, WeakCellMap) \ 58 V(Map, weak_cell_map, WeakCellMap) \
57 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 59 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
58 V(Map, foreign_map, ForeignMap) \ 60 V(Map, foreign_map, ForeignMap) \
59 V(Map, heap_number_map, HeapNumberMap) \ 61 V(Map, heap_number_map, HeapNumberMap) \
60 V(Map, transition_array_map, TransitionArrayMap) \ 62 V(Map, transition_array_map, TransitionArrayMap) \
61 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ 63 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 V(Int16x8Map) \ 270 V(Int16x8Map) \
269 V(Uint16x8Map) \ 271 V(Uint16x8Map) \
270 V(Bool16x8Map) \ 272 V(Bool16x8Map) \
271 V(Int8x16Map) \ 273 V(Int8x16Map) \
272 V(Uint8x16Map) \ 274 V(Uint8x16Map) \
273 V(Bool8x16Map) \ 275 V(Bool8x16Map) \
274 V(NativeContextMap) \ 276 V(NativeContextMap) \
275 V(FixedArrayMap) \ 277 V(FixedArrayMap) \
276 V(CodeMap) \ 278 V(CodeMap) \
277 V(ScopeInfoMap) \ 279 V(ScopeInfoMap) \
280 V(ModuleInfoEntryMap) \
278 V(ModuleInfoMap) \ 281 V(ModuleInfoMap) \
282 V(JSModuleMap) \
279 V(FixedCOWArrayMap) \ 283 V(FixedCOWArrayMap) \
280 V(FixedDoubleArrayMap) \ 284 V(FixedDoubleArrayMap) \
281 V(WeakCellMap) \ 285 V(WeakCellMap) \
282 V(TransitionArrayMap) \ 286 V(TransitionArrayMap) \
283 V(NoInterceptorResultSentinel) \ 287 V(NoInterceptorResultSentinel) \
284 V(HashTableMap) \ 288 V(HashTableMap) \
285 V(OrderedHashTableMap) \ 289 V(OrderedHashTableMap) \
286 V(EmptyFixedArray) \ 290 V(EmptyFixedArray) \
287 V(EmptyByteArray) \ 291 V(EmptyByteArray) \
288 V(EmptyDescriptorArray) \ 292 V(EmptyDescriptorArray) \
(...skipping 2349 matching lines...) Expand 10 before | Expand all | Expand 10 after
2638 friend class LargeObjectSpace; 2642 friend class LargeObjectSpace;
2639 friend class NewSpace; 2643 friend class NewSpace;
2640 friend class PagedSpace; 2644 friend class PagedSpace;
2641 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2645 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2642 }; 2646 };
2643 2647
2644 } // namespace internal 2648 } // namespace internal
2645 } // namespace v8 2649 } // namespace v8
2646 2650
2647 #endif // V8_HEAP_HEAP_H_ 2651 #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