| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 V(Float32Equal) \ | 247 V(Float32Equal) \ |
| 248 V(Float32LessThan) \ | 248 V(Float32LessThan) \ |
| 249 V(Float32LessThanOrEqual) \ | 249 V(Float32LessThanOrEqual) \ |
| 250 V(Float64Equal) \ | 250 V(Float64Equal) \ |
| 251 V(Float64LessThan) \ | 251 V(Float64LessThan) \ |
| 252 V(Float64LessThanOrEqual) | 252 V(Float64LessThanOrEqual) |
| 253 | 253 |
| 254 #define MACHINE_OP_LIST(V) \ | 254 #define MACHINE_OP_LIST(V) \ |
| 255 MACHINE_COMPARE_BINOP_LIST(V) \ | 255 MACHINE_COMPARE_BINOP_LIST(V) \ |
| 256 V(DebugBreak) \ | 256 V(DebugBreak) \ |
| 257 V(Comment) \ |
| 257 V(Load) \ | 258 V(Load) \ |
| 258 V(Store) \ | 259 V(Store) \ |
| 259 V(StackSlot) \ | 260 V(StackSlot) \ |
| 260 V(Word32And) \ | 261 V(Word32And) \ |
| 261 V(Word32Or) \ | 262 V(Word32Or) \ |
| 262 V(Word32Xor) \ | 263 V(Word32Xor) \ |
| 263 V(Word32Shl) \ | 264 V(Word32Shl) \ |
| 264 V(Word32Shr) \ | 265 V(Word32Shr) \ |
| 265 V(Word32Sar) \ | 266 V(Word32Sar) \ |
| 266 V(Word32Ror) \ | 267 V(Word32Ror) \ |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 } | 641 } |
| 641 }; | 642 }; |
| 642 | 643 |
| 643 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 644 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 644 | 645 |
| 645 } // namespace compiler | 646 } // namespace compiler |
| 646 } // namespace internal | 647 } // namespace internal |
| 647 } // namespace v8 | 648 } // namespace v8 |
| 648 | 649 |
| 649 #endif // V8_COMPILER_OPCODES_H_ | 650 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |