| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 V(ChangeBoolToBit) \ | 195 V(ChangeBoolToBit) \ |
| 196 V(ChangeBitToBool) \ | 196 V(ChangeBitToBool) \ |
| 197 V(Allocate) \ | 197 V(Allocate) \ |
| 198 V(LoadField) \ | 198 V(LoadField) \ |
| 199 V(LoadBuffer) \ | 199 V(LoadBuffer) \ |
| 200 V(LoadElement) \ | 200 V(LoadElement) \ |
| 201 V(StoreField) \ | 201 V(StoreField) \ |
| 202 V(StoreBuffer) \ | 202 V(StoreBuffer) \ |
| 203 V(StoreElement) \ | 203 V(StoreElement) \ |
| 204 V(ObjectIsNumber) \ | 204 V(ObjectIsNumber) \ |
| 205 V(ObjectIsReceiver) \ |
| 205 V(ObjectIsSmi) | 206 V(ObjectIsSmi) |
| 206 | 207 |
| 207 // Opcodes for Machine-level operators. | 208 // Opcodes for Machine-level operators. |
| 208 #define MACHINE_COMPARE_BINOP_LIST(V) \ | 209 #define MACHINE_COMPARE_BINOP_LIST(V) \ |
| 209 V(Word32Equal) \ | 210 V(Word32Equal) \ |
| 210 V(Word64Equal) \ | 211 V(Word64Equal) \ |
| 211 V(Int32LessThan) \ | 212 V(Int32LessThan) \ |
| 212 V(Int32LessThanOrEqual) \ | 213 V(Int32LessThanOrEqual) \ |
| 213 V(Uint32LessThan) \ | 214 V(Uint32LessThan) \ |
| 214 V(Uint32LessThanOrEqual) \ | 215 V(Uint32LessThanOrEqual) \ |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 } | 405 } |
| 405 }; | 406 }; |
| 406 | 407 |
| 407 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 408 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 408 | 409 |
| 409 } // namespace compiler | 410 } // namespace compiler |
| 410 } // namespace internal | 411 } // namespace internal |
| 411 } // namespace v8 | 412 } // namespace v8 |
| 412 | 413 |
| 413 #endif // V8_COMPILER_OPCODES_H_ | 414 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |