| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 V(ChangeFloat64ToTagged) \ | 204 V(ChangeFloat64ToTagged) \ |
| 205 V(ChangeBoolToBit) \ | 205 V(ChangeBoolToBit) \ |
| 206 V(ChangeBitToBool) \ | 206 V(ChangeBitToBool) \ |
| 207 V(Allocate) \ | 207 V(Allocate) \ |
| 208 V(LoadField) \ | 208 V(LoadField) \ |
| 209 V(LoadBuffer) \ | 209 V(LoadBuffer) \ |
| 210 V(LoadElement) \ | 210 V(LoadElement) \ |
| 211 V(StoreField) \ | 211 V(StoreField) \ |
| 212 V(StoreBuffer) \ | 212 V(StoreBuffer) \ |
| 213 V(StoreElement) \ | 213 V(StoreElement) \ |
| 214 V(ObjectIsCallable) \ |
| 214 V(ObjectIsNumber) \ | 215 V(ObjectIsNumber) \ |
| 215 V(ObjectIsReceiver) \ | 216 V(ObjectIsReceiver) \ |
| 216 V(ObjectIsSmi) \ | 217 V(ObjectIsSmi) \ |
| 217 V(ObjectIsString) \ | 218 V(ObjectIsString) \ |
| 218 V(ObjectIsUndetectable) | 219 V(ObjectIsUndetectable) |
| 219 | 220 |
| 220 // Opcodes for Machine-level operators. | 221 // Opcodes for Machine-level operators. |
| 221 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 222 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
| 222 V(Word32Equal) \ | 223 V(Word32Equal) \ |
| 223 V(Word64Equal) \ | 224 V(Word64Equal) \ |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 } | 430 } |
| 430 }; | 431 }; |
| 431 | 432 |
| 432 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 433 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 433 | 434 |
| 434 } // namespace compiler | 435 } // namespace compiler |
| 435 } // namespace internal | 436 } // namespace internal |
| 436 } // namespace v8 | 437 } // namespace v8 |
| 437 | 438 |
| 438 #endif // V8_COMPILER_OPCODES_H_ | 439 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |