| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 V(Word32And) \ | 228 V(Word32And) \ |
| 229 V(Word32Or) \ | 229 V(Word32Or) \ |
| 230 V(Word32Xor) \ | 230 V(Word32Xor) \ |
| 231 V(Word32Shl) \ | 231 V(Word32Shl) \ |
| 232 V(Word32Shr) \ | 232 V(Word32Shr) \ |
| 233 V(Word32Sar) \ | 233 V(Word32Sar) \ |
| 234 V(Word32Ror) \ | 234 V(Word32Ror) \ |
| 235 V(Word32Clz) \ | 235 V(Word32Clz) \ |
| 236 V(Word32Ctz) \ | 236 V(Word32Ctz) \ |
| 237 V(Word32Popcnt) \ | 237 V(Word32Popcnt) \ |
| 238 V(Word64Popcnt) \ |
| 238 V(Word64And) \ | 239 V(Word64And) \ |
| 239 V(Word64Or) \ | 240 V(Word64Or) \ |
| 240 V(Word64Xor) \ | 241 V(Word64Xor) \ |
| 241 V(Word64Shl) \ | 242 V(Word64Shl) \ |
| 242 V(Word64Shr) \ | 243 V(Word64Shr) \ |
| 243 V(Word64Sar) \ | 244 V(Word64Sar) \ |
| 244 V(Word64Ror) \ | 245 V(Word64Ror) \ |
| 245 V(Word64Clz) \ | 246 V(Word64Clz) \ |
| 246 V(Word64Ctz) \ | 247 V(Word64Ctz) \ |
| 247 V(Int32Add) \ | 248 V(Int32Add) \ |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 } | 379 } |
| 379 }; | 380 }; |
| 380 | 381 |
| 381 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 382 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 382 | 383 |
| 383 } // namespace compiler | 384 } // namespace compiler |
| 384 } // namespace internal | 385 } // namespace internal |
| 385 } // namespace v8 | 386 } // namespace v8 |
| 386 | 387 |
| 387 #endif // V8_COMPILER_OPCODES_H_ | 388 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |