blob: 6f9c4afad44826a6f209522536653d7f9babe868 [file] [log] [blame]
Chris Lattner3b66ecb2003-12-28 08:19:41 +00001//===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3b66ecb2003-12-28 08:19:41 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3b66ecb2003-12-28 08:19:41 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerb71fd782006-11-15 18:00:10 +000010// This file implements the IntrinsicLowering class.
Chris Lattner3b66ecb2003-12-28 08:19:41 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnercf899082004-02-14 02:47:17 +000014#include "llvm/Constants.h"
Chris Lattner5fe51cc2004-02-12 17:01:09 +000015#include "llvm/DerivedTypes.h"
Chris Lattner3b66ecb2003-12-28 08:19:41 +000016#include "llvm/Module.h"
Misha Brukman47b14a42004-07-29 17:30:56 +000017#include "llvm/Instructions.h"
Andrew Lenharth691ef2b2005-05-03 17:19:30 +000018#include "llvm/Type.h"
Bill Wendlingd9fd2ac2006-11-28 02:08:17 +000019#include "llvm/CodeGen/IntrinsicLowering.h"
20#include "llvm/Support/Streams.h"
Reid Spencer6addf2c2007-01-29 17:42:06 +000021#include "llvm/Target/TargetData.h"
Chris Lattner990b8492007-02-13 06:01:22 +000022#include "llvm/ADT/SmallVector.h"
Owen Anderson718cb662007-09-07 04:06:50 +000023#include "llvm/ADT/STLExtras.h"
Chris Lattner3b66ecb2003-12-28 08:19:41 +000024using namespace llvm;
25
Chris Lattner0979ca72004-05-09 04:29:57 +000026template <class ArgIt>
Chris Lattnerb76efb72007-01-07 08:12:01 +000027static void EnsureFunctionExists(Module &M, const char *Name,
28 ArgIt ArgBegin, ArgIt ArgEnd,
29 const Type *RetTy) {
30 // Insert a correctly-typed definition now.
Chris Lattner0979ca72004-05-09 04:29:57 +000031 std::vector<const Type *> ParamTys;
32 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
33 ParamTys.push_back(I->getType());
Chris Lattnerb76efb72007-01-07 08:12:01 +000034 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
Chris Lattner0979ca72004-05-09 04:29:57 +000035}
36
Chris Lattner588e72d2004-02-15 22:16:39 +000037/// ReplaceCallWith - This function is used when we want to lower an intrinsic
38/// call to a call of an external function. This handles hard cases such as
39/// when there was already a prototype for the external function, and if that
40/// prototype doesn't match the arguments we expect to pass in.
41template <class ArgIt>
42static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI,
Chris Lattnerb76efb72007-01-07 08:12:01 +000043 ArgIt ArgBegin, ArgIt ArgEnd,
44 const Type *RetTy, Constant *&FCache) {
Chris Lattner588e72d2004-02-15 22:16:39 +000045 if (!FCache) {
46 // If we haven't already looked up this function, check to see if the
47 // program already contains a function with this name.
48 Module *M = CI->getParent()->getParent()->getParent();
Chris Lattnerb76efb72007-01-07 08:12:01 +000049 // Get or insert the definition now.
50 std::vector<const Type *> ParamTys;
51 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
52 ParamTys.push_back((*I)->getType());
53 FCache = M->getOrInsertFunction(NewFn,
54 FunctionType::get(RetTy, ParamTys, false));
Chris Lattner588e72d2004-02-15 22:16:39 +000055 }
Chris Lattner588e72d2004-02-15 22:16:39 +000056
David Greene52eec542007-08-01 03:43:44 +000057 SmallVector<Value *, 8> Args(ArgBegin, ArgEnd);
Gabor Greif051a9502008-04-06 20:25:17 +000058 CallInst *NewCI = CallInst::Create(FCache, Args.begin(), Args.end(),
59 CI->getName(), CI);
Chris Lattnerb76efb72007-01-07 08:12:01 +000060 if (!CI->use_empty())
61 CI->replaceAllUsesWith(NewCI);
Chris Lattner02348ca2004-06-11 02:54:02 +000062 return NewCI;
Chris Lattner588e72d2004-02-15 22:16:39 +000063}
64
Chris Lattnerb71fd782006-11-15 18:00:10 +000065void IntrinsicLowering::AddPrototypes(Module &M) {
Chris Lattner0979ca72004-05-09 04:29:57 +000066 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +000067 if (I->isDeclaration() && !I->use_empty())
Chris Lattner0979ca72004-05-09 04:29:57 +000068 switch (I->getIntrinsicID()) {
69 default: break;
70 case Intrinsic::setjmp:
Chris Lattner1f243e92005-05-08 19:46:29 +000071 EnsureFunctionExists(M, "setjmp", I->arg_begin(), I->arg_end(),
Reid Spencer47857812006-12-31 05:55:36 +000072 Type::Int32Ty);
Chris Lattner0979ca72004-05-09 04:29:57 +000073 break;
74 case Intrinsic::longjmp:
Chris Lattner1f243e92005-05-08 19:46:29 +000075 EnsureFunctionExists(M, "longjmp", I->arg_begin(), I->arg_end(),
76 Type::VoidTy);
Chris Lattner0979ca72004-05-09 04:29:57 +000077 break;
78 case Intrinsic::siglongjmp:
Chris Lattner1f243e92005-05-08 19:46:29 +000079 EnsureFunctionExists(M, "abort", I->arg_end(), I->arg_end(),
80 Type::VoidTy);
Chris Lattner0979ca72004-05-09 04:29:57 +000081 break;
Chris Lattner03dd4652006-03-03 00:00:25 +000082 case Intrinsic::memcpy_i32:
83 case Intrinsic::memcpy_i64:
Christopher Lamb43ad6b32007-12-17 01:12:55 +000084 M.getOrInsertFunction("memcpy", PointerType::getUnqual(Type::Int8Ty),
85 PointerType::getUnqual(Type::Int8Ty),
86 PointerType::getUnqual(Type::Int8Ty),
Reid Spencer6addf2c2007-01-29 17:42:06 +000087 TD.getIntPtrType(), (Type *)0);
Chris Lattner0979ca72004-05-09 04:29:57 +000088 break;
Chris Lattner03dd4652006-03-03 00:00:25 +000089 case Intrinsic::memmove_i32:
90 case Intrinsic::memmove_i64:
Christopher Lamb43ad6b32007-12-17 01:12:55 +000091 M.getOrInsertFunction("memmove", PointerType::getUnqual(Type::Int8Ty),
92 PointerType::getUnqual(Type::Int8Ty),
93 PointerType::getUnqual(Type::Int8Ty),
Reid Spencer6addf2c2007-01-29 17:42:06 +000094 TD.getIntPtrType(), (Type *)0);
Chris Lattner0979ca72004-05-09 04:29:57 +000095 break;
Chris Lattner03dd4652006-03-03 00:00:25 +000096 case Intrinsic::memset_i32:
97 case Intrinsic::memset_i64:
Christopher Lamb43ad6b32007-12-17 01:12:55 +000098 M.getOrInsertFunction("memset", PointerType::getUnqual(Type::Int8Ty),
99 PointerType::getUnqual(Type::Int8Ty),
100 Type::Int32Ty,
Reid Spencer6addf2c2007-01-29 17:42:06 +0000101 TD.getIntPtrType(), (Type *)0);
Chris Lattner0979ca72004-05-09 04:29:57 +0000102 break;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000103 case Intrinsic::sqrt:
104 switch((int)I->arg_begin()->getType()->getTypeID()) {
105 case Type::FloatTyID:
Chris Lattner1f243e92005-05-08 19:46:29 +0000106 EnsureFunctionExists(M, "sqrtf", I->arg_begin(), I->arg_end(),
107 Type::FloatTy);
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000108 case Type::DoubleTyID:
Chris Lattner1f243e92005-05-08 19:46:29 +0000109 EnsureFunctionExists(M, "sqrt", I->arg_begin(), I->arg_end(),
110 Type::DoubleTy);
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000111 case Type::X86_FP80TyID:
112 case Type::FP128TyID:
113 case Type::PPC_FP128TyID:
114 EnsureFunctionExists(M, "sqrtl", I->arg_begin(), I->arg_end(),
115 I->arg_begin()->getType());
116 }
Chris Lattnerb42a9ff2005-04-30 04:07:50 +0000117 break;
Dan Gohmanc4c96602007-10-15 22:07:31 +0000118 case Intrinsic::sin:
119 switch((int)I->arg_begin()->getType()->getTypeID()) {
120 case Type::FloatTyID:
121 EnsureFunctionExists(M, "sinf", I->arg_begin(), I->arg_end(),
122 Type::FloatTy);
123 case Type::DoubleTyID:
124 EnsureFunctionExists(M, "sin", I->arg_begin(), I->arg_end(),
125 Type::DoubleTy);
126 case Type::X86_FP80TyID:
127 case Type::FP128TyID:
128 case Type::PPC_FP128TyID:
129 EnsureFunctionExists(M, "sinl", I->arg_begin(), I->arg_end(),
130 I->arg_begin()->getType());
131 }
132 break;
133 case Intrinsic::cos:
134 switch((int)I->arg_begin()->getType()->getTypeID()) {
135 case Type::FloatTyID:
136 EnsureFunctionExists(M, "cosf", I->arg_begin(), I->arg_end(),
137 Type::FloatTy);
138 case Type::DoubleTyID:
139 EnsureFunctionExists(M, "cos", I->arg_begin(), I->arg_end(),
140 Type::DoubleTy);
141 case Type::X86_FP80TyID:
142 case Type::FP128TyID:
143 case Type::PPC_FP128TyID:
144 EnsureFunctionExists(M, "cosl", I->arg_begin(), I->arg_end(),
145 I->arg_begin()->getType());
146 }
147 break;
148 case Intrinsic::pow:
149 switch((int)I->arg_begin()->getType()->getTypeID()) {
150 case Type::FloatTyID:
151 EnsureFunctionExists(M, "powf", I->arg_begin(), I->arg_end(),
152 Type::FloatTy);
153 case Type::DoubleTyID:
154 EnsureFunctionExists(M, "pow", I->arg_begin(), I->arg_end(),
155 Type::DoubleTy);
156 case Type::X86_FP80TyID:
157 case Type::FP128TyID:
158 case Type::PPC_FP128TyID:
159 EnsureFunctionExists(M, "powl", I->arg_begin(), I->arg_end(),
160 I->arg_begin()->getType());
161 }
162 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000163 case Intrinsic::log:
164 switch((int)I->arg_begin()->getType()->getTypeID()) {
165 case Type::FloatTyID:
166 EnsureFunctionExists(M, "logf", I->arg_begin(), I->arg_end(),
167 Type::FloatTy);
168 case Type::DoubleTyID:
169 EnsureFunctionExists(M, "log", I->arg_begin(), I->arg_end(),
170 Type::DoubleTy);
171 case Type::X86_FP80TyID:
172 case Type::FP128TyID:
173 case Type::PPC_FP128TyID:
174 EnsureFunctionExists(M, "logl", I->arg_begin(), I->arg_end(),
175 I->arg_begin()->getType());
176 }
177 break;
178 case Intrinsic::log2:
179 switch((int)I->arg_begin()->getType()->getTypeID()) {
180 case Type::FloatTyID:
181 EnsureFunctionExists(M, "log2f", I->arg_begin(), I->arg_end(),
182 Type::FloatTy);
183 case Type::DoubleTyID:
184 EnsureFunctionExists(M, "log2", I->arg_begin(), I->arg_end(),
185 Type::DoubleTy);
186 case Type::X86_FP80TyID:
187 case Type::FP128TyID:
188 case Type::PPC_FP128TyID:
189 EnsureFunctionExists(M, "log2l", I->arg_begin(), I->arg_end(),
190 I->arg_begin()->getType());
191 }
192 break;
193 case Intrinsic::log10:
194 switch((int)I->arg_begin()->getType()->getTypeID()) {
195 case Type::FloatTyID:
196 EnsureFunctionExists(M, "log10f", I->arg_begin(), I->arg_end(),
197 Type::FloatTy);
198 case Type::DoubleTyID:
199 EnsureFunctionExists(M, "log10", I->arg_begin(), I->arg_end(),
200 Type::DoubleTy);
201 case Type::X86_FP80TyID:
202 case Type::FP128TyID:
203 case Type::PPC_FP128TyID:
204 EnsureFunctionExists(M, "log10l", I->arg_begin(), I->arg_end(),
205 I->arg_begin()->getType());
206 }
207 break;
208 case Intrinsic::exp:
209 switch((int)I->arg_begin()->getType()->getTypeID()) {
210 case Type::FloatTyID:
211 EnsureFunctionExists(M, "expf", I->arg_begin(), I->arg_end(),
212 Type::FloatTy);
213 case Type::DoubleTyID:
214 EnsureFunctionExists(M, "exp", I->arg_begin(), I->arg_end(),
215 Type::DoubleTy);
216 case Type::X86_FP80TyID:
217 case Type::FP128TyID:
218 case Type::PPC_FP128TyID:
219 EnsureFunctionExists(M, "expl", I->arg_begin(), I->arg_end(),
220 I->arg_begin()->getType());
221 }
222 break;
223 case Intrinsic::exp2:
224 switch((int)I->arg_begin()->getType()->getTypeID()) {
225 case Type::FloatTyID:
226 EnsureFunctionExists(M, "exp2f", I->arg_begin(), I->arg_end(),
227 Type::FloatTy);
228 case Type::DoubleTyID:
229 EnsureFunctionExists(M, "exp2", I->arg_begin(), I->arg_end(),
230 Type::DoubleTy);
231 case Type::X86_FP80TyID:
232 case Type::FP128TyID:
233 case Type::PPC_FP128TyID:
234 EnsureFunctionExists(M, "exp2l", I->arg_begin(), I->arg_end(),
235 I->arg_begin()->getType());
236 }
237 break;
Chris Lattner0979ca72004-05-09 04:29:57 +0000238 }
Chris Lattner0979ca72004-05-09 04:29:57 +0000239}
Chris Lattner588e72d2004-02-15 22:16:39 +0000240
Nate Begemane5981812006-01-16 07:57:00 +0000241/// LowerBSWAP - Emit the code to lower bswap of V before the specified
242/// instruction IP.
243static Value *LowerBSWAP(Value *V, Instruction *IP) {
Chris Lattner42a75512007-01-15 02:27:26 +0000244 assert(V->getType()->isInteger() && "Can't bswap a non-integer type!");
Nate Begemane5981812006-01-16 07:57:00 +0000245
Nate Begemane5981812006-01-16 07:57:00 +0000246 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
247
248 switch(BitSize) {
249 default: assert(0 && "Unhandled type size of value to byteswap!");
250 case 16: {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000251 Value *Tmp1 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000252 ConstantInt::get(V->getType(),8),"bswap.2",IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000253 Value *Tmp2 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000254 ConstantInt::get(V->getType(),8),"bswap.1",IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000255 V = BinaryOperator::CreateOr(Tmp1, Tmp2, "bswap.i16", IP);
Nate Begemane5981812006-01-16 07:57:00 +0000256 break;
257 }
258 case 32: {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000259 Value *Tmp4 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000260 ConstantInt::get(V->getType(),24),"bswap.4", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000261 Value *Tmp3 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000262 ConstantInt::get(V->getType(),8),"bswap.3",IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000263 Value *Tmp2 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000264 ConstantInt::get(V->getType(),8),"bswap.2",IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000265 Value *Tmp1 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000266 ConstantInt::get(V->getType(),24),"bswap.1", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000267 Tmp3 = BinaryOperator::CreateAnd(Tmp3,
Reid Spencer47857812006-12-31 05:55:36 +0000268 ConstantInt::get(Type::Int32Ty, 0xFF0000),
Nate Begemane5981812006-01-16 07:57:00 +0000269 "bswap.and3", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000270 Tmp2 = BinaryOperator::CreateAnd(Tmp2,
Reid Spencer47857812006-12-31 05:55:36 +0000271 ConstantInt::get(Type::Int32Ty, 0xFF00),
Nate Begemane5981812006-01-16 07:57:00 +0000272 "bswap.and2", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000273 Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp3, "bswap.or1", IP);
274 Tmp2 = BinaryOperator::CreateOr(Tmp2, Tmp1, "bswap.or2", IP);
275 V = BinaryOperator::CreateOr(Tmp4, Tmp2, "bswap.i32", IP);
Nate Begemane5981812006-01-16 07:57:00 +0000276 break;
277 }
278 case 64: {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000279 Value *Tmp8 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000280 ConstantInt::get(V->getType(),56),"bswap.8", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000281 Value *Tmp7 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000282 ConstantInt::get(V->getType(),40),"bswap.7", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000283 Value *Tmp6 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000284 ConstantInt::get(V->getType(),24),"bswap.6", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000285 Value *Tmp5 = BinaryOperator::CreateShl(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000286 ConstantInt::get(V->getType(),8),"bswap.5", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000287 Value* Tmp4 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000288 ConstantInt::get(V->getType(),8),"bswap.4", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000289 Value* Tmp3 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000290 ConstantInt::get(V->getType(),24),"bswap.3", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000291 Value* Tmp2 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000292 ConstantInt::get(V->getType(),40),"bswap.2", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000293 Value* Tmp1 = BinaryOperator::CreateLShr(V,
Reid Spencer832254e2007-02-02 02:16:23 +0000294 ConstantInt::get(V->getType(),56),"bswap.1", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000295 Tmp7 = BinaryOperator::CreateAnd(Tmp7,
Reid Spencer47857812006-12-31 05:55:36 +0000296 ConstantInt::get(Type::Int64Ty,
Reid Spencerb83eb642006-10-20 07:07:24 +0000297 0xFF000000000000ULL),
298 "bswap.and7", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000299 Tmp6 = BinaryOperator::CreateAnd(Tmp6,
Reid Spencer47857812006-12-31 05:55:36 +0000300 ConstantInt::get(Type::Int64Ty, 0xFF0000000000ULL),
Reid Spencerb83eb642006-10-20 07:07:24 +0000301 "bswap.and6", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000302 Tmp5 = BinaryOperator::CreateAnd(Tmp5,
Reid Spencer47857812006-12-31 05:55:36 +0000303 ConstantInt::get(Type::Int64Ty, 0xFF00000000ULL),
Reid Spencerb83eb642006-10-20 07:07:24 +0000304 "bswap.and5", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000305 Tmp4 = BinaryOperator::CreateAnd(Tmp4,
Reid Spencer47857812006-12-31 05:55:36 +0000306 ConstantInt::get(Type::Int64Ty, 0xFF000000ULL),
Reid Spencerb83eb642006-10-20 07:07:24 +0000307 "bswap.and4", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000308 Tmp3 = BinaryOperator::CreateAnd(Tmp3,
Reid Spencer47857812006-12-31 05:55:36 +0000309 ConstantInt::get(Type::Int64Ty, 0xFF0000ULL),
Reid Spencerb83eb642006-10-20 07:07:24 +0000310 "bswap.and3", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000311 Tmp2 = BinaryOperator::CreateAnd(Tmp2,
Reid Spencer47857812006-12-31 05:55:36 +0000312 ConstantInt::get(Type::Int64Ty, 0xFF00ULL),
Reid Spencerb83eb642006-10-20 07:07:24 +0000313 "bswap.and2", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000314 Tmp8 = BinaryOperator::CreateOr(Tmp8, Tmp7, "bswap.or1", IP);
315 Tmp6 = BinaryOperator::CreateOr(Tmp6, Tmp5, "bswap.or2", IP);
316 Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp3, "bswap.or3", IP);
317 Tmp2 = BinaryOperator::CreateOr(Tmp2, Tmp1, "bswap.or4", IP);
318 Tmp8 = BinaryOperator::CreateOr(Tmp8, Tmp6, "bswap.or5", IP);
319 Tmp4 = BinaryOperator::CreateOr(Tmp4, Tmp2, "bswap.or6", IP);
320 V = BinaryOperator::CreateOr(Tmp8, Tmp4, "bswap.i64", IP);
Nate Begemane5981812006-01-16 07:57:00 +0000321 break;
322 }
323 }
Nate Begemane5981812006-01-16 07:57:00 +0000324 return V;
325}
326
Chris Lattner86f3e0c2005-05-11 19:42:05 +0000327/// LowerCTPOP - Emit the code to lower ctpop of V before the specified
Nate Begemane5981812006-01-16 07:57:00 +0000328/// instruction IP.
Chris Lattner86f3e0c2005-05-11 19:42:05 +0000329static Value *LowerCTPOP(Value *V, Instruction *IP) {
Chris Lattner42a75512007-01-15 02:27:26 +0000330 assert(V->getType()->isInteger() && "Can't ctpop a non-integer type!");
Chris Lattner86f3e0c2005-05-11 19:42:05 +0000331
332 static const uint64_t MaskValues[6] = {
333 0x5555555555555555ULL, 0x3333333333333333ULL,
334 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
335 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
336 };
337
Chris Lattner98cf45b2005-05-11 20:24:12 +0000338 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
Zhou Sheng02031c02007-06-02 04:10:33 +0000339 unsigned WordSize = (BitSize + 63) / 64;
340 Value *Count = ConstantInt::get(V->getType(), 0);
Reid Spencer3822ff52006-11-08 06:47:33 +0000341
Zhou Sheng02031c02007-06-02 04:10:33 +0000342 for (unsigned n = 0; n < WordSize; ++n) {
343 Value *PartValue = V;
344 for (unsigned i = 1, ct = 0; i < (BitSize>64 ? 64 : BitSize);
345 i <<= 1, ++ct) {
346 Value *MaskCst = ConstantInt::get(V->getType(), MaskValues[ct]);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000347 Value *LHS = BinaryOperator::CreateAnd(
Zhou Sheng02031c02007-06-02 04:10:33 +0000348 PartValue, MaskCst, "cppop.and1", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000349 Value *VShift = BinaryOperator::CreateLShr(PartValue,
Zhou Sheng02031c02007-06-02 04:10:33 +0000350 ConstantInt::get(V->getType(), i), "ctpop.sh", IP);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000351 Value *RHS = BinaryOperator::CreateAnd(VShift, MaskCst, "cppop.and2", IP);
352 PartValue = BinaryOperator::CreateAdd(LHS, RHS, "ctpop.step", IP);
Zhou Sheng02031c02007-06-02 04:10:33 +0000353 }
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000354 Count = BinaryOperator::CreateAdd(PartValue, Count, "ctpop.part", IP);
Zhou Sheng02031c02007-06-02 04:10:33 +0000355 if (BitSize > 64) {
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000356 V = BinaryOperator::CreateLShr(V, ConstantInt::get(V->getType(), 64),
Zhou Sheng02031c02007-06-02 04:10:33 +0000357 "ctpop.part.sh", IP);
358 BitSize -= 64;
359 }
Chris Lattner86f3e0c2005-05-11 19:42:05 +0000360 }
361
Chris Lattner914ce452007-08-06 16:36:18 +0000362 return Count;
Chris Lattner86f3e0c2005-05-11 19:42:05 +0000363}
364
Chris Lattner98cf45b2005-05-11 20:24:12 +0000365/// LowerCTLZ - Emit the code to lower ctlz of V before the specified
Nate Begemane5981812006-01-16 07:57:00 +0000366/// instruction IP.
Chris Lattner98cf45b2005-05-11 20:24:12 +0000367static Value *LowerCTLZ(Value *V, Instruction *IP) {
Chris Lattner98cf45b2005-05-11 20:24:12 +0000368
369 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
Zhou Sheng02031c02007-06-02 04:10:33 +0000370 for (unsigned i = 1; i < BitSize; i <<= 1) {
Reid Spencer832254e2007-02-02 02:16:23 +0000371 Value *ShVal = ConstantInt::get(V->getType(), i);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000372 ShVal = BinaryOperator::CreateLShr(V, ShVal, "ctlz.sh", IP);
373 V = BinaryOperator::CreateOr(V, ShVal, "ctlz.step", IP);
Chris Lattner98cf45b2005-05-11 20:24:12 +0000374 }
375
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000376 V = BinaryOperator::CreateNot(V, "", IP);
Chris Lattner98cf45b2005-05-11 20:24:12 +0000377 return LowerCTPOP(V, IP);
378}
379
Reid Spencerf75b8742007-04-12 02:48:46 +0000380/// Convert the llvm.part.select.iX.iY intrinsic. This intrinsic takes
381/// three integer arguments. The first argument is the Value from which the
382/// bits will be selected. It may be of any bit width. The second and third
383/// arguments specify a range of bits to select with the second argument
384/// specifying the low bit and the third argument specifying the high bit. Both
385/// must be type i32. The result is the corresponding selected bits from the
386/// Value in the same width as the Value (first argument). If the low bit index
387/// is higher than the high bit index then the inverse selection is done and
388/// the bits are returned in inverse order.
389/// @brief Lowering of llvm.part.select intrinsic.
390static Instruction *LowerPartSelect(CallInst *CI) {
Reid Spenceraddd11d2007-04-04 23:48:25 +0000391 // Make sure we're dealing with a part select intrinsic here
392 Function *F = CI->getCalledFunction();
393 const FunctionType *FT = F->getFunctionType();
394 if (!F->isDeclaration() || !FT->getReturnType()->isInteger() ||
395 FT->getNumParams() != 3 || !FT->getParamType(0)->isInteger() ||
396 !FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger())
397 return CI;
398
399 // Get the intrinsic implementation function by converting all the . to _
400 // in the intrinsic's function name and then reconstructing the function
401 // declaration.
402 std::string Name(F->getName());
403 for (unsigned i = 4; i < Name.length(); ++i)
404 if (Name[i] == '.')
405 Name[i] = '_';
406 Module* M = F->getParent();
407 F = cast<Function>(M->getOrInsertFunction(Name, FT));
Reid Spencerdf413532007-04-12 21:53:38 +0000408 F->setLinkage(GlobalValue::WeakLinkage);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000409
410 // If we haven't defined the impl function yet, do so now
411 if (F->isDeclaration()) {
412
413 // Get the arguments to the function
Reid Spencereeedcb62007-04-12 13:30:14 +0000414 Function::arg_iterator args = F->arg_begin();
415 Value* Val = args++; Val->setName("Val");
416 Value* Lo = args++; Lo->setName("Lo");
Gabor Greif051a9502008-04-06 20:25:17 +0000417 Value* Hi = args++; Hi->setName("High");
Reid Spenceraddd11d2007-04-04 23:48:25 +0000418
Reid Spencereeedcb62007-04-12 13:30:14 +0000419 // We want to select a range of bits here such that [Hi, Lo] is shifted
420 // down to the low bits. However, it is quite possible that Hi is smaller
421 // than Lo in which case the bits have to be reversed.
Reid Spenceraddd11d2007-04-04 23:48:25 +0000422
423 // Create the blocks we will need for the two cases (forward, reverse)
Gabor Greif051a9502008-04-06 20:25:17 +0000424 BasicBlock* CurBB = BasicBlock::Create("entry", F);
425 BasicBlock *RevSize = BasicBlock::Create("revsize", CurBB->getParent());
426 BasicBlock *FwdSize = BasicBlock::Create("fwdsize", CurBB->getParent());
427 BasicBlock *Compute = BasicBlock::Create("compute", CurBB->getParent());
428 BasicBlock *Reverse = BasicBlock::Create("reverse", CurBB->getParent());
429 BasicBlock *RsltBlk = BasicBlock::Create("result", CurBB->getParent());
Reid Spenceraddd11d2007-04-04 23:48:25 +0000430
Reid Spencereeedcb62007-04-12 13:30:14 +0000431 // Cast Hi and Lo to the size of Val so the widths are all the same
432 if (Hi->getType() != Val->getType())
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000433 Hi = CastInst::CreateIntegerCast(Hi, Val->getType(), false,
Reid Spenceraddd11d2007-04-04 23:48:25 +0000434 "tmp", CurBB);
Reid Spencereeedcb62007-04-12 13:30:14 +0000435 if (Lo->getType() != Val->getType())
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000436 Lo = CastInst::CreateIntegerCast(Lo, Val->getType(), false,
Reid Spenceraddd11d2007-04-04 23:48:25 +0000437 "tmp", CurBB);
438
439 // Compute a few things that both cases will need, up front.
440 Constant* Zero = ConstantInt::get(Val->getType(), 0);
441 Constant* One = ConstantInt::get(Val->getType(), 1);
442 Constant* AllOnes = ConstantInt::getAllOnesValue(Val->getType());
443
Reid Spencereeedcb62007-04-12 13:30:14 +0000444 // Compare the Hi and Lo bit positions. This is used to determine
Reid Spenceraddd11d2007-04-04 23:48:25 +0000445 // which case we have (forward or reverse)
Reid Spencereeedcb62007-04-12 13:30:14 +0000446 ICmpInst *Cmp = new ICmpInst(ICmpInst::ICMP_ULT, Hi, Lo, "less",CurBB);
Gabor Greif051a9502008-04-06 20:25:17 +0000447 BranchInst::Create(RevSize, FwdSize, Cmp, CurBB);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000448
449 // First, copmute the number of bits in the forward case.
450 Instruction* FBitSize =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000451 BinaryOperator::CreateSub(Hi, Lo,"fbits", FwdSize);
Gabor Greif051a9502008-04-06 20:25:17 +0000452 BranchInst::Create(Compute, FwdSize);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000453
454 // Second, compute the number of bits in the reverse case.
455 Instruction* RBitSize =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000456 BinaryOperator::CreateSub(Lo, Hi, "rbits", RevSize);
Gabor Greif051a9502008-04-06 20:25:17 +0000457 BranchInst::Create(Compute, RevSize);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000458
459 // Now, compute the bit range. Start by getting the bitsize and the shift
Reid Spencereeedcb62007-04-12 13:30:14 +0000460 // amount (either Hi or Lo) from PHI nodes. Then we compute a mask for
Reid Spenceraddd11d2007-04-04 23:48:25 +0000461 // the number of bits we want in the range. We shift the bits down to the
462 // least significant bits, apply the mask to zero out unwanted high bits,
463 // and we have computed the "forward" result. It may still need to be
464 // reversed.
465
466 // Get the BitSize from one of the two subtractions
Gabor Greif051a9502008-04-06 20:25:17 +0000467 PHINode *BitSize = PHINode::Create(Val->getType(), "bits", Compute);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000468 BitSize->reserveOperandSpace(2);
469 BitSize->addIncoming(FBitSize, FwdSize);
470 BitSize->addIncoming(RBitSize, RevSize);
471
Reid Spencereeedcb62007-04-12 13:30:14 +0000472 // Get the ShiftAmount as the smaller of Hi/Lo
Gabor Greif051a9502008-04-06 20:25:17 +0000473 PHINode *ShiftAmt = PHINode::Create(Val->getType(), "shiftamt", Compute);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000474 ShiftAmt->reserveOperandSpace(2);
Reid Spencereeedcb62007-04-12 13:30:14 +0000475 ShiftAmt->addIncoming(Lo, FwdSize);
476 ShiftAmt->addIncoming(Hi, RevSize);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000477
478 // Increment the bit size
479 Instruction *BitSizePlusOne =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000480 BinaryOperator::CreateAdd(BitSize, One, "bits", Compute);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000481
482 // Create a Mask to zero out the high order bits.
483 Instruction* Mask =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000484 BinaryOperator::CreateShl(AllOnes, BitSizePlusOne, "mask", Compute);
485 Mask = BinaryOperator::CreateNot(Mask, "mask", Compute);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000486
487 // Shift the bits down and apply the mask
488 Instruction* FRes =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000489 BinaryOperator::CreateLShr(Val, ShiftAmt, "fres", Compute);
490 FRes = BinaryOperator::CreateAnd(FRes, Mask, "fres", Compute);
Gabor Greif051a9502008-04-06 20:25:17 +0000491 BranchInst::Create(Reverse, RsltBlk, Cmp, Compute);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000492
493 // In the Reverse block we have the mask already in FRes but we must reverse
494 // it by shifting FRes bits right and putting them in RRes by shifting them
495 // in from left.
496
497 // First set up our loop counters
Gabor Greif051a9502008-04-06 20:25:17 +0000498 PHINode *Count = PHINode::Create(Val->getType(), "count", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000499 Count->reserveOperandSpace(2);
500 Count->addIncoming(BitSizePlusOne, Compute);
501
502 // Next, get the value that we are shifting.
Gabor Greif051a9502008-04-06 20:25:17 +0000503 PHINode *BitsToShift = PHINode::Create(Val->getType(), "val", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000504 BitsToShift->reserveOperandSpace(2);
505 BitsToShift->addIncoming(FRes, Compute);
506
507 // Finally, get the result of the last computation
Gabor Greif051a9502008-04-06 20:25:17 +0000508 PHINode *RRes = PHINode::Create(Val->getType(), "rres", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000509 RRes->reserveOperandSpace(2);
510 RRes->addIncoming(Zero, Compute);
511
512 // Decrement the counter
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000513 Instruction *Decr = BinaryOperator::CreateSub(Count, One, "decr", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000514 Count->addIncoming(Decr, Reverse);
515
516 // Compute the Bit that we want to move
517 Instruction *Bit =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000518 BinaryOperator::CreateAnd(BitsToShift, One, "bit", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000519
520 // Compute the new value for next iteration.
521 Instruction *NewVal =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000522 BinaryOperator::CreateLShr(BitsToShift, One, "rshift", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000523 BitsToShift->addIncoming(NewVal, Reverse);
524
525 // Shift the bit into the low bits of the result.
526 Instruction *NewRes =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000527 BinaryOperator::CreateShl(RRes, One, "lshift", Reverse);
528 NewRes = BinaryOperator::CreateOr(NewRes, Bit, "addbit", Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000529 RRes->addIncoming(NewRes, Reverse);
530
531 // Terminate loop if we've moved all the bits.
532 ICmpInst *Cond =
533 new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "cond", Reverse);
Gabor Greif051a9502008-04-06 20:25:17 +0000534 BranchInst::Create(RsltBlk, Reverse, Cond, Reverse);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000535
536 // Finally, in the result block, select one of the two results with a PHI
537 // node and return the result;
538 CurBB = RsltBlk;
Gabor Greif051a9502008-04-06 20:25:17 +0000539 PHINode *BitSelect = PHINode::Create(Val->getType(), "part_select", CurBB);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000540 BitSelect->reserveOperandSpace(2);
541 BitSelect->addIncoming(FRes, Compute);
542 BitSelect->addIncoming(NewRes, Reverse);
Gabor Greif051a9502008-04-06 20:25:17 +0000543 ReturnInst::Create(BitSelect, CurBB);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000544 }
545
546 // Return a call to the implementation function
Reid Spencer5156f5b2007-05-12 11:07:40 +0000547 Value *Args[] = {
548 CI->getOperand(1),
549 CI->getOperand(2),
550 CI->getOperand(3)
551 };
Gabor Greif051a9502008-04-06 20:25:17 +0000552 return CallInst::Create(F, Args, array_endof(Args), CI->getName(), CI);
Reid Spenceraddd11d2007-04-04 23:48:25 +0000553}
554
Reid Spencerf75b8742007-04-12 02:48:46 +0000555/// Convert the llvm.part.set.iX.iY.iZ intrinsic. This intrinsic takes
556/// four integer arguments (iAny %Value, iAny %Replacement, i32 %Low, i32 %High)
557/// The first two arguments can be any bit width. The result is the same width
558/// as %Value. The operation replaces bits between %Low and %High with the value
559/// in %Replacement. If %Replacement is not the same width, it is truncated or
560/// zero extended as appropriate to fit the bits being replaced. If %Low is
561/// greater than %High then the inverse set of bits are replaced.
562/// @brief Lowering of llvm.bit.part.set intrinsic.
563static Instruction *LowerPartSet(CallInst *CI) {
564 // Make sure we're dealing with a part select intrinsic here
565 Function *F = CI->getCalledFunction();
566 const FunctionType *FT = F->getFunctionType();
567 if (!F->isDeclaration() || !FT->getReturnType()->isInteger() ||
568 FT->getNumParams() != 4 || !FT->getParamType(0)->isInteger() ||
569 !FT->getParamType(1)->isInteger() || !FT->getParamType(2)->isInteger() ||
570 !FT->getParamType(3)->isInteger())
571 return CI;
572
573 // Get the intrinsic implementation function by converting all the . to _
574 // in the intrinsic's function name and then reconstructing the function
575 // declaration.
576 std::string Name(F->getName());
577 for (unsigned i = 4; i < Name.length(); ++i)
578 if (Name[i] == '.')
579 Name[i] = '_';
580 Module* M = F->getParent();
581 F = cast<Function>(M->getOrInsertFunction(Name, FT));
Reid Spencerdf413532007-04-12 21:53:38 +0000582 F->setLinkage(GlobalValue::WeakLinkage);
Reid Spencerf75b8742007-04-12 02:48:46 +0000583
584 // If we haven't defined the impl function yet, do so now
585 if (F->isDeclaration()) {
Reid Spencerf75b8742007-04-12 02:48:46 +0000586 // Get the arguments for the function.
587 Function::arg_iterator args = F->arg_begin();
588 Value* Val = args++; Val->setName("Val");
589 Value* Rep = args++; Rep->setName("Rep");
590 Value* Lo = args++; Lo->setName("Lo");
591 Value* Hi = args++; Hi->setName("Hi");
592
593 // Get some types we need
594 const IntegerType* ValTy = cast<IntegerType>(Val->getType());
595 const IntegerType* RepTy = cast<IntegerType>(Rep->getType());
596 uint32_t ValBits = ValTy->getBitWidth();
597 uint32_t RepBits = RepTy->getBitWidth();
598
599 // Constant Definitions
600 ConstantInt* RepBitWidth = ConstantInt::get(Type::Int32Ty, RepBits);
601 ConstantInt* RepMask = ConstantInt::getAllOnesValue(RepTy);
602 ConstantInt* ValMask = ConstantInt::getAllOnesValue(ValTy);
Reid Spencer76c94b62007-05-15 02:26:52 +0000603 ConstantInt* One = ConstantInt::get(Type::Int32Ty, 1);
604 ConstantInt* ValOne = ConstantInt::get(ValTy, 1);
605 ConstantInt* Zero = ConstantInt::get(Type::Int32Ty, 0);
606 ConstantInt* ValZero = ConstantInt::get(ValTy, 0);
Reid Spencerf75b8742007-04-12 02:48:46 +0000607
Reid Spencer76c94b62007-05-15 02:26:52 +0000608 // Basic blocks we fill in below.
Gabor Greif051a9502008-04-06 20:25:17 +0000609 BasicBlock* entry = BasicBlock::Create("entry", F, 0);
610 BasicBlock* large = BasicBlock::Create("large", F, 0);
611 BasicBlock* small = BasicBlock::Create("small", F, 0);
612 BasicBlock* reverse = BasicBlock::Create("reverse", F, 0);
613 BasicBlock* result = BasicBlock::Create("result", F, 0);
Reid Spencerf75b8742007-04-12 02:48:46 +0000614
Reid Spencer76c94b62007-05-15 02:26:52 +0000615 // BASIC BLOCK: entry
Reid Spencereeedcb62007-04-12 13:30:14 +0000616 // First, get the number of bits that we're placing as an i32
617 ICmpInst* is_forward =
618 new ICmpInst(ICmpInst::ICMP_ULT, Lo, Hi, "", entry);
Gabor Greif051a9502008-04-06 20:25:17 +0000619 SelectInst* Hi_pn = SelectInst::Create(is_forward, Hi, Lo, "", entry);
620 SelectInst* Lo_pn = SelectInst::Create(is_forward, Lo, Hi, "", entry);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000621 BinaryOperator* NumBits = BinaryOperator::CreateSub(Hi_pn, Lo_pn, "",entry);
622 NumBits = BinaryOperator::CreateAdd(NumBits, One, "", entry);
Reid Spencereeedcb62007-04-12 13:30:14 +0000623 // Now, convert Lo and Hi to ValTy bit width
Reid Spencerf75b8742007-04-12 02:48:46 +0000624 if (ValBits > 32) {
Reid Spencer76c94b62007-05-15 02:26:52 +0000625 Lo = new ZExtInst(Lo_pn, ValTy, "", entry);
Reid Spencerf75b8742007-04-12 02:48:46 +0000626 } else if (ValBits < 32) {
Reid Spencer76c94b62007-05-15 02:26:52 +0000627 Lo = new TruncInst(Lo_pn, ValTy, "", entry);
Reid Spencerf75b8742007-04-12 02:48:46 +0000628 }
Reid Spencereeedcb62007-04-12 13:30:14 +0000629 // Determine if the replacement bits are larger than the number of bits we
630 // are replacing and deal with it.
Reid Spencerf75b8742007-04-12 02:48:46 +0000631 ICmpInst* is_large =
632 new ICmpInst(ICmpInst::ICMP_ULT, NumBits, RepBitWidth, "", entry);
Gabor Greif051a9502008-04-06 20:25:17 +0000633 BranchInst::Create(large, small, is_large, entry);
Reid Spencerf75b8742007-04-12 02:48:46 +0000634
Reid Spencer76c94b62007-05-15 02:26:52 +0000635 // BASIC BLOCK: large
Reid Spencer9a9203b2007-04-16 22:21:14 +0000636 Instruction* MaskBits =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000637 BinaryOperator::CreateSub(RepBitWidth, NumBits, "", large);
638 MaskBits = CastInst::CreateIntegerCast(MaskBits, RepMask->getType(),
Reid Spencer9a9203b2007-04-16 22:21:14 +0000639 false, "", large);
Reid Spencerf75b8742007-04-12 02:48:46 +0000640 BinaryOperator* Mask1 =
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000641 BinaryOperator::CreateLShr(RepMask, MaskBits, "", large);
642 BinaryOperator* Rep2 = BinaryOperator::CreateAnd(Mask1, Rep, "", large);
Gabor Greif051a9502008-04-06 20:25:17 +0000643 BranchInst::Create(small, large);
Reid Spencerf75b8742007-04-12 02:48:46 +0000644
Reid Spencer76c94b62007-05-15 02:26:52 +0000645 // BASIC BLOCK: small
Gabor Greif051a9502008-04-06 20:25:17 +0000646 PHINode* Rep3 = PHINode::Create(RepTy, "", small);
Reid Spencerf75b8742007-04-12 02:48:46 +0000647 Rep3->reserveOperandSpace(2);
Reid Spencereeedcb62007-04-12 13:30:14 +0000648 Rep3->addIncoming(Rep2, large);
Reid Spencerf75b8742007-04-12 02:48:46 +0000649 Rep3->addIncoming(Rep, entry);
Reid Spencer37958092007-04-12 12:46:33 +0000650 Value* Rep4 = Rep3;
651 if (ValBits > RepBits)
652 Rep4 = new ZExtInst(Rep3, ValTy, "", small);
653 else if (ValBits < RepBits)
654 Rep4 = new TruncInst(Rep3, ValTy, "", small);
Gabor Greif051a9502008-04-06 20:25:17 +0000655 BranchInst::Create(result, reverse, is_forward, small);
Reid Spencerf75b8742007-04-12 02:48:46 +0000656
Reid Spencer76c94b62007-05-15 02:26:52 +0000657 // BASIC BLOCK: reverse (reverses the bits of the replacement)
658 // Set up our loop counter as a PHI so we can decrement on each iteration.
659 // We will loop for the number of bits in the replacement value.
Gabor Greif051a9502008-04-06 20:25:17 +0000660 PHINode *Count = PHINode::Create(Type::Int32Ty, "count", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000661 Count->reserveOperandSpace(2);
662 Count->addIncoming(NumBits, small);
Reid Spencerf75b8742007-04-12 02:48:46 +0000663
Reid Spencer76c94b62007-05-15 02:26:52 +0000664 // Get the value that we are shifting bits out of as a PHI because
665 // we'll change this with each iteration.
Gabor Greif051a9502008-04-06 20:25:17 +0000666 PHINode *BitsToShift = PHINode::Create(Val->getType(), "val", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000667 BitsToShift->reserveOperandSpace(2);
668 BitsToShift->addIncoming(Rep4, small);
669
670 // Get the result of the last computation or zero on first iteration
Gabor Greif051a9502008-04-06 20:25:17 +0000671 PHINode *RRes = PHINode::Create(Val->getType(), "rres", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000672 RRes->reserveOperandSpace(2);
673 RRes->addIncoming(ValZero, small);
674
675 // Decrement the loop counter by one
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000676 Instruction *Decr = BinaryOperator::CreateSub(Count, One, "", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000677 Count->addIncoming(Decr, reverse);
678
679 // Get the bit that we want to move into the result
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000680 Value *Bit = BinaryOperator::CreateAnd(BitsToShift, ValOne, "", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000681
682 // Compute the new value of the bits to shift for the next iteration.
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000683 Value *NewVal = BinaryOperator::CreateLShr(BitsToShift, ValOne,"", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000684 BitsToShift->addIncoming(NewVal, reverse);
685
686 // Shift the bit we extracted into the low bit of the result.
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000687 Instruction *NewRes = BinaryOperator::CreateShl(RRes, ValOne, "", reverse);
688 NewRes = BinaryOperator::CreateOr(NewRes, Bit, "", reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000689 RRes->addIncoming(NewRes, reverse);
690
691 // Terminate loop if we've moved all the bits.
692 ICmpInst *Cond = new ICmpInst(ICmpInst::ICMP_EQ, Decr, Zero, "", reverse);
Gabor Greif051a9502008-04-06 20:25:17 +0000693 BranchInst::Create(result, reverse, Cond, reverse);
Reid Spencer76c94b62007-05-15 02:26:52 +0000694
695 // BASIC BLOCK: result
Gabor Greif051a9502008-04-06 20:25:17 +0000696 PHINode *Rplcmnt = PHINode::Create(Val->getType(), "", result);
Reid Spencer76c94b62007-05-15 02:26:52 +0000697 Rplcmnt->reserveOperandSpace(2);
698 Rplcmnt->addIncoming(NewRes, reverse);
699 Rplcmnt->addIncoming(Rep4, small);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000700 Value* t0 = CastInst::CreateIntegerCast(NumBits,ValTy,false,"",result);
701 Value* t1 = BinaryOperator::CreateShl(ValMask, Lo, "", result);
702 Value* t2 = BinaryOperator::CreateNot(t1, "", result);
703 Value* t3 = BinaryOperator::CreateShl(t1, t0, "", result);
704 Value* t4 = BinaryOperator::CreateOr(t2, t3, "", result);
705 Value* t5 = BinaryOperator::CreateAnd(t4, Val, "", result);
706 Value* t6 = BinaryOperator::CreateShl(Rplcmnt, Lo, "", result);
707 Value* Rslt = BinaryOperator::CreateOr(t5, t6, "part_set", result);
Gabor Greif051a9502008-04-06 20:25:17 +0000708 ReturnInst::Create(Rslt, result);
Reid Spencerf75b8742007-04-12 02:48:46 +0000709 }
710
711 // Return a call to the implementation function
Reid Spencer5156f5b2007-05-12 11:07:40 +0000712 Value *Args[] = {
713 CI->getOperand(1),
714 CI->getOperand(2),
715 CI->getOperand(3),
716 CI->getOperand(4)
717 };
Gabor Greif051a9502008-04-06 20:25:17 +0000718 return CallInst::Create(F, Args, array_endof(Args), CI->getName(), CI);
Reid Spencerf75b8742007-04-12 02:48:46 +0000719}
720
Reid Spenceraddd11d2007-04-04 23:48:25 +0000721
Chris Lattnerb71fd782006-11-15 18:00:10 +0000722void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000723 Function *Callee = CI->getCalledFunction();
724 assert(Callee && "Cannot lower an indirect call!");
Misha Brukmanedf128a2005-04-21 22:36:52 +0000725
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000726 switch (Callee->getIntrinsicID()) {
727 case Intrinsic::not_intrinsic:
Bill Wendlinge8156192006-12-07 01:30:32 +0000728 cerr << "Cannot lower a call to a non-intrinsic function '"
729 << Callee->getName() << "'!\n";
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000730 abort();
731 default:
Bill Wendlinge8156192006-12-07 01:30:32 +0000732 cerr << "Error: Code generator does not support intrinsic function '"
733 << Callee->getName() << "'!\n";
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000734 abort();
735
Chris Lattner588e72d2004-02-15 22:16:39 +0000736 // The setjmp/longjmp intrinsics should only exist in the code if it was
737 // never optimized (ie, right out of the CFE), or if it has been hacked on
738 // by the lowerinvoke pass. In both cases, the right thing to do is to
739 // convert the call to an explicit setjmp or longjmp call.
Chris Lattner9b700f72004-02-15 22:24:51 +0000740 case Intrinsic::setjmp: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000741 static Constant *SetjmpFCache = 0;
Chris Lattner9b700f72004-02-15 22:24:51 +0000742 Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(),
Chris Lattnerb76efb72007-01-07 08:12:01 +0000743 Type::Int32Ty, SetjmpFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000744 if (CI->getType() != Type::VoidTy)
Chris Lattner9b700f72004-02-15 22:24:51 +0000745 CI->replaceAllUsesWith(V);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000746 break;
Chris Lattner9b700f72004-02-15 22:24:51 +0000747 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000748 case Intrinsic::sigsetjmp:
Chris Lattner9b700f72004-02-15 22:24:51 +0000749 if (CI->getType() != Type::VoidTy)
750 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
751 break;
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000752
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000753 case Intrinsic::longjmp: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000754 static Constant *LongjmpFCache = 0;
Chris Lattner9b700f72004-02-15 22:24:51 +0000755 ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(),
Chris Lattnerb76efb72007-01-07 08:12:01 +0000756 Type::VoidTy, LongjmpFCache);
Chris Lattner9b700f72004-02-15 22:24:51 +0000757 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000758 }
Chris Lattner9b700f72004-02-15 22:24:51 +0000759
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000760 case Intrinsic::siglongjmp: {
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000761 // Insert the call to abort
Chris Lattnerb76efb72007-01-07 08:12:01 +0000762 static Constant *AbortFCache = 0;
Reid Spencer3da59db2006-11-27 01:05:10 +0000763 ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(),
Chris Lattnerb76efb72007-01-07 08:12:01 +0000764 Type::VoidTy, AbortFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000765 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000766 }
Reid Spencere9391fd2007-04-01 07:35:23 +0000767 case Intrinsic::ctpop:
Reid Spencer0b118202006-01-16 21:12:35 +0000768 CI->replaceAllUsesWith(LowerCTPOP(CI->getOperand(1), CI));
769 break;
770
Reid Spencere9391fd2007-04-01 07:35:23 +0000771 case Intrinsic::bswap:
Nate Begemane5981812006-01-16 07:57:00 +0000772 CI->replaceAllUsesWith(LowerBSWAP(CI->getOperand(1), CI));
773 break;
774
Reid Spencere9391fd2007-04-01 07:35:23 +0000775 case Intrinsic::ctlz:
Chris Lattner98cf45b2005-05-11 20:24:12 +0000776 CI->replaceAllUsesWith(LowerCTLZ(CI->getOperand(1), CI));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000777 break;
Nate Begemane5981812006-01-16 07:57:00 +0000778
Reid Spencere9391fd2007-04-01 07:35:23 +0000779 case Intrinsic::cttz: {
Chris Lattnera8011722005-05-11 20:02:14 +0000780 // cttz(x) -> ctpop(~X & (X-1))
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000781 Value *Src = CI->getOperand(1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000782 Value *NotSrc = BinaryOperator::CreateNot(Src, Src->getName()+".not", CI);
Gabor Greif051a9502008-04-06 20:25:17 +0000783 Value *SrcM1 = ConstantInt::get(Src->getType(), 1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000784 SrcM1 = BinaryOperator::CreateSub(Src, SrcM1, "", CI);
785 Src = LowerCTPOP(BinaryOperator::CreateAnd(NotSrc, SrcM1, "", CI), CI);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +0000786 CI->replaceAllUsesWith(Src);
787 break;
788 }
Chris Lattner77b13302004-01-05 05:36:30 +0000789
Chris Lattnerc6eb6d72007-04-10 03:20:39 +0000790 case Intrinsic::part_select:
Reid Spencerf75b8742007-04-12 02:48:46 +0000791 CI->replaceAllUsesWith(LowerPartSelect(CI));
792 break;
793
794 case Intrinsic::part_set:
795 CI->replaceAllUsesWith(LowerPartSet(CI));
Reid Spenceraddd11d2007-04-04 23:48:25 +0000796 break;
797
Chris Lattner0c067bc2006-01-13 02:22:08 +0000798 case Intrinsic::stacksave:
799 case Intrinsic::stackrestore: {
800 static bool Warned = false;
801 if (!Warned)
Bill Wendlinge8156192006-12-07 01:30:32 +0000802 cerr << "WARNING: this target does not support the llvm.stack"
803 << (Callee->getIntrinsicID() == Intrinsic::stacksave ?
804 "save" : "restore") << " intrinsic.\n";
Chris Lattner0c067bc2006-01-13 02:22:08 +0000805 Warned = true;
806 if (Callee->getIntrinsicID() == Intrinsic::stacksave)
807 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
808 break;
809 }
810
Chris Lattnercf899082004-02-14 02:47:17 +0000811 case Intrinsic::returnaddress:
812 case Intrinsic::frameaddress:
Bill Wendlinge8156192006-12-07 01:30:32 +0000813 cerr << "WARNING: this target does not support the llvm."
814 << (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
815 "return" : "frame") << "address intrinsic.\n";
Chris Lattnercf899082004-02-14 02:47:17 +0000816 CI->replaceAllUsesWith(ConstantPointerNull::get(
817 cast<PointerType>(CI->getType())));
818 break;
819
Chris Lattner0942b7c2005-02-28 19:27:23 +0000820 case Intrinsic::prefetch:
821 break; // Simply strip out prefetches on unsupported architectures
822
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +0000823 case Intrinsic::pcmarker:
824 break; // Simply strip out pcmarker on unsupported architectures
Andrew Lenharth51b8d542005-11-11 16:47:30 +0000825 case Intrinsic::readcyclecounter: {
Bill Wendlinge8156192006-12-07 01:30:32 +0000826 cerr << "WARNING: this target does not support the llvm.readcyclecoun"
827 << "ter intrinsic. It is being lowered to a constant 0\n";
Reid Spencer47857812006-12-31 05:55:36 +0000828 CI->replaceAllUsesWith(ConstantInt::get(Type::Int64Ty, 0));
Andrew Lenharth51b8d542005-11-11 16:47:30 +0000829 break;
830 }
Andrew Lenharth7f4ec3b2005-03-28 20:05:49 +0000831
Chris Lattner77b13302004-01-05 05:36:30 +0000832 case Intrinsic::dbg_stoppoint:
833 case Intrinsic::dbg_region_start:
834 case Intrinsic::dbg_region_end:
835 case Intrinsic::dbg_func_start:
Jim Laskey43970fe2006-03-23 18:06:46 +0000836 case Intrinsic::dbg_declare:
Duncan Sandsf664e412007-07-06 14:46:23 +0000837 break; // Simply strip out debugging intrinsics
838
Jim Laskeyb180aa12007-02-21 22:53:45 +0000839 case Intrinsic::eh_exception:
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000840 case Intrinsic::eh_selector_i32:
841 case Intrinsic::eh_selector_i64:
Duncan Sandsf664e412007-07-06 14:46:23 +0000842 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
843 break;
844
Anton Korobeynikov8806c7b2007-09-07 11:39:35 +0000845 case Intrinsic::eh_typeid_for_i32:
846 case Intrinsic::eh_typeid_for_i64:
Duncan Sandsf664e412007-07-06 14:46:23 +0000847 // Return something different to eh_selector.
848 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 1));
849 break;
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000850
Tanya Lattner24e5aad2007-06-15 22:26:58 +0000851 case Intrinsic::var_annotation:
852 break; // Strip out annotate intrinsic
853
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000854 case Intrinsic::memcpy_i32:
Reid Spencer3da59db2006-11-27 01:05:10 +0000855 case Intrinsic::memcpy_i64: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000856 static Constant *MemcpyFCache = 0;
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000857 Value *Size = CI->getOperand(3);
858 const Type *IntPtr = TD.getIntPtrType();
859 if (Size->getType()->getPrimitiveSizeInBits() <
860 IntPtr->getPrimitiveSizeInBits())
861 Size = new ZExtInst(Size, IntPtr, "", CI);
862 else if (Size->getType()->getPrimitiveSizeInBits() >
863 IntPtr->getPrimitiveSizeInBits())
864 Size = new TruncInst(Size, IntPtr, "", CI);
865 Value *Ops[3];
866 Ops[0] = CI->getOperand(1);
867 Ops[1] = CI->getOperand(2);
868 Ops[2] = Size;
869 ReplaceCallWith("memcpy", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
870 MemcpyFCache);
Reid Spencer3da59db2006-11-27 01:05:10 +0000871 break;
872 }
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000873 case Intrinsic::memmove_i32:
Chris Lattner03dd4652006-03-03 00:00:25 +0000874 case Intrinsic::memmove_i64: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000875 static Constant *MemmoveFCache = 0;
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000876 Value *Size = CI->getOperand(3);
877 const Type *IntPtr = TD.getIntPtrType();
878 if (Size->getType()->getPrimitiveSizeInBits() <
879 IntPtr->getPrimitiveSizeInBits())
880 Size = new ZExtInst(Size, IntPtr, "", CI);
881 else if (Size->getType()->getPrimitiveSizeInBits() >
882 IntPtr->getPrimitiveSizeInBits())
883 Size = new TruncInst(Size, IntPtr, "", CI);
884 Value *Ops[3];
885 Ops[0] = CI->getOperand(1);
886 Ops[1] = CI->getOperand(2);
887 Ops[2] = Size;
888 ReplaceCallWith("memmove", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
889 MemmoveFCache);
Chris Lattner2751e762004-02-12 18:11:20 +0000890 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000891 }
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000892 case Intrinsic::memset_i32:
Chris Lattner03dd4652006-03-03 00:00:25 +0000893 case Intrinsic::memset_i64: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000894 static Constant *MemsetFCache = 0;
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000895 Value *Size = CI->getOperand(3);
Chris Lattner7d6f77d2007-02-06 06:07:51 +0000896 const Type *IntPtr = TD.getIntPtrType();
897 if (Size->getType()->getPrimitiveSizeInBits() <
898 IntPtr->getPrimitiveSizeInBits())
899 Size = new ZExtInst(Size, IntPtr, "", CI);
900 else if (Size->getType()->getPrimitiveSizeInBits() >
901 IntPtr->getPrimitiveSizeInBits())
902 Size = new TruncInst(Size, IntPtr, "", CI);
Chris Lattnerc67da0c2007-02-06 19:06:38 +0000903 Value *Ops[3];
904 Ops[0] = CI->getOperand(1);
905 // Extend the amount to i32.
906 Ops[1] = new ZExtInst(CI->getOperand(2), Type::Int32Ty, "", CI);
907 Ops[2] = Size;
908 ReplaceCallWith("memset", CI, Ops, Ops+3, CI->getOperand(1)->getType(),
909 MemsetFCache);
Chris Lattnercf899082004-02-14 02:47:17 +0000910 break;
911 }
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000912 case Intrinsic::sqrt: {
Chris Lattnerb76efb72007-01-07 08:12:01 +0000913 static Constant *sqrtfFCache = 0;
Chris Lattnerb76efb72007-01-07 08:12:01 +0000914 static Constant *sqrtFCache = 0;
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000915 static Constant *sqrtLDCache = 0;
916 switch (CI->getOperand(1)->getType()->getTypeID()) {
917 default: assert(0 && "Invalid type in sqrt"); abort();
918 case Type::FloatTyID:
919 ReplaceCallWith("sqrtf", CI, CI->op_begin()+1, CI->op_end(),
920 Type::FloatTy, sqrtfFCache);
921 break;
922 case Type::DoubleTyID:
923 ReplaceCallWith("sqrt", CI, CI->op_begin()+1, CI->op_end(),
Chris Lattnerb76efb72007-01-07 08:12:01 +0000924 Type::DoubleTy, sqrtFCache);
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000925 break;
926 case Type::X86_FP80TyID:
927 case Type::FP128TyID:
928 case Type::PPC_FP128TyID:
929 ReplaceCallWith("sqrtl", CI, CI->op_begin()+1, CI->op_end(),
930 CI->getOperand(1)->getType(), sqrtLDCache);
931 break;
932 }
Dale Johannesen4292d1c2007-09-28 18:06:58 +0000933 break;
934 }
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000935 case Intrinsic::log: {
936 static Constant *logfFCache = 0;
937 static Constant *logFCache = 0;
938 static Constant *logLDCache = 0;
939 switch (CI->getOperand(1)->getType()->getTypeID()) {
940 default: assert(0 && "Invalid type in log"); abort();
941 case Type::FloatTyID:
942 ReplaceCallWith("logf", CI, CI->op_begin()+1, CI->op_end(),
943 Type::FloatTy, logfFCache);
944 break;
945 case Type::DoubleTyID:
946 ReplaceCallWith("log", CI, CI->op_begin()+1, CI->op_end(),
947 Type::DoubleTy, logFCache);
948 break;
949 case Type::X86_FP80TyID:
950 case Type::FP128TyID:
951 case Type::PPC_FP128TyID:
952 ReplaceCallWith("logl", CI, CI->op_begin()+1, CI->op_end(),
953 CI->getOperand(1)->getType(), logLDCache);
954 break;
955 }
956 break;
957 }
958 case Intrinsic::log2: {
959 static Constant *log2fFCache = 0;
960 static Constant *log2FCache = 0;
961 static Constant *log2LDCache = 0;
962 switch (CI->getOperand(1)->getType()->getTypeID()) {
963 default: assert(0 && "Invalid type in log2"); abort();
964 case Type::FloatTyID:
965 ReplaceCallWith("log2f", CI, CI->op_begin()+1, CI->op_end(),
966 Type::FloatTy, log2fFCache);
967 break;
968 case Type::DoubleTyID:
969 ReplaceCallWith("log2", CI, CI->op_begin()+1, CI->op_end(),
970 Type::DoubleTy, log2FCache);
971 break;
972 case Type::X86_FP80TyID:
973 case Type::FP128TyID:
974 case Type::PPC_FP128TyID:
975 ReplaceCallWith("log2l", CI, CI->op_begin()+1, CI->op_end(),
976 CI->getOperand(1)->getType(), log2LDCache);
977 break;
978 }
979 break;
980 }
981 case Intrinsic::log10: {
982 static Constant *log10fFCache = 0;
983 static Constant *log10FCache = 0;
984 static Constant *log10LDCache = 0;
985 switch (CI->getOperand(1)->getType()->getTypeID()) {
986 default: assert(0 && "Invalid type in log10"); abort();
987 case Type::FloatTyID:
988 ReplaceCallWith("log10f", CI, CI->op_begin()+1, CI->op_end(),
989 Type::FloatTy, log10fFCache);
990 break;
991 case Type::DoubleTyID:
992 ReplaceCallWith("log10", CI, CI->op_begin()+1, CI->op_end(),
993 Type::DoubleTy, log10FCache);
994 break;
995 case Type::X86_FP80TyID:
996 case Type::FP128TyID:
997 case Type::PPC_FP128TyID:
998 ReplaceCallWith("log10l", CI, CI->op_begin()+1, CI->op_end(),
999 CI->getOperand(1)->getType(), log10LDCache);
1000 break;
1001 }
1002 break;
1003 }
1004 case Intrinsic::exp: {
1005 static Constant *expfFCache = 0;
1006 static Constant *expFCache = 0;
1007 static Constant *expLDCache = 0;
1008 switch (CI->getOperand(1)->getType()->getTypeID()) {
1009 default: assert(0 && "Invalid type in exp"); abort();
1010 case Type::FloatTyID:
1011 ReplaceCallWith("expf", CI, CI->op_begin()+1, CI->op_end(),
1012 Type::FloatTy, expfFCache);
1013 break;
1014 case Type::DoubleTyID:
1015 ReplaceCallWith("exp", CI, CI->op_begin()+1, CI->op_end(),
1016 Type::DoubleTy, expFCache);
1017 break;
1018 case Type::X86_FP80TyID:
1019 case Type::FP128TyID:
1020 case Type::PPC_FP128TyID:
1021 ReplaceCallWith("expl", CI, CI->op_begin()+1, CI->op_end(),
1022 CI->getOperand(1)->getType(), expLDCache);
1023 break;
1024 }
1025 break;
1026 }
1027 case Intrinsic::exp2: {
1028 static Constant *exp2fFCache = 0;
1029 static Constant *exp2FCache = 0;
1030 static Constant *exp2LDCache = 0;
1031 switch (CI->getOperand(1)->getType()->getTypeID()) {
1032 default: assert(0 && "Invalid type in exp2"); abort();
1033 case Type::FloatTyID:
1034 ReplaceCallWith("exp2f", CI, CI->op_begin()+1, CI->op_end(),
1035 Type::FloatTy, exp2fFCache);
1036 break;
1037 case Type::DoubleTyID:
1038 ReplaceCallWith("exp2", CI, CI->op_begin()+1, CI->op_end(),
1039 Type::DoubleTy, exp2FCache);
1040 break;
1041 case Type::X86_FP80TyID:
1042 case Type::FP128TyID:
1043 case Type::PPC_FP128TyID:
1044 ReplaceCallWith("exp2l", CI, CI->op_begin()+1, CI->op_end(),
1045 CI->getOperand(1)->getType(), exp2LDCache);
1046 break;
1047 }
1048 break;
1049 }
1050 case Intrinsic::pow: {
1051 static Constant *powfFCache = 0;
1052 static Constant *powFCache = 0;
1053 static Constant *powLDCache = 0;
1054 switch (CI->getOperand(1)->getType()->getTypeID()) {
1055 default: assert(0 && "Invalid type in pow"); abort();
1056 case Type::FloatTyID:
1057 ReplaceCallWith("powf", CI, CI->op_begin()+1, CI->op_end(),
1058 Type::FloatTy, powfFCache);
1059 break;
1060 case Type::DoubleTyID:
1061 ReplaceCallWith("pow", CI, CI->op_begin()+1, CI->op_end(),
1062 Type::DoubleTy, powFCache);
1063 break;
1064 case Type::X86_FP80TyID:
1065 case Type::FP128TyID:
1066 case Type::PPC_FP128TyID:
1067 ReplaceCallWith("powl", CI, CI->op_begin()+1, CI->op_end(),
1068 CI->getOperand(1)->getType(), powLDCache);
1069 break;
1070 }
1071 break;
1072 }
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00001073 case Intrinsic::flt_rounds:
1074 // Lower to "round to the nearest"
1075 if (CI->getType() != Type::VoidTy)
1076 CI->replaceAllUsesWith(ConstantInt::get(CI->getType(), 1));
1077 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +00001078 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001079
Chris Lattner3b66ecb2003-12-28 08:19:41 +00001080 assert(CI->use_empty() &&
1081 "Lowering should have eliminated any uses of the intrinsic call!");
Chris Lattner86f3e0c2005-05-11 19:42:05 +00001082 CI->eraseFromParent();
Chris Lattner3b66ecb2003-12-28 08:19:41 +00001083}