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