| 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 2195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2206 F(ArrayBufferViewGetByteLength) \ | 2206 F(ArrayBufferViewGetByteLength) \ |
| 2207 F(ArrayBufferViewGetByteOffset) \ | 2207 F(ArrayBufferViewGetByteOffset) \ |
| 2208 F(TypedArrayGetLength) \ | 2208 F(TypedArrayGetLength) \ |
| 2209 /* ArrayBuffer */ \ | 2209 /* ArrayBuffer */ \ |
| 2210 F(ArrayBufferGetByteLength) \ | 2210 F(ArrayBufferGetByteLength) \ |
| 2211 /* Maths */ \ | 2211 /* Maths */ \ |
| 2212 F(ConstructDouble) \ | 2212 F(ConstructDouble) \ |
| 2213 F(DoubleHi) \ | 2213 F(DoubleHi) \ |
| 2214 F(DoubleLo) \ | 2214 F(DoubleLo) \ |
| 2215 F(MathFloor) \ | 2215 F(MathFloor) \ |
| 2216 F(MathSqrtRT) \ | 2216 F(MathSqrt) \ |
| 2217 F(MathLogRT) \ | 2217 F(MathLogRT) \ |
| 2218 /* ES6 Collections */ \ | 2218 /* ES6 Collections */ \ |
| 2219 F(MapClear) \ | 2219 F(MapClear) \ |
| 2220 F(MapDelete) \ | 2220 F(MapDelete) \ |
| 2221 F(MapGet) \ | 2221 F(MapGet) \ |
| 2222 F(MapGetSize) \ | 2222 F(MapGetSize) \ |
| 2223 F(MapHas) \ | 2223 F(MapHas) \ |
| 2224 F(MapInitialize) \ | 2224 F(MapInitialize) \ |
| 2225 F(MapSet) \ | 2225 F(MapSet) \ |
| 2226 F(SetAdd) \ | 2226 F(SetAdd) \ |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3026 } | 3026 } |
| 3027 | 3027 |
| 3028 private: | 3028 private: |
| 3029 HGraphBuilder* builder_; | 3029 HGraphBuilder* builder_; |
| 3030 }; | 3030 }; |
| 3031 | 3031 |
| 3032 | 3032 |
| 3033 } } // namespace v8::internal | 3033 } } // namespace v8::internal |
| 3034 | 3034 |
| 3035 #endif // V8_HYDROGEN_H_ | 3035 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |