| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 V(Uint64LessThanOrEqual) \ | 235 V(Uint64LessThanOrEqual) \ |
| 236 V(Float32Equal) \ | 236 V(Float32Equal) \ |
| 237 V(Float32LessThan) \ | 237 V(Float32LessThan) \ |
| 238 V(Float32LessThanOrEqual) \ | 238 V(Float32LessThanOrEqual) \ |
| 239 V(Float64Equal) \ | 239 V(Float64Equal) \ |
| 240 V(Float64LessThan) \ | 240 V(Float64LessThan) \ |
| 241 V(Float64LessThanOrEqual) | 241 V(Float64LessThanOrEqual) |
| 242 | 242 |
| 243 #define MACHINE_OP_LIST(V) \ | 243 #define MACHINE_OP_LIST(V) \ |
| 244 MACHINE_COMPARE_BINOP_LIST(V) \ | 244 MACHINE_COMPARE_BINOP_LIST(V) \ |
| 245 V(DebugBreak) \ |
| 245 V(Load) \ | 246 V(Load) \ |
| 246 V(Store) \ | 247 V(Store) \ |
| 247 V(StackSlot) \ | 248 V(StackSlot) \ |
| 248 V(Word32And) \ | 249 V(Word32And) \ |
| 249 V(Word32Or) \ | 250 V(Word32Or) \ |
| 250 V(Word32Xor) \ | 251 V(Word32Xor) \ |
| 251 V(Word32Shl) \ | 252 V(Word32Shl) \ |
| 252 V(Word32Shr) \ | 253 V(Word32Shr) \ |
| 253 V(Word32Sar) \ | 254 V(Word32Sar) \ |
| 254 V(Word32Ror) \ | 255 V(Word32Ror) \ |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 } | 624 } |
| 624 }; | 625 }; |
| 625 | 626 |
| 626 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 627 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 627 | 628 |
| 628 } // namespace compiler | 629 } // namespace compiler |
| 629 } // namespace internal | 630 } // namespace internal |
| 630 } // namespace v8 | 631 } // namespace v8 |
| 631 | 632 |
| 632 #endif // V8_COMPILER_OPCODES_H_ | 633 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |