| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 V(Float64Abs) \ | 268 V(Float64Abs) \ |
| 269 V(Float64Sqrt) \ | 269 V(Float64Sqrt) \ |
| 270 V(Float64RoundDown) \ | 270 V(Float64RoundDown) \ |
| 271 V(Float64RoundTruncate) \ | 271 V(Float64RoundTruncate) \ |
| 272 V(Float64RoundTiesAway) \ | 272 V(Float64RoundTiesAway) \ |
| 273 V(Float64ExtractLowWord32) \ | 273 V(Float64ExtractLowWord32) \ |
| 274 V(Float64ExtractHighWord32) \ | 274 V(Float64ExtractHighWord32) \ |
| 275 V(Float64InsertLowWord32) \ | 275 V(Float64InsertLowWord32) \ |
| 276 V(Float64InsertHighWord32) \ | 276 V(Float64InsertHighWord32) \ |
| 277 V(LoadStackPointer) \ | 277 V(LoadStackPointer) \ |
| 278 V(LoadFramePointer) \ |
| 278 V(CheckedLoad) \ | 279 V(CheckedLoad) \ |
| 279 V(CheckedStore) | 280 V(CheckedStore) |
| 280 | 281 |
| 281 #define VALUE_OP_LIST(V) \ | 282 #define VALUE_OP_LIST(V) \ |
| 282 COMMON_OP_LIST(V) \ | 283 COMMON_OP_LIST(V) \ |
| 283 SIMPLIFIED_OP_LIST(V) \ | 284 SIMPLIFIED_OP_LIST(V) \ |
| 284 MACHINE_OP_LIST(V) \ | 285 MACHINE_OP_LIST(V) \ |
| 285 JS_OP_LIST(V) | 286 JS_OP_LIST(V) |
| 286 | 287 |
| 287 // The combination of all operators at all levels and the common operators. | 288 // The combination of all operators at all levels and the common operators. |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 } | 351 } |
| 351 }; | 352 }; |
| 352 | 353 |
| 353 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 354 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 354 | 355 |
| 355 } // namespace compiler | 356 } // namespace compiler |
| 356 } // namespace internal | 357 } // namespace internal |
| 357 } // namespace v8 | 358 } // namespace v8 |
| 358 | 359 |
| 359 #endif // V8_COMPILER_OPCODES_H_ | 360 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |