| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 V(LoadBuffer) \ | 255 V(LoadBuffer) \ |
| 256 V(LoadElement) \ | 256 V(LoadElement) \ |
| 257 V(StoreField) \ | 257 V(StoreField) \ |
| 258 V(StoreBuffer) \ | 258 V(StoreBuffer) \ |
| 259 V(StoreElement) \ | 259 V(StoreElement) \ |
| 260 V(ObjectIsCallable) \ | 260 V(ObjectIsCallable) \ |
| 261 V(ObjectIsNumber) \ | 261 V(ObjectIsNumber) \ |
| 262 V(ObjectIsReceiver) \ | 262 V(ObjectIsReceiver) \ |
| 263 V(ObjectIsSmi) \ | 263 V(ObjectIsSmi) \ |
| 264 V(ObjectIsString) \ | 264 V(ObjectIsString) \ |
| 265 V(ObjectIsUndetectable) \ | 265 V(ObjectIsUndetectable) |
| 266 V(TypeGuard) | |
| 267 | 266 |
| 268 // Opcodes for Machine-level operators. | 267 // Opcodes for Machine-level operators. |
| 269 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 268 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
| 270 V(Word32Equal) \ | 269 V(Word32Equal) \ |
| 271 V(Word64Equal) \ | 270 V(Word64Equal) \ |
| 272 V(Int32LessThan) \ | 271 V(Int32LessThan) \ |
| 273 V(Int32LessThanOrEqual) \ | 272 V(Int32LessThanOrEqual) \ |
| 274 V(Uint32LessThan) \ | 273 V(Uint32LessThan) \ |
| 275 V(Uint32LessThanOrEqual) \ | 274 V(Uint32LessThanOrEqual) \ |
| 276 V(Int64LessThan) \ | 275 V(Int64LessThan) \ |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 } | 688 } |
| 690 }; | 689 }; |
| 691 | 690 |
| 692 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 691 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 693 | 692 |
| 694 } // namespace compiler | 693 } // namespace compiler |
| 695 } // namespace internal | 694 } // namespace internal |
| 696 } // namespace v8 | 695 } // namespace v8 |
| 697 | 696 |
| 698 #endif // V8_COMPILER_OPCODES_H_ | 697 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |