OLD | NEW |
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_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_H_ |
7 | 7 |
8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
10 #include "src/ast/ast-type-bounds.h" | 10 #include "src/ast/ast-type-bounds.h" |
(...skipping 2157 matching lines...) Loading... |
2168 F(IsJSReceiver) \ | 2168 F(IsJSReceiver) \ |
2169 F(DebugBreakInOptimizedCode) \ | 2169 F(DebugBreakInOptimizedCode) \ |
2170 F(StringCharCodeAt) \ | 2170 F(StringCharCodeAt) \ |
2171 F(SubString) \ | 2171 F(SubString) \ |
2172 F(DebugIsActive) \ | 2172 F(DebugIsActive) \ |
2173 /* Typed Arrays */ \ | 2173 /* Typed Arrays */ \ |
2174 F(MaxSmi) \ | 2174 F(MaxSmi) \ |
2175 F(TypedArrayMaxSizeInHeap) \ | 2175 F(TypedArrayMaxSizeInHeap) \ |
2176 F(ArrayBufferViewGetByteLength) \ | 2176 F(ArrayBufferViewGetByteLength) \ |
2177 F(ArrayBufferViewGetByteOffset) \ | 2177 F(ArrayBufferViewGetByteOffset) \ |
| 2178 F(ArrayBufferViewWasNeutered) \ |
2178 F(TypedArrayGetLength) \ | 2179 F(TypedArrayGetLength) \ |
2179 /* ArrayBuffer */ \ | 2180 /* ArrayBuffer */ \ |
2180 F(ArrayBufferGetByteLength) \ | 2181 F(ArrayBufferGetByteLength) \ |
2181 /* ES6 Collections */ \ | 2182 /* ES6 Collections */ \ |
2182 F(MapClear) \ | 2183 F(MapClear) \ |
2183 F(MapInitialize) \ | 2184 F(MapInitialize) \ |
2184 F(SetClear) \ | 2185 F(SetClear) \ |
2185 F(SetInitialize) \ | 2186 F(SetInitialize) \ |
2186 F(FixedArrayGet) \ | 2187 F(FixedArrayGet) \ |
2187 F(FixedArraySet) \ | 2188 F(FixedArraySet) \ |
(...skipping 814 matching lines...) Loading... |
3002 } | 3003 } |
3003 | 3004 |
3004 private: | 3005 private: |
3005 HOptimizedGraphBuilder* builder_; | 3006 HOptimizedGraphBuilder* builder_; |
3006 }; | 3007 }; |
3007 | 3008 |
3008 } // namespace internal | 3009 } // namespace internal |
3009 } // namespace v8 | 3010 } // namespace v8 |
3010 | 3011 |
3011 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3012 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |