| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 V(Float32LessThan) \ | 220 V(Float32LessThan) \ |
| 221 V(Float32LessThanOrEqual) \ | 221 V(Float32LessThanOrEqual) \ |
| 222 V(Float64Equal) \ | 222 V(Float64Equal) \ |
| 223 V(Float64LessThan) \ | 223 V(Float64LessThan) \ |
| 224 V(Float64LessThanOrEqual) | 224 V(Float64LessThanOrEqual) |
| 225 | 225 |
| 226 #define MACHINE_OP_LIST(V) \ | 226 #define MACHINE_OP_LIST(V) \ |
| 227 MACHINE_COMPARE_BINOP_LIST(V) \ | 227 MACHINE_COMPARE_BINOP_LIST(V) \ |
| 228 V(Load) \ | 228 V(Load) \ |
| 229 V(Store) \ | 229 V(Store) \ |
| 230 V(StackSlot) \ | |
| 231 V(Word32And) \ | 230 V(Word32And) \ |
| 232 V(Word32Or) \ | 231 V(Word32Or) \ |
| 233 V(Word32Xor) \ | 232 V(Word32Xor) \ |
| 234 V(Word32Shl) \ | 233 V(Word32Shl) \ |
| 235 V(Word32Shr) \ | 234 V(Word32Shr) \ |
| 236 V(Word32Sar) \ | 235 V(Word32Sar) \ |
| 237 V(Word32Ror) \ | 236 V(Word32Ror) \ |
| 238 V(Word32Clz) \ | 237 V(Word32Clz) \ |
| 239 V(Word32Ctz) \ | 238 V(Word32Ctz) \ |
| 240 V(Word32Popcnt) \ | 239 V(Word32Popcnt) \ |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 } | 403 } |
| 405 }; | 404 }; |
| 406 | 405 |
| 407 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 406 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 408 | 407 |
| 409 } // namespace compiler | 408 } // namespace compiler |
| 410 } // namespace internal | 409 } // namespace internal |
| 411 } // namespace v8 | 410 } // namespace v8 |
| 412 | 411 |
| 413 #endif // V8_COMPILER_OPCODES_H_ | 412 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |