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 2156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2167 F(IsJSReceiver) \ | 2167 F(IsJSReceiver) \ |
2168 F(DebugBreakInOptimizedCode) \ | 2168 F(DebugBreakInOptimizedCode) \ |
2169 F(StringCharCodeAt) \ | 2169 F(StringCharCodeAt) \ |
2170 F(SubString) \ | 2170 F(SubString) \ |
2171 F(DebugIsActive) \ | 2171 F(DebugIsActive) \ |
2172 /* Typed Arrays */ \ | 2172 /* Typed Arrays */ \ |
2173 F(MaxSmi) \ | 2173 F(MaxSmi) \ |
2174 F(TypedArrayMaxSizeInHeap) \ | 2174 F(TypedArrayMaxSizeInHeap) \ |
2175 F(ArrayBufferViewGetByteLength) \ | 2175 F(ArrayBufferViewGetByteLength) \ |
2176 F(ArrayBufferViewGetByteOffset) \ | 2176 F(ArrayBufferViewGetByteOffset) \ |
| 2177 F(ArrayBufferViewWasNeutered) \ |
2177 F(TypedArrayGetLength) \ | 2178 F(TypedArrayGetLength) \ |
2178 /* ArrayBuffer */ \ | 2179 /* ArrayBuffer */ \ |
2179 F(ArrayBufferGetByteLength) \ | 2180 F(ArrayBufferGetByteLength) \ |
2180 /* ES6 Collections */ \ | 2181 /* ES6 Collections */ \ |
2181 F(MapClear) \ | 2182 F(MapClear) \ |
2182 F(MapInitialize) \ | 2183 F(MapInitialize) \ |
2183 F(SetClear) \ | 2184 F(SetClear) \ |
2184 F(SetInitialize) \ | 2185 F(SetInitialize) \ |
2185 F(FixedArrayGet) \ | 2186 F(FixedArrayGet) \ |
2186 F(FixedArraySet) \ | 2187 F(FixedArraySet) \ |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3001 } | 3002 } |
3002 | 3003 |
3003 private: | 3004 private: |
3004 HOptimizedGraphBuilder* builder_; | 3005 HOptimizedGraphBuilder* builder_; |
3005 }; | 3006 }; |
3006 | 3007 |
3007 } // namespace internal | 3008 } // namespace internal |
3008 } // namespace v8 | 3009 } // namespace v8 |
3009 | 3010 |
3010 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3011 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |