OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_COMPILER_OPCODES_H_ | 5 #ifndef V8_COMPILER_OPCODES_H_ |
6 #define V8_COMPILER_OPCODES_H_ | 6 #define V8_COMPILER_OPCODES_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 // Opcodes for control operators. | 10 // Opcodes for control operators. |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 V(Float64Mul) \ | 300 V(Float64Mul) \ |
301 V(Float64Div) \ | 301 V(Float64Div) \ |
302 V(Float64Mod) \ | 302 V(Float64Mod) \ |
303 V(Float64Max) \ | 303 V(Float64Max) \ |
304 V(Float64Min) \ | 304 V(Float64Min) \ |
305 V(Float64Abs) \ | 305 V(Float64Abs) \ |
306 V(Float64Sqrt) \ | 306 V(Float64Sqrt) \ |
307 V(Float64RoundDown) \ | 307 V(Float64RoundDown) \ |
308 V(Float32RoundUp) \ | 308 V(Float32RoundUp) \ |
309 V(Float64RoundUp) \ | 309 V(Float64RoundUp) \ |
| 310 V(Float32RoundTruncate) \ |
310 V(Float64RoundTruncate) \ | 311 V(Float64RoundTruncate) \ |
311 V(Float64RoundTiesAway) \ | 312 V(Float64RoundTiesAway) \ |
312 V(Float64RoundTiesEven) \ | 313 V(Float64RoundTiesEven) \ |
313 V(Float64ExtractLowWord32) \ | 314 V(Float64ExtractLowWord32) \ |
314 V(Float64ExtractHighWord32) \ | 315 V(Float64ExtractHighWord32) \ |
315 V(Float64InsertLowWord32) \ | 316 V(Float64InsertLowWord32) \ |
316 V(Float64InsertHighWord32) \ | 317 V(Float64InsertHighWord32) \ |
317 V(LoadStackPointer) \ | 318 V(LoadStackPointer) \ |
318 V(LoadFramePointer) \ | 319 V(LoadFramePointer) \ |
319 V(CheckedLoad) \ | 320 V(CheckedLoad) \ |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 } | 397 } |
397 }; | 398 }; |
398 | 399 |
399 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 400 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
400 | 401 |
401 } // namespace compiler | 402 } // namespace compiler |
402 } // namespace internal | 403 } // namespace internal |
403 } // namespace v8 | 404 } // namespace v8 |
404 | 405 |
405 #endif // V8_COMPILER_OPCODES_H_ | 406 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |