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

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

Issue 716833002: Various clean-ups after top-level lexical declarations are done. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for landing Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « src/heap-snapshot-generator.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 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 V(FixedTypedArrayBase, empty_fixed_float32_array, EmptyFixedFloat32Array) \ 141 V(FixedTypedArrayBase, empty_fixed_float32_array, EmptyFixedFloat32Array) \
142 V(FixedTypedArrayBase, empty_fixed_float64_array, EmptyFixedFloat64Array) \ 142 V(FixedTypedArrayBase, empty_fixed_float64_array, EmptyFixedFloat64Array) \
143 V(FixedTypedArrayBase, empty_fixed_uint8_clamped_array, \ 143 V(FixedTypedArrayBase, empty_fixed_uint8_clamped_array, \
144 EmptyFixedUint8ClampedArray) \ 144 EmptyFixedUint8ClampedArray) \
145 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \ 145 V(Map, sloppy_arguments_elements_map, SloppyArgumentsElementsMap) \
146 V(Map, function_context_map, FunctionContextMap) \ 146 V(Map, function_context_map, FunctionContextMap) \
147 V(Map, catch_context_map, CatchContextMap) \ 147 V(Map, catch_context_map, CatchContextMap) \
148 V(Map, with_context_map, WithContextMap) \ 148 V(Map, with_context_map, WithContextMap) \
149 V(Map, block_context_map, BlockContextMap) \ 149 V(Map, block_context_map, BlockContextMap) \
150 V(Map, module_context_map, ModuleContextMap) \ 150 V(Map, module_context_map, ModuleContextMap) \
151 V(Map, global_context_map, GlobalContextMap) \ 151 V(Map, script_context_map, ScriptContextMap) \
152 V(Map, global_context_table_map, GlobalContextTableMap) \ 152 V(Map, script_context_table_map, ScriptContextTableMap) \
153 V(Map, undefined_map, UndefinedMap) \ 153 V(Map, undefined_map, UndefinedMap) \
154 V(Map, the_hole_map, TheHoleMap) \ 154 V(Map, the_hole_map, TheHoleMap) \
155 V(Map, null_map, NullMap) \ 155 V(Map, null_map, NullMap) \
156 V(Map, boolean_map, BooleanMap) \ 156 V(Map, boolean_map, BooleanMap) \
157 V(Map, uninitialized_map, UninitializedMap) \ 157 V(Map, uninitialized_map, UninitializedMap) \
158 V(Map, arguments_marker_map, ArgumentsMarkerMap) \ 158 V(Map, arguments_marker_map, ArgumentsMarkerMap) \
159 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ 159 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \
160 V(Map, exception_map, ExceptionMap) \ 160 V(Map, exception_map, ExceptionMap) \
161 V(Map, termination_exception_map, TerminationExceptionMap) \ 161 V(Map, termination_exception_map, TerminationExceptionMap) \
162 V(Map, message_object_map, JSMessageObjectMap) \ 162 V(Map, message_object_map, JSMessageObjectMap) \
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 V(EmptyDescriptorArray) \ 335 V(EmptyDescriptorArray) \
336 V(EmptyConstantPoolArray) \ 336 V(EmptyConstantPoolArray) \
337 V(ArgumentsMarker) \ 337 V(ArgumentsMarker) \
338 V(SymbolMap) \ 338 V(SymbolMap) \
339 V(SloppyArgumentsElementsMap) \ 339 V(SloppyArgumentsElementsMap) \
340 V(FunctionContextMap) \ 340 V(FunctionContextMap) \
341 V(CatchContextMap) \ 341 V(CatchContextMap) \
342 V(WithContextMap) \ 342 V(WithContextMap) \
343 V(BlockContextMap) \ 343 V(BlockContextMap) \
344 V(ModuleContextMap) \ 344 V(ModuleContextMap) \
345 V(GlobalContextMap) \ 345 V(ScriptContextMap) \
346 V(UndefinedMap) \ 346 V(UndefinedMap) \
347 V(TheHoleMap) \ 347 V(TheHoleMap) \
348 V(NullMap) \ 348 V(NullMap) \
349 V(BooleanMap) \ 349 V(BooleanMap) \
350 V(UninitializedMap) \ 350 V(UninitializedMap) \
351 V(ArgumentsMarkerMap) \ 351 V(ArgumentsMarkerMap) \
352 V(JSMessageObjectMap) \ 352 V(JSMessageObjectMap) \
353 V(ForeignMap) \ 353 V(ForeignMap) \
354 V(NeanderMap) \ 354 V(NeanderMap) \
355 PRIVATE_SYMBOL_LIST(V) 355 PRIVATE_SYMBOL_LIST(V)
(...skipping 2199 matching lines...) Expand 10 before | Expand all | Expand 10 after
2555 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2555 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2556 2556
2557 private: 2557 private:
2558 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2558 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2559 }; 2559 };
2560 #endif // DEBUG 2560 #endif // DEBUG
2561 } 2561 }
2562 } // namespace v8::internal 2562 } // namespace v8::internal
2563 2563
2564 #endif // V8_HEAP_HEAP_H_ 2564 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/heap-snapshot-generator.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698