Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | //===- ConstantHandling.cpp - Implement ConstantHandling.h ----------------===// |
| 2 | // |
| 3 | // This file implements the various intrinsic operations, on constant values. |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
Chris Lattner | 65b529f | 2002-04-08 20:18:09 +0000 | [diff] [blame] | 7 | #include "llvm/ConstantHandling.h" |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 8 | #include <cmath> |
Chris Lattner | d42d492 | 2001-06-30 04:36:40 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 10 | AnnotationID ConstRules::AID(AnnotationManager::getID("opt::ConstRules", |
| 11 | &ConstRules::find)); |
| 12 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | // TemplateRules Class |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | // |
| 17 | // TemplateRules - Implement a subclass of ConstRules that provides all |
| 18 | // operations as noops. All other rules classes inherit from this class so |
| 19 | // that if functionality is needed in the future, it can simply be added here |
| 20 | // and to ConstRules without changing anything else... |
| 21 | // |
| 22 | // This class also provides subclasses with typesafe implementations of methods |
| 23 | // so that don't have to do type casting. |
| 24 | // |
| 25 | template<class ArgType, class SubClassName> |
| 26 | class TemplateRules : public ConstRules { |
| 27 | |
| 28 | //===--------------------------------------------------------------------===// |
| 29 | // Redirecting functions that cast to the appropriate types |
| 30 | //===--------------------------------------------------------------------===// |
| 31 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 32 | virtual Constant *op_not(const Constant *V) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 33 | return SubClassName::Not((const ArgType *)V); |
| 34 | } |
| 35 | |
| 36 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 37 | virtual Constant *add(const Constant *V1, |
| 38 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 39 | return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2); |
| 40 | } |
| 41 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 42 | virtual Constant *sub(const Constant *V1, |
| 43 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 44 | return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2); |
| 45 | } |
| 46 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 47 | virtual Constant *mul(const Constant *V1, |
| 48 | const Constant *V2) const { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 49 | return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2); |
| 50 | } |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 51 | virtual Constant *div(const Constant *V1, |
| 52 | const Constant *V2) const { |
| 53 | return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2); |
| 54 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 55 | virtual Constant *rem(const Constant *V1, |
| 56 | const Constant *V2) const { |
| 57 | return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2); |
| 58 | } |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame^] | 59 | virtual Constant *shl(const Constant *V1, |
| 60 | const Constant *V2) const { |
| 61 | return SubClassName::Shl((const ArgType *)V1, (const ArgType *)V2); |
| 62 | } |
| 63 | virtual Constant *shr(const Constant *V1, |
| 64 | const Constant *V2) const { |
| 65 | return SubClassName::Shr((const ArgType *)V1, (const ArgType *)V2); |
| 66 | } |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 68 | virtual ConstantBool *lessthan(const Constant *V1, |
| 69 | const Constant *V2) const { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 70 | return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2); |
| 71 | } |
| 72 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 73 | // Casting operators. ick |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 74 | virtual ConstantBool *castToBool(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 75 | return SubClassName::CastToBool((const ArgType*)V); |
| 76 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 77 | virtual ConstantSInt *castToSByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 78 | return SubClassName::CastToSByte((const ArgType*)V); |
| 79 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 80 | virtual ConstantUInt *castToUByte(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 81 | return SubClassName::CastToUByte((const ArgType*)V); |
| 82 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 83 | virtual ConstantSInt *castToShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 84 | return SubClassName::CastToShort((const ArgType*)V); |
| 85 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 86 | virtual ConstantUInt *castToUShort(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 87 | return SubClassName::CastToUShort((const ArgType*)V); |
| 88 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 89 | virtual ConstantSInt *castToInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 90 | return SubClassName::CastToInt((const ArgType*)V); |
| 91 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 92 | virtual ConstantUInt *castToUInt(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 93 | return SubClassName::CastToUInt((const ArgType*)V); |
| 94 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 95 | virtual ConstantSInt *castToLong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 96 | return SubClassName::CastToLong((const ArgType*)V); |
| 97 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 98 | virtual ConstantUInt *castToULong(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 99 | return SubClassName::CastToULong((const ArgType*)V); |
| 100 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 101 | virtual ConstantFP *castToFloat(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 102 | return SubClassName::CastToFloat((const ArgType*)V); |
| 103 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 104 | virtual ConstantFP *castToDouble(const Constant *V) const { |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 105 | return SubClassName::CastToDouble((const ArgType*)V); |
| 106 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 107 | virtual ConstantPointer *castToPointer(const Constant *V, |
| 108 | const PointerType *Ty) const { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 109 | return SubClassName::CastToPointer((const ArgType*)V, Ty); |
| 110 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 112 | //===--------------------------------------------------------------------===// |
| 113 | // Default "noop" implementations |
| 114 | //===--------------------------------------------------------------------===// |
| 115 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 116 | inline static Constant *Not(const ArgType *V) { return 0; } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 117 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 118 | inline static Constant *Add(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 119 | return 0; |
| 120 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 121 | inline static Constant *Sub(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 122 | return 0; |
| 123 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 124 | inline static Constant *Mul(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 125 | return 0; |
| 126 | } |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 127 | inline static Constant *Div(const ArgType *V1, const ArgType *V2) { |
| 128 | return 0; |
| 129 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 130 | inline static Constant *Rem(const ArgType *V1, const ArgType *V2) { |
| 131 | return 0; |
| 132 | } |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame^] | 133 | inline static Constant *Shl(const ArgType *V1, const ArgType *V2) { |
| 134 | return 0; |
| 135 | } |
| 136 | inline static Constant *Shr(const ArgType *V1, const ArgType *V2) { |
| 137 | return 0; |
| 138 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 139 | inline static ConstantBool *LessThan(const ArgType *V1, const ArgType *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 140 | return 0; |
| 141 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 142 | |
| 143 | // Casting operators. ick |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 144 | inline static ConstantBool *CastToBool (const Constant *V) { return 0; } |
| 145 | inline static ConstantSInt *CastToSByte (const Constant *V) { return 0; } |
| 146 | inline static ConstantUInt *CastToUByte (const Constant *V) { return 0; } |
| 147 | inline static ConstantSInt *CastToShort (const Constant *V) { return 0; } |
| 148 | inline static ConstantUInt *CastToUShort(const Constant *V) { return 0; } |
| 149 | inline static ConstantSInt *CastToInt (const Constant *V) { return 0; } |
| 150 | inline static ConstantUInt *CastToUInt (const Constant *V) { return 0; } |
| 151 | inline static ConstantSInt *CastToLong (const Constant *V) { return 0; } |
| 152 | inline static ConstantUInt *CastToULong (const Constant *V) { return 0; } |
| 153 | inline static ConstantFP *CastToFloat (const Constant *V) { return 0; } |
| 154 | inline static ConstantFP *CastToDouble(const Constant *V) { return 0; } |
| 155 | inline static ConstantPointer *CastToPointer(const Constant *, |
| 156 | const PointerType *) {return 0;} |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | |
| 160 | |
| 161 | //===----------------------------------------------------------------------===// |
| 162 | // EmptyRules Class |
| 163 | //===----------------------------------------------------------------------===// |
| 164 | // |
| 165 | // EmptyRules provides a concrete base class of ConstRules that does nothing |
| 166 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 167 | struct EmptyRules : public TemplateRules<Constant, EmptyRules> { |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 168 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 169 | |
| 170 | |
| 171 | |
| 172 | //===----------------------------------------------------------------------===// |
| 173 | // BoolRules Class |
| 174 | //===----------------------------------------------------------------------===// |
| 175 | // |
| 176 | // BoolRules provides a concrete base class of ConstRules for the 'bool' type. |
| 177 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 178 | struct BoolRules : public TemplateRules<ConstantBool, BoolRules> { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 179 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 180 | inline static Constant *Not(const ConstantBool *V) { |
| 181 | return ConstantBool::get(!V->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 184 | inline static Constant *Or(const ConstantBool *V1, |
| 185 | const ConstantBool *V2) { |
| 186 | return ConstantBool::get(V1->getValue() | V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 189 | inline static Constant *And(const ConstantBool *V1, |
| 190 | const ConstantBool *V2) { |
| 191 | return ConstantBool::get(V1->getValue() & V2->getValue()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 192 | } |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 193 | }; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 194 | |
| 195 | |
| 196 | //===----------------------------------------------------------------------===// |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 197 | // PointerRules Class |
| 198 | //===----------------------------------------------------------------------===// |
| 199 | // |
| 200 | // PointerRules provides a concrete base class of ConstRules for pointer types |
| 201 | // |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 202 | struct PointerRules : public TemplateRules<ConstantPointer, PointerRules> { |
| 203 | inline static ConstantBool *CastToBool (const Constant *V) { |
| 204 | if (V->isNullValue()) return ConstantBool::False; |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 205 | return 0; // Can't const prop other types of pointers |
| 206 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 207 | inline static ConstantSInt *CastToSByte (const Constant *V) { |
| 208 | if (V->isNullValue()) return ConstantSInt::get(Type::SByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 209 | return 0; // Can't const prop other types of pointers |
| 210 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 211 | inline static ConstantUInt *CastToUByte (const Constant *V) { |
| 212 | if (V->isNullValue()) return ConstantUInt::get(Type::UByteTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 213 | return 0; // Can't const prop other types of pointers |
| 214 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 215 | inline static ConstantSInt *CastToShort (const Constant *V) { |
| 216 | if (V->isNullValue()) return ConstantSInt::get(Type::ShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 217 | return 0; // Can't const prop other types of pointers |
| 218 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 219 | inline static ConstantUInt *CastToUShort(const Constant *V) { |
| 220 | if (V->isNullValue()) return ConstantUInt::get(Type::UShortTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 221 | return 0; // Can't const prop other types of pointers |
| 222 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 223 | inline static ConstantSInt *CastToInt (const Constant *V) { |
| 224 | if (V->isNullValue()) return ConstantSInt::get(Type::IntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 225 | return 0; // Can't const prop other types of pointers |
| 226 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 227 | inline static ConstantUInt *CastToUInt (const Constant *V) { |
| 228 | if (V->isNullValue()) return ConstantUInt::get(Type::UIntTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 229 | return 0; // Can't const prop other types of pointers |
| 230 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 231 | inline static ConstantSInt *CastToLong (const Constant *V) { |
| 232 | if (V->isNullValue()) return ConstantSInt::get(Type::LongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 233 | return 0; // Can't const prop other types of pointers |
| 234 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 235 | inline static ConstantUInt *CastToULong (const Constant *V) { |
| 236 | if (V->isNullValue()) return ConstantUInt::get(Type::ULongTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 237 | return 0; // Can't const prop other types of pointers |
| 238 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 239 | inline static ConstantFP *CastToFloat (const Constant *V) { |
| 240 | if (V->isNullValue()) return ConstantFP::get(Type::FloatTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 241 | return 0; // Can't const prop other types of pointers |
| 242 | } |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 243 | inline static ConstantFP *CastToDouble(const Constant *V) { |
| 244 | if (V->isNullValue()) return ConstantFP::get(Type::DoubleTy, 0); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 245 | return 0; // Can't const prop other types of pointers |
| 246 | } |
| 247 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 248 | inline static ConstantPointer *CastToPointer(const ConstantPointer *V, |
| 249 | const PointerType *PTy) { |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 250 | if (V->getType() == PTy) |
| 251 | return const_cast<ConstantPointer*>(V); // Allow cast %PTy %ptr to %PTy |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 252 | if (V->isNullValue()) |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 253 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 254 | return 0; // Can't const prop other types of pointers |
| 255 | } |
| 256 | }; |
| 257 | |
| 258 | |
| 259 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 260 | // DirectRules Class |
| 261 | //===----------------------------------------------------------------------===// |
| 262 | // |
| 263 | // DirectRules provides a concrete base classes of ConstRules for a variety of |
| 264 | // different types. This allows the C++ compiler to automatically generate our |
| 265 | // constant handling operations in a typesafe and accurate manner. |
| 266 | // |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 267 | template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass> |
| 268 | struct DirectRules : public TemplateRules<ConstantClass, SuperClass> { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 269 | inline static Constant *Add(const ConstantClass *V1, |
| 270 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 271 | BuiltinType Result = (BuiltinType)V1->getValue() + |
| 272 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 273 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 276 | inline static Constant *Sub(const ConstantClass *V1, |
| 277 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 278 | BuiltinType Result = (BuiltinType)V1->getValue() - |
| 279 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 280 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 283 | inline static Constant *Mul(const ConstantClass *V1, |
| 284 | const ConstantClass *V2) { |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 285 | BuiltinType Result = (BuiltinType)V1->getValue() * |
| 286 | (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 287 | return ConstantClass::get(*Ty, Result); |
Chris Lattner | 4f6031f | 2001-07-20 19:15:36 +0000 | [diff] [blame] | 288 | } |
| 289 | |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 290 | inline static Constant *Div(const ConstantClass *V1, |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 291 | const ConstantClass *V2) { |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 292 | if (V2->isNullValue()) return 0; |
Chris Lattner | af259a7 | 2002-04-07 08:10:14 +0000 | [diff] [blame] | 293 | BuiltinType Result = (BuiltinType)V1->getValue() / |
| 294 | (BuiltinType)V2->getValue(); |
| 295 | return ConstantClass::get(*Ty, Result); |
| 296 | } |
| 297 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 298 | inline static ConstantBool *LessThan(const ConstantClass *V1, |
| 299 | const ConstantClass *V2) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 300 | bool Result = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue(); |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 301 | return ConstantBool::get(Result); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 302 | } |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 303 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 304 | inline static ConstantPointer *CastToPointer(const ConstantClass *V, |
| 305 | const PointerType *PTy) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 306 | if (V->isNullValue()) // Is it a FP or Integral null value? |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 307 | return ConstantPointerNull::get(PTy); |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 308 | return 0; // Can't const prop other types of pointers |
| 309 | } |
| 310 | |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 311 | // Casting operators. ick |
| 312 | #define DEF_CAST(TYPE, CLASS, CTYPE) \ |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 313 | inline static CLASS *CastTo##TYPE (const ConstantClass *V) { \ |
Chris Lattner | bbb2296 | 2001-09-07 16:40:34 +0000 | [diff] [blame] | 314 | return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \ |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 317 | DEF_CAST(Bool , ConstantBool, bool) |
| 318 | DEF_CAST(SByte , ConstantSInt, signed char) |
| 319 | DEF_CAST(UByte , ConstantUInt, unsigned char) |
| 320 | DEF_CAST(Short , ConstantSInt, signed short) |
| 321 | DEF_CAST(UShort, ConstantUInt, unsigned short) |
| 322 | DEF_CAST(Int , ConstantSInt, signed int) |
| 323 | DEF_CAST(UInt , ConstantUInt, unsigned int) |
| 324 | DEF_CAST(Long , ConstantSInt, int64_t) |
| 325 | DEF_CAST(ULong , ConstantUInt, uint64_t) |
| 326 | DEF_CAST(Float , ConstantFP , float) |
| 327 | DEF_CAST(Double, ConstantFP , double) |
Chris Lattner | 5540684 | 2001-07-21 19:10:49 +0000 | [diff] [blame] | 328 | #undef DEF_CAST |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 329 | }; |
| 330 | |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 331 | |
| 332 | //===----------------------------------------------------------------------===// |
| 333 | // DirectIntRules Class |
| 334 | //===----------------------------------------------------------------------===// |
| 335 | // |
| 336 | // DirectIntRules provides implementations of functions that are valid on |
| 337 | // integer types, but not all types in general. |
| 338 | // |
| 339 | template <class ConstantClass, class BuiltinType, Type **Ty> |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 340 | struct DirectIntRules |
| 341 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 342 | DirectIntRules<ConstantClass, BuiltinType, Ty> > { |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 343 | inline static Constant *Not(const ConstantClass *V) { |
| 344 | return ConstantClass::get(*Ty, ~(BuiltinType)V->getValue());; |
| 345 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 346 | |
| 347 | inline static Constant *Rem(const ConstantClass *V1, |
| 348 | const ConstantClass *V2) { |
| 349 | if (V2->isNullValue()) return 0; |
| 350 | BuiltinType Result = (BuiltinType)V1->getValue() % |
| 351 | (BuiltinType)V2->getValue(); |
| 352 | return ConstantClass::get(*Ty, Result); |
| 353 | } |
Chris Lattner | 6670d86 | 2002-05-06 03:00:54 +0000 | [diff] [blame^] | 354 | |
| 355 | inline static Constant *Shl(const ConstantClass *V1, |
| 356 | const ConstantClass *V2) { |
| 357 | BuiltinType Result = (BuiltinType)V1->getValue() << |
| 358 | (BuiltinType)V2->getValue(); |
| 359 | return ConstantClass::get(*Ty, Result); |
| 360 | } |
| 361 | |
| 362 | inline static Constant *Shr(const ConstantClass *V1, |
| 363 | const ConstantClass *V2) { |
| 364 | BuiltinType Result = (BuiltinType)V1->getValue() >> |
| 365 | (BuiltinType)V2->getValue(); |
| 366 | return ConstantClass::get(*Ty, Result); |
| 367 | } |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 368 | }; |
| 369 | |
| 370 | |
| 371 | //===----------------------------------------------------------------------===// |
| 372 | // DirectFPRules Class |
| 373 | //===----------------------------------------------------------------------===// |
| 374 | // |
| 375 | // DirectFPRules provides implementations of functions that are valid on |
| 376 | // floating point types, but not all types in general. |
| 377 | // |
| 378 | template <class ConstantClass, class BuiltinType, Type **Ty> |
| 379 | struct DirectFPRules |
| 380 | : public DirectRules<ConstantClass, BuiltinType, Ty, |
| 381 | DirectFPRules<ConstantClass, BuiltinType, Ty> > { |
| 382 | inline static Constant *Rem(const ConstantClass *V1, |
| 383 | const ConstantClass *V2) { |
| 384 | if (V2->isNullValue()) return 0; |
| 385 | BuiltinType Result = std::fmod((BuiltinType)V1->getValue(), |
| 386 | (BuiltinType)V2->getValue()); |
| 387 | return ConstantClass::get(*Ty, Result); |
| 388 | } |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 389 | }; |
| 390 | |
| 391 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 392 | //===----------------------------------------------------------------------===// |
| 393 | // DirectRules Subclasses |
| 394 | //===----------------------------------------------------------------------===// |
| 395 | // |
| 396 | // Given the DirectRules class we can now implement lots of types with little |
| 397 | // code. Thank goodness C++ compilers are great at stomping out layers of |
| 398 | // templates... can you imagine having to do this all by hand? (/me is lazy :) |
| 399 | // |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 400 | |
| 401 | // ConstRules::find - Return the constant rules that take care of the specified |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 402 | // type. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 403 | // |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 404 | Annotation *ConstRules::find(AnnotationID AID, const Annotable *TyA, void *) { |
| 405 | assert(AID == ConstRules::AID && "Bad annotation for factory!"); |
Chris Lattner | 8f19112 | 2001-10-01 18:26:53 +0000 | [diff] [blame] | 406 | const Type *Ty = cast<Type>((const Value*)TyA); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 407 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 408 | switch (Ty->getPrimitiveID()) { |
Chris Lattner | 977f004 | 2001-11-01 05:55:13 +0000 | [diff] [blame] | 409 | case Type::BoolTyID: return new BoolRules(); |
| 410 | case Type::PointerTyID: return new PointerRules(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 411 | case Type::SByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 412 | return new DirectIntRules<ConstantSInt, signed char , &Type::SByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 413 | case Type::UByteTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 414 | return new DirectIntRules<ConstantUInt, unsigned char , &Type::UByteTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 415 | case Type::ShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 416 | return new DirectIntRules<ConstantSInt, signed short, &Type::ShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 417 | case Type::UShortTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 418 | return new DirectIntRules<ConstantUInt, unsigned short, &Type::UShortTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 419 | case Type::IntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 420 | return new DirectIntRules<ConstantSInt, signed int , &Type::IntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 421 | case Type::UIntTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 422 | return new DirectIntRules<ConstantUInt, unsigned int , &Type::UIntTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 423 | case Type::LongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 424 | return new DirectIntRules<ConstantSInt, int64_t , &Type::LongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 425 | case Type::ULongTyID: |
Chris Lattner | 62af86e | 2002-05-03 20:09:52 +0000 | [diff] [blame] | 426 | return new DirectIntRules<ConstantUInt, uint64_t , &Type::ULongTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 427 | case Type::FloatTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 428 | return new DirectFPRules<ConstantFP , float , &Type::FloatTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 429 | case Type::DoubleTyID: |
Chris Lattner | 0a144ad | 2002-05-03 21:41:07 +0000 | [diff] [blame] | 430 | return new DirectFPRules<ConstantFP , double , &Type::DoubleTy>(); |
Chris Lattner | 61607ee | 2001-09-09 21:01:20 +0000 | [diff] [blame] | 431 | default: |
| 432 | return new EmptyRules(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 433 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 434 | } |