b6ff70d6a33463e8c1a5455d8971e473313590ed
[oota-llvm.git] / lib / VMCore / Function.cpp
1 //===-- Function.cpp - Implement the Global object classes ----------------===//
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 Function class for the VMCore library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Module.h"
15 #include "llvm/DerivedTypes.h"
16 #include "llvm/ParameterAttributes.h"
17 #include "llvm/IntrinsicInst.h"
18 #include "llvm/Support/LeakDetector.h"
19 #include "llvm/Support/ManagedStatic.h"
20 #include "SymbolTableListTraitsImpl.h"
21 #include "llvm/ADT/StringExtras.h"
22 using namespace llvm;
23
24 BasicBlock *ilist_traits<BasicBlock>::createSentinel() {
25   BasicBlock *Ret = new BasicBlock();
26   // This should not be garbage monitored.
27   LeakDetector::removeGarbageObject(Ret);
28   return Ret;
29 }
30
31 iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
32   return F->getBasicBlockList();
33 }
34
35 Argument *ilist_traits<Argument>::createSentinel() {
36   Argument *Ret = new Argument(Type::Int32Ty);
37   // This should not be garbage monitored.
38   LeakDetector::removeGarbageObject(Ret);
39   return Ret;
40 }
41
42 iplist<Argument> &ilist_traits<Argument>::getList(Function *F) {
43   return F->getArgumentList();
44 }
45
46 // Explicit instantiations of SymbolTableListTraits since some of the methods
47 // are not in the public header file...
48 template class SymbolTableListTraits<Argument, Function>;
49 template class SymbolTableListTraits<BasicBlock, Function>;
50
51 //===----------------------------------------------------------------------===//
52 // Argument Implementation
53 //===----------------------------------------------------------------------===//
54
55 Argument::Argument(const Type *Ty, const std::string &Name, Function *Par)
56   : Value(Ty, Value::ArgumentVal) {
57   Parent = 0;
58
59   // Make sure that we get added to a function
60   LeakDetector::addGarbageObject(this);
61
62   if (Par)
63     Par->getArgumentList().push_back(this);
64   setName(Name);
65 }
66
67 void Argument::setParent(Function *parent) {
68   if (getParent())
69     LeakDetector::addGarbageObject(this);
70   Parent = parent;
71   if (getParent())
72     LeakDetector::removeGarbageObject(this);
73 }
74
75 //===----------------------------------------------------------------------===//
76 // ParamAttrsList Implementation
77 //===----------------------------------------------------------------------===//
78
79 uint16_t
80 ParamAttrsList::getParamAttrs(uint16_t Index) const {
81   unsigned limit = attrs.size();
82   for (unsigned i = 0; i < limit; ++i)
83     if (attrs[i].index == Index)
84       return attrs[i].attrs;
85   return ParamAttr::None;
86 }
87
88
89 std::string 
90 ParamAttrsList::getParamAttrsText(uint16_t Attrs) {
91   std::string Result;
92   if (Attrs & ParamAttr::ZExt)
93     Result += "zext ";
94   if (Attrs & ParamAttr::SExt)
95     Result += "sext ";
96   if (Attrs & ParamAttr::NoReturn)
97     Result += "noreturn ";
98   if (Attrs & ParamAttr::NoUnwind)
99     Result += "nounwind ";
100   if (Attrs & ParamAttr::InReg)
101     Result += "inreg ";
102   if (Attrs & ParamAttr::StructRet)
103     Result += "sret ";  
104   return Result;
105 }
106
107 void 
108 ParamAttrsList::Profile(FoldingSetNodeID &ID) const {
109   for (unsigned i = 0; i < attrs.size(); ++i) {
110     unsigned val = attrs[i].attrs << 16 | attrs[i].index;
111     ID.AddInteger(val);
112   }
113 }
114
115 static ManagedStatic<FoldingSet<ParamAttrsList> > ParamAttrsLists;
116
117 ParamAttrsList *
118 ParamAttrsList::get(const ParamAttrsVector &attrVec) {
119   assert(!attrVec.empty() && "Illegal to create empty ParamAttrsList");
120   ParamAttrsList key(attrVec);
121   FoldingSetNodeID ID;
122   key.Profile(ID);
123   void *InsertPos;
124   ParamAttrsList* PAL = ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
125   if (!PAL) {
126     PAL = new ParamAttrsList(attrVec);
127     ParamAttrsLists->InsertNode(PAL, InsertPos);
128   }
129   return PAL;
130 }
131
132 //===----------------------------------------------------------------------===//
133 // Function Implementation
134 //===----------------------------------------------------------------------===//
135
136 Function::Function(const FunctionType *Ty, LinkageTypes Linkage,
137                    const std::string &name, Module *ParentModule)
138   : GlobalValue(PointerType::get(Ty), Value::FunctionVal, 0, 0, Linkage, name) {
139   ParamAttrs = 0;
140   SymTab = new ValueSymbolTable();
141
142   assert((getReturnType()->isFirstClassType() ||getReturnType() == Type::VoidTy)
143          && "LLVM functions cannot return aggregate values!");
144
145   // Create the arguments vector, all arguments start out unnamed.
146   for (unsigned i = 0, e = Ty->getNumParams(); i != e; ++i) {
147     assert(Ty->getParamType(i) != Type::VoidTy &&
148            "Cannot have void typed arguments!");
149     ArgumentList.push_back(new Argument(Ty->getParamType(i)));
150   }
151
152   // Make sure that we get added to a function
153   LeakDetector::addGarbageObject(this);
154
155   if (ParentModule)
156     ParentModule->getFunctionList().push_back(this);
157 }
158
159 Function::~Function() {
160   dropAllReferences();    // After this it is safe to delete instructions.
161
162   // Delete all of the method arguments and unlink from symbol table...
163   ArgumentList.clear();
164   delete SymTab;
165 }
166
167 void Function::setParent(Module *parent) {
168   if (getParent())
169     LeakDetector::addGarbageObject(this);
170   Parent = parent;
171   if (getParent())
172     LeakDetector::removeGarbageObject(this);
173 }
174
175 const FunctionType *Function::getFunctionType() const {
176   return cast<FunctionType>(getType()->getElementType());
177 }
178
179 bool Function::isVarArg() const {
180   return getFunctionType()->isVarArg();
181 }
182
183 const Type *Function::getReturnType() const {
184   return getFunctionType()->getReturnType();
185 }
186
187 void Function::removeFromParent() {
188   getParent()->getFunctionList().remove(this);
189 }
190
191 void Function::eraseFromParent() {
192   getParent()->getFunctionList().erase(this);
193 }
194
195 // dropAllReferences() - This function causes all the subinstructions to "let
196 // go" of all references that they are maintaining.  This allows one to
197 // 'delete' a whole class at a time, even though there may be circular
198 // references... first all references are dropped, and all use counts go to
199 // zero.  Then everything is deleted for real.  Note that no operations are
200 // valid on an object that has "dropped all references", except operator
201 // delete.
202 //
203 void Function::dropAllReferences() {
204   for (iterator I = begin(), E = end(); I != E; ++I)
205     I->dropAllReferences();
206   BasicBlocks.clear();    // Delete all basic blocks...
207 }
208
209 /// getIntrinsicID - This method returns the ID number of the specified
210 /// function, or Intrinsic::not_intrinsic if the function is not an
211 /// intrinsic, or if the pointer is null.  This value is always defined to be
212 /// zero to allow easy checking for whether a function is intrinsic or not.  The
213 /// particular intrinsic functions which correspond to this value are defined in
214 /// llvm/Intrinsics.h.
215 ///
216 unsigned Function::getIntrinsicID(bool noAssert) const {
217   const ValueName *ValName = this->getValueName();
218   if (!ValName)
219     return 0;
220   unsigned Len = ValName->getKeyLength();
221   const char *Name = ValName->getKeyData();
222   
223   if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
224       || Name[2] != 'v' || Name[3] != 'm')
225     return 0;  // All intrinsics start with 'llvm.'
226
227   assert((Len != 5 || noAssert) && "'llvm.' is an invalid intrinsic name!");
228
229 #define GET_FUNCTION_RECOGNIZER
230 #include "llvm/Intrinsics.gen"
231 #undef GET_FUNCTION_RECOGNIZER
232   assert(noAssert && "Invalid LLVM intrinsic name");
233   return 0;
234 }
235
236 std::string Intrinsic::getName(ID id, const Type **Tys, unsigned numTys) { 
237   assert(id < num_intrinsics && "Invalid intrinsic ID!");
238   const char * const Table[] = {
239     "not_intrinsic",
240 #define GET_INTRINSIC_NAME_TABLE
241 #include "llvm/Intrinsics.gen"
242 #undef GET_INTRINSIC_NAME_TABLE
243   };
244   if (numTys == 0)
245     return Table[id];
246   std::string Result(Table[id]);
247   for (unsigned i = 0; i < numTys; ++i) 
248     if (Tys[i])
249       Result += "." + Tys[i]->getDescription();
250   return Result;
251 }
252
253 const FunctionType *Intrinsic::getType(ID id, const Type **Tys, 
254                                        uint32_t numTys) {
255   const Type *ResultTy = NULL;
256   std::vector<const Type*> ArgTys;
257   bool IsVarArg = false;
258   
259 #define GET_INTRINSIC_GENERATOR
260 #include "llvm/Intrinsics.gen"
261 #undef GET_INTRINSIC_GENERATOR
262
263   return FunctionType::get(ResultTy, ArgTys, IsVarArg); 
264 }
265
266 Function *Intrinsic::getDeclaration(Module *M, ID id, const Type **Tys, 
267                                     unsigned numTys) {
268 // There can never be multiple globals with the same name of different types,
269 // because intrinsics must be a specific type.
270   return cast<Function>(M->getOrInsertFunction(getName(id, Tys, numTys), 
271                                                getType(id, Tys, numTys)));
272 }
273
274 Value *IntrinsicInst::StripPointerCasts(Value *Ptr) {
275   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
276     if (CE->getOpcode() == Instruction::BitCast) {
277       if (isa<PointerType>(CE->getOperand(0)->getType()))
278         return StripPointerCasts(CE->getOperand(0));
279     } else if (CE->getOpcode() == Instruction::GetElementPtr) {
280       for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
281         if (!CE->getOperand(i)->isNullValue())
282           return Ptr;
283       return StripPointerCasts(CE->getOperand(0));
284     }
285     return Ptr;
286   }
287
288   if (BitCastInst *CI = dyn_cast<BitCastInst>(Ptr)) {
289     if (isa<PointerType>(CI->getOperand(0)->getType()))
290       return StripPointerCasts(CI->getOperand(0));
291   } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
292     for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
293       if (!isa<Constant>(GEP->getOperand(i)) ||
294           !cast<Constant>(GEP->getOperand(i))->isNullValue())
295         return Ptr;
296     return StripPointerCasts(GEP->getOperand(0));
297   }
298   return Ptr;
299 }
300
301 // vim: sw=2 ai