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 2251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) \ | 2271 F(MathClz32) \ |
2272 F(MathFloor) \ | |
2273 F(MathLogRT) \ | 2272 F(MathLogRT) \ |
2274 /* ES6 Collections */ \ | 2273 /* ES6 Collections */ \ |
2275 F(MapClear) \ | 2274 F(MapClear) \ |
2276 F(MapInitialize) \ | 2275 F(MapInitialize) \ |
2277 F(SetClear) \ | 2276 F(SetClear) \ |
2278 F(SetInitialize) \ | 2277 F(SetInitialize) \ |
2279 F(FixedArrayGet) \ | 2278 F(FixedArrayGet) \ |
2280 F(FixedArraySet) \ | 2279 F(FixedArraySet) \ |
2281 F(JSCollectionGetTable) \ | 2280 F(JSCollectionGetTable) \ |
2282 F(StringGetRawHashField) \ | 2281 F(StringGetRawHashField) \ |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3086 } | 3085 } |
3087 | 3086 |
3088 private: | 3087 private: |
3089 HOptimizedGraphBuilder* builder_; | 3088 HOptimizedGraphBuilder* builder_; |
3090 }; | 3089 }; |
3091 | 3090 |
3092 } // namespace internal | 3091 } // namespace internal |
3093 } // namespace v8 | 3092 } // namespace v8 |
3094 | 3093 |
3095 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3094 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |