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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 V(Float64Add) \ | 291 V(Float64Add) \ |
292 V(Float64Sub) \ | 292 V(Float64Sub) \ |
293 V(Float64Mul) \ | 293 V(Float64Mul) \ |
294 V(Float64Div) \ | 294 V(Float64Div) \ |
295 V(Float64Mod) \ | 295 V(Float64Mod) \ |
296 V(Float64Max) \ | 296 V(Float64Max) \ |
297 V(Float64Min) \ | 297 V(Float64Min) \ |
298 V(Float64Abs) \ | 298 V(Float64Abs) \ |
299 V(Float64Sqrt) \ | 299 V(Float64Sqrt) \ |
300 V(Float64RoundDown) \ | 300 V(Float64RoundDown) \ |
| 301 V(Float64RoundUp) \ |
301 V(Float64RoundTruncate) \ | 302 V(Float64RoundTruncate) \ |
302 V(Float64RoundTiesAway) \ | 303 V(Float64RoundTiesAway) \ |
303 V(Float64ExtractLowWord32) \ | 304 V(Float64ExtractLowWord32) \ |
304 V(Float64ExtractHighWord32) \ | 305 V(Float64ExtractHighWord32) \ |
305 V(Float64InsertLowWord32) \ | 306 V(Float64InsertLowWord32) \ |
306 V(Float64InsertHighWord32) \ | 307 V(Float64InsertHighWord32) \ |
307 V(LoadStackPointer) \ | 308 V(LoadStackPointer) \ |
308 V(LoadFramePointer) \ | 309 V(LoadFramePointer) \ |
309 V(CheckedLoad) \ | 310 V(CheckedLoad) \ |
310 V(CheckedStore) | 311 V(CheckedStore) |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 } | 387 } |
387 }; | 388 }; |
388 | 389 |
389 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 390 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
390 | 391 |
391 } // namespace compiler | 392 } // namespace compiler |
392 } // namespace internal | 393 } // namespace internal |
393 } // namespace v8 | 394 } // namespace v8 |
394 | 395 |
395 #endif // V8_COMPILER_OPCODES_H_ | 396 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |