blob: b6ebe0991b3fcc8b2552cb3f8584aeb322706aa5 [file] [log] [blame]
Chris Lattner3b66ecb2003-12-28 08:19:41 +00001//===-- IntrinsicLowering.cpp - Intrinsic Lowering default implementation -===//
2//
3// 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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the default intrinsic lowering implementation.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner42450d82003-12-28 08:30:20 +000014#include "llvm/IntrinsicLowering.h"
Chris Lattnercf899082004-02-14 02:47:17 +000015#include "llvm/Constants.h"
Chris Lattner5fe51cc2004-02-12 17:01:09 +000016#include "llvm/DerivedTypes.h"
Chris Lattner3b66ecb2003-12-28 08:19:41 +000017#include "llvm/Module.h"
Chris Lattner3b66ecb2003-12-28 08:19:41 +000018#include "llvm/iOther.h"
19using namespace llvm;
20
Chris Lattner0979ca72004-05-09 04:29:57 +000021template <class ArgIt>
22static Function *EnsureFunctionExists(Module &M, const char *Name,
23 ArgIt ArgBegin, ArgIt ArgEnd,
24 const Type *RetTy) {
25 if (Function *F = M.getNamedFunction(Name)) return F;
26 // It doesn't already exist in the program, insert a new definition now.
27 std::vector<const Type *> ParamTys;
28 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
29 ParamTys.push_back(I->getType());
30 return M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
31}
32
Chris Lattner588e72d2004-02-15 22:16:39 +000033/// ReplaceCallWith - This function is used when we want to lower an intrinsic
34/// call to a call of an external function. This handles hard cases such as
35/// when there was already a prototype for the external function, and if that
36/// prototype doesn't match the arguments we expect to pass in.
37template <class ArgIt>
38static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI,
39 ArgIt ArgBegin, ArgIt ArgEnd,
40 const Type *RetTy, Function *&FCache) {
41 if (!FCache) {
42 // If we haven't already looked up this function, check to see if the
43 // program already contains a function with this name.
44 Module *M = CI->getParent()->getParent()->getParent();
45 FCache = M->getNamedFunction(NewFn);
46 if (!FCache) {
47 // It doesn't already exist in the program, insert a new definition now.
48 std::vector<const Type *> ParamTys;
49 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
50 ParamTys.push_back((*I)->getType());
51 FCache = M->getOrInsertFunction(NewFn,
52 FunctionType::get(RetTy, ParamTys, false));
53 }
Chris Lattner0979ca72004-05-09 04:29:57 +000054 }
Chris Lattner588e72d2004-02-15 22:16:39 +000055
56 const FunctionType *FT = FCache->getFunctionType();
57 std::vector<Value*> Operands;
58 unsigned ArgNo = 0;
59 for (ArgIt I = ArgBegin; I != ArgEnd && ArgNo != FT->getNumParams();
60 ++I, ++ArgNo) {
61 Value *Arg = *I;
62 if (Arg->getType() != FT->getParamType(ArgNo))
63 Arg = new CastInst(Arg, FT->getParamType(ArgNo), Arg->getName(), CI);
64 Operands.push_back(Arg);
65 }
66 // Pass nulls into any additional arguments...
67 for (; ArgNo != FT->getNumParams(); ++ArgNo)
68 Operands.push_back(Constant::getNullValue(FT->getParamType(ArgNo)));
69
70 std::string Name = CI->getName(); CI->setName("");
71 if (FT->getReturnType() == Type::VoidTy) Name.clear();
Chris Lattner02348ca2004-06-11 02:54:02 +000072 CallInst *NewCI = new CallInst(FCache, Operands, Name, CI);
73 if (!CI->use_empty()) {
74 Value *V = NewCI;
75 if (CI->getType() != NewCI->getType())
76 V = new CastInst(NewCI, CI->getType(), Name, CI);
77 CI->replaceAllUsesWith(V);
78 }
79 return NewCI;
Chris Lattner588e72d2004-02-15 22:16:39 +000080}
81
Chris Lattner0979ca72004-05-09 04:29:57 +000082void DefaultIntrinsicLowering::AddPrototypes(Module &M) {
83 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
84 if (I->isExternal() && !I->use_empty())
85 switch (I->getIntrinsicID()) {
86 default: break;
87 case Intrinsic::setjmp:
88 EnsureFunctionExists(M, "setjmp", I->abegin(), I->aend(), Type::IntTy);
89 break;
90 case Intrinsic::longjmp:
91 EnsureFunctionExists(M, "longjmp", I->abegin(), I->aend(),Type::VoidTy);
92 break;
93 case Intrinsic::siglongjmp:
94 EnsureFunctionExists(M, "abort", I->aend(), I->aend(), Type::VoidTy);
95 break;
96 case Intrinsic::memcpy:
97 EnsureFunctionExists(M, "memcpy", I->abegin(), --I->aend(),
98 I->abegin()->getType());
99 break;
100 case Intrinsic::memmove:
101 EnsureFunctionExists(M, "memmove", I->abegin(), --I->aend(),
102 I->abegin()->getType());
103 break;
104 case Intrinsic::memset:
105 EnsureFunctionExists(M, "memset", I->abegin(), --I->aend(),
106 I->abegin()->getType());
107 break;
Chris Lattner02348ca2004-06-11 02:54:02 +0000108 case Intrinsic::isnan:
109 EnsureFunctionExists(M, "isnan", I->abegin(), I->aend(), Type::BoolTy);
110 break;
Chris Lattner0979ca72004-05-09 04:29:57 +0000111 }
112
113}
Chris Lattner588e72d2004-02-15 22:16:39 +0000114
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000115void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
116 Function *Callee = CI->getCalledFunction();
117 assert(Callee && "Cannot lower an indirect call!");
118
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000119 switch (Callee->getIntrinsicID()) {
120 case Intrinsic::not_intrinsic:
121 std::cerr << "Cannot lower a call to a non-intrinsic function '"
122 << Callee->getName() << "'!\n";
123 abort();
124 default:
125 std::cerr << "Error: Code generator does not support intrinsic function '"
126 << Callee->getName() << "'!\n";
127 abort();
128
Chris Lattner588e72d2004-02-15 22:16:39 +0000129 // The setjmp/longjmp intrinsics should only exist in the code if it was
130 // never optimized (ie, right out of the CFE), or if it has been hacked on
131 // by the lowerinvoke pass. In both cases, the right thing to do is to
132 // convert the call to an explicit setjmp or longjmp call.
Chris Lattner9b700f72004-02-15 22:24:51 +0000133 case Intrinsic::setjmp: {
134 static Function *SetjmpFCache = 0;
135 Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(),
136 Type::IntTy, SetjmpFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000137 if (CI->getType() != Type::VoidTy)
Chris Lattner9b700f72004-02-15 22:24:51 +0000138 CI->replaceAllUsesWith(V);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000139 break;
Chris Lattner9b700f72004-02-15 22:24:51 +0000140 }
141 case Intrinsic::sigsetjmp:
142 if (CI->getType() != Type::VoidTy)
143 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
144 break;
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000145
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000146 case Intrinsic::longjmp: {
Chris Lattner9b700f72004-02-15 22:24:51 +0000147 static Function *LongjmpFCache = 0;
148 ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(),
149 Type::VoidTy, LongjmpFCache);
150 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000151 }
Chris Lattner9b700f72004-02-15 22:24:51 +0000152
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000153 case Intrinsic::siglongjmp: {
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000154 // Insert the call to abort
Chris Lattner588e72d2004-02-15 22:16:39 +0000155 static Function *AbortFCache = 0;
156 ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(), Type::VoidTy,
157 AbortFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000158 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000159 }
Chris Lattner77b13302004-01-05 05:36:30 +0000160
Chris Lattnercf899082004-02-14 02:47:17 +0000161 case Intrinsic::returnaddress:
162 case Intrinsic::frameaddress:
Chris Lattnercc42d2c2004-02-14 04:52:06 +0000163 std::cerr << "WARNING: this target does not support the llvm."
164 << (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
165 "return" : "frame") << "address intrinsic.\n";
Chris Lattnercf899082004-02-14 02:47:17 +0000166 CI->replaceAllUsesWith(ConstantPointerNull::get(
167 cast<PointerType>(CI->getType())));
168 break;
169
Chris Lattner77b13302004-01-05 05:36:30 +0000170 case Intrinsic::dbg_stoppoint:
171 case Intrinsic::dbg_region_start:
172 case Intrinsic::dbg_region_end:
Chris Lattnerf907bac2004-01-14 20:41:29 +0000173 case Intrinsic::dbg_declare:
Chris Lattner77b13302004-01-05 05:36:30 +0000174 case Intrinsic::dbg_func_start:
175 if (CI->getType() != Type::VoidTy)
176 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
177 break; // Simply strip out debugging intrinsics
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000178
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000179 case Intrinsic::memcpy: {
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000180 // The memcpy intrinsic take an extra alignment argument that the memcpy
181 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000182 static Function *MemcpyFCache = 0;
183 ReplaceCallWith("memcpy", CI, CI->op_begin()+1, CI->op_end()-1,
184 (*(CI->op_begin()+1))->getType(), MemcpyFCache);
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000185 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000186 }
187 case Intrinsic::memmove: {
Chris Lattnercf899082004-02-14 02:47:17 +0000188 // The memmove intrinsic take an extra alignment argument that the memmove
Chris Lattner2751e762004-02-12 18:11:20 +0000189 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000190 static Function *MemmoveFCache = 0;
191 ReplaceCallWith("memmove", CI, CI->op_begin()+1, CI->op_end()-1,
192 (*(CI->op_begin()+1))->getType(), MemmoveFCache);
Chris Lattner2751e762004-02-12 18:11:20 +0000193 break;
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000194 }
195 case Intrinsic::memset: {
Chris Lattnercf899082004-02-14 02:47:17 +0000196 // The memset intrinsic take an extra alignment argument that the memset
197 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000198 static Function *MemsetFCache = 0;
199 ReplaceCallWith("memset", CI, CI->op_begin()+1, CI->op_end()-1,
200 (*(CI->op_begin()+1))->getType(), MemsetFCache);
Chris Lattnercf899082004-02-14 02:47:17 +0000201 break;
202 }
Chris Lattner137cc4f2004-06-11 02:29:43 +0000203 case Intrinsic::isnan: {
204 // FIXME: This should force the argument to be a double. There may be
205 // multiple isnans for different FP arguments.
206 static Function *isnanFCache = 0;
207 ReplaceCallWith("isnan", CI, CI->op_begin()+1, CI->op_end(),
Chris Lattner02348ca2004-06-11 02:54:02 +0000208 Type::BoolTy, isnanFCache);
Alkis Evlogimenosf616f222004-06-11 01:08:18 +0000209 break;
210 }
Chris Lattnerf0a3e6c2004-06-05 01:05:19 +0000211 }
Chris Lattner588e72d2004-02-15 22:16:39 +0000212
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000213 assert(CI->use_empty() &&
214 "Lowering should have eliminated any uses of the intrinsic call!");
215 CI->getParent()->getInstList().erase(CI);
216}