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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
(...skipping 2206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2217 F(ArrayBufferViewGetByteLength) \ | 2217 F(ArrayBufferViewGetByteLength) \ |
2218 F(ArrayBufferViewGetByteOffset) \ | 2218 F(ArrayBufferViewGetByteOffset) \ |
2219 F(TypedArrayGetLength) \ | 2219 F(TypedArrayGetLength) \ |
2220 /* ArrayBuffer */ \ | 2220 /* ArrayBuffer */ \ |
2221 F(ArrayBufferGetByteLength) \ | 2221 F(ArrayBufferGetByteLength) \ |
2222 /* Maths */ \ | 2222 /* Maths */ \ |
2223 F(ConstructDouble) \ | 2223 F(ConstructDouble) \ |
2224 F(DoubleHi) \ | 2224 F(DoubleHi) \ |
2225 F(DoubleLo) \ | 2225 F(DoubleLo) \ |
2226 F(MathClz32) \ | 2226 F(MathClz32) \ |
| 2227 F(MathFloor) \ |
2227 F(MathSqrt) \ | 2228 F(MathSqrt) \ |
2228 F(MathLogRT) \ | 2229 F(MathLogRT) \ |
2229 /* ES6 Collections */ \ | 2230 /* ES6 Collections */ \ |
2230 F(MapClear) \ | 2231 F(MapClear) \ |
2231 F(MapInitialize) \ | 2232 F(MapInitialize) \ |
2232 F(SetClear) \ | 2233 F(SetClear) \ |
2233 F(SetInitialize) \ | 2234 F(SetInitialize) \ |
2234 F(FixedArrayGet) \ | 2235 F(FixedArrayGet) \ |
2235 F(FixedArraySet) \ | 2236 F(FixedArraySet) \ |
2236 F(JSCollectionGetTable) \ | 2237 F(JSCollectionGetTable) \ |
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3047 } | 3048 } |
3048 | 3049 |
3049 private: | 3050 private: |
3050 HGraphBuilder* builder_; | 3051 HGraphBuilder* builder_; |
3051 }; | 3052 }; |
3052 | 3053 |
3053 | 3054 |
3054 } } // namespace v8::internal | 3055 } } // namespace v8::internal |
3055 | 3056 |
3056 #endif // V8_HYDROGEN_H_ | 3057 #endif // V8_HYDROGEN_H_ |
OLD | NEW |