| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 V(BooleanNot) \ | 165 V(BooleanNot) \ |
| 166 V(BooleanToNumber) \ | 166 V(BooleanToNumber) \ |
| 167 V(NumberAdd) \ | 167 V(NumberAdd) \ |
| 168 V(NumberSubtract) \ | 168 V(NumberSubtract) \ |
| 169 V(NumberMultiply) \ | 169 V(NumberMultiply) \ |
| 170 V(NumberDivide) \ | 170 V(NumberDivide) \ |
| 171 V(NumberModulus) \ | 171 V(NumberModulus) \ |
| 172 V(NumberToInt32) \ | 172 V(NumberToInt32) \ |
| 173 V(NumberToUint32) \ | 173 V(NumberToUint32) \ |
| 174 V(PlainPrimitiveToNumber) \ | 174 V(PlainPrimitiveToNumber) \ |
| 175 V(StringAdd) \ | |
| 176 V(ChangeTaggedToInt32) \ | 175 V(ChangeTaggedToInt32) \ |
| 177 V(ChangeTaggedToUint32) \ | 176 V(ChangeTaggedToUint32) \ |
| 178 V(ChangeTaggedToFloat64) \ | 177 V(ChangeTaggedToFloat64) \ |
| 179 V(ChangeInt32ToTagged) \ | 178 V(ChangeInt32ToTagged) \ |
| 180 V(ChangeUint32ToTagged) \ | 179 V(ChangeUint32ToTagged) \ |
| 181 V(ChangeFloat64ToTagged) \ | 180 V(ChangeFloat64ToTagged) \ |
| 182 V(ChangeBoolToBit) \ | 181 V(ChangeBoolToBit) \ |
| 183 V(ChangeBitToBool) \ | 182 V(ChangeBitToBool) \ |
| 184 V(Allocate) \ | 183 V(Allocate) \ |
| 185 V(LoadField) \ | 184 V(LoadField) \ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 } | 355 } |
| 357 }; | 356 }; |
| 358 | 357 |
| 359 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 358 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 360 | 359 |
| 361 } // namespace compiler | 360 } // namespace compiler |
| 362 } // namespace internal | 361 } // namespace internal |
| 363 } // namespace v8 | 362 } // namespace v8 |
| 364 | 363 |
| 365 #endif // V8_COMPILER_OPCODES_H_ | 364 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |