Change the PointerType api for creating pointer types. The old functionality of Point...
[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/IntrinsicInst.h"
17 #include "llvm/CodeGen/ValueTypes.h"
18 #include "llvm/Support/LeakDetector.h"
19 #include "llvm/Support/ManagedStatic.h"
20 #include "llvm/Support/StringPool.h"
21 #include "SymbolTableListTraitsImpl.h"
22 #include "llvm/ADT/BitVector.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/StringExtras.h"
25 using namespace llvm;
26
27 BasicBlock *ilist_traits<BasicBlock>::createSentinel() {
28   BasicBlock *Ret = new BasicBlock();
29   // This should not be garbage monitored.
30   LeakDetector::removeGarbageObject(Ret);
31   return Ret;
32 }
33
34 iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
35   return F->getBasicBlockList();
36 }
37
38 Argument *ilist_traits<Argument>::createSentinel() {
39   Argument *Ret = new Argument(Type::Int32Ty);
40   // This should not be garbage monitored.
41   LeakDetector::removeGarbageObject(Ret);
42   return Ret;
43 }
44
45 iplist<Argument> &ilist_traits<Argument>::getList(Function *F) {
46   return F->getArgumentList();
47 }
48
49 // Explicit instantiations of SymbolTableListTraits since some of the methods
50 // are not in the public header file...
51 template class SymbolTableListTraits<Argument, Function>;
52 template class SymbolTableListTraits<BasicBlock, Function>;
53
54 //===----------------------------------------------------------------------===//
55 // Argument Implementation
56 //===----------------------------------------------------------------------===//
57
58 Argument::Argument(const Type *Ty, const std::string &Name, Function *Par)
59   : Value(Ty, Value::ArgumentVal) {
60   Parent = 0;
61
62   // Make sure that we get added to a function
63   LeakDetector::addGarbageObject(this);
64
65   if (Par)
66     Par->getArgumentList().push_back(this);
67   setName(Name);
68 }
69
70 void Argument::setParent(Function *parent) {
71   if (getParent())
72     LeakDetector::addGarbageObject(this);
73   Parent = parent;
74   if (getParent())
75     LeakDetector::removeGarbageObject(this);
76 }
77
78 //===----------------------------------------------------------------------===//
79 // ParamAttrsList Implementation
80 //===----------------------------------------------------------------------===//
81
82 uint16_t
83 ParamAttrsList::getParamAttrs(uint16_t Index) const {
84   unsigned limit = attrs.size();
85   for (unsigned i = 0; i < limit && attrs[i].index <= Index; ++i)
86     if (attrs[i].index == Index)
87       return attrs[i].attrs;
88   return ParamAttr::None;
89 }
90
91 std::string 
92 ParamAttrsList::getParamAttrsText(uint16_t Attrs) {
93   std::string Result;
94   if (Attrs & ParamAttr::ZExt)
95     Result += "zeroext ";
96   if (Attrs & ParamAttr::SExt)
97     Result += "signext ";
98   if (Attrs & ParamAttr::NoReturn)
99     Result += "noreturn ";
100   if (Attrs & ParamAttr::NoUnwind)
101     Result += "nounwind ";
102   if (Attrs & ParamAttr::InReg)
103     Result += "inreg ";
104   if (Attrs & ParamAttr::NoAlias)
105     Result += "noalias ";
106   if (Attrs & ParamAttr::StructRet)
107     Result += "sret ";  
108   if (Attrs & ParamAttr::ByVal)
109     Result += "byval ";
110   if (Attrs & ParamAttr::Nest)
111     Result += "nest ";
112   if (Attrs & ParamAttr::ReadNone)
113     Result += "readnone ";
114   if (Attrs & ParamAttr::ReadOnly)
115     Result += "readonly ";
116   return Result;
117 }
118
119 /// onlyInformative - Returns whether only informative attributes are set.
120 static inline bool onlyInformative(uint16_t attrs) {
121   return !(attrs & ~ParamAttr::Informative);
122 }
123
124 bool
125 ParamAttrsList::areCompatible(const ParamAttrsList *A, const ParamAttrsList *B){
126   if (A == B)
127     return true;
128   unsigned ASize = A ? A->size() : 0;
129   unsigned BSize = B ? B->size() : 0;
130   unsigned AIndex = 0;
131   unsigned BIndex = 0;
132
133   while (AIndex < ASize && BIndex < BSize) {
134     uint16_t AIdx = A->getParamIndex(AIndex);
135     uint16_t BIdx = B->getParamIndex(BIndex);
136     uint16_t AAttrs = A->getParamAttrsAtIndex(AIndex);
137     uint16_t BAttrs = B->getParamAttrsAtIndex(AIndex);
138
139     if (AIdx < BIdx) {
140       if (!onlyInformative(AAttrs))
141         return false;
142       ++AIndex;
143     } else if (BIdx < AIdx) {
144       if (!onlyInformative(BAttrs))
145         return false;
146       ++BIndex;
147     } else {
148       if (!onlyInformative(AAttrs ^ BAttrs))
149         return false;
150       ++AIndex;
151       ++BIndex;
152     }
153   }
154   for (; AIndex < ASize; ++AIndex)
155     if (!onlyInformative(A->getParamAttrsAtIndex(AIndex)))
156       return false;
157   for (; BIndex < BSize; ++BIndex)
158     if (!onlyInformative(B->getParamAttrsAtIndex(AIndex)))
159       return false;
160   return true;
161 }
162
163 void 
164 ParamAttrsList::Profile(FoldingSetNodeID &ID) const {
165   for (unsigned i = 0; i < attrs.size(); ++i) {
166     uint32_t val = uint32_t(attrs[i].attrs) << 16 | attrs[i].index;
167     ID.AddInteger(val);
168   }
169 }
170
171 static ManagedStatic<FoldingSet<ParamAttrsList> > ParamAttrsLists;
172
173 const ParamAttrsList *
174 ParamAttrsList::get(const ParamAttrsVector &attrVec) {
175   // If there are no attributes then return a null ParamAttrsList pointer.
176   if (attrVec.empty())
177     return 0;
178
179 #ifndef NDEBUG
180   for (unsigned i = 0, e = attrVec.size(); i < e; ++i) {
181     assert(attrVec[i].attrs != ParamAttr::None
182            && "Pointless parameter attribute!");
183     assert((!i || attrVec[i-1].index < attrVec[i].index)
184            && "Misordered ParamAttrsList!");
185   }
186 #endif
187
188   // Otherwise, build a key to look up the existing attributes.
189   ParamAttrsList key(attrVec);
190   FoldingSetNodeID ID;
191   key.Profile(ID);
192   void *InsertPos;
193   ParamAttrsList* PAL = ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
194
195   // If we didn't find any existing attributes of the same shape then
196   // create a new one and insert it.
197   if (!PAL) {
198     PAL = new ParamAttrsList(attrVec);
199     ParamAttrsLists->InsertNode(PAL, InsertPos);
200   }
201
202   // Return the ParamAttrsList that we found or created.
203   return PAL;
204 }
205
206 const ParamAttrsList *
207 ParamAttrsList::getModified(const ParamAttrsList *PAL,
208                             const ParamAttrsVector &modVec) {
209   if (modVec.empty())
210     return PAL;
211
212 #ifndef NDEBUG
213   for (unsigned i = 0, e = modVec.size(); i < e; ++i)
214     assert((!i || modVec[i-1].index < modVec[i].index)
215            && "Misordered ParamAttrsList!");
216 #endif
217
218   if (!PAL) {
219     // Strip any instances of ParamAttr::None from modVec before calling 'get'.
220     ParamAttrsVector newVec;
221     for (unsigned i = 0, e = modVec.size(); i < e; ++i)
222       if (modVec[i].attrs != ParamAttr::None)
223         newVec.push_back(modVec[i]);
224     return get(newVec);
225   }
226
227   const ParamAttrsVector &oldVec = PAL->attrs;
228
229   ParamAttrsVector newVec;
230   unsigned oldI = 0;
231   unsigned modI = 0;
232   unsigned oldE = oldVec.size();
233   unsigned modE = modVec.size();
234
235   while (oldI < oldE && modI < modE) {
236     uint16_t oldIndex = oldVec[oldI].index;
237     uint16_t modIndex = modVec[modI].index;
238
239     if (oldIndex < modIndex) {
240       newVec.push_back(oldVec[oldI]);
241       ++oldI;
242     } else if (modIndex < oldIndex) {
243       if (modVec[modI].attrs != ParamAttr::None)
244         newVec.push_back(modVec[modI]);
245       ++modI;
246     } else {
247       // Same index - overwrite or delete existing attributes.
248       if (modVec[modI].attrs != ParamAttr::None)
249         newVec.push_back(modVec[modI]);
250       ++oldI;
251       ++modI;
252     }
253   }
254
255   for (; oldI < oldE; ++oldI)
256     newVec.push_back(oldVec[oldI]);
257   for (; modI < modE; ++modI)
258     if (modVec[modI].attrs != ParamAttr::None)
259       newVec.push_back(modVec[modI]);
260
261   return get(newVec);
262 }
263
264 ParamAttrsList::~ParamAttrsList() {
265   ParamAttrsLists->RemoveNode(this);
266 }
267
268 //===----------------------------------------------------------------------===//
269 // Function Implementation
270 //===----------------------------------------------------------------------===//
271
272 Function::Function(const FunctionType *Ty, LinkageTypes Linkage,
273                    const std::string &name, Module *ParentModule)
274   : GlobalValue(PointerType::getUnqual(Ty), 
275                 Value::FunctionVal, 0, 0, Linkage, name),
276     ParamAttrs(0) {
277   SymTab = new ValueSymbolTable();
278
279   assert((getReturnType()->isFirstClassType() ||getReturnType() == Type::VoidTy)
280          && "LLVM functions cannot return aggregate values!");
281
282   // If the function has arguments, mark them as lazily built.
283   if (Ty->getNumParams())
284     SubclassData = 1;   // Set the "has lazy arguments" bit.
285   
286   // Make sure that we get added to a function
287   LeakDetector::addGarbageObject(this);
288
289   if (ParentModule)
290     ParentModule->getFunctionList().push_back(this);
291 }
292
293 Function::~Function() {
294   dropAllReferences();    // After this it is safe to delete instructions.
295
296   // Delete all of the method arguments and unlink from symbol table...
297   ArgumentList.clear();
298   delete SymTab;
299
300   // Drop our reference to the parameter attributes, if any.
301   if (ParamAttrs)
302     ParamAttrs->dropRef();
303   
304   // Remove the function from the on-the-side collector table.
305   clearCollector();
306 }
307
308 void Function::BuildLazyArguments() const {
309   // Create the arguments vector, all arguments start out unnamed.
310   const FunctionType *FT = getFunctionType();
311   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
312     assert(FT->getParamType(i) != Type::VoidTy &&
313            "Cannot have void typed arguments!");
314     ArgumentList.push_back(new Argument(FT->getParamType(i)));
315   }
316   
317   // Clear the lazy arguments bit.
318   const_cast<Function*>(this)->SubclassData &= ~1;
319 }
320
321 size_t Function::arg_size() const {
322   return getFunctionType()->getNumParams();
323 }
324 bool Function::arg_empty() const {
325   return getFunctionType()->getNumParams() == 0;
326 }
327
328 void Function::setParent(Module *parent) {
329   if (getParent())
330     LeakDetector::addGarbageObject(this);
331   Parent = parent;
332   if (getParent())
333     LeakDetector::removeGarbageObject(this);
334 }
335
336 void Function::setParamAttrs(const ParamAttrsList *attrs) {
337   // Avoid deleting the ParamAttrsList if they are setting the
338   // attributes to the same list.
339   if (ParamAttrs == attrs)
340     return;
341
342   // Drop reference on the old ParamAttrsList
343   if (ParamAttrs)
344     ParamAttrs->dropRef();
345
346   // Add reference to the new ParamAttrsList
347   if (attrs)
348     attrs->addRef();
349
350   // Set the new ParamAttrsList.
351   ParamAttrs = attrs; 
352 }
353
354 const FunctionType *Function::getFunctionType() const {
355   return cast<FunctionType>(getType()->getElementType());
356 }
357
358 bool Function::isVarArg() const {
359   return getFunctionType()->isVarArg();
360 }
361
362 const Type *Function::getReturnType() const {
363   return getFunctionType()->getReturnType();
364 }
365
366 void Function::removeFromParent() {
367   getParent()->getFunctionList().remove(this);
368 }
369
370 void Function::eraseFromParent() {
371   getParent()->getFunctionList().erase(this);
372 }
373
374 // dropAllReferences() - This function causes all the subinstructions to "let
375 // go" of all references that they are maintaining.  This allows one to
376 // 'delete' a whole class at a time, even though there may be circular
377 // references... first all references are dropped, and all use counts go to
378 // zero.  Then everything is deleted for real.  Note that no operations are
379 // valid on an object that has "dropped all references", except operator
380 // delete.
381 //
382 void Function::dropAllReferences() {
383   for (iterator I = begin(), E = end(); I != E; ++I)
384     I->dropAllReferences();
385   BasicBlocks.clear();    // Delete all basic blocks...
386 }
387
388 // Maintain the collector name for each function in an on-the-side table. This
389 // saves allocating an additional word in Function for programs which do not use
390 // GC (i.e., most programs) at the cost of increased overhead for clients which
391 // do use GC.
392 static DenseMap<const Function*,PooledStringPtr> *CollectorNames;
393 static StringPool *CollectorNamePool;
394
395 bool Function::hasCollector() const {
396   return CollectorNames && CollectorNames->count(this);
397 }
398
399 const char *Function::getCollector() const {
400   assert(hasCollector() && "Function has no collector");
401   return *(*CollectorNames)[this];
402 }
403
404 void Function::setCollector(const char *Str) {
405   if (!CollectorNamePool)
406     CollectorNamePool = new StringPool();
407   if (!CollectorNames)
408     CollectorNames = new DenseMap<const Function*,PooledStringPtr>();
409   (*CollectorNames)[this] = CollectorNamePool->intern(Str);
410 }
411
412 void Function::clearCollector() {
413   if (CollectorNames) {
414     CollectorNames->erase(this);
415     if (CollectorNames->empty()) {
416       delete CollectorNames;
417       CollectorNames = 0;
418       if (CollectorNamePool->empty()) {
419         delete CollectorNamePool;
420         CollectorNamePool = 0;
421       }
422     }
423   }
424 }
425
426 /// getIntrinsicID - This method returns the ID number of the specified
427 /// function, or Intrinsic::not_intrinsic if the function is not an
428 /// intrinsic, or if the pointer is null.  This value is always defined to be
429 /// zero to allow easy checking for whether a function is intrinsic or not.  The
430 /// particular intrinsic functions which correspond to this value are defined in
431 /// llvm/Intrinsics.h.
432 ///
433 unsigned Function::getIntrinsicID(bool noAssert) const {
434   const ValueName *ValName = this->getValueName();
435   if (!ValName)
436     return 0;
437   unsigned Len = ValName->getKeyLength();
438   const char *Name = ValName->getKeyData();
439   
440   if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
441       || Name[2] != 'v' || Name[3] != 'm')
442     return 0;  // All intrinsics start with 'llvm.'
443
444   assert((Len != 5 || noAssert) && "'llvm.' is an invalid intrinsic name!");
445
446 #define GET_FUNCTION_RECOGNIZER
447 #include "llvm/Intrinsics.gen"
448 #undef GET_FUNCTION_RECOGNIZER
449   assert(noAssert && "Invalid LLVM intrinsic name");
450   return 0;
451 }
452
453 std::string Intrinsic::getName(ID id, const Type **Tys, unsigned numTys) { 
454   assert(id < num_intrinsics && "Invalid intrinsic ID!");
455   const char * const Table[] = {
456     "not_intrinsic",
457 #define GET_INTRINSIC_NAME_TABLE
458 #include "llvm/Intrinsics.gen"
459 #undef GET_INTRINSIC_NAME_TABLE
460   };
461   if (numTys == 0)
462     return Table[id];
463   std::string Result(Table[id]);
464   for (unsigned i = 0; i < numTys; ++i) 
465     if (Tys[i])
466       Result += "." + MVT::getValueTypeString(MVT::getValueType(Tys[i]));
467   return Result;
468 }
469
470 const FunctionType *Intrinsic::getType(ID id, const Type **Tys, 
471                                        unsigned numTys) {
472   const Type *ResultTy = NULL;
473   std::vector<const Type*> ArgTys;
474   bool IsVarArg = false;
475   
476 #define GET_INTRINSIC_GENERATOR
477 #include "llvm/Intrinsics.gen"
478 #undef GET_INTRINSIC_GENERATOR
479
480   return FunctionType::get(ResultTy, ArgTys, IsVarArg); 
481 }
482
483 const ParamAttrsList *Intrinsic::getParamAttrs(ID id) {
484   static const ParamAttrsList *IntrinsicAttributes[Intrinsic::num_intrinsics];
485
486   if (IntrinsicAttributes[id])
487     return IntrinsicAttributes[id];
488
489   ParamAttrsVector Attrs;
490   uint16_t Attr = ParamAttr::None;
491
492 #define GET_INTRINSIC_ATTRIBUTES
493 #include "llvm/Intrinsics.gen"
494 #undef GET_INTRINSIC_ATTRIBUTES
495
496   // Intrinsics cannot throw exceptions.
497   Attr |= ParamAttr::NoUnwind;
498
499   Attrs.push_back(ParamAttrsWithIndex::get(0, Attr));
500   IntrinsicAttributes[id] = ParamAttrsList::get(Attrs);
501   return IntrinsicAttributes[id];
502 }
503
504 Function *Intrinsic::getDeclaration(Module *M, ID id, const Type **Tys, 
505                                     unsigned numTys) {
506   // There can never be multiple globals with the same name of different types,
507   // because intrinsics must be a specific type.
508   Function *F =
509     cast<Function>(M->getOrInsertFunction(getName(id, Tys, numTys),
510                                           getType(id, Tys, numTys)));
511   F->setParamAttrs(getParamAttrs(id));
512   return F;
513 }
514
515 Value *IntrinsicInst::StripPointerCasts(Value *Ptr) {
516   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
517     if (CE->getOpcode() == Instruction::BitCast) {
518       if (isa<PointerType>(CE->getOperand(0)->getType()))
519         return StripPointerCasts(CE->getOperand(0));
520     } else if (CE->getOpcode() == Instruction::GetElementPtr) {
521       for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
522         if (!CE->getOperand(i)->isNullValue())
523           return Ptr;
524       return StripPointerCasts(CE->getOperand(0));
525     }
526     return Ptr;
527   }
528
529   if (BitCastInst *CI = dyn_cast<BitCastInst>(Ptr)) {
530     if (isa<PointerType>(CI->getOperand(0)->getType()))
531       return StripPointerCasts(CI->getOperand(0));
532   } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
533     if (GEP->hasAllZeroIndices())
534       return StripPointerCasts(GEP->getOperand(0));
535   }
536   return Ptr;
537 }
538
539 // vim: sw=2 ai