OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ | 196 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ |
197 V(Cell, undefined_cell, UndefineCell) \ | 197 V(Cell, undefined_cell, UndefineCell) \ |
198 V(JSObject, observation_state, ObservationState) \ | 198 V(JSObject, observation_state, ObservationState) \ |
199 V(Map, external_map, ExternalMap) \ | 199 V(Map, external_map, ExternalMap) \ |
200 V(Symbol, frozen_symbol, FrozenSymbol) \ | 200 V(Symbol, frozen_symbol, FrozenSymbol) \ |
201 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \ | 201 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \ |
202 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 202 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
203 EmptySlowElementDictionary) \ | 203 EmptySlowElementDictionary) \ |
204 V(Symbol, observed_symbol, ObservedSymbol) \ | 204 V(Symbol, observed_symbol, ObservedSymbol) \ |
205 V(FixedArray, materialized_objects, MaterializedObjects) \ | 205 V(FixedArray, materialized_objects, MaterializedObjects) \ |
206 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) | 206 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ |
| 207 V(JSObject, microtask_state, MicrotaskState) |
207 | 208 |
208 #define ROOT_LIST(V) \ | 209 #define ROOT_LIST(V) \ |
209 STRONG_ROOT_LIST(V) \ | 210 STRONG_ROOT_LIST(V) \ |
210 V(StringTable, string_table, StringTable) | 211 V(StringTable, string_table, StringTable) |
211 | 212 |
212 // Heap roots that are known to be immortal immovable, for which we can safely | 213 // Heap roots that are known to be immortal immovable, for which we can safely |
213 // skip write barriers. | 214 // skip write barriers. |
214 #define IMMORTAL_IMMOVABLE_ROOT_LIST(V) \ | 215 #define IMMORTAL_IMMOVABLE_ROOT_LIST(V) \ |
215 V(byte_array_map) \ | 216 V(byte_array_map) \ |
216 V(free_space_map) \ | 217 V(free_space_map) \ |
(...skipping 2874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3091 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3092 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
3092 | 3093 |
3093 private: | 3094 private: |
3094 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3095 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3095 }; | 3096 }; |
3096 #endif // DEBUG | 3097 #endif // DEBUG |
3097 | 3098 |
3098 } } // namespace v8::internal | 3099 } } // namespace v8::internal |
3099 | 3100 |
3100 #endif // V8_HEAP_H_ | 3101 #endif // V8_HEAP_H_ |
OLD | NEW |