| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 V(Float64ExtractHighWord32) \ | 329 V(Float64ExtractHighWord32) \ |
| 330 V(Float64InsertLowWord32) \ | 330 V(Float64InsertLowWord32) \ |
| 331 V(Float64InsertHighWord32) \ | 331 V(Float64InsertHighWord32) \ |
| 332 V(LoadStackPointer) \ | 332 V(LoadStackPointer) \ |
| 333 V(LoadFramePointer) \ | 333 V(LoadFramePointer) \ |
| 334 V(LoadParentFramePointer) \ | 334 V(LoadParentFramePointer) \ |
| 335 V(CheckedLoad) \ | 335 V(CheckedLoad) \ |
| 336 V(CheckedStore) \ | 336 V(CheckedStore) \ |
| 337 V(Int32PairAdd) \ | 337 V(Int32PairAdd) \ |
| 338 V(Int32PairSub) \ | 338 V(Int32PairSub) \ |
| 339 V(Int32PairMul) \ |
| 339 V(Word32PairShl) \ | 340 V(Word32PairShl) \ |
| 340 V(Word32PairShr) \ | 341 V(Word32PairShr) \ |
| 341 V(Word32PairSar) | 342 V(Word32PairSar) |
| 342 | 343 |
| 343 #define VALUE_OP_LIST(V) \ | 344 #define VALUE_OP_LIST(V) \ |
| 344 COMMON_OP_LIST(V) \ | 345 COMMON_OP_LIST(V) \ |
| 345 SIMPLIFIED_OP_LIST(V) \ | 346 SIMPLIFIED_OP_LIST(V) \ |
| 346 MACHINE_OP_LIST(V) \ | 347 MACHINE_OP_LIST(V) \ |
| 347 JS_OP_LIST(V) | 348 JS_OP_LIST(V) |
| 348 | 349 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 } | 418 } |
| 418 }; | 419 }; |
| 419 | 420 |
| 420 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 421 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 421 | 422 |
| 422 } // namespace compiler | 423 } // namespace compiler |
| 423 } // namespace internal | 424 } // namespace internal |
| 424 } // namespace v8 | 425 } // namespace v8 |
| 425 | 426 |
| 426 #endif // V8_COMPILER_OPCODES_H_ | 427 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |