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

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

Issue 1199903002: [turbofan] Some cleanup to the Typer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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/compiler/typer.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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \ 158 V(Map, no_interceptor_result_sentinel_map, NoInterceptorResultSentinelMap) \
159 V(Map, exception_map, ExceptionMap) \ 159 V(Map, exception_map, ExceptionMap) \
160 V(Map, termination_exception_map, TerminationExceptionMap) \ 160 V(Map, termination_exception_map, TerminationExceptionMap) \
161 V(Map, message_object_map, JSMessageObjectMap) \ 161 V(Map, message_object_map, JSMessageObjectMap) \
162 V(Map, foreign_map, ForeignMap) \ 162 V(Map, foreign_map, ForeignMap) \
163 V(Map, neander_map, NeanderMap) \ 163 V(Map, neander_map, NeanderMap) \
164 V(Map, external_map, ExternalMap) \ 164 V(Map, external_map, ExternalMap) \
165 V(HeapNumber, nan_value, NanValue) \ 165 V(HeapNumber, nan_value, NanValue) \
166 V(HeapNumber, infinity_value, InfinityValue) \ 166 V(HeapNumber, infinity_value, InfinityValue) \
167 V(HeapNumber, minus_zero_value, MinusZeroValue) \ 167 V(HeapNumber, minus_zero_value, MinusZeroValue) \
168 V(HeapNumber, minus_infinity_value, MinusInfinityValue) \
168 V(JSObject, message_listeners, MessageListeners) \ 169 V(JSObject, message_listeners, MessageListeners) \
169 V(UnseededNumberDictionary, code_stubs, CodeStubs) \ 170 V(UnseededNumberDictionary, code_stubs, CodeStubs) \
170 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \ 171 V(UnseededNumberDictionary, non_monomorphic_cache, NonMonomorphicCache) \
171 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \ 172 V(PolymorphicCodeCache, polymorphic_code_cache, PolymorphicCodeCache) \
172 V(Code, js_entry_code, JsEntryCode) \ 173 V(Code, js_entry_code, JsEntryCode) \
173 V(Code, js_construct_entry_code, JsConstructEntryCode) \ 174 V(Code, js_construct_entry_code, JsConstructEntryCode) \
174 V(FixedArray, natives_source_cache, NativesSourceCache) \ 175 V(FixedArray, natives_source_cache, NativesSourceCache) \
175 V(FixedArray, experimental_natives_source_cache, \ 176 V(FixedArray, experimental_natives_source_cache, \
176 ExperimentalNativesSourceCache) \ 177 ExperimentalNativesSourceCache) \
177 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \ 178 V(FixedArray, extra_natives_source_cache, ExtraNativesSourceCache) \
(...skipping 2658 matching lines...) Expand 10 before | Expand all | Expand 10 after
2836 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2837 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2837 2838
2838 private: 2839 private:
2839 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2840 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2840 }; 2841 };
2841 #endif // DEBUG 2842 #endif // DEBUG
2842 } 2843 }
2843 } // namespace v8::internal 2844 } // namespace v8::internal
2844 2845
2845 #endif // V8_HEAP_HEAP_H_ 2846 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/compiler/typer.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698