blob: b199ad383311117f97717af885b172e85d203d39 [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 Lattner588e72d2004-02-15 22:16:39 +000021/// ReplaceCallWith - This function is used when we want to lower an intrinsic
22/// call to a call of an external function. This handles hard cases such as
23/// when there was already a prototype for the external function, and if that
24/// prototype doesn't match the arguments we expect to pass in.
25template <class ArgIt>
26static CallInst *ReplaceCallWith(const char *NewFn, CallInst *CI,
27 ArgIt ArgBegin, ArgIt ArgEnd,
28 const Type *RetTy, Function *&FCache) {
29 if (!FCache) {
30 // If we haven't already looked up this function, check to see if the
31 // program already contains a function with this name.
32 Module *M = CI->getParent()->getParent()->getParent();
33 FCache = M->getNamedFunction(NewFn);
34 if (!FCache) {
35 // It doesn't already exist in the program, insert a new definition now.
36 std::vector<const Type *> ParamTys;
37 for (ArgIt I = ArgBegin; I != ArgEnd; ++I)
38 ParamTys.push_back((*I)->getType());
39 FCache = M->getOrInsertFunction(NewFn,
40 FunctionType::get(RetTy, ParamTys, false));
41 }
42 }
43
44 const FunctionType *FT = FCache->getFunctionType();
45 std::vector<Value*> Operands;
46 unsigned ArgNo = 0;
47 for (ArgIt I = ArgBegin; I != ArgEnd && ArgNo != FT->getNumParams();
48 ++I, ++ArgNo) {
49 Value *Arg = *I;
50 if (Arg->getType() != FT->getParamType(ArgNo))
51 Arg = new CastInst(Arg, FT->getParamType(ArgNo), Arg->getName(), CI);
52 Operands.push_back(Arg);
53 }
54 // Pass nulls into any additional arguments...
55 for (; ArgNo != FT->getNumParams(); ++ArgNo)
56 Operands.push_back(Constant::getNullValue(FT->getParamType(ArgNo)));
57
58 std::string Name = CI->getName(); CI->setName("");
59 if (FT->getReturnType() == Type::VoidTy) Name.clear();
60 return new CallInst(FCache, Operands, Name, CI);
61}
62
63
Chris Lattner3b66ecb2003-12-28 08:19:41 +000064void DefaultIntrinsicLowering::LowerIntrinsicCall(CallInst *CI) {
65 Function *Callee = CI->getCalledFunction();
66 assert(Callee && "Cannot lower an indirect call!");
67
68 Module *M = Callee->getParent();
69
70 switch (Callee->getIntrinsicID()) {
71 case Intrinsic::not_intrinsic:
72 std::cerr << "Cannot lower a call to a non-intrinsic function '"
73 << Callee->getName() << "'!\n";
74 abort();
75 default:
76 std::cerr << "Error: Code generator does not support intrinsic function '"
77 << Callee->getName() << "'!\n";
78 abort();
79
Chris Lattner588e72d2004-02-15 22:16:39 +000080 // The setjmp/longjmp intrinsics should only exist in the code if it was
81 // never optimized (ie, right out of the CFE), or if it has been hacked on
82 // by the lowerinvoke pass. In both cases, the right thing to do is to
83 // convert the call to an explicit setjmp or longjmp call.
Chris Lattner9b700f72004-02-15 22:24:51 +000084 case Intrinsic::setjmp: {
85 static Function *SetjmpFCache = 0;
86 Value *V = ReplaceCallWith("setjmp", CI, CI->op_begin()+1, CI->op_end(),
87 Type::IntTy, SetjmpFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +000088 if (CI->getType() != Type::VoidTy)
Chris Lattner9b700f72004-02-15 22:24:51 +000089 CI->replaceAllUsesWith(V);
Chris Lattner3b66ecb2003-12-28 08:19:41 +000090 break;
Chris Lattner9b700f72004-02-15 22:24:51 +000091 }
92 case Intrinsic::sigsetjmp:
93 if (CI->getType() != Type::VoidTy)
94 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
95 break;
Chris Lattner3b66ecb2003-12-28 08:19:41 +000096
97 case Intrinsic::longjmp:
Chris Lattner9b700f72004-02-15 22:24:51 +000098 static Function *LongjmpFCache = 0;
99 ReplaceCallWith("longjmp", CI, CI->op_begin()+1, CI->op_end(),
100 Type::VoidTy, LongjmpFCache);
101 break;
102
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000103 case Intrinsic::siglongjmp:
104 // Insert the call to abort
Chris Lattner588e72d2004-02-15 22:16:39 +0000105 static Function *AbortFCache = 0;
106 ReplaceCallWith("abort", CI, CI->op_end(), CI->op_end(), Type::VoidTy,
107 AbortFCache);
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000108 break;
Chris Lattner77b13302004-01-05 05:36:30 +0000109
Chris Lattnercf899082004-02-14 02:47:17 +0000110 case Intrinsic::returnaddress:
111 case Intrinsic::frameaddress:
Chris Lattnercc42d2c2004-02-14 04:52:06 +0000112 std::cerr << "WARNING: this target does not support the llvm."
113 << (Callee->getIntrinsicID() == Intrinsic::returnaddress ?
114 "return" : "frame") << "address intrinsic.\n";
Chris Lattnercf899082004-02-14 02:47:17 +0000115 CI->replaceAllUsesWith(ConstantPointerNull::get(
116 cast<PointerType>(CI->getType())));
117 break;
118
Chris Lattner77b13302004-01-05 05:36:30 +0000119 case Intrinsic::dbg_stoppoint:
120 case Intrinsic::dbg_region_start:
121 case Intrinsic::dbg_region_end:
Chris Lattnerf907bac2004-01-14 20:41:29 +0000122 case Intrinsic::dbg_declare:
Chris Lattner77b13302004-01-05 05:36:30 +0000123 case Intrinsic::dbg_func_start:
124 if (CI->getType() != Type::VoidTy)
125 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
126 break; // Simply strip out debugging intrinsics
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000127
Chris Lattner588e72d2004-02-15 22:16:39 +0000128 case Intrinsic::memcpy:
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000129 // The memcpy intrinsic take an extra alignment argument that the memcpy
130 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000131 static Function *MemcpyFCache = 0;
132 ReplaceCallWith("memcpy", CI, CI->op_begin()+1, CI->op_end()-1,
133 (*(CI->op_begin()+1))->getType(), MemcpyFCache);
Chris Lattner5fe51cc2004-02-12 17:01:09 +0000134 break;
Chris Lattner588e72d2004-02-15 22:16:39 +0000135 case Intrinsic::memmove:
Chris Lattnercf899082004-02-14 02:47:17 +0000136 // The memmove intrinsic take an extra alignment argument that the memmove
Chris Lattner2751e762004-02-12 18:11:20 +0000137 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000138 static Function *MemmoveFCache = 0;
139 ReplaceCallWith("memmove", CI, CI->op_begin()+1, CI->op_end()-1,
140 (*(CI->op_begin()+1))->getType(), MemmoveFCache);
Chris Lattner2751e762004-02-12 18:11:20 +0000141 break;
Chris Lattner588e72d2004-02-15 22:16:39 +0000142 case Intrinsic::memset:
Chris Lattnercf899082004-02-14 02:47:17 +0000143 // The memset intrinsic take an extra alignment argument that the memset
144 // libc function does not.
Chris Lattner588e72d2004-02-15 22:16:39 +0000145 static Function *MemsetFCache = 0;
146 ReplaceCallWith("memset", CI, CI->op_begin()+1, CI->op_end()-1,
147 (*(CI->op_begin()+1))->getType(), MemsetFCache);
Chris Lattnercf899082004-02-14 02:47:17 +0000148 break;
149 }
Chris Lattner588e72d2004-02-15 22:16:39 +0000150
Chris Lattner3b66ecb2003-12-28 08:19:41 +0000151 assert(CI->use_empty() &&
152 "Lowering should have eliminated any uses of the intrinsic call!");
153 CI->getParent()->getInstList().erase(CI);
154}