Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 1 | //===-- AutoUpgrade.cpp - Implement auto-upgrade helper functions ---------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the auto-upgrade helper functions |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/AutoUpgrade.h" |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 15 | #include "llvm/Constants.h" |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 16 | #include "llvm/Function.h" |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 17 | #include "llvm/LLVMContext.h" |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
| 19 | #include "llvm/Instructions.h" |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 20 | #include "llvm/Intrinsics.h" |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallVector.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame^] | 22 | #include "llvm/Support/ErrorHandling.h" |
Anton Korobeynikov | 579f071 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 23 | #include <cstring> |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| 25 | |
| 26 | |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 27 | static bool UpgradeIntrinsicFunction1(Function *F, Function *&NewFn) { |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 28 | assert(F && "Illegal to upgrade a non-existent Function."); |
| 29 | |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 30 | LLVMContext* Context = F->getContext(); |
| 31 | |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 32 | // Get the Function's name. |
| 33 | const std::string& Name = F->getName(); |
| 34 | |
| 35 | // Convenience |
| 36 | const FunctionType *FTy = F->getFunctionType(); |
| 37 | |
| 38 | // Quickly eliminate it, if it's not a candidate. |
| 39 | if (Name.length() <= 8 || Name[0] != 'l' || Name[1] != 'l' || |
| 40 | Name[2] != 'v' || Name[3] != 'm' || Name[4] != '.') |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 41 | return false; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 42 | |
| 43 | Module *M = F->getParent(); |
| 44 | switch (Name[5]) { |
| 45 | default: break; |
Mon P Wang | 6a49037 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 46 | case 'a': |
Mon P Wang | 2c839d4 | 2008-07-30 04:36:53 +0000 | [diff] [blame] | 47 | // This upgrades the llvm.atomic.lcs, llvm.atomic.las, llvm.atomic.lss, |
| 48 | // and atomics with default address spaces to their new names to their new |
| 49 | // function name (e.g. llvm.atomic.add.i32 => llvm.atomic.add.i32.p0i32) |
| 50 | if (Name.compare(5,7,"atomic.",7) == 0) { |
Mon P Wang | 6a49037 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 51 | if (Name.compare(12,3,"lcs",3) == 0) { |
| 52 | std::string::size_type delim = Name.find('.',12); |
Mon P Wang | 2c839d4 | 2008-07-30 04:36:53 +0000 | [diff] [blame] | 53 | F->setName("llvm.atomic.cmp.swap" + Name.substr(delim) + |
| 54 | ".p0" + Name.substr(delim+1)); |
Mon P Wang | 6a49037 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 55 | NewFn = F; |
| 56 | return true; |
| 57 | } |
| 58 | else if (Name.compare(12,3,"las",3) == 0) { |
| 59 | std::string::size_type delim = Name.find('.',12); |
Mon P Wang | 2c839d4 | 2008-07-30 04:36:53 +0000 | [diff] [blame] | 60 | F->setName("llvm.atomic.load.add"+Name.substr(delim) |
| 61 | + ".p0" + Name.substr(delim+1)); |
Mon P Wang | 6a49037 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 62 | NewFn = F; |
| 63 | return true; |
| 64 | } |
| 65 | else if (Name.compare(12,3,"lss",3) == 0) { |
| 66 | std::string::size_type delim = Name.find('.',12); |
Mon P Wang | 2c839d4 | 2008-07-30 04:36:53 +0000 | [diff] [blame] | 67 | F->setName("llvm.atomic.load.sub"+Name.substr(delim) |
| 68 | + ".p0" + Name.substr(delim+1)); |
| 69 | NewFn = F; |
| 70 | return true; |
| 71 | } |
| 72 | else if (Name.rfind(".p") == std::string::npos) { |
| 73 | // We don't have an address space qualifier so this has be upgraded |
| 74 | // to the new name. Copy the type name at the end of the intrinsic |
| 75 | // and add to it |
| 76 | std::string::size_type delim = Name.find_last_of('.'); |
| 77 | assert(delim != std::string::npos && "can not find type"); |
| 78 | F->setName(Name + ".p0" + Name.substr(delim+1)); |
Mon P Wang | 6a49037 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 79 | NewFn = F; |
| 80 | return true; |
| 81 | } |
| 82 | } |
| 83 | break; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 84 | case 'b': |
| 85 | // This upgrades the name of the llvm.bswap intrinsic function to only use |
| 86 | // a single type name for overloading. We only care about the old format |
| 87 | // 'llvm.bswap.i*.i*', so check for 'bswap.' and then for there being |
| 88 | // a '.' after 'bswap.' |
| 89 | if (Name.compare(5,6,"bswap.",6) == 0) { |
| 90 | std::string::size_type delim = Name.find('.',11); |
| 91 | |
| 92 | if (delim != std::string::npos) { |
| 93 | // Construct the new name as 'llvm.bswap' + '.i*' |
| 94 | F->setName(Name.substr(0,10)+Name.substr(delim)); |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 95 | NewFn = F; |
| 96 | return true; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | break; |
| 100 | |
| 101 | case 'c': |
| 102 | // We only want to fix the 'llvm.ct*' intrinsics which do not have the |
| 103 | // correct return type, so we check for the name, and then check if the |
| 104 | // return type does not match the parameter type. |
| 105 | if ( (Name.compare(5,5,"ctpop",5) == 0 || |
| 106 | Name.compare(5,4,"ctlz",4) == 0 || |
| 107 | Name.compare(5,4,"cttz",4) == 0) && |
| 108 | FTy->getReturnType() != FTy->getParamType(0)) { |
| 109 | // We first need to change the name of the old (bad) intrinsic, because |
| 110 | // its type is incorrect, but we cannot overload that name. We |
| 111 | // arbitrarily unique it here allowing us to construct a correctly named |
| 112 | // and typed function below. |
| 113 | F->setName(""); |
| 114 | |
| 115 | // Now construct the new intrinsic with the correct name and type. We |
| 116 | // leave the old function around in order to query its type, whatever it |
| 117 | // may be, and correctly convert up to the new type. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 118 | NewFn = cast<Function>(M->getOrInsertFunction(Name, |
| 119 | FTy->getParamType(0), |
| 120 | FTy->getParamType(0), |
| 121 | (Type *)0)); |
| 122 | return true; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 123 | } |
| 124 | break; |
| 125 | |
| 126 | case 'p': |
| 127 | // This upgrades the llvm.part.select overloaded intrinsic names to only |
| 128 | // use one type specifier in the name. We only care about the old format |
| 129 | // 'llvm.part.select.i*.i*', and solve as above with bswap. |
| 130 | if (Name.compare(5,12,"part.select.",12) == 0) { |
| 131 | std::string::size_type delim = Name.find('.',17); |
| 132 | |
| 133 | if (delim != std::string::npos) { |
| 134 | // Construct a new name as 'llvm.part.select' + '.i*' |
| 135 | F->setName(Name.substr(0,16)+Name.substr(delim)); |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 136 | NewFn = F; |
| 137 | return true; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 138 | } |
| 139 | break; |
| 140 | } |
| 141 | |
| 142 | // This upgrades the llvm.part.set intrinsics similarly as above, however |
| 143 | // we care about 'llvm.part.set.i*.i*.i*', but only the first two types |
| 144 | // must match. There is an additional type specifier after these two |
| 145 | // matching types that we must retain when upgrading. Thus, we require |
| 146 | // finding 2 periods, not just one, after the intrinsic name. |
| 147 | if (Name.compare(5,9,"part.set.",9) == 0) { |
| 148 | std::string::size_type delim = Name.find('.',14); |
| 149 | |
| 150 | if (delim != std::string::npos && |
| 151 | Name.find('.',delim+1) != std::string::npos) { |
| 152 | // Construct a new name as 'llvm.part.select' + '.i*.i*' |
| 153 | F->setName(Name.substr(0,13)+Name.substr(delim)); |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 154 | NewFn = F; |
| 155 | return true; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 156 | } |
| 157 | break; |
| 158 | } |
| 159 | |
| 160 | break; |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 161 | case 'x': |
| 162 | // This fixes all MMX shift intrinsic instructions to take a |
| 163 | // v1i64 instead of a v2i32 as the second parameter. |
| 164 | if (Name.compare(5,10,"x86.mmx.ps",10) == 0 && |
| 165 | (Name.compare(13,4,"psll", 4) == 0 || |
| 166 | Name.compare(13,4,"psra", 4) == 0 || |
Evan Cheng | cdf22f2 | 2008-05-03 00:52:09 +0000 | [diff] [blame] | 167 | Name.compare(13,4,"psrl", 4) == 0) && Name[17] != 'i') { |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 168 | |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 169 | const llvm::Type *VT = |
| 170 | Context->getVectorType(Context->getIntegerType(64), 1); |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 171 | |
| 172 | // We don't have to do anything if the parameter already has |
| 173 | // the correct type. |
| 174 | if (FTy->getParamType(1) == VT) |
| 175 | break; |
| 176 | |
| 177 | // We first need to change the name of the old (bad) intrinsic, because |
| 178 | // its type is incorrect, but we cannot overload that name. We |
| 179 | // arbitrarily unique it here allowing us to construct a correctly named |
| 180 | // and typed function below. |
| 181 | F->setName(""); |
| 182 | |
| 183 | assert(FTy->getNumParams() == 2 && "MMX shift intrinsics take 2 args!"); |
| 184 | |
| 185 | // Now construct the new intrinsic with the correct name and type. We |
| 186 | // leave the old function around in order to query its type, whatever it |
| 187 | // may be, and correctly convert up to the new type. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 188 | NewFn = cast<Function>(M->getOrInsertFunction(Name, |
| 189 | FTy->getReturnType(), |
| 190 | FTy->getParamType(0), |
| 191 | VT, |
| 192 | (Type *)0)); |
| 193 | return true; |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 194 | } else if (Name.compare(5,17,"x86.sse2.loadh.pd",17) == 0 || |
| 195 | Name.compare(5,17,"x86.sse2.loadl.pd",17) == 0 || |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 196 | Name.compare(5,16,"x86.sse2.movl.dq",16) == 0 || |
| 197 | Name.compare(5,15,"x86.sse2.movs.d",15) == 0 || |
| 198 | Name.compare(5,16,"x86.sse2.shuf.pd",16) == 0 || |
| 199 | Name.compare(5,18,"x86.sse2.unpckh.pd",18) == 0 || |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 200 | Name.compare(5,18,"x86.sse2.unpckl.pd",18) == 0 || |
| 201 | Name.compare(5,20,"x86.sse2.punpckh.qdq",20) == 0 || |
| 202 | Name.compare(5,20,"x86.sse2.punpckl.qdq",20) == 0) { |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 203 | // Calls to these intrinsics are transformed into ShuffleVector's. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 204 | NewFn = 0; |
| 205 | return true; |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 206 | } |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 207 | |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 208 | break; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | // This may not belong here. This function is effectively being overloaded |
| 212 | // to both detect an intrinsic which needs upgrading, and to provide the |
| 213 | // upgraded form of the intrinsic. We should perhaps have two separate |
| 214 | // functions for this. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 215 | return false; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 218 | bool llvm::UpgradeIntrinsicFunction(Function *F, Function *&NewFn) { |
| 219 | NewFn = 0; |
| 220 | bool Upgraded = UpgradeIntrinsicFunction1(F, NewFn); |
Duncan Sands | 38ef3a8 | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 221 | |
| 222 | // Upgrade intrinsic attributes. This does not change the function. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 223 | if (NewFn) |
| 224 | F = NewFn; |
Dale Johannesen | b842d52 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 225 | if (unsigned id = F->getIntrinsicID()) |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 226 | F->setAttributes(Intrinsic::getAttributes((Intrinsic::ID)id)); |
Duncan Sands | 38ef3a8 | 2007-12-03 20:06:50 +0000 | [diff] [blame] | 227 | return Upgraded; |
| 228 | } |
| 229 | |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 230 | // UpgradeIntrinsicCall - Upgrade a call to an old intrinsic to be a call the |
| 231 | // upgraded intrinsic. All argument and return casting must be provided in |
| 232 | // order to seamlessly integrate with existing context. |
| 233 | void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) { |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 234 | Function *F = CI->getCalledFunction(); |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 235 | LLVMContext* Context = F->getContext(); |
| 236 | |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 237 | assert(F && "CallInst has no function associated with it."); |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 238 | |
| 239 | if (!NewFn) { |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 240 | bool isLoadH = false, isLoadL = false, isMovL = false; |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 241 | bool isMovSD = false, isShufPD = false; |
| 242 | bool isUnpckhPD = false, isUnpcklPD = false; |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 243 | bool isPunpckhQPD = false, isPunpcklQPD = false; |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 244 | if (strcmp(F->getNameStart(), "llvm.x86.sse2.loadh.pd") == 0) |
| 245 | isLoadH = true; |
| 246 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.loadl.pd") == 0) |
| 247 | isLoadL = true; |
| 248 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.movl.dq") == 0) |
| 249 | isMovL = true; |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 250 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.movs.d") == 0) |
| 251 | isMovSD = true; |
| 252 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.shuf.pd") == 0) |
| 253 | isShufPD = true; |
| 254 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.unpckh.pd") == 0) |
| 255 | isUnpckhPD = true; |
| 256 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.unpckl.pd") == 0) |
| 257 | isUnpcklPD = true; |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 258 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.punpckh.qdq") == 0) |
| 259 | isPunpckhQPD = true; |
| 260 | else if (strcmp(F->getNameStart(), "llvm.x86.sse2.punpckl.qdq") == 0) |
| 261 | isPunpcklQPD = true; |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 262 | |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 263 | if (isLoadH || isLoadL || isMovL || isMovSD || isShufPD || |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 264 | isUnpckhPD || isUnpcklPD || isPunpckhQPD || isPunpcklQPD) { |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 265 | std::vector<Constant*> Idxs; |
| 266 | Value *Op0 = CI->getOperand(1); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 267 | ShuffleVectorInst *SI = NULL; |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 268 | if (isLoadH || isLoadL) { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 269 | Value *Op1 = Context->getUndef(Op0->getType()); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 270 | Value *Addr = new BitCastInst(CI->getOperand(2), |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 271 | Context->getPointerTypeUnqual(Type::DoubleTy), |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 272 | "upgraded.", CI); |
| 273 | Value *Load = new LoadInst(Addr, "upgraded.", false, 8, CI); |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 274 | Value *Idx = Context->getConstantInt(Type::Int32Ty, 0); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 275 | Op1 = InsertElementInst::Create(Op1, Load, Idx, "upgraded.", CI); |
| 276 | |
| 277 | if (isLoadH) { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 278 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 0)); |
| 279 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 2)); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 280 | } else { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 281 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 2)); |
| 282 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 1)); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 283 | } |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 284 | Value *Mask = Context->getConstantVector(Idxs); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 285 | SI = new ShuffleVectorInst(Op0, Op1, Mask, "upgraded.", CI); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 286 | } else if (isMovL) { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 287 | Constant *Zero = Context->getConstantInt(Type::Int32Ty, 0); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 288 | Idxs.push_back(Zero); |
| 289 | Idxs.push_back(Zero); |
| 290 | Idxs.push_back(Zero); |
| 291 | Idxs.push_back(Zero); |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 292 | Value *ZeroV = Context->getConstantVector(Idxs); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 293 | |
| 294 | Idxs.clear(); |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 295 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 4)); |
| 296 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 5)); |
| 297 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 2)); |
| 298 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 3)); |
| 299 | Value *Mask = Context->getConstantVector(Idxs); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 300 | SI = new ShuffleVectorInst(ZeroV, Op0, Mask, "upgraded.", CI); |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 301 | } else if (isMovSD || |
| 302 | isUnpckhPD || isUnpcklPD || isPunpckhQPD || isPunpcklQPD) { |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 303 | Value *Op1 = CI->getOperand(2); |
| 304 | if (isMovSD) { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 305 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 2)); |
| 306 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 1)); |
Evan Cheng | 91a2e56 | 2008-05-24 02:56:30 +0000 | [diff] [blame] | 307 | } else if (isUnpckhPD || isPunpckhQPD) { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 308 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 1)); |
| 309 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 3)); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 310 | } else { |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 311 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 0)); |
| 312 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, 2)); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 313 | } |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 314 | Value *Mask = Context->getConstantVector(Idxs); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 315 | SI = new ShuffleVectorInst(Op0, Op1, Mask, "upgraded.", CI); |
| 316 | } else if (isShufPD) { |
| 317 | Value *Op1 = CI->getOperand(2); |
| 318 | unsigned MaskVal = cast<ConstantInt>(CI->getOperand(3))->getZExtValue(); |
Owen Anderson | 155dccd8 | 2009-07-07 23:43:39 +0000 | [diff] [blame] | 319 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, MaskVal & 1)); |
| 320 | Idxs.push_back(Context->getConstantInt(Type::Int32Ty, |
| 321 | ((MaskVal >> 1) & 1)+2)); |
| 322 | Value *Mask = Context->getConstantVector(Idxs); |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 323 | SI = new ShuffleVectorInst(Op0, Op1, Mask, "upgraded.", CI); |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 324 | } |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 325 | |
Evan Cheng | 2146270c | 2008-05-24 02:14:05 +0000 | [diff] [blame] | 326 | assert(SI && "Unexpected!"); |
| 327 | |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 328 | // Handle any uses of the old CallInst. |
| 329 | if (!CI->use_empty()) |
| 330 | // Replace all uses of the old call with the new cast which has the |
| 331 | // correct type. |
| 332 | CI->replaceAllUsesWith(SI); |
| 333 | |
| 334 | // Clean up the old call now that it has been completely upgraded. |
| 335 | CI->eraseFromParent(); |
Evan Cheng | a8288f4 | 2007-12-18 01:04:25 +0000 | [diff] [blame] | 336 | } else { |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame^] | 337 | LLVM_UNREACHABLE("Unknown function for CallInst upgrade."); |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 338 | } |
| 339 | return; |
| 340 | } |
| 341 | |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 342 | switch (NewFn->getIntrinsicID()) { |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame^] | 343 | default: LLVM_UNREACHABLE("Unknown function for CallInst upgrade."); |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 344 | case Intrinsic::x86_mmx_psll_d: |
| 345 | case Intrinsic::x86_mmx_psll_q: |
| 346 | case Intrinsic::x86_mmx_psll_w: |
| 347 | case Intrinsic::x86_mmx_psra_d: |
| 348 | case Intrinsic::x86_mmx_psra_w: |
| 349 | case Intrinsic::x86_mmx_psrl_d: |
| 350 | case Intrinsic::x86_mmx_psrl_q: |
| 351 | case Intrinsic::x86_mmx_psrl_w: { |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 352 | Value *Operands[2]; |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 353 | |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 354 | Operands[0] = CI->getOperand(1); |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 355 | |
| 356 | // Cast the second parameter to the correct type. |
| 357 | BitCastInst *BC = new BitCastInst(CI->getOperand(2), |
| 358 | NewFn->getFunctionType()->getParamType(1), |
Evan Cheng | 5065932 | 2008-05-24 00:08:39 +0000 | [diff] [blame] | 359 | "upgraded.", CI); |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 360 | Operands[1] = BC; |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 361 | |
| 362 | // Construct a new CallInst |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 363 | CallInst *NewCI = CallInst::Create(NewFn, Operands, Operands+2, |
| 364 | "upgraded."+CI->getName(), CI); |
Anders Carlsson | f924f34 | 2007-12-14 06:38:54 +0000 | [diff] [blame] | 365 | NewCI->setTailCall(CI->isTailCall()); |
| 366 | NewCI->setCallingConv(CI->getCallingConv()); |
| 367 | |
| 368 | // Handle any uses of the old CallInst. |
| 369 | if (!CI->use_empty()) |
| 370 | // Replace all uses of the old call with the new cast which has the |
| 371 | // correct type. |
| 372 | CI->replaceAllUsesWith(NewCI); |
| 373 | |
| 374 | // Clean up the old call now that it has been completely upgraded. |
| 375 | CI->eraseFromParent(); |
| 376 | break; |
| 377 | } |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 378 | case Intrinsic::ctlz: |
| 379 | case Intrinsic::ctpop: |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 380 | case Intrinsic::cttz: { |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 381 | // Build a small vector of the 1..(N-1) operands, which are the |
| 382 | // parameters. |
Chris Lattner | 8a923e7 | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 383 | SmallVector<Value*, 8> Operands(CI->op_begin()+1, CI->op_end()); |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 384 | |
| 385 | // Construct a new CallInst |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 386 | CallInst *NewCI = CallInst::Create(NewFn, Operands.begin(), Operands.end(), |
| 387 | "upgraded."+CI->getName(), CI); |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 388 | NewCI->setTailCall(CI->isTailCall()); |
| 389 | NewCI->setCallingConv(CI->getCallingConv()); |
| 390 | |
| 391 | // Handle any uses of the old CallInst. |
| 392 | if (!CI->use_empty()) { |
| 393 | // Check for sign extend parameter attributes on the return values. |
Devang Patel | 4c758ea | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 394 | bool SrcSExt = NewFn->getAttributes().paramHasAttr(0, Attribute::SExt); |
| 395 | bool DestSExt = F->getAttributes().paramHasAttr(0, Attribute::SExt); |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 396 | |
| 397 | // Construct an appropriate cast from the new return type to the old. |
Gabor Greif | e1f6e4b | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 398 | CastInst *RetCast = CastInst::Create( |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 399 | CastInst::getCastOpcode(NewCI, SrcSExt, |
| 400 | F->getReturnType(), |
| 401 | DestSExt), |
| 402 | NewCI, F->getReturnType(), |
| 403 | NewCI->getName(), CI); |
| 404 | NewCI->moveBefore(RetCast); |
| 405 | |
| 406 | // Replace all uses of the old call with the new cast which has the |
| 407 | // correct type. |
| 408 | CI->replaceAllUsesWith(RetCast); |
| 409 | } |
| 410 | |
| 411 | // Clean up the old call now that it has been completely upgraded. |
| 412 | CI->eraseFromParent(); |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 413 | } |
| 414 | break; |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
| 418 | // This tests each Function to determine if it needs upgrading. When we find |
| 419 | // one we are interested in, we then upgrade all calls to reflect the new |
| 420 | // function. |
| 421 | void llvm::UpgradeCallsToIntrinsic(Function* F) { |
| 422 | assert(F && "Illegal attempt to upgrade a non-existent intrinsic."); |
| 423 | |
| 424 | // Upgrade the function and check if it is a totaly new function. |
Evan Cheng | 0e179d0 | 2007-12-17 22:33:23 +0000 | [diff] [blame] | 425 | Function* NewFn; |
| 426 | if (UpgradeIntrinsicFunction(F, NewFn)) { |
Chandler Carruth | 7132e00 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 427 | if (NewFn != F) { |
| 428 | // Replace all uses to the old function with the new one if necessary. |
| 429 | for (Value::use_iterator UI = F->use_begin(), UE = F->use_end(); |
| 430 | UI != UE; ) { |
| 431 | if (CallInst* CI = dyn_cast<CallInst>(*UI++)) |
| 432 | UpgradeIntrinsicCall(CI, NewFn); |
| 433 | } |
| 434 | // Remove old function, no longer used, from the module. |
| 435 | F->eraseFromParent(); |
| 436 | } |
| 437 | } |
| 438 | } |