Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 1 | //===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | b71fd78 | 2006-11-15 18:00:10 +0000 | [diff] [blame] | 10 | // This file implements the IntrinsicLowering class. |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | cf89908 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 14 | #include "llvm/Constants.h" |
Chris Lattner | 5fe51cc | 2004-02-12 17:01:09 +0000 | [diff] [blame] | 15 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 17 | #include "llvm/Instructions.h" |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 18 | #include "llvm/Type.h" |
Bill Wendling | d9fd2ac | 2006-11-28 02:08:17 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/IntrinsicLowering.h" |
| 20 | #include "llvm/Support/Streams.h" |
Reid Spencer | 6addf2c | 2007-01-29 17:42:06 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 990b849 | 2007-02-13 06:01:22 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SmallVector.h" |
Owen Anderson | 718cb66 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 24 | using namespace llvm; |
| 25 | |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 26 | // Return the integer value Val zero-extended or truncated (if necessary) to |
| 27 | // type ITy. Any new instructions are inserted at InsertBefore. |
| 28 | template<typename InsertType> |
| 29 | static Value *getZExtOrTrunc(Value *Val, const IntegerType *ITy, |
| 30 | InsertType InsertPoint) { |
| 31 | const IntegerType *ValTy = cast<IntegerType>(Val->getType()); |
| 32 | if (ValTy == ITy) |
| 33 | return Val; |
| 34 | Constant *CVal = dyn_cast<Constant>(Val); |
| 35 | if (ValTy->getBitWidth() < ITy->getBitWidth()) { |
| 36 | if (CVal) |
| 37 | return ConstantExpr::getZExt(CVal, ITy); |
| 38 | return new ZExtInst(Val, ITy, "", InsertPoint); |
| 39 | } else { |
| 40 | if (CVal) |
| 41 | return ConstantExpr::getTrunc(CVal, ITy); |
| 42 | return new TruncInst(Val, ITy, "", InsertPoint); |
| 43 | } |
| 44 | } |
| 45 | |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 46 | template <class ArgIt> |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 47 | static void EnsureFunctionExists(Module &M, const char *Name, |
| 48 | ArgIt ArgBegin, ArgIt ArgEnd, |
| 49 | const Type *RetTy) { |
| 50 | // Insert a correctly-typed definition now. |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 51 | std::vector<const Type *> ParamTys; |
| 52 | for (ArgIt I = ArgBegin; I != ArgEnd; ++I) |
| 53 | ParamTys.push_back(I->getType()); |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 54 | M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false)); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 55 | } |
| 56 | |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 57 | static void EnsureFPIntrinsicsExist(Module &M, Function *Fn, |
| 58 | const char *FName, |
| 59 | const char *DName, const char *LDName) { |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 60 | // Insert definitions for all the floating point types. |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 61 | switch((int)Fn->arg_begin()->getType()->getTypeID()) { |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 62 | case Type::FloatTyID: |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 63 | EnsureFunctionExists(M, FName, Fn->arg_begin(), Fn->arg_end(), |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 64 | Type::FloatTy); |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 65 | break; |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 66 | case Type::DoubleTyID: |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 67 | EnsureFunctionExists(M, DName, Fn->arg_begin(), Fn->arg_end(), |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 68 | Type::DoubleTy); |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 69 | break; |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 70 | case Type::X86_FP80TyID: |
| 71 | case Type::FP128TyID: |
| 72 | case Type::PPC_FP128TyID: |
Chris Lattner | 556b4a6 | 2009-02-07 22:37:06 +0000 | [diff] [blame] | 73 | EnsureFunctionExists(M, LDName, Fn->arg_begin(), Fn->arg_end(), |
| 74 | Fn->arg_begin()->getType()); |
| 75 | break; |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 79 | /// ReplaceCallWith - This function is used when we want to lower an intrinsic |
| 80 | /// call to a call of an external function. This handles hard cases such as |
| 81 | /// when there was already a prototype for the external function, and if that |
| 82 | /// prototype doesn't match the arguments we expect to pass in. |
| 83 | template <class ArgIt> |
| 84 | static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI, |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 85 | ArgIt ArgBegin, ArgIt ArgEnd, |
| 86 | const Type *RetTy, Constant *&FCache) { |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 87 | if (!FCache) { |
| 88 | // If we haven't already looked up this function, check to see if the |
| 89 | // program already contains a function with this name. |
| 90 | Module *M = CI->getParent()->getParent()->getParent(); |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 91 | // Get or insert the definition now. |
| 92 | std::vector<const Type *> ParamTys; |
| 93 | for (ArgIt I = ArgBegin; I != ArgEnd; ++I) |
| 94 | ParamTys.push_back((*I)->getType()); |
| 95 | FCache = M->getOrInsertFunction(NewFn, |
| 96 | FunctionType::get(RetTy, ParamTys, false)); |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 97 | } |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 98 | |
David Greene | 52eec54 | 2007-08-01 03:43:44 +0000 | [diff] [blame] | 99 | SmallVector<Value *, 8> Args(ArgBegin, ArgEnd); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 100 | CallInst *NewCI = CallInst::Create(FCache, Args.begin(), Args.end(), |
| 101 | CI->getName(), CI); |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 102 | if (!CI->use_empty()) |
| 103 | CI->replaceAllUsesWith(NewCI); |
Chris Lattner | 02348ca | 2004-06-11 02:54:02 +0000 | [diff] [blame] | 104 | return NewCI; |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Chris Lattner | b71fd78 | 2006-11-15 18:00:10 +0000 | [diff] [blame] | 107 | void IntrinsicLowering::AddPrototypes(Module &M) { |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 108 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 109 | if (I->isDeclaration() && !I->use_empty()) |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 110 | switch (I->getIntrinsicID()) { |
| 111 | default: break; |
| 112 | case Intrinsic::setjmp: |
Chris Lattner | 1f243e9 | 2005-05-08 19:46:29 +0000 | [diff] [blame] | 113 | EnsureFunctionExists(M, "setjmp", I->arg_begin(), I->arg_end(), |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 114 | Type::Int32Ty); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 115 | break; |
| 116 | case Intrinsic::longjmp: |
Chris Lattner | 1f243e9 | 2005-05-08 19:46:29 +0000 | [diff] [blame] | 117 | EnsureFunctionExists(M, "longjmp", I->arg_begin(), I->arg_end(), |
| 118 | Type::VoidTy); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 119 | break; |
| 120 | case Intrinsic::siglongjmp: |
Chris Lattner | 1f243e9 | 2005-05-08 19:46:29 +0000 | [diff] [blame] | 121 | EnsureFunctionExists(M, "abort", I->arg_end(), I->arg_end(), |
| 122 | Type::VoidTy); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 123 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 124 | case Intrinsic::memcpy: |
Christopher Lamb | 43ad6b3 | 2007-12-17 01:12:55 +0000 | [diff] [blame] | 125 | M.getOrInsertFunction("memcpy", PointerType::getUnqual(Type::Int8Ty), |
| 126 | PointerType::getUnqual(Type::Int8Ty), |
| 127 | PointerType::getUnqual(Type::Int8Ty), |
Reid Spencer | 6addf2c | 2007-01-29 17:42:06 +0000 | [diff] [blame] | 128 | TD.getIntPtrType(), (Type *)0); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 129 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 130 | case Intrinsic::memmove: |
Christopher Lamb | 43ad6b3 | 2007-12-17 01:12:55 +0000 | [diff] [blame] | 131 | M.getOrInsertFunction("memmove", PointerType::getUnqual(Type::Int8Ty), |
| 132 | PointerType::getUnqual(Type::Int8Ty), |
| 133 | PointerType::getUnqual(Type::Int8Ty), |
Reid Spencer | 6addf2c | 2007-01-29 17:42:06 +0000 | [diff] [blame] | 134 | TD.getIntPtrType(), (Type *)0); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 135 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 136 | case Intrinsic::memset: |
Christopher Lamb | 43ad6b3 | 2007-12-17 01:12:55 +0000 | [diff] [blame] | 137 | M.getOrInsertFunction("memset", PointerType::getUnqual(Type::Int8Ty), |
| 138 | PointerType::getUnqual(Type::Int8Ty), |
| 139 | Type::Int32Ty, |
Reid Spencer | 6addf2c | 2007-01-29 17:42:06 +0000 | [diff] [blame] | 140 | TD.getIntPtrType(), (Type *)0); |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 141 | break; |
Dale Johannesen | 9ab7fb3 | 2007-10-02 17:43:59 +0000 | [diff] [blame] | 142 | case Intrinsic::sqrt: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 143 | EnsureFPIntrinsicsExist(M, I, "sqrtf", "sqrt", "sqrtl"); |
Chris Lattner | b42a9ff | 2005-04-30 04:07:50 +0000 | [diff] [blame] | 144 | break; |
Dan Gohman | c4c9660 | 2007-10-15 22:07:31 +0000 | [diff] [blame] | 145 | case Intrinsic::sin: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 146 | EnsureFPIntrinsicsExist(M, I, "sinf", "sin", "sinl"); |
Dan Gohman | c4c9660 | 2007-10-15 22:07:31 +0000 | [diff] [blame] | 147 | break; |
| 148 | case Intrinsic::cos: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 149 | EnsureFPIntrinsicsExist(M, I, "cosf", "cos", "cosl"); |
Dan Gohman | c4c9660 | 2007-10-15 22:07:31 +0000 | [diff] [blame] | 150 | break; |
| 151 | case Intrinsic::pow: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 152 | EnsureFPIntrinsicsExist(M, I, "powf", "pow", "powl"); |
Dan Gohman | c4c9660 | 2007-10-15 22:07:31 +0000 | [diff] [blame] | 153 | break; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 154 | case Intrinsic::log: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 155 | EnsureFPIntrinsicsExist(M, I, "logf", "log", "logl"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 156 | break; |
| 157 | case Intrinsic::log2: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 158 | EnsureFPIntrinsicsExist(M, I, "log2f", "log2", "log2l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 159 | break; |
| 160 | case Intrinsic::log10: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 161 | EnsureFPIntrinsicsExist(M, I, "log10f", "log10", "log10l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 162 | break; |
| 163 | case Intrinsic::exp: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 164 | EnsureFPIntrinsicsExist(M, I, "expf", "exp", "expl"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 165 | break; |
| 166 | case Intrinsic::exp2: |
Dale Johannesen | c4342ea | 2008-09-22 19:51:58 +0000 | [diff] [blame] | 167 | EnsureFPIntrinsicsExist(M, I, "exp2f", "exp2", "exp2l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 168 | break; |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 169 | } |
Chris Lattner | 0979ca7 | 2004-05-09 04:29:57 +0000 | [diff] [blame] | 170 | } |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 171 | |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 172 | /// LowerBSWAP - Emit the code to lower bswap of V before the specified |
| 173 | /// instruction IP. |
| 174 | static Value *LowerBSWAP(Value *V, Instruction *IP) { |
Chris Lattner | 42a7551 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 175 | assert(V->getType()->isInteger() && "Can't bswap a non-integer type!"); |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 176 | |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 177 | unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); |
| 178 | |
| 179 | switch(BitSize) { |
| 180 | default: assert(0 && "Unhandled type size of value to byteswap!"); |
| 181 | case 16: { |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 182 | Value *Tmp1 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 183 | ConstantInt::get(V->getType(),8),"bswap.2",IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 184 | Value *Tmp2 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 185 | ConstantInt::get(V->getType(),8),"bswap.1",IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 186 | V = BinaryOperator::CreateOr(Tmp1, Tmp2, "bswap.i16", IP); |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 187 | break; |
| 188 | } |
| 189 | case 32: { |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 190 | Value *Tmp4 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 191 | ConstantInt::get(V->getType(),24),"bswap.4", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 192 | Value *Tmp3 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 193 | ConstantInt::get(V->getType(),8),"bswap.3",IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 194 | Value *Tmp2 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 195 | ConstantInt::get(V->getType(),8),"bswap.2",IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 196 | Value *Tmp1 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 197 | ConstantInt::get(V->getType(),24),"bswap.1", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 198 | Tmp3 = BinaryOperator::CreateAnd(Tmp3, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 199 | ConstantInt::get(Type::Int32Ty, 0xFF0000), |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 200 | "bswap.and3", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 201 | Tmp2 = BinaryOperator::CreateAnd(Tmp2, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 202 | ConstantInt::get(Type::Int32Ty, 0xFF00), |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 203 | "bswap.and2", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 204 | Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp3, "bswap.or1", IP); |
| 205 | Tmp2 = BinaryOperator::CreateOr(Tmp2, Tmp1, "bswap.or2", IP); |
| 206 | V = BinaryOperator::CreateOr(Tmp4, Tmp2, "bswap.i32", IP); |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 207 | break; |
| 208 | } |
| 209 | case 64: { |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 210 | Value *Tmp8 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 211 | ConstantInt::get(V->getType(),56),"bswap.8", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 212 | Value *Tmp7 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 213 | ConstantInt::get(V->getType(),40),"bswap.7", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 214 | Value *Tmp6 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 215 | ConstantInt::get(V->getType(),24),"bswap.6", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 216 | Value *Tmp5 = BinaryOperator::CreateShl(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 217 | ConstantInt::get(V->getType(),8),"bswap.5", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 218 | Value* Tmp4 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 219 | ConstantInt::get(V->getType(),8),"bswap.4", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 220 | Value* Tmp3 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 221 | ConstantInt::get(V->getType(),24),"bswap.3", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 222 | Value* Tmp2 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 223 | ConstantInt::get(V->getType(),40),"bswap.2", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 224 | Value* Tmp1 = BinaryOperator::CreateLShr(V, |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 225 | ConstantInt::get(V->getType(),56),"bswap.1", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 226 | Tmp7 = BinaryOperator::CreateAnd(Tmp7, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 227 | ConstantInt::get(Type::Int64Ty, |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 228 | 0xFF000000000000ULL), |
| 229 | "bswap.and7", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 230 | Tmp6 = BinaryOperator::CreateAnd(Tmp6, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 231 | ConstantInt::get(Type::Int64Ty, 0xFF0000000000ULL), |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 232 | "bswap.and6", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 233 | Tmp5 = BinaryOperator::CreateAnd(Tmp5, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 234 | ConstantInt::get(Type::Int64Ty, 0xFF00000000ULL), |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 235 | "bswap.and5", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 236 | Tmp4 = BinaryOperator::CreateAnd(Tmp4, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 237 | ConstantInt::get(Type::Int64Ty, 0xFF000000ULL), |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 238 | "bswap.and4", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 239 | Tmp3 = BinaryOperator::CreateAnd(Tmp3, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 240 | ConstantInt::get(Type::Int64Ty, 0xFF0000ULL), |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 241 | "bswap.and3", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 242 | Tmp2 = BinaryOperator::CreateAnd(Tmp2, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 243 | ConstantInt::get(Type::Int64Ty, 0xFF00ULL), |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 244 | "bswap.and2", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 245 | Tmp8 = BinaryOperator::CreateOr(Tmp8, Tmp7, "bswap.or1", IP); |
| 246 | Tmp6 = BinaryOperator::CreateOr(Tmp6, Tmp5, "bswap.or2", IP); |
| 247 | Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp3, "bswap.or3", IP); |
| 248 | Tmp2 = BinaryOperator::CreateOr(Tmp2, Tmp1, "bswap.or4", IP); |
| 249 | Tmp8 = BinaryOperator::CreateOr(Tmp8, Tmp6, "bswap.or5", IP); |
| 250 | Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp2, "bswap.or6", IP); |
| 251 | V = BinaryOperator::CreateOr(Tmp8, Tmp4, "bswap.i64", IP); |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 252 | break; |
| 253 | } |
| 254 | } |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 255 | return V; |
| 256 | } |
| 257 | |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 258 | /// LowerCTPOP - Emit the code to lower ctpop of V before the specified |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 259 | /// instruction IP. |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 260 | static Value *LowerCTPOP(Value *V, Instruction *IP) { |
Chris Lattner | 42a7551 | 2007-01-15 02:27:26 +0000 | [diff] [blame] | 261 | assert(V->getType()->isInteger() && "Can't ctpop a non-integer type!"); |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 262 | |
| 263 | static const uint64_t MaskValues[6] = { |
| 264 | 0x5555555555555555ULL, 0x3333333333333333ULL, |
| 265 | 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL, |
| 266 | 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL |
| 267 | }; |
| 268 | |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 269 | unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 270 | unsigned WordSize = (BitSize + 63) / 64; |
| 271 | Value *Count = ConstantInt::get(V->getType(), 0); |
Reid Spencer | 3822ff5 | 2006-11-08 06:47:33 +0000 | [diff] [blame] | 272 | |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 273 | for (unsigned n = 0; n < WordSize; ++n) { |
| 274 | Value *PartValue = V; |
| 275 | for (unsigned i = 1, ct = 0; i < (BitSize>64 ? 64 : BitSize); |
| 276 | i <<= 1, ++ct) { |
| 277 | Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 278 | Value *LHS = BinaryOperator::CreateAnd( |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 279 | PartValue, MaskCst, "cppop.and1", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 280 | Value *VShift = BinaryOperator::CreateLShr(PartValue, |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 281 | ConstantInt::get(V->getType(), i), "ctpop.sh", IP); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 282 | Value *RHS = BinaryOperator::CreateAnd(VShift, MaskCst, "cppop.and2", IP); |
| 283 | PartValue = BinaryOperator::CreateAdd(LHS, RHS, "ctpop.step", IP); |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 284 | } |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 285 | Count = BinaryOperator::CreateAdd(PartValue, Count, "ctpop.part", IP); |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 286 | if (BitSize > 64) { |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 287 | V = BinaryOperator::CreateLShr(V, ConstantInt::get(V->getType(), 64), |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 288 | "ctpop.part.sh", IP); |
| 289 | BitSize -= 64; |
| 290 | } |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Chris Lattner | 914ce45 | 2007-08-06 16:36:18 +0000 | [diff] [blame] | 293 | return Count; |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 294 | } |
| 295 | |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 296 | /// LowerCTLZ - Emit the code to lower ctlz of V before the specified |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 297 | /// instruction IP. |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 298 | static Value *LowerCTLZ(Value *V, Instruction *IP) { |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 299 | |
| 300 | unsigned BitSize = V->getType()->getPrimitiveSizeInBits(); |
Zhou Sheng | 02031c0 | 2007-06-02 04:10:33 +0000 | [diff] [blame] | 301 | for (unsigned i = 1; i < BitSize; i <<= 1) { |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 302 | Value *ShVal = ConstantInt::get(V->getType(), i); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 303 | ShVal = BinaryOperator::CreateLShr(V, ShVal, "ctlz.sh", IP); |
| 304 | V = BinaryOperator::CreateOr(V, ShVal, "ctlz.step", IP); |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 307 | V = BinaryOperator::CreateNot(V, "", IP); |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 308 | return LowerCTPOP(V, IP); |
| 309 | } |
| 310 | |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 311 | /// Convert the llvm.part.select.iX.iY intrinsic. This intrinsic takes |
| 312 | /// three integer arguments. The first argument is the Value from which the |
| 313 | /// bits will be selected. It may be of any bit width. The second and third |
| 314 | /// arguments specify a range of bits to select with the second argument |
| 315 | /// specifying the low bit and the third argument specifying the high bit. Both |
| 316 | /// must be type i32. The result is the corresponding selected bits from the |
| 317 | /// Value in the same width as the Value (first argument). If the low bit index |
| 318 | /// is higher than the high bit index then the inverse selection is done and |
| 319 | /// the bits are returned in inverse order. |
| 320 | /// @brief Lowering of llvm.part.select intrinsic. |
| 321 | static Instruction *LowerPartSelect(CallInst *CI) { |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 322 | // Make sure we're dealing with a part select intrinsic here |
| 323 | Function *F = CI->getCalledFunction(); |
| 324 | const FunctionType *FT = F->getFunctionType(); |
| 325 | if (!F->isDeclaration() || !FT->getReturnType()->isInteger() || |
| 326 | FT->getNumParams() != 3 || !FT->getParamType(0)->isInteger() || |
| 327 | !FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger()) |
| 328 | return CI; |
| 329 | |
| 330 | // Get the intrinsic implementation function by converting all the . to _ |
| 331 | // in the intrinsic's function name and then reconstructing the function |
| 332 | // declaration. |
| 333 | std::string Name(F->getName()); |
| 334 | for (unsigned i = 4; i < Name.length(); ++i) |
| 335 | if (Name[i] == '.') |
| 336 | Name[i] = '_'; |
| 337 | Module* M = F->getParent(); |
| 338 | F = cast<Function>(M->getOrInsertFunction(Name, FT)); |
Duncan Sands | 667d4b8 | 2009-03-07 15:45:40 +0000 | [diff] [blame] | 339 | F->setLinkage(GlobalValue::WeakAnyLinkage); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 340 | |
| 341 | // If we haven't defined the impl function yet, do so now |
| 342 | if (F->isDeclaration()) { |
| 343 | |
| 344 | // Get the arguments to the function |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 345 | Function::arg_iterator args = F->arg_begin(); |
| 346 | Value* Val = args++; Val->setName("Val"); |
| 347 | Value* Lo = args++; Lo->setName("Lo"); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 348 | Value* Hi = args++; Hi->setName("High"); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 349 | |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 350 | // We want to select a range of bits here such that [Hi, Lo] is shifted |
| 351 | // down to the low bits. However, it is quite possible that Hi is smaller |
| 352 | // than Lo in which case the bits have to be reversed. |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 353 | |
| 354 | // Create the blocks we will need for the two cases (forward, reverse) |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 355 | BasicBlock* CurBB = BasicBlock::Create("entry", F); |
| 356 | BasicBlock *RevSize = BasicBlock::Create("revsize", CurBB->getParent()); |
| 357 | BasicBlock *FwdSize = BasicBlock::Create("fwdsize", CurBB->getParent()); |
| 358 | BasicBlock *Compute = BasicBlock::Create("compute", CurBB->getParent()); |
| 359 | BasicBlock *Reverse = BasicBlock::Create("reverse", CurBB->getParent()); |
| 360 | BasicBlock *RsltBlk = BasicBlock::Create("result", CurBB->getParent()); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 361 | |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 362 | // Cast Hi and Lo to the size of Val so the widths are all the same |
| 363 | if (Hi->getType() != Val->getType()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 364 | Hi = CastInst::CreateIntegerCast(Hi, Val->getType(), false, |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 365 | "tmp", CurBB); |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 366 | if (Lo->getType() != Val->getType()) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 367 | Lo = CastInst::CreateIntegerCast(Lo, Val->getType(), false, |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 368 | "tmp", CurBB); |
| 369 | |
| 370 | // Compute a few things that both cases will need, up front. |
| 371 | Constant* Zero = ConstantInt::get(Val->getType(), 0); |
| 372 | Constant* One = ConstantInt::get(Val->getType(), 1); |
| 373 | Constant* AllOnes = ConstantInt::getAllOnesValue(Val->getType()); |
| 374 | |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 375 | // Compare the Hi and Lo bit positions. This is used to determine |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 376 | // which case we have (forward or reverse) |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 377 | ICmpInst *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, Hi, Lo, "less",CurBB); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 378 | BranchInst::Create(RevSize, FwdSize, Cmp, CurBB); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 379 | |
| 380 | // First, copmute the number of bits in the forward case. |
| 381 | Instruction* FBitSize = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 382 | BinaryOperator::CreateSub(Hi, Lo,"fbits", FwdSize); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 383 | BranchInst::Create(Compute, FwdSize); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 384 | |
| 385 | // Second, compute the number of bits in the reverse case. |
| 386 | Instruction* RBitSize = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 387 | BinaryOperator::CreateSub(Lo, Hi, "rbits", RevSize); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 388 | BranchInst::Create(Compute, RevSize); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 389 | |
| 390 | // Now, compute the bit range. Start by getting the bitsize and the shift |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 391 | // amount (either Hi or Lo) from PHI nodes. Then we compute a mask for |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 392 | // the number of bits we want in the range. We shift the bits down to the |
| 393 | // least significant bits, apply the mask to zero out unwanted high bits, |
| 394 | // and we have computed the "forward" result. It may still need to be |
| 395 | // reversed. |
| 396 | |
| 397 | // Get the BitSize from one of the two subtractions |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 398 | PHINode *BitSize = PHINode::Create(Val->getType(), "bits", Compute); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 399 | BitSize->reserveOperandSpace(2); |
| 400 | BitSize->addIncoming(FBitSize, FwdSize); |
| 401 | BitSize->addIncoming(RBitSize, RevSize); |
| 402 | |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 403 | // Get the ShiftAmount as the smaller of Hi/Lo |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 404 | PHINode *ShiftAmt = PHINode::Create(Val->getType(), "shiftamt", Compute); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 405 | ShiftAmt->reserveOperandSpace(2); |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 406 | ShiftAmt->addIncoming(Lo, FwdSize); |
| 407 | ShiftAmt->addIncoming(Hi, RevSize); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 408 | |
| 409 | // Increment the bit size |
| 410 | Instruction *BitSizePlusOne = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 411 | BinaryOperator::CreateAdd(BitSize, One, "bits", Compute); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 412 | |
| 413 | // Create a Mask to zero out the high order bits. |
| 414 | Instruction* Mask = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 415 | BinaryOperator::CreateShl(AllOnes, BitSizePlusOne, "mask", Compute); |
| 416 | Mask = BinaryOperator::CreateNot(Mask, "mask", Compute); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 417 | |
| 418 | // Shift the bits down and apply the mask |
| 419 | Instruction* FRes = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 420 | BinaryOperator::CreateLShr(Val, ShiftAmt, "fres", Compute); |
| 421 | FRes = BinaryOperator::CreateAnd(FRes, Mask, "fres", Compute); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 422 | BranchInst::Create(Reverse, RsltBlk, Cmp, Compute); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 423 | |
| 424 | // In the Reverse block we have the mask already in FRes but we must reverse |
| 425 | // it by shifting FRes bits right and putting them in RRes by shifting them |
| 426 | // in from left. |
| 427 | |
| 428 | // First set up our loop counters |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 429 | PHINode *Count = PHINode::Create(Val->getType(), "count", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 430 | Count->reserveOperandSpace(2); |
| 431 | Count->addIncoming(BitSizePlusOne, Compute); |
| 432 | |
| 433 | // Next, get the value that we are shifting. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 434 | PHINode *BitsToShift = PHINode::Create(Val->getType(), "val", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 435 | BitsToShift->reserveOperandSpace(2); |
| 436 | BitsToShift->addIncoming(FRes, Compute); |
| 437 | |
| 438 | // Finally, get the result of the last computation |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 439 | PHINode *RRes = PHINode::Create(Val->getType(), "rres", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 440 | RRes->reserveOperandSpace(2); |
| 441 | RRes->addIncoming(Zero, Compute); |
| 442 | |
| 443 | // Decrement the counter |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 444 | Instruction *Decr = BinaryOperator::CreateSub(Count, One, "decr", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 445 | Count->addIncoming(Decr, Reverse); |
| 446 | |
| 447 | // Compute the Bit that we want to move |
| 448 | Instruction *Bit = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 449 | BinaryOperator::CreateAnd(BitsToShift, One, "bit", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 450 | |
| 451 | // Compute the new value for next iteration. |
| 452 | Instruction *NewVal = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 453 | BinaryOperator::CreateLShr(BitsToShift, One, "rshift", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 454 | BitsToShift->addIncoming(NewVal, Reverse); |
| 455 | |
| 456 | // Shift the bit into the low bits of the result. |
| 457 | Instruction *NewRes = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 458 | BinaryOperator::CreateShl(RRes, One, "lshift", Reverse); |
| 459 | NewRes = BinaryOperator::CreateOr(NewRes, Bit, "addbit", Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 460 | RRes->addIncoming(NewRes, Reverse); |
| 461 | |
| 462 | // Terminate loop if we've moved all the bits. |
| 463 | ICmpInst *Cond = |
| 464 | new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "cond", Reverse); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 465 | BranchInst::Create(RsltBlk, Reverse, Cond, Reverse); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 466 | |
| 467 | // Finally, in the result block, select one of the two results with a PHI |
| 468 | // node and return the result; |
| 469 | CurBB = RsltBlk; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 470 | PHINode *BitSelect = PHINode::Create(Val->getType(), "part_select", CurBB); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 471 | BitSelect->reserveOperandSpace(2); |
| 472 | BitSelect->addIncoming(FRes, Compute); |
| 473 | BitSelect->addIncoming(NewRes, Reverse); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 474 | ReturnInst::Create(BitSelect, CurBB); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | // Return a call to the implementation function |
Reid Spencer | 5156f5b | 2007-05-12 11:07:40 +0000 | [diff] [blame] | 478 | Value *Args[] = { |
| 479 | CI->getOperand(1), |
| 480 | CI->getOperand(2), |
| 481 | CI->getOperand(3) |
| 482 | }; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 483 | return CallInst::Create(F, Args, array_endof(Args), CI->getName(), CI); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 486 | /// Convert the llvm.part.set.iX.iY.iZ intrinsic. This intrinsic takes |
| 487 | /// four integer arguments (iAny %Value, iAny %Replacement, i32 %Low, i32 %High) |
| 488 | /// The first two arguments can be any bit width. The result is the same width |
| 489 | /// as %Value. The operation replaces bits between %Low and %High with the value |
| 490 | /// in %Replacement. If %Replacement is not the same width, it is truncated or |
| 491 | /// zero extended as appropriate to fit the bits being replaced. If %Low is |
| 492 | /// greater than %High then the inverse set of bits are replaced. |
| 493 | /// @brief Lowering of llvm.bit.part.set intrinsic. |
| 494 | static Instruction *LowerPartSet(CallInst *CI) { |
| 495 | // Make sure we're dealing with a part select intrinsic here |
| 496 | Function *F = CI->getCalledFunction(); |
| 497 | const FunctionType *FT = F->getFunctionType(); |
| 498 | if (!F->isDeclaration() || !FT->getReturnType()->isInteger() || |
| 499 | FT->getNumParams() != 4 || !FT->getParamType(0)->isInteger() || |
| 500 | !FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger() || |
| 501 | !FT->getParamType(3)->isInteger()) |
| 502 | return CI; |
| 503 | |
| 504 | // Get the intrinsic implementation function by converting all the . to _ |
| 505 | // in the intrinsic's function name and then reconstructing the function |
| 506 | // declaration. |
| 507 | std::string Name(F->getName()); |
| 508 | for (unsigned i = 4; i < Name.length(); ++i) |
| 509 | if (Name[i] == '.') |
| 510 | Name[i] = '_'; |
| 511 | Module* M = F->getParent(); |
| 512 | F = cast<Function>(M->getOrInsertFunction(Name, FT)); |
Duncan Sands | 667d4b8 | 2009-03-07 15:45:40 +0000 | [diff] [blame] | 513 | F->setLinkage(GlobalValue::WeakAnyLinkage); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 514 | |
| 515 | // If we haven't defined the impl function yet, do so now |
| 516 | if (F->isDeclaration()) { |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 517 | // Get the arguments for the function. |
| 518 | Function::arg_iterator args = F->arg_begin(); |
| 519 | Value* Val = args++; Val->setName("Val"); |
| 520 | Value* Rep = args++; Rep->setName("Rep"); |
| 521 | Value* Lo = args++; Lo->setName("Lo"); |
| 522 | Value* Hi = args++; Hi->setName("Hi"); |
| 523 | |
| 524 | // Get some types we need |
| 525 | const IntegerType* ValTy = cast<IntegerType>(Val->getType()); |
| 526 | const IntegerType* RepTy = cast<IntegerType>(Rep->getType()); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 527 | uint32_t RepBits = RepTy->getBitWidth(); |
| 528 | |
| 529 | // Constant Definitions |
| 530 | ConstantInt* RepBitWidth = ConstantInt::get(Type::Int32Ty, RepBits); |
| 531 | ConstantInt* RepMask = ConstantInt::getAllOnesValue(RepTy); |
| 532 | ConstantInt* ValMask = ConstantInt::getAllOnesValue(ValTy); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 533 | ConstantInt* One = ConstantInt::get(Type::Int32Ty, 1); |
| 534 | ConstantInt* ValOne = ConstantInt::get(ValTy, 1); |
| 535 | ConstantInt* Zero = ConstantInt::get(Type::Int32Ty, 0); |
| 536 | ConstantInt* ValZero = ConstantInt::get(ValTy, 0); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 537 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 538 | // Basic blocks we fill in below. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 539 | BasicBlock* entry = BasicBlock::Create("entry", F, 0); |
| 540 | BasicBlock* large = BasicBlock::Create("large", F, 0); |
| 541 | BasicBlock* small = BasicBlock::Create("small", F, 0); |
| 542 | BasicBlock* reverse = BasicBlock::Create("reverse", F, 0); |
| 543 | BasicBlock* result = BasicBlock::Create("result", F, 0); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 544 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 545 | // BASIC BLOCK: entry |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 546 | // First, get the number of bits that we're placing as an i32 |
| 547 | ICmpInst* is_forward = |
| 548 | new ICmpInst(ICmpInst::ICMP_ULT, Lo, Hi, "", entry); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 549 | SelectInst* Hi_pn = SelectInst::Create(is_forward, Hi, Lo, "", entry); |
| 550 | SelectInst* Lo_pn = SelectInst::Create(is_forward, Lo, Hi, "", entry); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 551 | BinaryOperator* NumBits = BinaryOperator::CreateSub(Hi_pn, Lo_pn, "",entry); |
| 552 | NumBits = BinaryOperator::CreateAdd(NumBits, One, "", entry); |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 553 | // Now, convert Lo and Hi to ValTy bit width |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 554 | Lo = getZExtOrTrunc(Lo_pn, ValTy, entry); |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 555 | // Determine if the replacement bits are larger than the number of bits we |
| 556 | // are replacing and deal with it. |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 557 | ICmpInst* is_large = |
| 558 | new ICmpInst(ICmpInst::ICMP_ULT, NumBits, RepBitWidth, "", entry); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 559 | BranchInst::Create(large, small, is_large, entry); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 560 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 561 | // BASIC BLOCK: large |
Reid Spencer | 9a9203b | 2007-04-16 22:21:14 +0000 | [diff] [blame] | 562 | Instruction* MaskBits = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 563 | BinaryOperator::CreateSub(RepBitWidth, NumBits, "", large); |
| 564 | MaskBits = CastInst::CreateIntegerCast(MaskBits, RepMask->getType(), |
Reid Spencer | 9a9203b | 2007-04-16 22:21:14 +0000 | [diff] [blame] | 565 | false, "", large); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 566 | BinaryOperator* Mask1 = |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 567 | BinaryOperator::CreateLShr(RepMask, MaskBits, "", large); |
| 568 | BinaryOperator* Rep2 = BinaryOperator::CreateAnd(Mask1, Rep, "", large); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 569 | BranchInst::Create(small, large); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 570 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 571 | // BASIC BLOCK: small |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 572 | PHINode* Rep3 = PHINode::Create(RepTy, "", small); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 573 | Rep3->reserveOperandSpace(2); |
Reid Spencer | eeedcb6 | 2007-04-12 13:30:14 +0000 | [diff] [blame] | 574 | Rep3->addIncoming(Rep2, large); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 575 | Rep3->addIncoming(Rep, entry); |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 576 | Value* Rep4 = getZExtOrTrunc(Rep3, ValTy, small); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 577 | BranchInst::Create(result, reverse, is_forward, small); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 578 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 579 | // BASIC BLOCK: reverse (reverses the bits of the replacement) |
| 580 | // Set up our loop counter as a PHI so we can decrement on each iteration. |
| 581 | // We will loop for the number of bits in the replacement value. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 582 | PHINode *Count = PHINode::Create(Type::Int32Ty, "count", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 583 | Count->reserveOperandSpace(2); |
| 584 | Count->addIncoming(NumBits, small); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 585 | |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 586 | // Get the value that we are shifting bits out of as a PHI because |
| 587 | // we'll change this with each iteration. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 588 | PHINode *BitsToShift = PHINode::Create(Val->getType(), "val", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 589 | BitsToShift->reserveOperandSpace(2); |
| 590 | BitsToShift->addIncoming(Rep4, small); |
| 591 | |
| 592 | // Get the result of the last computation or zero on first iteration |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 593 | PHINode *RRes = PHINode::Create(Val->getType(), "rres", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 594 | RRes->reserveOperandSpace(2); |
| 595 | RRes->addIncoming(ValZero, small); |
| 596 | |
| 597 | // Decrement the loop counter by one |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 598 | Instruction *Decr = BinaryOperator::CreateSub(Count, One, "", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 599 | Count->addIncoming(Decr, reverse); |
| 600 | |
| 601 | // Get the bit that we want to move into the result |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 602 | Value *Bit = BinaryOperator::CreateAnd(BitsToShift, ValOne, "", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 603 | |
| 604 | // Compute the new value of the bits to shift for the next iteration. |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 605 | Value *NewVal = BinaryOperator::CreateLShr(BitsToShift, ValOne,"", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 606 | BitsToShift->addIncoming(NewVal, reverse); |
| 607 | |
| 608 | // Shift the bit we extracted into the low bit of the result. |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 609 | Instruction *NewRes = BinaryOperator::CreateShl(RRes, ValOne, "", reverse); |
| 610 | NewRes = BinaryOperator::CreateOr(NewRes, Bit, "", reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 611 | RRes->addIncoming(NewRes, reverse); |
| 612 | |
| 613 | // Terminate loop if we've moved all the bits. |
| 614 | ICmpInst *Cond = new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "", reverse); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 615 | BranchInst::Create(result, reverse, Cond, reverse); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 616 | |
| 617 | // BASIC BLOCK: result |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 618 | PHINode *Rplcmnt = PHINode::Create(Val->getType(), "", result); |
Reid Spencer | 76c94b6 | 2007-05-15 02:26:52 +0000 | [diff] [blame] | 619 | Rplcmnt->reserveOperandSpace(2); |
| 620 | Rplcmnt->addIncoming(NewRes, reverse); |
| 621 | Rplcmnt->addIncoming(Rep4, small); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 622 | Value* t0 = CastInst::CreateIntegerCast(NumBits,ValTy,false,"",result); |
| 623 | Value* t1 = BinaryOperator::CreateShl(ValMask, Lo, "", result); |
| 624 | Value* t2 = BinaryOperator::CreateNot(t1, "", result); |
| 625 | Value* t3 = BinaryOperator::CreateShl(t1, t0, "", result); |
| 626 | Value* t4 = BinaryOperator::CreateOr(t2, t3, "", result); |
| 627 | Value* t5 = BinaryOperator::CreateAnd(t4, Val, "", result); |
| 628 | Value* t6 = BinaryOperator::CreateShl(Rplcmnt, Lo, "", result); |
| 629 | Value* Rslt = BinaryOperator::CreateOr(t5, t6, "part_set", result); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 630 | ReturnInst::Create(Rslt, result); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | // Return a call to the implementation function |
Reid Spencer | 5156f5b | 2007-05-12 11:07:40 +0000 | [diff] [blame] | 634 | Value *Args[] = { |
| 635 | CI->getOperand(1), |
| 636 | CI->getOperand(2), |
| 637 | CI->getOperand(3), |
| 638 | CI->getOperand(4) |
| 639 | }; |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 640 | return CallInst::Create(F, Args, array_endof(Args), CI->getName(), CI); |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 643 | static void ReplaceFPIntrinsicWithCall(CallInst *CI, Constant *FCache, |
| 644 | Constant *DCache, Constant *LDCache, |
| 645 | const char *Fname, const char *Dname, |
| 646 | const char *LDname) { |
| 647 | switch (CI->getOperand(1)->getType()->getTypeID()) { |
| 648 | default: assert(0 && "Invalid type in intrinsic"); abort(); |
| 649 | case Type::FloatTyID: |
| 650 | ReplaceCallWith(Fname, CI, CI->op_begin()+1, CI->op_end(), |
| 651 | Type::FloatTy, FCache); |
| 652 | break; |
| 653 | case Type::DoubleTyID: |
| 654 | ReplaceCallWith(Dname, CI, CI->op_begin()+1, CI->op_end(), |
| 655 | Type::DoubleTy, DCache); |
| 656 | break; |
| 657 | case Type::X86_FP80TyID: |
| 658 | case Type::FP128TyID: |
| 659 | case Type::PPC_FP128TyID: |
| 660 | ReplaceCallWith(LDname, CI, CI->op_begin()+1, CI->op_end(), |
| 661 | CI->getOperand(1)->getType(), LDCache); |
| 662 | break; |
| 663 | } |
| 664 | } |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 665 | |
Chris Lattner | b71fd78 | 2006-11-15 18:00:10 +0000 | [diff] [blame] | 666 | void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 667 | Function *Callee = CI->getCalledFunction(); |
| 668 | assert(Callee && "Cannot lower an indirect call!"); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 669 | |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 670 | switch (Callee->getIntrinsicID()) { |
| 671 | case Intrinsic::not_intrinsic: |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 672 | cerr << "Cannot lower a call to a non-intrinsic function '" |
| 673 | << Callee->getName() << "'!\n"; |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 674 | abort(); |
| 675 | default: |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 676 | cerr << "Error: Code generator does not support intrinsic function '" |
| 677 | << Callee->getName() << "'!\n"; |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 678 | abort(); |
| 679 | |
Chris Lattner | 588e72d | 2004-02-15 22:16:39 +0000 | [diff] [blame] | 680 | // The setjmp/longjmp intrinsics should only exist in the code if it was |
| 681 | // never optimized (ie, right out of the CFE), or if it has been hacked on |
| 682 | // by the lowerinvoke pass. In both cases, the right thing to do is to |
| 683 | // convert the call to an explicit setjmp or longjmp call. |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 684 | case Intrinsic::setjmp: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 685 | static Constant *SetjmpFCache = 0; |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 686 | Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(), |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 687 | Type::Int32Ty, SetjmpFCache); |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 688 | if (CI->getType() != Type::VoidTy) |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 689 | CI->replaceAllUsesWith(V); |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 690 | break; |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 691 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 692 | case Intrinsic::sigsetjmp: |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 693 | if (CI->getType() != Type::VoidTy) |
| 694 | CI->replaceAllUsesWith(Constant::getNullValue(CI->getType())); |
| 695 | break; |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 696 | |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 697 | case Intrinsic::longjmp: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 698 | static Constant *LongjmpFCache = 0; |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 699 | ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(), |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 700 | Type::VoidTy, LongjmpFCache); |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 701 | break; |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 702 | } |
Chris Lattner | 9b700f7 | 2004-02-15 22:24:51 +0000 | [diff] [blame] | 703 | |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 704 | case Intrinsic::siglongjmp: { |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 705 | // Insert the call to abort |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 706 | static Constant *AbortFCache = 0; |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 707 | ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(), |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 708 | Type::VoidTy, AbortFCache); |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 709 | break; |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 710 | } |
Reid Spencer | e9391fd | 2007-04-01 07:35:23 +0000 | [diff] [blame] | 711 | case Intrinsic::ctpop: |
Reid Spencer | 0b11820 | 2006-01-16 21:12:35 +0000 | [diff] [blame] | 712 | CI->replaceAllUsesWith(LowerCTPOP(CI->getOperand(1), CI)); |
| 713 | break; |
| 714 | |
Reid Spencer | e9391fd | 2007-04-01 07:35:23 +0000 | [diff] [blame] | 715 | case Intrinsic::bswap: |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 716 | CI->replaceAllUsesWith(LowerBSWAP(CI->getOperand(1), CI)); |
| 717 | break; |
| 718 | |
Reid Spencer | e9391fd | 2007-04-01 07:35:23 +0000 | [diff] [blame] | 719 | case Intrinsic::ctlz: |
Chris Lattner | 98cf45b | 2005-05-11 20:24:12 +0000 | [diff] [blame] | 720 | CI->replaceAllUsesWith(LowerCTLZ(CI->getOperand(1), CI)); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 721 | break; |
Nate Begeman | e598181 | 2006-01-16 07:57:00 +0000 | [diff] [blame] | 722 | |
Reid Spencer | e9391fd | 2007-04-01 07:35:23 +0000 | [diff] [blame] | 723 | case Intrinsic::cttz: { |
Chris Lattner | a801172 | 2005-05-11 20:02:14 +0000 | [diff] [blame] | 724 | // cttz(x) -> ctpop(~X & (X-1)) |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 725 | Value *Src = CI->getOperand(1); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 726 | Value *NotSrc = BinaryOperator::CreateNot(Src, Src->getName()+".not", CI); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 727 | Value *SrcM1 = ConstantInt::get(Src->getType(), 1); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 728 | SrcM1 = BinaryOperator::CreateSub(Src, SrcM1, "", CI); |
| 729 | Src = LowerCTPOP(BinaryOperator::CreateAnd(NotSrc, SrcM1, "", CI), CI); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 730 | CI->replaceAllUsesWith(Src); |
| 731 | break; |
| 732 | } |
Chris Lattner | 77b1330 | 2004-01-05 05:36:30 +0000 | [diff] [blame] | 733 | |
Chris Lattner | c6eb6d7 | 2007-04-10 03:20:39 +0000 | [diff] [blame] | 734 | case Intrinsic::part_select: |
Reid Spencer | f75b874 | 2007-04-12 02:48:46 +0000 | [diff] [blame] | 735 | CI->replaceAllUsesWith(LowerPartSelect(CI)); |
| 736 | break; |
| 737 | |
| 738 | case Intrinsic::part_set: |
| 739 | CI->replaceAllUsesWith(LowerPartSet(CI)); |
Reid Spencer | addd11d | 2007-04-04 23:48:25 +0000 | [diff] [blame] | 740 | break; |
| 741 | |
Chris Lattner | 0c067bc | 2006-01-13 02:22:08 +0000 | [diff] [blame] | 742 | case Intrinsic::stacksave: |
| 743 | case Intrinsic::stackrestore: { |
| 744 | static bool Warned = false; |
| 745 | if (!Warned) |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 746 | cerr << "WARNING: this target does not support the llvm.stack" |
| 747 | << (Callee->getIntrinsicID() == Intrinsic::stacksave ? |
| 748 | "save" : "restore") << " intrinsic.\n"; |
Chris Lattner | 0c067bc | 2006-01-13 02:22:08 +0000 | [diff] [blame] | 749 | Warned = true; |
| 750 | if (Callee->getIntrinsicID() == Intrinsic::stacksave) |
| 751 | CI->replaceAllUsesWith(Constant::getNullValue(CI->getType())); |
| 752 | break; |
| 753 | } |
| 754 | |
Chris Lattner | cf89908 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 755 | case Intrinsic::returnaddress: |
| 756 | case Intrinsic::frameaddress: |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 757 | cerr << "WARNING: this target does not support the llvm." |
| 758 | << (Callee->getIntrinsicID() == Intrinsic::returnaddress ? |
| 759 | "return" : "frame") << "address intrinsic.\n"; |
Chris Lattner | cf89908 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 760 | CI->replaceAllUsesWith(ConstantPointerNull::get( |
| 761 | cast<PointerType>(CI->getType()))); |
| 762 | break; |
| 763 | |
Chris Lattner | 0942b7c | 2005-02-28 19:27:23 +0000 | [diff] [blame] | 764 | case Intrinsic::prefetch: |
| 765 | break; // Simply strip out prefetches on unsupported architectures |
| 766 | |
Andrew Lenharth | 7f4ec3b | 2005-03-28 20:05:49 +0000 | [diff] [blame] | 767 | case Intrinsic::pcmarker: |
| 768 | break; // Simply strip out pcmarker on unsupported architectures |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 769 | case Intrinsic::readcyclecounter: { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 770 | cerr << "WARNING: this target does not support the llvm.readcyclecoun" |
| 771 | << "ter intrinsic. It is being lowered to a constant 0\n"; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 772 | CI->replaceAllUsesWith(ConstantInt::get(Type::Int64Ty, 0)); |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 773 | break; |
| 774 | } |
Andrew Lenharth | 7f4ec3b | 2005-03-28 20:05:49 +0000 | [diff] [blame] | 775 | |
Chris Lattner | 77b1330 | 2004-01-05 05:36:30 +0000 | [diff] [blame] | 776 | case Intrinsic::dbg_stoppoint: |
| 777 | case Intrinsic::dbg_region_start: |
| 778 | case Intrinsic::dbg_region_end: |
| 779 | case Intrinsic::dbg_func_start: |
Jim Laskey | 43970fe | 2006-03-23 18:06:46 +0000 | [diff] [blame] | 780 | case Intrinsic::dbg_declare: |
Duncan Sands | f664e41 | 2007-07-06 14:46:23 +0000 | [diff] [blame] | 781 | break; // Simply strip out debugging intrinsics |
| 782 | |
Jim Laskey | b180aa1 | 2007-02-21 22:53:45 +0000 | [diff] [blame] | 783 | case Intrinsic::eh_exception: |
Anton Korobeynikov | 8806c7b | 2007-09-07 11:39:35 +0000 | [diff] [blame] | 784 | case Intrinsic::eh_selector_i32: |
| 785 | case Intrinsic::eh_selector_i64: |
Duncan Sands | f664e41 | 2007-07-06 14:46:23 +0000 | [diff] [blame] | 786 | CI->replaceAllUsesWith(Constant::getNullValue(CI->getType())); |
| 787 | break; |
| 788 | |
Anton Korobeynikov | 8806c7b | 2007-09-07 11:39:35 +0000 | [diff] [blame] | 789 | case Intrinsic::eh_typeid_for_i32: |
| 790 | case Intrinsic::eh_typeid_for_i64: |
Duncan Sands | f664e41 | 2007-07-06 14:46:23 +0000 | [diff] [blame] | 791 | // Return something different to eh_selector. |
| 792 | CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 1)); |
| 793 | break; |
Chris Lattner | 5fe51cc | 2004-02-12 17:01:09 +0000 | [diff] [blame] | 794 | |
Tanya Lattner | 24e5aad | 2007-06-15 22:26:58 +0000 | [diff] [blame] | 795 | case Intrinsic::var_annotation: |
| 796 | break; // Strip out annotate intrinsic |
| 797 | |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 798 | case Intrinsic::memcpy: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 799 | static Constant *MemcpyFCache = 0; |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 800 | const IntegerType *IntPtr = TD.getIntPtrType(); |
| 801 | Value *Size = getZExtOrTrunc(CI->getOperand(3), IntPtr, CI); |
Chris Lattner | c67da0c | 2007-02-06 19:06:38 +0000 | [diff] [blame] | 802 | Value *Ops[3]; |
| 803 | Ops[0] = CI->getOperand(1); |
| 804 | Ops[1] = CI->getOperand(2); |
| 805 | Ops[2] = Size; |
| 806 | ReplaceCallWith("memcpy", CI, Ops, Ops+3, CI->getOperand(1)->getType(), |
| 807 | MemcpyFCache); |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 808 | break; |
| 809 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 810 | case Intrinsic::memmove: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 811 | static Constant *MemmoveFCache = 0; |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 812 | const IntegerType *IntPtr = TD.getIntPtrType(); |
| 813 | Value *Size = getZExtOrTrunc(CI->getOperand(3), IntPtr, CI); |
Chris Lattner | c67da0c | 2007-02-06 19:06:38 +0000 | [diff] [blame] | 814 | Value *Ops[3]; |
| 815 | Ops[0] = CI->getOperand(1); |
| 816 | Ops[1] = CI->getOperand(2); |
| 817 | Ops[2] = Size; |
| 818 | ReplaceCallWith("memmove", CI, Ops, Ops+3, CI->getOperand(1)->getType(), |
| 819 | MemmoveFCache); |
Chris Lattner | 2751e76 | 2004-02-12 18:11:20 +0000 | [diff] [blame] | 820 | break; |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 821 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 822 | case Intrinsic::memset: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 823 | static Constant *MemsetFCache = 0; |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 824 | const IntegerType *IntPtr = TD.getIntPtrType(); |
| 825 | Value *Size = getZExtOrTrunc(CI->getOperand(3), IntPtr, CI); |
Chris Lattner | c67da0c | 2007-02-06 19:06:38 +0000 | [diff] [blame] | 826 | Value *Ops[3]; |
| 827 | Ops[0] = CI->getOperand(1); |
| 828 | // Extend the amount to i32. |
Jay Foad | 589b1ef | 2009-05-11 11:32:25 +0000 | [diff] [blame] | 829 | Ops[1] = getZExtOrTrunc(CI->getOperand(2), Type::Int32Ty, CI); |
Chris Lattner | c67da0c | 2007-02-06 19:06:38 +0000 | [diff] [blame] | 830 | Ops[2] = Size; |
| 831 | ReplaceCallWith("memset", CI, Ops, Ops+3, CI->getOperand(1)->getType(), |
| 832 | MemsetFCache); |
Chris Lattner | cf89908 | 2004-02-14 02:47:17 +0000 | [diff] [blame] | 833 | break; |
| 834 | } |
Dale Johannesen | 9ab7fb3 | 2007-10-02 17:43:59 +0000 | [diff] [blame] | 835 | case Intrinsic::sqrt: { |
Chris Lattner | b76efb7 | 2007-01-07 08:12:01 +0000 | [diff] [blame] | 836 | static Constant *sqrtFCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 837 | static Constant *sqrtDCache = 0; |
Dale Johannesen | 9ab7fb3 | 2007-10-02 17:43:59 +0000 | [diff] [blame] | 838 | static Constant *sqrtLDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 839 | ReplaceFPIntrinsicWithCall(CI, sqrtFCache, sqrtDCache, sqrtLDCache, |
| 840 | "sqrtf", "sqrt", "sqrtl"); |
Dale Johannesen | 4292d1c | 2007-09-28 18:06:58 +0000 | [diff] [blame] | 841 | break; |
| 842 | } |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 843 | case Intrinsic::log: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 844 | static Constant *logFCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 845 | static Constant *logDCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 846 | static Constant *logLDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 847 | ReplaceFPIntrinsicWithCall(CI, logFCache, logDCache, logLDCache, |
| 848 | "logf", "log", "logl"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 849 | break; |
| 850 | } |
| 851 | case Intrinsic::log2: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 852 | static Constant *log2FCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 853 | static Constant *log2DCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 854 | static Constant *log2LDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 855 | ReplaceFPIntrinsicWithCall(CI, log2FCache, log2DCache, log2LDCache, |
| 856 | "log2f", "log2", "log2l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 857 | break; |
| 858 | } |
| 859 | case Intrinsic::log10: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 860 | static Constant *log10FCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 861 | static Constant *log10DCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 862 | static Constant *log10LDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 863 | ReplaceFPIntrinsicWithCall(CI, log10FCache, log10DCache, log10LDCache, |
| 864 | "log10f", "log10", "log10l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 865 | break; |
| 866 | } |
| 867 | case Intrinsic::exp: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 868 | static Constant *expFCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 869 | static Constant *expDCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 870 | static Constant *expLDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 871 | ReplaceFPIntrinsicWithCall(CI, expFCache, expDCache, expLDCache, |
| 872 | "expf", "exp", "expl"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 873 | break; |
| 874 | } |
| 875 | case Intrinsic::exp2: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 876 | static Constant *exp2FCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 877 | static Constant *exp2DCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 878 | static Constant *exp2LDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 879 | ReplaceFPIntrinsicWithCall(CI, exp2FCache, exp2DCache, exp2LDCache, |
| 880 | "exp2f", "exp2", "exp2l"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 881 | break; |
| 882 | } |
| 883 | case Intrinsic::pow: { |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 884 | static Constant *powFCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 885 | static Constant *powDCache = 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 886 | static Constant *powLDCache = 0; |
Dale Johannesen | f74185b | 2008-09-22 20:51:30 +0000 | [diff] [blame] | 887 | ReplaceFPIntrinsicWithCall(CI, powFCache, powDCache, powLDCache, |
| 888 | "powf", "pow", "powl"); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 889 | break; |
| 890 | } |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 891 | case Intrinsic::flt_rounds: |
| 892 | // Lower to "round to the nearest" |
| 893 | if (CI->getType() != Type::VoidTy) |
| 894 | CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 1)); |
| 895 | break; |
Chris Lattner | f0a3e6c | 2004-06-05 01:05:19 +0000 | [diff] [blame] | 896 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 897 | |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 898 | assert(CI->use_empty() && |
| 899 | "Lowering should have eliminated any uses of the intrinsic call!"); |
Chris Lattner | 86f3e0c | 2005-05-11 19:42:05 +0000 | [diff] [blame] | 900 | CI->eraseFromParent(); |
Chris Lattner | 3b66ecb | 2003-12-28 08:19:41 +0000 | [diff] [blame] | 901 | } |