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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 V(Cell, undefined_cell, UndefineCell) \ | 190 V(Cell, undefined_cell, UndefineCell) \ |
191 V(JSObject, observation_state, ObservationState) \ | 191 V(JSObject, observation_state, ObservationState) \ |
192 V(Map, external_map, ExternalMap) \ | 192 V(Map, external_map, ExternalMap) \ |
193 V(Symbol, frozen_symbol, FrozenSymbol) \ | 193 V(Symbol, frozen_symbol, FrozenSymbol) \ |
194 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \ | 194 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \ |
195 V(SeededNumberDictionary, empty_slow_element_dictionary, \ | 195 V(SeededNumberDictionary, empty_slow_element_dictionary, \ |
196 EmptySlowElementDictionary) \ | 196 EmptySlowElementDictionary) \ |
197 V(Symbol, observed_symbol, ObservedSymbol) \ | 197 V(Symbol, observed_symbol, ObservedSymbol) \ |
198 V(FixedArray, materialized_objects, MaterializedObjects) \ | 198 V(FixedArray, materialized_objects, MaterializedObjects) \ |
199 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ | 199 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ |
200 V(JSObject, microtask_state, MicrotaskState) | 200 V(JSObject, microtask_state, MicrotaskState) \ |
| 201 V(Symbol, error_type, ErrorType) |
201 | 202 |
202 // Entries in this list are limited to Smis and are not visited during GC. | 203 // Entries in this list are limited to Smis and are not visited during GC. |
203 #define SMI_ROOT_LIST(V) \ | 204 #define SMI_ROOT_LIST(V) \ |
204 V(Smi, stack_limit, StackLimit) \ | 205 V(Smi, stack_limit, StackLimit) \ |
205 V(Smi, real_stack_limit, RealStackLimit) \ | 206 V(Smi, real_stack_limit, RealStackLimit) \ |
206 V(Smi, last_script_id, LastScriptId) \ | 207 V(Smi, last_script_id, LastScriptId) \ |
207 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ | 208 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ |
208 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \ | 209 V(Smi, construct_stub_deopt_pc_offset, ConstructStubDeoptPCOffset) \ |
209 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \ | 210 V(Smi, getter_stub_deopt_pc_offset, GetterStubDeoptPCOffset) \ |
210 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) | 211 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) |
(...skipping 2903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3114 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3115 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
3115 | 3116 |
3116 private: | 3117 private: |
3117 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3118 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3118 }; | 3119 }; |
3119 #endif // DEBUG | 3120 #endif // DEBUG |
3120 | 3121 |
3121 } } // namespace v8::internal | 3122 } } // namespace v8::internal |
3122 | 3123 |
3123 #endif // V8_HEAP_H_ | 3124 #endif // V8_HEAP_H_ |
OLD | NEW |