| OLD | NEW |
| 1 //===- subzero/src/IceTypes.h - Primitive ICE types -------------*- C++ -*-===// | 1 //===- subzero/src/IceTypes.h - Primitive ICE types -------------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file declares a few properties of the primitive types allowed | 10 // This file declares a few properties of the primitive types allowed |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 bool isIntegerType(Type Ty); // scalar or vector | 52 bool isIntegerType(Type Ty); // scalar or vector |
| 53 bool isScalarIntegerType(Type Ty); | 53 bool isScalarIntegerType(Type Ty); |
| 54 bool isVectorIntegerType(Type Ty); | 54 bool isVectorIntegerType(Type Ty); |
| 55 bool isIntegerArithmeticType(Type Ty); | 55 bool isIntegerArithmeticType(Type Ty); |
| 56 | 56 |
| 57 bool isFloatingType(Type Ty); // scalar or vector | 57 bool isFloatingType(Type Ty); // scalar or vector |
| 58 bool isScalarFloatingType(Type Ty); | 58 bool isScalarFloatingType(Type Ty); |
| 59 bool isVectorFloatingType(Type Ty); | 59 bool isVectorFloatingType(Type Ty); |
| 60 | 60 |
| 61 /// Returns type generated by applying the compare instructions (icmp and fcmp) |
| 62 /// to arguments of the given type. Returns IceType_void if compare is not |
| 63 /// allowed. |
| 64 Type getCompareResultType(Type Ty); |
| 65 |
| 61 template <typename StreamType> | 66 template <typename StreamType> |
| 62 inline StreamType &operator<<(StreamType &Str, const Type &Ty) { | 67 inline StreamType &operator<<(StreamType &Str, const Type &Ty) { |
| 63 Str << typeString(Ty); | 68 Str << typeString(Ty); |
| 64 return Str; | 69 return Str; |
| 65 } | 70 } |
| 66 | 71 |
| 67 } // end of namespace Ice | 72 } // end of namespace Ice |
| 68 | 73 |
| 69 #endif // SUBZERO_SRC_ICETYPES_H | 74 #endif // SUBZERO_SRC_ICETYPES_H |
| OLD | NEW |