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 2226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2237 F(ArrayBufferViewGetByteOffset) \ | 2237 F(ArrayBufferViewGetByteOffset) \ |
2238 F(TypedArrayGetLength) \ | 2238 F(TypedArrayGetLength) \ |
2239 /* ArrayBuffer */ \ | 2239 /* ArrayBuffer */ \ |
2240 F(ArrayBufferGetByteLength) \ | 2240 F(ArrayBufferGetByteLength) \ |
2241 /* Maths */ \ | 2241 /* Maths */ \ |
2242 F(ConstructDouble) \ | 2242 F(ConstructDouble) \ |
2243 F(DoubleHi) \ | 2243 F(DoubleHi) \ |
2244 F(DoubleLo) \ | 2244 F(DoubleLo) \ |
2245 F(MathClz32) \ | 2245 F(MathClz32) \ |
2246 F(MathFloor) \ | 2246 F(MathFloor) \ |
2247 F(MathSqrt) \ | |
2248 F(MathLogRT) \ | 2247 F(MathLogRT) \ |
2249 /* ES6 Collections */ \ | 2248 /* ES6 Collections */ \ |
2250 F(MapClear) \ | 2249 F(MapClear) \ |
2251 F(MapInitialize) \ | 2250 F(MapInitialize) \ |
2252 F(SetClear) \ | 2251 F(SetClear) \ |
2253 F(SetInitialize) \ | 2252 F(SetInitialize) \ |
2254 F(FixedArrayGet) \ | 2253 F(FixedArrayGet) \ |
2255 F(FixedArraySet) \ | 2254 F(FixedArraySet) \ |
2256 F(JSCollectionGetTable) \ | 2255 F(JSCollectionGetTable) \ |
2257 F(StringGetRawHashField) \ | 2256 F(StringGetRawHashField) \ |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3061 } | 3060 } |
3062 | 3061 |
3063 private: | 3062 private: |
3064 HOptimizedGraphBuilder* builder_; | 3063 HOptimizedGraphBuilder* builder_; |
3065 }; | 3064 }; |
3066 | 3065 |
3067 } // namespace internal | 3066 } // namespace internal |
3068 } // namespace v8 | 3067 } // namespace v8 |
3069 | 3068 |
3070 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3069 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |