| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 V(Load) \ | 219 V(Load) \ |
| 220 V(Store) \ | 220 V(Store) \ |
| 221 V(Word32And) \ | 221 V(Word32And) \ |
| 222 V(Word32Or) \ | 222 V(Word32Or) \ |
| 223 V(Word32Xor) \ | 223 V(Word32Xor) \ |
| 224 V(Word32Shl) \ | 224 V(Word32Shl) \ |
| 225 V(Word32Shr) \ | 225 V(Word32Shr) \ |
| 226 V(Word32Sar) \ | 226 V(Word32Sar) \ |
| 227 V(Word32Ror) \ | 227 V(Word32Ror) \ |
| 228 V(Word32Clz) \ | 228 V(Word32Clz) \ |
| 229 V(Word32Ctz) \ |
| 229 V(Word64And) \ | 230 V(Word64And) \ |
| 230 V(Word64Or) \ | 231 V(Word64Or) \ |
| 231 V(Word64Xor) \ | 232 V(Word64Xor) \ |
| 232 V(Word64Shl) \ | 233 V(Word64Shl) \ |
| 233 V(Word64Shr) \ | 234 V(Word64Shr) \ |
| 234 V(Word64Sar) \ | 235 V(Word64Sar) \ |
| 235 V(Word64Ror) \ | 236 V(Word64Ror) \ |
| 236 V(Int32Add) \ | 237 V(Int32Add) \ |
| 237 V(Int32AddWithOverflow) \ | 238 V(Int32AddWithOverflow) \ |
| 238 V(Int32Sub) \ | 239 V(Int32Sub) \ |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 } | 367 } |
| 367 }; | 368 }; |
| 368 | 369 |
| 369 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 370 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 370 | 371 |
| 371 } // namespace compiler | 372 } // namespace compiler |
| 372 } // namespace internal | 373 } // namespace internal |
| 373 } // namespace v8 | 374 } // namespace v8 |
| 374 | 375 |
| 375 #endif // V8_COMPILER_OPCODES_H_ | 376 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |