blob: 37949559aafa6ecd2471cf59c94d7ae6a9d5572a [file] [log] [blame]
Chris Lattner44d2c352003-10-13 03:32:08 +00001//===-- Function.cpp - Implement the Global object classes ----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Reid Spencer3aaaa0b2007-02-05 20:47:22 +000010// This file implements the Function class for the VMCore library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner2f7c9632001-06-06 20:29:01 +000014#include "llvm/Module.h"
Chris Lattner6213ae02002-09-06 20:46:32 +000015#include "llvm/DerivedTypes.h"
Chris Lattner89046ca2004-10-12 04:20:25 +000016#include "llvm/IntrinsicInst.h"
Dan Gohman3a071482007-08-20 19:23:34 +000017#include "llvm/CodeGen/ValueTypes.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000018#include "llvm/Support/LeakDetector.h"
Reid Spencer4388f0b2007-04-22 05:46:44 +000019#include "llvm/Support/ManagedStatic.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000020#include "SymbolTableListTraitsImpl.h"
Chris Lattnerb392d302004-12-05 06:43:27 +000021#include "llvm/ADT/StringExtras.h"
Chris Lattner189d19f2003-11-21 20:23:48 +000022using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000023
Chris Lattnerf6c93e32005-01-30 00:09:23 +000024BasicBlock *ilist_traits<BasicBlock>::createSentinel() {
Chris Lattner184b2982002-09-08 18:59:35 +000025 BasicBlock *Ret = new BasicBlock();
26 // This should not be garbage monitored.
27 LeakDetector::removeGarbageObject(Ret);
28 return Ret;
Chris Lattner9ed7aef2002-09-06 21:33:15 +000029}
30
Chris Lattner113f4f42002-06-25 16:13:24 +000031iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) {
32 return F->getBasicBlockList();
33}
34
Chris Lattnerf6c93e32005-01-30 00:09:23 +000035Argument *ilist_traits<Argument>::createSentinel() {
Reid Spencer8d9336d2006-12-31 05:26:44 +000036 Argument *Ret = new Argument(Type::Int32Ty);
Chris Lattner184b2982002-09-08 18:59:35 +000037 // This should not be garbage monitored.
38 LeakDetector::removeGarbageObject(Ret);
39 return Ret;
Chris Lattner113f4f42002-06-25 16:13:24 +000040}
41
42iplist<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...
Chris Lattnerb47aa542007-04-17 03:26:42 +000048template class SymbolTableListTraits<Argument, Function>;
49template class SymbolTableListTraits<BasicBlock, Function>;
Chris Lattner2f7c9632001-06-06 20:29:01 +000050
Chris Lattnerda975502001-09-10 07:58:01 +000051//===----------------------------------------------------------------------===//
Chris Lattnerd255ae22002-04-09 19:39:35 +000052// Argument Implementation
53//===----------------------------------------------------------------------===//
54
Misha Brukmanb1c93172005-04-21 23:48:37 +000055Argument::Argument(const Type *Ty, const std::string &Name, Function *Par)
Chris Lattner32ab6432007-02-12 05:18:08 +000056 : Value(Ty, Value::ArgumentVal) {
Chris Lattner9ed7aef2002-09-06 21:33:15 +000057 Parent = 0;
Chris Lattner184b2982002-09-08 18:59:35 +000058
59 // Make sure that we get added to a function
60 LeakDetector::addGarbageObject(this);
61
Chris Lattner9ed7aef2002-09-06 21:33:15 +000062 if (Par)
63 Par->getArgumentList().push_back(this);
Chris Lattner32ab6432007-02-12 05:18:08 +000064 setName(Name);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000065}
66
Chris Lattner9ed7aef2002-09-06 21:33:15 +000067void Argument::setParent(Function *parent) {
Chris Lattner184b2982002-09-08 18:59:35 +000068 if (getParent())
69 LeakDetector::addGarbageObject(this);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000070 Parent = parent;
Chris Lattner184b2982002-09-08 18:59:35 +000071 if (getParent())
72 LeakDetector::removeGarbageObject(this);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000073}
74
Chris Lattnerd255ae22002-04-09 19:39:35 +000075//===----------------------------------------------------------------------===//
Reid Spencer019c8862007-04-09 15:01:12 +000076// ParamAttrsList Implementation
77//===----------------------------------------------------------------------===//
78
79uint16_t
80ParamAttrsList::getParamAttrs(uint16_t Index) const {
81 unsigned limit = attrs.size();
Duncan Sandsd4d7f9d2007-11-30 18:20:58 +000082 for (unsigned i = 0; i < limit && attrs[i].index <= Index; ++i)
Reid Spencer019c8862007-04-09 15:01:12 +000083 if (attrs[i].index == Index)
84 return attrs[i].attrs;
Reid Spencera472f662007-04-11 02:44:20 +000085 return ParamAttr::None;
Reid Spencer019c8862007-04-09 15:01:12 +000086}
87
Reid Spencer019c8862007-04-09 15:01:12 +000088std::string
89ParamAttrsList::getParamAttrsText(uint16_t Attrs) {
90 std::string Result;
Reid Spencera472f662007-04-11 02:44:20 +000091 if (Attrs & ParamAttr::ZExt)
Reid Spencer314e1cb2007-07-19 23:13:04 +000092 Result += "zeroext ";
Reid Spencera472f662007-04-11 02:44:20 +000093 if (Attrs & ParamAttr::SExt)
Reid Spencer314e1cb2007-07-19 23:13:04 +000094 Result += "signext ";
Reid Spencera472f662007-04-11 02:44:20 +000095 if (Attrs & ParamAttr::NoReturn)
Reid Spencer019c8862007-04-09 15:01:12 +000096 Result += "noreturn ";
Reid Spencera472f662007-04-11 02:44:20 +000097 if (Attrs & ParamAttr::NoUnwind)
Reid Spencer019c8862007-04-09 15:01:12 +000098 Result += "nounwind ";
Reid Spencera472f662007-04-11 02:44:20 +000099 if (Attrs & ParamAttr::InReg)
Reid Spencer019c8862007-04-09 15:01:12 +0000100 Result += "inreg ";
Zhou Sheng2444a9a2007-06-05 05:28:26 +0000101 if (Attrs & ParamAttr::NoAlias)
102 Result += "noalias ";
Reid Spencera472f662007-04-11 02:44:20 +0000103 if (Attrs & ParamAttr::StructRet)
Reid Spencer019c8862007-04-09 15:01:12 +0000104 Result += "sret ";
Rafael Espindolab567e3f2007-07-06 10:57:03 +0000105 if (Attrs & ParamAttr::ByVal)
106 Result += "byval ";
Duncan Sands644f9172007-07-27 12:58:54 +0000107 if (Attrs & ParamAttr::Nest)
108 Result += "nest ";
Duncan Sandsa89a1132007-11-22 20:23:04 +0000109 if (Attrs & ParamAttr::ReadNone)
110 Result += "readnone ";
111 if (Attrs & ParamAttr::ReadOnly)
112 Result += "readonly ";
Reid Spencer019c8862007-04-09 15:01:12 +0000113 return Result;
114}
115
Duncan Sands185eeac2007-11-25 14:10:56 +0000116/// onlyInformative - Returns whether only informative attributes are set.
117static inline bool onlyInformative(uint16_t attrs) {
118 return !(attrs & ~ParamAttr::Informative);
119}
120
121bool
122ParamAttrsList::areCompatible(const ParamAttrsList *A, const ParamAttrsList *B){
123 if (A == B)
124 return true;
125 unsigned ASize = A ? A->size() : 0;
126 unsigned BSize = B ? B->size() : 0;
127 unsigned AIndex = 0;
128 unsigned BIndex = 0;
129
130 while (AIndex < ASize && BIndex < BSize) {
131 uint16_t AIdx = A->getParamIndex(AIndex);
132 uint16_t BIdx = B->getParamIndex(BIndex);
133 uint16_t AAttrs = A->getParamAttrsAtIndex(AIndex);
134 uint16_t BAttrs = B->getParamAttrsAtIndex(AIndex);
135
136 if (AIdx < BIdx) {
137 if (!onlyInformative(AAttrs))
138 return false;
139 ++AIndex;
140 } else if (BIdx < AIdx) {
141 if (!onlyInformative(BAttrs))
142 return false;
143 ++BIndex;
144 } else {
145 if (!onlyInformative(AAttrs ^ BAttrs))
146 return false;
147 ++AIndex;
148 ++BIndex;
149 }
150 }
151 for (; AIndex < ASize; ++AIndex)
152 if (!onlyInformative(A->getParamAttrsAtIndex(AIndex)))
153 return false;
154 for (; BIndex < BSize; ++BIndex)
155 if (!onlyInformative(B->getParamAttrsAtIndex(AIndex)))
156 return false;
157 return true;
158}
159
Reid Spencer4388f0b2007-04-22 05:46:44 +0000160void
161ParamAttrsList::Profile(FoldingSetNodeID &ID) const {
162 for (unsigned i = 0; i < attrs.size(); ++i) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000163 uint32_t val = uint32_t(attrs[i].attrs) << 16 | attrs[i].index;
Reid Spencer4388f0b2007-04-22 05:46:44 +0000164 ID.AddInteger(val);
165 }
Reid Spencer019c8862007-04-09 15:01:12 +0000166}
167
Reid Spencer4388f0b2007-04-22 05:46:44 +0000168static ManagedStatic<FoldingSet<ParamAttrsList> > ParamAttrsLists;
Reid Spencer019c8862007-04-09 15:01:12 +0000169
Duncan Sandsb41f8722007-11-30 18:19:18 +0000170const ParamAttrsList *
Reid Spencer4388f0b2007-04-22 05:46:44 +0000171ParamAttrsList::get(const ParamAttrsVector &attrVec) {
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000172 // If there are no attributes then return a null ParamAttrsList pointer.
173 if (attrVec.empty())
174 return 0;
175
Duncan Sandsd7813352007-09-11 14:40:04 +0000176#ifndef NDEBUG
Duncan Sands04eb67e2007-11-20 14:09:29 +0000177 for (unsigned i = 0, e = attrVec.size(); i < e; ++i) {
178 assert(attrVec[i].attrs != ParamAttr::None
179 && "Pointless parameter attribute!");
180 assert((!i || attrVec[i-1].index < attrVec[i].index)
181 && "Misordered ParamAttrsList!");
182 }
Duncan Sandsd7813352007-09-11 14:40:04 +0000183#endif
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000184
185 // Otherwise, build a key to look up the existing attributes.
Reid Spencer4388f0b2007-04-22 05:46:44 +0000186 ParamAttrsList key(attrVec);
187 FoldingSetNodeID ID;
188 key.Profile(ID);
189 void *InsertPos;
190 ParamAttrsList* PAL = ParamAttrsLists->FindNodeOrInsertPos(ID, InsertPos);
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000191
192 // If we didn't find any existing attributes of the same shape then
193 // create a new one and insert it.
Reid Spencer4388f0b2007-04-22 05:46:44 +0000194 if (!PAL) {
195 PAL = new ParamAttrsList(attrVec);
196 ParamAttrsLists->InsertNode(PAL, InsertPos);
197 }
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000198
199 // Return the ParamAttrsList that we found or created.
Reid Spencer4388f0b2007-04-22 05:46:44 +0000200 return PAL;
Reid Spencer019c8862007-04-09 15:01:12 +0000201}
202
Duncan Sandsb41f8722007-11-30 18:19:18 +0000203const ParamAttrsList *
204ParamAttrsList::getModified(const ParamAttrsList *PAL,
205 const ParamAttrsVector &modVec) {
206 if (modVec.empty())
207 return PAL;
208
209#ifndef NDEBUG
210 for (unsigned i = 0, e = modVec.size(); i < e; ++i)
211 assert((!i || modVec[i-1].index < modVec[i].index)
212 && "Misordered ParamAttrsList!");
213#endif
214
215 if (!PAL) {
216 // Strip any instances of ParamAttr::None from modVec before calling 'get'.
217 ParamAttrsVector newVec;
218 for (unsigned i = 0, e = modVec.size(); i < e; ++i)
219 if (modVec[i].attrs != ParamAttr::None)
220 newVec.push_back(modVec[i]);
221 return get(newVec);
222 }
223
224 const ParamAttrsVector &oldVec = PAL->attrs;
225
226 ParamAttrsVector newVec;
227 unsigned oldI = 0;
228 unsigned modI = 0;
229 unsigned oldE = oldVec.size();
230 unsigned modE = modVec.size();
231
232 while (oldI < oldE && modI < modE) {
233 uint16_t oldIndex = oldVec[oldI].index;
234 uint16_t modIndex = modVec[modI].index;
235
236 if (oldIndex < modIndex) {
237 newVec.push_back(oldVec[oldI]);
238 ++oldI;
239 } else if (modIndex < oldIndex) {
240 if (modVec[modI].attrs != ParamAttr::None)
241 newVec.push_back(modVec[modI]);
242 ++modI;
243 } else {
244 // Same index - overwrite or delete existing attributes.
245 if (modVec[modI].attrs != ParamAttr::None)
246 newVec.push_back(modVec[modI]);
247 ++oldI;
248 ++modI;
249 }
250 }
251
252 for (; oldI < oldE; ++oldI)
253 newVec.push_back(oldVec[oldI]);
254 for (; modI < modE; ++modI)
255 if (modVec[modI].attrs != ParamAttr::None)
256 newVec.push_back(modVec[modI]);
257
258 return get(newVec);
259}
260
Reid Spencerc6a83842007-04-22 17:28:03 +0000261ParamAttrsList::~ParamAttrsList() {
262 ParamAttrsLists->RemoveNode(this);
263}
264
Reid Spencer019c8862007-04-09 15:01:12 +0000265//===----------------------------------------------------------------------===//
Chris Lattner57698e22002-03-26 18:01:55 +0000266// Function Implementation
Chris Lattnerda975502001-09-10 07:58:01 +0000267//===----------------------------------------------------------------------===//
268
Chris Lattner379a8d22003-04-16 20:28:45 +0000269Function::Function(const FunctionType *Ty, LinkageTypes Linkage,
Chris Lattner6213ae02002-09-06 20:46:32 +0000270 const std::string &name, Module *ParentModule)
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000271 : GlobalValue(PointerType::get(Ty), Value::FunctionVal, 0, 0, Linkage, name),
272 ParamAttrs(0) {
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000273 SymTab = new ValueSymbolTable();
Chris Lattner6213ae02002-09-06 20:46:32 +0000274
Chris Lattner3ae303c2003-11-21 22:32:23 +0000275 assert((getReturnType()->isFirstClassType() ||getReturnType() == Type::VoidTy)
276 && "LLVM functions cannot return aggregate values!");
277
Chris Lattnere2de9082007-08-18 06:14:52 +0000278 // If the function has arguments, mark them as lazily built.
279 if (Ty->getNumParams())
280 SubclassData = 1; // Set the "has lazy arguments" bit.
281
Chris Lattner184b2982002-09-08 18:59:35 +0000282 // Make sure that we get added to a function
283 LeakDetector::addGarbageObject(this);
284
Chris Lattner6213ae02002-09-06 20:46:32 +0000285 if (ParentModule)
286 ParentModule->getFunctionList().push_back(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000287}
288
Chris Lattner4e8c4872002-03-23 22:51:58 +0000289Function::~Function() {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000290 dropAllReferences(); // After this it is safe to delete instructions.
291
Chris Lattner2f7c9632001-06-06 20:29:01 +0000292 // Delete all of the method arguments and unlink from symbol table...
Chris Lattner113f4f42002-06-25 16:13:24 +0000293 ArgumentList.clear();
Chris Lattner2c8ff632002-04-28 04:51:51 +0000294 delete SymTab;
Reid Spencerc6a83842007-04-22 17:28:03 +0000295
296 // Drop our reference to the parameter attributes, if any.
297 if (ParamAttrs)
298 ParamAttrs->dropRef();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000299}
300
Chris Lattnere2de9082007-08-18 06:14:52 +0000301void Function::BuildLazyArguments() const {
302 // Create the arguments vector, all arguments start out unnamed.
303 const FunctionType *FT = getFunctionType();
304 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
305 assert(FT->getParamType(i) != Type::VoidTy &&
306 "Cannot have void typed arguments!");
307 ArgumentList.push_back(new Argument(FT->getParamType(i)));
308 }
309
310 // Clear the lazy arguments bit.
311 const_cast<Function*>(this)->SubclassData &= ~1;
312}
313
314size_t Function::arg_size() const {
315 return getFunctionType()->getNumParams();
316}
317bool Function::arg_empty() const {
318 return getFunctionType()->getNumParams() == 0;
319}
320
Chris Lattner4e8c4872002-03-23 22:51:58 +0000321void Function::setParent(Module *parent) {
Chris Lattner184b2982002-09-08 18:59:35 +0000322 if (getParent())
323 LeakDetector::addGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000324 Parent = parent;
Chris Lattner184b2982002-09-08 18:59:35 +0000325 if (getParent())
326 LeakDetector::removeGarbageObject(this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000327}
328
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000329void Function::setParamAttrs(const ParamAttrsList *attrs) {
330 // Avoid deleting the ParamAttrsList if they are setting the
331 // attributes to the same list.
332 if (ParamAttrs == attrs)
333 return;
334
335 // Drop reference on the old ParamAttrsList
Reid Spencerc6a83842007-04-22 17:28:03 +0000336 if (ParamAttrs)
337 ParamAttrs->dropRef();
338
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000339 // Add reference to the new ParamAttrsList
Reid Spencerc6a83842007-04-22 17:28:03 +0000340 if (attrs)
341 attrs->addRef();
342
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000343 // Set the new ParamAttrsList.
Reid Spencerc6a83842007-04-22 17:28:03 +0000344 ParamAttrs = attrs;
345}
346
Chris Lattner91db5822002-03-29 03:44:36 +0000347const FunctionType *Function::getFunctionType() const {
348 return cast<FunctionType>(getType()->getElementType());
Chris Lattner7fac0702001-10-03 14:53:21 +0000349}
350
Chris Lattner07b522d2005-01-07 07:40:32 +0000351bool Function::isVarArg() const {
352 return getFunctionType()->isVarArg();
353}
354
Misha Brukmanb1c93172005-04-21 23:48:37 +0000355const Type *Function::getReturnType() const {
Chris Lattner91db5822002-03-29 03:44:36 +0000356 return getFunctionType()->getReturnType();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000357}
358
Chris Lattner02a71e72004-10-11 22:21:39 +0000359void Function::removeFromParent() {
360 getParent()->getFunctionList().remove(this);
361}
362
363void Function::eraseFromParent() {
364 getParent()->getFunctionList().erase(this);
365}
366
Chris Lattner2f7c9632001-06-06 20:29:01 +0000367// dropAllReferences() - This function causes all the subinstructions to "let
368// go" of all references that they are maintaining. This allows one to
369// 'delete' a whole class at a time, even though there may be circular
370// references... first all references are dropped, and all use counts go to
Misha Brukmanfa100532003-10-10 17:54:14 +0000371// zero. Then everything is deleted for real. Note that no operations are
Misha Brukmanb1c93172005-04-21 23:48:37 +0000372// valid on an object that has "dropped all references", except operator
Chris Lattner2f7c9632001-06-06 20:29:01 +0000373// delete.
374//
Chris Lattner4e8c4872002-03-23 22:51:58 +0000375void Function::dropAllReferences() {
Chris Lattner113f4f42002-06-25 16:13:24 +0000376 for (iterator I = begin(), E = end(); I != E; ++I)
377 I->dropAllReferences();
Chris Lattnerc1b16512003-09-17 04:58:59 +0000378 BasicBlocks.clear(); // Delete all basic blocks...
Chris Lattner2f7c9632001-06-06 20:29:01 +0000379}
Chris Lattnerda975502001-09-10 07:58:01 +0000380
Chris Lattnerbb346d02003-05-08 03:47:33 +0000381/// getIntrinsicID - This method returns the ID number of the specified
Brian Gaeke960707c2003-11-11 22:41:34 +0000382/// function, or Intrinsic::not_intrinsic if the function is not an
Misha Brukmanfa100532003-10-10 17:54:14 +0000383/// intrinsic, or if the pointer is null. This value is always defined to be
Chris Lattnerbb346d02003-05-08 03:47:33 +0000384/// zero to allow easy checking for whether a function is intrinsic or not. The
385/// particular intrinsic functions which correspond to this value are defined in
386/// llvm/Intrinsics.h.
387///
Reid Spencer9c2eec32007-04-16 06:54:34 +0000388unsigned Function::getIntrinsicID(bool noAssert) const {
Chris Lattner1e92e062007-02-15 19:17:16 +0000389 const ValueName *ValName = this->getValueName();
Reid Spencerc5f397a2007-04-16 07:08:44 +0000390 if (!ValName)
391 return 0;
Chris Lattner1e92e062007-02-15 19:17:16 +0000392 unsigned Len = ValName->getKeyLength();
393 const char *Name = ValName->getKeyData();
394
Reid Spencer78d71f12007-04-16 16:56:54 +0000395 if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
Reid Spencerb4f9a6f2006-01-16 21:12:35 +0000396 || Name[2] != 'v' || Name[3] != 'm')
Chris Lattnerbb346d02003-05-08 03:47:33 +0000397 return 0; // All intrinsics start with 'llvm.'
Chris Lattner3284ed72003-09-19 19:31:41 +0000398
Reid Spencer9c2eec32007-04-16 06:54:34 +0000399 assert((Len != 5 || noAssert) && "'llvm.' is an invalid intrinsic name!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000400
Chris Lattnerff4d4ee2006-03-09 20:35:01 +0000401#define GET_FUNCTION_RECOGNIZER
402#include "llvm/Intrinsics.gen"
403#undef GET_FUNCTION_RECOGNIZER
Reid Spencer9c2eec32007-04-16 06:54:34 +0000404 assert(noAssert && "Invalid LLVM intrinsic name");
Chris Lattnerbb346d02003-05-08 03:47:33 +0000405 return 0;
406}
407
Reid Spencer2a2117c2007-04-01 07:25:33 +0000408std::string Intrinsic::getName(ID id, const Type **Tys, unsigned numTys) {
Chris Lattner71b8c982006-03-25 06:32:47 +0000409 assert(id < num_intrinsics && "Invalid intrinsic ID!");
410 const char * const Table[] = {
411 "not_intrinsic",
412#define GET_INTRINSIC_NAME_TABLE
413#include "llvm/Intrinsics.gen"
414#undef GET_INTRINSIC_NAME_TABLE
415 };
Reid Spencer2a2117c2007-04-01 07:25:33 +0000416 if (numTys == 0)
417 return Table[id];
418 std::string Result(Table[id]);
419 for (unsigned i = 0; i < numTys; ++i)
420 if (Tys[i])
Dan Gohman3a071482007-08-20 19:23:34 +0000421 Result += "." + MVT::getValueTypeString(MVT::getValueType(Tys[i]));
Reid Spencer2a2117c2007-04-01 07:25:33 +0000422 return Result;
Chris Lattner71b8c982006-03-25 06:32:47 +0000423}
424
Reid Spencer2a2117c2007-04-01 07:25:33 +0000425const FunctionType *Intrinsic::getType(ID id, const Type **Tys,
Chris Lattner31f82df2007-06-05 23:49:06 +0000426 unsigned numTys) {
Jim Laskey2682ea62007-02-07 20:38:26 +0000427 const Type *ResultTy = NULL;
428 std::vector<const Type*> ArgTys;
Jim Laskey2682ea62007-02-07 20:38:26 +0000429 bool IsVarArg = false;
430
431#define GET_INTRINSIC_GENERATOR
432#include "llvm/Intrinsics.gen"
433#undef GET_INTRINSIC_GENERATOR
434
Reid Spencer26d9ff62007-04-09 06:11:23 +0000435 return FunctionType::get(ResultTy, ArgTys, IsVarArg);
Jim Laskey2682ea62007-02-07 20:38:26 +0000436}
437
Reid Spencer2a2117c2007-04-01 07:25:33 +0000438Function *Intrinsic::getDeclaration(Module *M, ID id, const Type **Tys,
439 unsigned numTys) {
Jim Laskey2682ea62007-02-07 20:38:26 +0000440// There can never be multiple globals with the same name of different types,
441// because intrinsics must be a specific type.
Reid Spencer2a2117c2007-04-01 07:25:33 +0000442 return cast<Function>(M->getOrInsertFunction(getName(id, Tys, numTys),
443 getType(id, Tys, numTys)));
Jim Laskey2682ea62007-02-07 20:38:26 +0000444}
445
Chris Lattner1ccab842004-10-12 04:32:37 +0000446Value *IntrinsicInst::StripPointerCasts(Value *Ptr) {
Chris Lattner89046ca2004-10-12 04:20:25 +0000447 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000448 if (CE->getOpcode() == Instruction::BitCast) {
Chris Lattner89046ca2004-10-12 04:20:25 +0000449 if (isa<PointerType>(CE->getOperand(0)->getType()))
450 return StripPointerCasts(CE->getOperand(0));
451 } else if (CE->getOpcode() == Instruction::GetElementPtr) {
452 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
453 if (!CE->getOperand(i)->isNullValue())
454 return Ptr;
455 return StripPointerCasts(CE->getOperand(0));
456 }
457 return Ptr;
458 }
459
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000460 if (BitCastInst *CI = dyn_cast<BitCastInst>(Ptr)) {
Chris Lattner89046ca2004-10-12 04:20:25 +0000461 if (isa<PointerType>(CI->getOperand(0)->getType()))
462 return StripPointerCasts(CI->getOperand(0));
463 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) {
Chris Lattnerbbe9b8a2007-04-25 05:49:09 +0000464 if (GEP->hasAllZeroIndices())
465 return StripPointerCasts(GEP->getOperand(0));
Chris Lattner89046ca2004-10-12 04:20:25 +0000466 }
467 return Ptr;
468}
Chris Lattnerbb346d02003-05-08 03:47:33 +0000469
Reid Spencerc49dd8d2004-07-17 23:50:19 +0000470// vim: sw=2 ai