blob: 634f959f3c4781684989879d73a896770fb6c3f7 [file] [log] [blame]
Chris Lattnerbcdadf32004-06-20 07:49:54 +00001//===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattnerbcdadf32004-06-20 07:49:54 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattnerbcdadf32004-06-20 07:49:54 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the default intrinsic lowering implementation.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/IntrinsicLowering.h"
15#include "llvm/Constants.h"
16#include "llvm/DerivedTypes.h"
17#include "llvm/Module.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000018#include "llvm/Instructions.h"
Andrew Lenharth5e177822005-05-03 17:19:30 +000019#include "llvm/Type.h"
Reid Spencereb04d9b2004-07-04 12:19:56 +000020#include <iostream>
21
Chris Lattnerbcdadf32004-06-20 07:49:54 +000022using namespace llvm;
23
24template <class ArgIt>
25static Function *EnsureFunctionExists(Module &M, const char *Name,
26 ArgIt ArgBegin, ArgIt ArgEnd,
27 const Type *RetTy) {
28 if (Function *F = M.getNamedFunction(Name)) return F;
29 // It doesn't already exist in the program, insert a new definition now.
30 std::vector<const Type *> ParamTys;
31 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
32 ParamTys.push_back(I->getType());
33 return M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
34}
35
36/// ReplaceCallWith - This function is used when we want to lower an intrinsic
37/// call to a call of an external function. This handles hard cases such as
38/// when there was already a prototype for the external function, and if that
39/// prototype doesn't match the arguments we expect to pass in.
40template <class ArgIt>
41static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI,
42 ArgIt ArgBegin, ArgIt ArgEnd,
43 const Type *RetTy, Function *&FCache) {
44 if (!FCache) {
45 // If we haven't already looked up this function, check to see if the
46 // program already contains a function with this name.
47 Module *M = CI->getParent()->getParent()->getParent();
48 FCache = M->getNamedFunction(NewFn);
49 if (!FCache) {
50 // It doesn't already exist in the program, insert a new definition now.
51 std::vector<const Type *> ParamTys;
52 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
53 ParamTys.push_back((*I)->getType());
54 FCache = M->getOrInsertFunction(NewFn,
55 FunctionType::get(RetTy, ParamTys, false));
56 }
57 }
58
59 const FunctionType *FT = FCache->getFunctionType();
60 std::vector<Value*> Operands;
61 unsigned ArgNo = 0;
62 for (ArgIt I = ArgBegin; I != ArgEnd && ArgNo != FT->getNumParams();
63 ++I, ++ArgNo) {
64 Value *Arg = *I;
65 if (Arg->getType() != FT->getParamType(ArgNo))
66 Arg = new CastInst(Arg, FT->getParamType(ArgNo), Arg->getName(), CI);
67 Operands.push_back(Arg);
68 }
69 // Pass nulls into any additional arguments...
70 for (; ArgNo != FT->getNumParams(); ++ArgNo)
71 Operands.push_back(Constant::getNullValue(FT->getParamType(ArgNo)));
72
73 std::string Name = CI->getName(); CI->setName("");
74 if (FT->getReturnType() == Type::VoidTy) Name.clear();
75 CallInst *NewCI = new CallInst(FCache, Operands, Name, CI);
76 if (!CI->use_empty()) {
77 Value *V = NewCI;
78 if (CI->getType() != NewCI->getType())
79 V = new CastInst(NewCI, CI->getType(), Name, CI);
80 CI->replaceAllUsesWith(V);
81 }
82 return NewCI;
83}
84
85void DefaultIntrinsicLowering::AddPrototypes(Module &M) {
86 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
87 if (I->isExternal() && !I->use_empty())
88 switch (I->getIntrinsicID()) {
89 default: break;
90 case Intrinsic::setjmp:
Chris Lattner9acd3142005-05-08 19:46:29 +000091 EnsureFunctionExists(M, "setjmp", I->arg_begin(), I->arg_end(),
92 Type::IntTy);
Chris Lattnerbcdadf32004-06-20 07:49:54 +000093 break;
94 case Intrinsic::longjmp:
Chris Lattner9acd3142005-05-08 19:46:29 +000095 EnsureFunctionExists(M, "longjmp", I->arg_begin(), I->arg_end(),
96 Type::VoidTy);
Chris Lattnerbcdadf32004-06-20 07:49:54 +000097 break;
98 case Intrinsic::siglongjmp:
Chris Lattner9acd3142005-05-08 19:46:29 +000099 EnsureFunctionExists(M, "abort", I->arg_end(), I->arg_end(),
100 Type::VoidTy);
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000101 break;
102 case Intrinsic::memcpy:
Chris Lattner531f9e92005-03-15 04:54:21 +0000103 EnsureFunctionExists(M, "memcpy", I->arg_begin(), --I->arg_end(),
104 I->arg_begin()->getType());
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000105 break;
106 case Intrinsic::memmove:
Chris Lattner531f9e92005-03-15 04:54:21 +0000107 EnsureFunctionExists(M, "memmove", I->arg_begin(), --I->arg_end(),
108 I->arg_begin()->getType());
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000109 break;
110 case Intrinsic::memset:
Chris Lattner9acd3142005-05-08 19:46:29 +0000111 M.getOrInsertFunction("memset", PointerType::get(Type::SByteTy),
112 PointerType::get(Type::SByteTy),
113 Type::IntTy, (--(--I->arg_end()))->getType(), 0);
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000114 break;
115 case Intrinsic::isunordered:
Chris Lattner9acd3142005-05-08 19:46:29 +0000116 EnsureFunctionExists(M, "isunordered", I->arg_begin(), I->arg_end(),
117 Type::BoolTy);
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000118 break;
Chris Lattner30fe4ac22005-04-30 04:07:50 +0000119 case Intrinsic::sqrt:
Alkis Evlogimenosd7e534b2005-04-30 07:13:31 +0000120 if(I->arg_begin()->getType() == Type::FloatTy)
Chris Lattner9acd3142005-05-08 19:46:29 +0000121 EnsureFunctionExists(M, "sqrtf", I->arg_begin(), I->arg_end(),
122 Type::FloatTy);
Chris Lattner30fe4ac22005-04-30 04:07:50 +0000123 else
Chris Lattner9acd3142005-05-08 19:46:29 +0000124 EnsureFunctionExists(M, "sqrt", I->arg_begin(), I->arg_end(),
125 Type::DoubleTy);
Chris Lattner30fe4ac22005-04-30 04:07:50 +0000126 break;
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000127 }
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000128}
129
Chris Lattner9ec975a2005-05-11 19:42:05 +0000130/// LowerCTPOP - Emit the code to lower ctpop of V before the specified
131/// instruction.
132static Value *LowerCTPOP(Value *V, Instruction *IP) {
133 assert(V->getType()->isInteger() && "Can't ctpop a non-integer type!");
134 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
135
136 static const uint64_t MaskValues[6] = {
137 0x5555555555555555ULL, 0x3333333333333333ULL,
138 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
139 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
140 };
141
142 const Type *DestTy = V->getType();
143
144 // Force to unsigned so that the shift rights are logical.
145 if (DestTy->isSigned())
146 V = new CastInst(V, DestTy->getUnsignedVersion(), V->getName(), IP);
147
148 for (unsigned i = 1, ct = 0; i != BitSize; i <<= 1, ++ct) {
149 Value *MaskCst =
150 ConstantExpr::getCast(ConstantUInt::get(Type::ULongTy,
151 MaskValues[ct]), V->getType());
152 Value *LHS = BinaryOperator::createAnd(V, MaskCst, "cppop.and1", IP);
153 Value *VShift = new ShiftInst(Instruction::Shr, V,
154 ConstantInt::get(Type::UByteTy, i), "ctpop.sh", IP);
155 Value *RHS = BinaryOperator::createAnd(VShift, MaskCst, "cppop.and2", IP);
156 V = BinaryOperator::createAdd(LHS, RHS, "ctpop.step", IP);
157 }
158
159 if (V->getType() != DestTy)
160 V = new CastInst(V, DestTy, V->getName(), IP);
161 return V;
162}
163
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000164void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
165 Function *Callee = CI->getCalledFunction();
166 assert(Callee && "Cannot lower an indirect call!");
Misha Brukman835702a2005-04-21 22:36:52 +0000167
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000168 switch (Callee->getIntrinsicID()) {
169 case Intrinsic::not_intrinsic:
170 std::cerr << "Cannot lower a call to a non-intrinsic function '"
171 << Callee->getName() << "'!\n";
172 abort();
173 default:
174 std::cerr << "Error: Code generator does not support intrinsic function '"
175 << Callee->getName() << "'!\n";
176 abort();
177
178 // The setjmp/longjmp intrinsics should only exist in the code if it was
179 // never optimized (ie, right out of the CFE), or if it has been hacked on
180 // by the lowerinvoke pass. In both cases, the right thing to do is to
181 // convert the call to an explicit setjmp or longjmp call.
182 case Intrinsic::setjmp: {
183 static Function *SetjmpFCache = 0;
184 Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(),
185 Type::IntTy, SetjmpFCache);
186 if (CI->getType() != Type::VoidTy)
187 CI->replaceAllUsesWith(V);
188 break;
189 }
Misha Brukman835702a2005-04-21 22:36:52 +0000190 case Intrinsic::sigsetjmp:
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000191 if (CI->getType() != Type::VoidTy)
192 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
193 break;
194
195 case Intrinsic::longjmp: {
196 static Function *LongjmpFCache = 0;
197 ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(),
198 Type::VoidTy, LongjmpFCache);
199 break;
200 }
201
202 case Intrinsic::siglongjmp: {
203 // Insert the call to abort
204 static Function *AbortFCache = 0;
205 ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(), Type::VoidTy,
206 AbortFCache);
207 break;
208 }
Chris Lattner9ec975a2005-05-11 19:42:05 +0000209 case Intrinsic::ctpop:
210 CI->replaceAllUsesWith(LowerCTPOP(CI->getOperand(1), CI));
Andrew Lenharth5e177822005-05-03 17:19:30 +0000211 break;
Chris Lattner9ec975a2005-05-11 19:42:05 +0000212
Andrew Lenharth5e177822005-05-03 17:19:30 +0000213 case Intrinsic::ctlz: {
214 Value *Src = CI->getOperand(1);
215 Value* SA;
216 switch (CI->getOperand(0)->getType()->getTypeID())
217 {
218 case Type::LongTyID:
219 case Type::ULongTyID:
220 SA = ConstantUInt::get(Type::UByteTy, 32);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000221 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr, Src,
222 SA, "", CI), "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000223 case Type::IntTyID:
224 case Type::UIntTyID:
225 SA = ConstantUInt::get(Type::UByteTy, 16);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000226 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr,
227 Src, SA, "", CI),
228 "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000229 case Type::ShortTyID:
230 case Type::UShortTyID:
231 SA = ConstantUInt::get(Type::UByteTy, 8);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000232 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr,
233 Src, SA, "", CI),
234 "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000235 default:
236 SA = ConstantUInt::get(Type::UByteTy, 1);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000237 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr, Src,
238 SA, "", CI), "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000239 SA = ConstantUInt::get(Type::UByteTy, 2);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000240 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr, Src,
241 SA, "", CI), "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000242 SA = ConstantUInt::get(Type::UByteTy, 4);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000243 Src = BinaryOperator::createOr(Src, new ShiftInst(Instruction::Shr, Src,
244 SA, "", CI), "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000245 };
Chris Lattner9ec975a2005-05-11 19:42:05 +0000246 Src = BinaryOperator::createNot(Src, "", CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000247
Chris Lattner9ec975a2005-05-11 19:42:05 +0000248
249 Src = LowerCTPOP(Src, CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000250 CI->replaceAllUsesWith(Src);
251 break;
252 }
253 case Intrinsic::cttz: {
Chris Lattnerfe5759b2005-05-11 20:02:14 +0000254 // cttz(x) -> ctpop(~X & (X-1))
Andrew Lenharth5e177822005-05-03 17:19:30 +0000255 Value *Src = CI->getOperand(1);
Chris Lattner9ec975a2005-05-11 19:42:05 +0000256 Value *NotSrc = BinaryOperator::createNot(Src, Src->getName()+".not", CI);
Chris Lattnerfe5759b2005-05-11 20:02:14 +0000257 Value *SrcM1 = ConstantInt::get(Src->getType(), 1);
258 SrcM1 = BinaryOperator::createSub(Src, SrcM1, "", CI);
259 Src = LowerCTPOP(BinaryOperator::createAnd(NotSrc, SrcM1, "", CI), CI);
Andrew Lenharth5e177822005-05-03 17:19:30 +0000260 CI->replaceAllUsesWith(Src);
261 break;
262 }
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000263
264 case Intrinsic::returnaddress:
265 case Intrinsic::frameaddress:
266 std::cerr << "WARNING: this target does not support the llvm."
Misha Brukman835702a2005-04-21 22:36:52 +0000267 << (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000268 "return" : "frame") << "address intrinsic.\n";
269 CI->replaceAllUsesWith(ConstantPointerNull::get(
270 cast<PointerType>(CI->getType())));
271 break;
272
Chris Lattnerc87e03a2005-02-28 19:27:23 +0000273 case Intrinsic::prefetch:
274 break; // Simply strip out prefetches on unsupported architectures
275
Andrew Lenharthb4427912005-03-28 20:05:49 +0000276 case Intrinsic::pcmarker:
277 break; // Simply strip out pcmarker on unsupported architectures
278
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000279 case Intrinsic::dbg_stoppoint:
280 case Intrinsic::dbg_region_start:
281 case Intrinsic::dbg_region_end:
282 case Intrinsic::dbg_declare:
283 case Intrinsic::dbg_func_start:
284 if (CI->getType() != Type::VoidTy)
285 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
286 break; // Simply strip out debugging intrinsics
287
288 case Intrinsic::memcpy: {
289 // The memcpy intrinsic take an extra alignment argument that the memcpy
290 // libc function does not.
291 static Function *MemcpyFCache = 0;
292 ReplaceCallWith("memcpy", CI, CI->op_begin()+1, CI->op_end()-1,
293 (*(CI->op_begin()+1))->getType(), MemcpyFCache);
294 break;
295 }
296 case Intrinsic::memmove: {
297 // The memmove intrinsic take an extra alignment argument that the memmove
298 // libc function does not.
299 static Function *MemmoveFCache = 0;
300 ReplaceCallWith("memmove", CI, CI->op_begin()+1, CI->op_end()-1,
301 (*(CI->op_begin()+1))->getType(), MemmoveFCache);
302 break;
303 }
304 case Intrinsic::memset: {
305 // The memset intrinsic take an extra alignment argument that the memset
306 // libc function does not.
307 static Function *MemsetFCache = 0;
308 ReplaceCallWith("memset", CI, CI->op_begin()+1, CI->op_end()-1,
309 (*(CI->op_begin()+1))->getType(), MemsetFCache);
310 break;
311 }
312 case Intrinsic::isunordered: {
Alkis Evlogimenosb3846f42005-03-01 02:07:58 +0000313 Value *L = CI->getOperand(1);
314 Value *R = CI->getOperand(2);
315
316 Value *LIsNan = new SetCondInst(Instruction::SetNE, L, L, "LIsNan", CI);
317 Value *RIsNan = new SetCondInst(Instruction::SetNE, R, R, "RIsNan", CI);
318 CI->replaceAllUsesWith(
319 BinaryOperator::create(Instruction::Or, LIsNan, RIsNan,
320 "isunordered", CI));
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000321 break;
322 }
Chris Lattner30fe4ac22005-04-30 04:07:50 +0000323 case Intrinsic::sqrt: {
324 static Function *sqrtFCache = 0;
325 static Function *sqrtfFCache = 0;
326 if(CI->getType() == Type::FloatTy)
327 ReplaceCallWith("sqrtf", CI, CI->op_begin()+1, CI->op_end(),
328 Type::FloatTy, sqrtfFCache);
329 else
330 ReplaceCallWith("sqrt", CI, CI->op_begin()+1, CI->op_end(),
331 Type::DoubleTy, sqrtFCache);
332 break;
333 }
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000334 }
Misha Brukman835702a2005-04-21 22:36:52 +0000335
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000336 assert(CI->use_empty() &&
337 "Lowering should have eliminated any uses of the intrinsic call!");
Chris Lattner9ec975a2005-05-11 19:42:05 +0000338 CI->eraseFromParent();
Chris Lattnerbcdadf32004-06-20 07:49:54 +0000339}