| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 V(NumberToUint32) \ | 187 V(NumberToUint32) \ |
| 188 V(NumberIsHoleNaN) \ | 188 V(NumberIsHoleNaN) \ |
| 189 V(PlainPrimitiveToNumber) \ | 189 V(PlainPrimitiveToNumber) \ |
| 190 V(StringToNumber) \ | 190 V(StringToNumber) \ |
| 191 V(ChangeTaggedToInt32) \ | 191 V(ChangeTaggedToInt32) \ |
| 192 V(ChangeTaggedToUint32) \ | 192 V(ChangeTaggedToUint32) \ |
| 193 V(ChangeTaggedToFloat64) \ | 193 V(ChangeTaggedToFloat64) \ |
| 194 V(ChangeInt32ToTagged) \ | 194 V(ChangeInt32ToTagged) \ |
| 195 V(ChangeUint32ToTagged) \ | 195 V(ChangeUint32ToTagged) \ |
| 196 V(ChangeFloat64ToTagged) \ | 196 V(ChangeFloat64ToTagged) \ |
| 197 V(ChangeTaggedToFloat32x4) \ |
| 198 V(ChangeTaggedToInt32x4) \ |
| 199 V(ChangeTaggedToUint32x4) \ |
| 200 V(ChangeTaggedToBool32x4) \ |
| 201 V(ChangeTaggedToInt16x8) \ |
| 202 V(ChangeTaggedToUint16x8) \ |
| 203 V(ChangeTaggedToBool16x8) \ |
| 204 V(ChangeTaggedToInt8x16) \ |
| 205 V(ChangeTaggedToUint8x16) \ |
| 206 V(ChangeTaggedToBool8x16) \ |
| 207 V(ChangeFloat32x4ToTagged) \ |
| 208 V(ChangeInt32x4ToTagged) \ |
| 209 V(ChangeUint32x4ToTagged) \ |
| 210 V(ChangeBool32x4ToTagged) \ |
| 211 V(ChangeInt16x8ToTagged) \ |
| 212 V(ChangeUint16x8ToTagged) \ |
| 213 V(ChangeBool16x8ToTagged) \ |
| 214 V(ChangeInt8x16ToTagged) \ |
| 215 V(ChangeUint8x16ToTagged) \ |
| 216 V(ChangeBool8x16ToTagged) \ |
| 197 V(ChangeBoolToBit) \ | 217 V(ChangeBoolToBit) \ |
| 198 V(ChangeBitToBool) \ | 218 V(ChangeBitToBool) \ |
| 199 V(Allocate) \ | 219 V(Allocate) \ |
| 200 V(LoadField) \ | 220 V(LoadField) \ |
| 201 V(LoadBuffer) \ | 221 V(LoadBuffer) \ |
| 202 V(LoadElement) \ | 222 V(LoadElement) \ |
| 203 V(StoreField) \ | 223 V(StoreField) \ |
| 204 V(StoreBuffer) \ | 224 V(StoreBuffer) \ |
| 205 V(StoreElement) \ | 225 V(StoreElement) \ |
| 206 V(ObjectIsNumber) \ | 226 V(ObjectIsNumber) \ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 } | 438 } |
| 419 }; | 439 }; |
| 420 | 440 |
| 421 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 441 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 422 | 442 |
| 423 } // namespace compiler | 443 } // namespace compiler |
| 424 } // namespace internal | 444 } // namespace internal |
| 425 } // namespace v8 | 445 } // namespace v8 |
| 426 | 446 |
| 427 #endif // V8_COMPILER_OPCODES_H_ | 447 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |