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 2201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2212 F(ArrayBufferViewGetByteLength) \ | 2212 F(ArrayBufferViewGetByteLength) \ |
2213 F(ArrayBufferViewGetByteOffset) \ | 2213 F(ArrayBufferViewGetByteOffset) \ |
2214 F(TypedArrayGetLength) \ | 2214 F(TypedArrayGetLength) \ |
2215 /* ArrayBuffer */ \ | 2215 /* ArrayBuffer */ \ |
2216 F(ArrayBufferGetByteLength) \ | 2216 F(ArrayBufferGetByteLength) \ |
2217 /* Maths */ \ | 2217 /* Maths */ \ |
2218 F(ConstructDouble) \ | 2218 F(ConstructDouble) \ |
2219 F(DoubleHi) \ | 2219 F(DoubleHi) \ |
2220 F(DoubleLo) \ | 2220 F(DoubleLo) \ |
2221 F(MathClz32) \ | 2221 F(MathClz32) \ |
2222 F(MathFloor) \ | |
2223 F(MathSqrt) \ | 2222 F(MathSqrt) \ |
2224 F(MathLogRT) \ | 2223 F(MathLogRT) \ |
2225 /* ES6 Collections */ \ | 2224 /* ES6 Collections */ \ |
2226 F(MapClear) \ | 2225 F(MapClear) \ |
2227 F(MapInitialize) \ | 2226 F(MapInitialize) \ |
2228 F(SetClear) \ | 2227 F(SetClear) \ |
2229 F(SetInitialize) \ | 2228 F(SetInitialize) \ |
2230 F(FixedArrayGet) \ | 2229 F(FixedArrayGet) \ |
2231 F(FixedArraySet) \ | 2230 F(FixedArraySet) \ |
2232 F(JSCollectionGetTable) \ | 2231 F(JSCollectionGetTable) \ |
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3036 } | 3035 } |
3037 | 3036 |
3038 private: | 3037 private: |
3039 HGraphBuilder* builder_; | 3038 HGraphBuilder* builder_; |
3040 }; | 3039 }; |
3041 | 3040 |
3042 | 3041 |
3043 } } // namespace v8::internal | 3042 } } // namespace v8::internal |
3044 | 3043 |
3045 #endif // V8_HYDROGEN_H_ | 3044 #endif // V8_HYDROGEN_H_ |
OLD | NEW |