| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 V(ChangeFloat64ToTagged) \ | 185 V(ChangeFloat64ToTagged) \ |
| 186 V(ChangeBoolToBit) \ | 186 V(ChangeBoolToBit) \ |
| 187 V(ChangeBitToBool) \ | 187 V(ChangeBitToBool) \ |
| 188 V(Allocate) \ | 188 V(Allocate) \ |
| 189 V(LoadField) \ | 189 V(LoadField) \ |
| 190 V(LoadBuffer) \ | 190 V(LoadBuffer) \ |
| 191 V(LoadElement) \ | 191 V(LoadElement) \ |
| 192 V(StoreField) \ | 192 V(StoreField) \ |
| 193 V(StoreBuffer) \ | 193 V(StoreBuffer) \ |
| 194 V(StoreElement) \ | 194 V(StoreElement) \ |
| 195 V(ObjectIsSmi) \ | 195 V(ObjectIsSmi) |
| 196 V(ObjectIsNonNegativeSmi) | |
| 197 | 196 |
| 198 // Opcodes for Machine-level operators. | 197 // Opcodes for Machine-level operators. |
| 199 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 198 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
| 200 V(Word32Equal) \ | 199 V(Word32Equal) \ |
| 201 V(Word64Equal) \ | 200 V(Word64Equal) \ |
| 202 V(Int32LessThan) \ | 201 V(Int32LessThan) \ |
| 203 V(Int32LessThanOrEqual) \ | 202 V(Int32LessThanOrEqual) \ |
| 204 V(Uint32LessThan) \ | 203 V(Uint32LessThan) \ |
| 205 V(Uint32LessThanOrEqual) \ | 204 V(Uint32LessThanOrEqual) \ |
| 206 V(Int64LessThan) \ | 205 V(Int64LessThan) \ |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 } | 361 } |
| 363 }; | 362 }; |
| 364 | 363 |
| 365 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 364 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 366 | 365 |
| 367 } // namespace compiler | 366 } // namespace compiler |
| 368 } // namespace internal | 367 } // namespace internal |
| 369 } // namespace v8 | 368 } // namespace v8 |
| 370 | 369 |
| 371 #endif // V8_COMPILER_OPCODES_H_ | 370 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |