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.h" | 10 #include "src/ast/ast.h" |
(...skipping 2250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2261 F(TypedArrayMaxSizeInHeap) \ | 2261 F(TypedArrayMaxSizeInHeap) \ |
2262 F(ArrayBufferViewGetByteLength) \ | 2262 F(ArrayBufferViewGetByteLength) \ |
2263 F(ArrayBufferViewGetByteOffset) \ | 2263 F(ArrayBufferViewGetByteOffset) \ |
2264 F(TypedArrayGetLength) \ | 2264 F(TypedArrayGetLength) \ |
2265 /* ArrayBuffer */ \ | 2265 /* ArrayBuffer */ \ |
2266 F(ArrayBufferGetByteLength) \ | 2266 F(ArrayBufferGetByteLength) \ |
2267 /* Maths */ \ | 2267 /* Maths */ \ |
2268 F(ConstructDouble) \ | 2268 F(ConstructDouble) \ |
2269 F(DoubleHi) \ | 2269 F(DoubleHi) \ |
2270 F(DoubleLo) \ | 2270 F(DoubleLo) \ |
2271 F(MathClz32) \ | |
2272 F(MathLogRT) \ | 2271 F(MathLogRT) \ |
2273 /* ES6 Collections */ \ | 2272 /* ES6 Collections */ \ |
2274 F(MapClear) \ | 2273 F(MapClear) \ |
2275 F(MapInitialize) \ | 2274 F(MapInitialize) \ |
2276 F(SetClear) \ | 2275 F(SetClear) \ |
2277 F(SetInitialize) \ | 2276 F(SetInitialize) \ |
2278 F(FixedArrayGet) \ | 2277 F(FixedArrayGet) \ |
2279 F(FixedArraySet) \ | 2278 F(FixedArraySet) \ |
2280 F(JSCollectionGetTable) \ | 2279 F(JSCollectionGetTable) \ |
2281 F(StringGetRawHashField) \ | 2280 F(StringGetRawHashField) \ |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3085 } | 3084 } |
3086 | 3085 |
3087 private: | 3086 private: |
3088 HOptimizedGraphBuilder* builder_; | 3087 HOptimizedGraphBuilder* builder_; |
3089 }; | 3088 }; |
3090 | 3089 |
3091 } // namespace internal | 3090 } // namespace internal |
3092 } // namespace v8 | 3091 } // namespace v8 |
3093 | 3092 |
3094 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3093 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |