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

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

Issue 705663004: harmony_scoping: Implement lexical bindings at top level (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased 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/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 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, global_context_map, GlobalContextMap) \
152 V(Map, global_context_table_map, GlobalContextTableMap) \
152 V(Map, undefined_map, UndefinedMap) \ 153 V(Map, undefined_map, UndefinedMap) \
153 V(Map, the_hole_map, TheHoleMap) \ 154 V(Map, the_hole_map, TheHoleMap) \
154 V(Map, null_map, NullMap) \ 155 V(Map, null_map, NullMap) \
155 V(Map, boolean_map, BooleanMap) \ 156 V(Map, boolean_map, BooleanMap) \
156 V(Map, uninitialized_map, UninitializedMap) \ 157 V(Map, uninitialized_map, UninitializedMap) \
157 V(Map, arguments_marker_map, ArgumentsMarkerMap) \ 158 V(Map, arguments_marker_map, ArgumentsMarkerMap) \
158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ 159 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \
159 V(Map, exception_map, ExceptionMap) \ 160 V(Map, exception_map, ExceptionMap) \
160 V(Map, termination_exception_map, TerminationExceptionMap) \ 161 V(Map, termination_exception_map, TerminationExceptionMap) \
161 V(Map, message_object_map, JSMessageObjectMap) \ 162 V(Map, message_object_map, JSMessageObjectMap) \
(...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after
2554 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2555 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2555 2556
2556 private: 2557 private:
2557 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2558 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2558 }; 2559 };
2559 #endif // DEBUG 2560 #endif // DEBUG
2560 } 2561 }
2561 } // namespace v8::internal 2562 } // namespace v8::internal
2562 2563
2563 #endif // V8_HEAP_HEAP_H_ 2564 #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