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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 V(ChangeTaggedToTaggedSigned) \ | 195 V(ChangeTaggedToTaggedSigned) \ |
196 V(ChangeInt31ToTaggedSigned) \ | 196 V(ChangeInt31ToTaggedSigned) \ |
197 V(ChangeInt32ToTagged) \ | 197 V(ChangeInt32ToTagged) \ |
198 V(ChangeUint32ToTagged) \ | 198 V(ChangeUint32ToTagged) \ |
199 V(ChangeFloat64ToTagged) \ | 199 V(ChangeFloat64ToTagged) \ |
200 V(ChangeFloat64ToTaggedPointer) \ | 200 V(ChangeFloat64ToTaggedPointer) \ |
201 V(ChangeTaggedToBit) \ | 201 V(ChangeTaggedToBit) \ |
202 V(ChangeBitToTagged) \ | 202 V(ChangeBitToTagged) \ |
203 V(TruncateTaggedToWord32) \ | 203 V(TruncateTaggedToWord32) \ |
204 V(TruncateTaggedToFloat64) \ | 204 V(TruncateTaggedToFloat64) \ |
205 V(TruncateTaggedToBit) | 205 V(TruncateTaggedToBit) \ |
| 206 V(TruncateTaggedPointerToBit) |
206 | 207 |
207 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ | 208 #define SIMPLIFIED_CHECKED_OP_LIST(V) \ |
208 V(CheckedInt32Add) \ | 209 V(CheckedInt32Add) \ |
209 V(CheckedInt32Sub) \ | 210 V(CheckedInt32Sub) \ |
210 V(CheckedInt32Div) \ | 211 V(CheckedInt32Div) \ |
211 V(CheckedInt32Mod) \ | 212 V(CheckedInt32Mod) \ |
212 V(CheckedUint32Div) \ | 213 V(CheckedUint32Div) \ |
213 V(CheckedUint32Mod) \ | 214 V(CheckedUint32Mod) \ |
214 V(CheckedInt32Mul) \ | 215 V(CheckedInt32Mul) \ |
215 V(CheckedInt32ToTaggedSigned) \ | 216 V(CheckedInt32ToTaggedSigned) \ |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 } | 790 } |
790 }; | 791 }; |
791 | 792 |
792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 793 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
793 | 794 |
794 } // namespace compiler | 795 } // namespace compiler |
795 } // namespace internal | 796 } // namespace internal |
796 } // namespace v8 | 797 } // namespace v8 |
797 | 798 |
798 #endif // V8_COMPILER_OPCODES_H_ | 799 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |