| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 V(LoadStackPointer) \ | 344 V(LoadStackPointer) \ |
| 345 V(LoadFramePointer) \ | 345 V(LoadFramePointer) \ |
| 346 V(LoadParentFramePointer) \ | 346 V(LoadParentFramePointer) \ |
| 347 V(CheckedLoad) \ | 347 V(CheckedLoad) \ |
| 348 V(CheckedStore) \ | 348 V(CheckedStore) \ |
| 349 V(Int32PairAdd) \ | 349 V(Int32PairAdd) \ |
| 350 V(Int32PairSub) \ | 350 V(Int32PairSub) \ |
| 351 V(Int32PairMul) \ | 351 V(Int32PairMul) \ |
| 352 V(Word32PairShl) \ | 352 V(Word32PairShl) \ |
| 353 V(Word32PairShr) \ | 353 V(Word32PairShr) \ |
| 354 V(Word32PairSar) | 354 V(Word32PairSar) \ |
| 355 V(AtomicLoad) |
| 355 | 356 |
| 356 #define VALUE_OP_LIST(V) \ | 357 #define VALUE_OP_LIST(V) \ |
| 357 COMMON_OP_LIST(V) \ | 358 COMMON_OP_LIST(V) \ |
| 358 SIMPLIFIED_OP_LIST(V) \ | 359 SIMPLIFIED_OP_LIST(V) \ |
| 359 MACHINE_OP_LIST(V) \ | 360 MACHINE_OP_LIST(V) \ |
| 360 JS_OP_LIST(V) | 361 JS_OP_LIST(V) |
| 361 | 362 |
| 362 // The combination of all operators at all levels and the common operators. | 363 // The combination of all operators at all levels and the common operators. |
| 363 #define ALL_OP_LIST(V) \ | 364 #define ALL_OP_LIST(V) \ |
| 364 CONTROL_OP_LIST(V) \ | 365 CONTROL_OP_LIST(V) \ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 } | 431 } |
| 431 }; | 432 }; |
| 432 | 433 |
| 433 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 434 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 434 | 435 |
| 435 } // namespace compiler | 436 } // namespace compiler |
| 436 } // namespace internal | 437 } // namespace internal |
| 437 } // namespace v8 | 438 } // namespace v8 |
| 438 | 439 |
| 439 #endif // V8_COMPILER_OPCODES_H_ | 440 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |