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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 V(ChangeTaggedToBit) \ | 235 V(ChangeTaggedToBit) \ |
236 V(ChangeBitToTagged) \ | 236 V(ChangeBitToTagged) \ |
237 V(CheckBounds) \ | 237 V(CheckBounds) \ |
238 V(CheckedUint32ToInt32) \ | 238 V(CheckedUint32ToInt32) \ |
239 V(CheckedFloat64ToInt32) \ | 239 V(CheckedFloat64ToInt32) \ |
240 V(CheckedTaggedToInt32) \ | 240 V(CheckedTaggedToInt32) \ |
241 V(CheckedTaggedToFloat64) \ | 241 V(CheckedTaggedToFloat64) \ |
242 V(CheckFloat64Hole) \ | 242 V(CheckFloat64Hole) \ |
243 V(CheckTaggedHole) \ | 243 V(CheckTaggedHole) \ |
244 V(CheckIf) \ | 244 V(CheckIf) \ |
| 245 V(CheckUnless) \ |
245 V(TruncateTaggedToWord32) \ | 246 V(TruncateTaggedToWord32) \ |
246 V(TruncateTaggedToFloat64) \ | 247 V(TruncateTaggedToFloat64) \ |
247 V(Allocate) \ | 248 V(Allocate) \ |
248 V(LoadField) \ | 249 V(LoadField) \ |
249 V(LoadBuffer) \ | 250 V(LoadBuffer) \ |
250 V(LoadElement) \ | 251 V(LoadElement) \ |
251 V(StoreField) \ | 252 V(StoreField) \ |
252 V(StoreBuffer) \ | 253 V(StoreBuffer) \ |
253 V(StoreElement) \ | 254 V(StoreElement) \ |
254 V(ObjectIsCallable) \ | 255 V(ObjectIsCallable) \ |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 } | 682 } |
682 }; | 683 }; |
683 | 684 |
684 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 685 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
685 | 686 |
686 } // namespace compiler | 687 } // namespace compiler |
687 } // namespace internal | 688 } // namespace internal |
688 } // namespace v8 | 689 } // namespace v8 |
689 | 690 |
690 #endif // V8_COMPILER_OPCODES_H_ | 691 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |