Silence -Wunused-variable in release builds.
[llvm/stm8.git] / lib / VMCore / Module.cpp
blob1ca70161d6d5242174f21f175d5f491bbfc05f4c
1 //===-- Module.cpp - Implement the Module class ---------------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Module class for the VMCore library.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Module.h"
15 #include "llvm/InstrTypes.h"
16 #include "llvm/Constants.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/GVMaterializer.h"
19 #include "llvm/LLVMContext.h"
20 #include "llvm/ADT/DenseSet.h"
21 #include "llvm/ADT/SmallString.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/StringExtras.h"
24 #include "llvm/Support/LeakDetector.h"
25 #include "SymbolTableListTraitsImpl.h"
26 #include <algorithm>
27 #include <cstdarg>
28 #include <cstdlib>
29 using namespace llvm;
31 //===----------------------------------------------------------------------===//
32 // Methods to implement the globals and functions lists.
35 GlobalVariable *ilist_traits<GlobalVariable>::createSentinel() {
36 GlobalVariable *Ret = new GlobalVariable(Type::getInt32Ty(getGlobalContext()),
37 false, GlobalValue::ExternalLinkage);
38 // This should not be garbage monitored.
39 LeakDetector::removeGarbageObject(Ret);
40 return Ret;
42 GlobalAlias *ilist_traits<GlobalAlias>::createSentinel() {
43 GlobalAlias *Ret = new GlobalAlias(Type::getInt32Ty(getGlobalContext()),
44 GlobalValue::ExternalLinkage);
45 // This should not be garbage monitored.
46 LeakDetector::removeGarbageObject(Ret);
47 return Ret;
50 // Explicit instantiations of SymbolTableListTraits since some of the methods
51 // are not in the public header file.
52 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
53 template class llvm::SymbolTableListTraits<Function, Module>;
54 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
56 //===----------------------------------------------------------------------===//
57 // Primitive Module methods.
60 Module::Module(StringRef MID, LLVMContext& C)
61 : Context(C), Materializer(NULL), ModuleID(MID) {
62 ValSymTab = new ValueSymbolTable();
63 NamedMDSymTab = new StringMap<NamedMDNode *>();
64 Context.addModule(this);
67 Module::~Module() {
68 Context.removeModule(this);
69 dropAllReferences();
70 GlobalList.clear();
71 FunctionList.clear();
72 AliasList.clear();
73 LibraryList.clear();
74 NamedMDList.clear();
75 delete ValSymTab;
76 delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab);
79 /// Target endian information.
80 Module::Endianness Module::getEndianness() const {
81 StringRef temp = DataLayout;
82 Module::Endianness ret = AnyEndianness;
84 while (!temp.empty()) {
85 StringRef token = DataLayout;
86 tie(token, temp) = getToken(temp, "-");
88 if (token[0] == 'e') {
89 ret = LittleEndian;
90 } else if (token[0] == 'E') {
91 ret = BigEndian;
95 return ret;
98 /// Target Pointer Size information...
99 Module::PointerSize Module::getPointerSize() const {
100 StringRef temp = DataLayout;
101 Module::PointerSize ret = AnyPointerSize;
103 while (!temp.empty()) {
104 StringRef token, signalToken;
105 tie(token, temp) = getToken(temp, "-");
106 tie(signalToken, token) = getToken(token, ":");
108 if (signalToken[0] == 'p') {
109 int size = 0;
110 getToken(token, ":").first.getAsInteger(10, size);
111 if (size == 32)
112 ret = Pointer32;
113 else if (size == 64)
114 ret = Pointer64;
118 return ret;
121 /// getNamedValue - Return the first global value in the module with
122 /// the specified name, of arbitrary type. This method returns null
123 /// if a global with the specified name is not found.
124 GlobalValue *Module::getNamedValue(StringRef Name) const {
125 return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name));
128 /// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
129 /// This ID is uniqued across modules in the current LLVMContext.
130 unsigned Module::getMDKindID(StringRef Name) const {
131 return Context.getMDKindID(Name);
134 /// getMDKindNames - Populate client supplied SmallVector with the name for
135 /// custom metadata IDs registered in this LLVMContext. ID #0 is not used,
136 /// so it is filled in as an empty string.
137 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const {
138 return Context.getMDKindNames(Result);
142 //===----------------------------------------------------------------------===//
143 // Methods for easy access to the functions in the module.
146 // getOrInsertFunction - Look up the specified function in the module symbol
147 // table. If it does not exist, add a prototype for the function and return
148 // it. This is nice because it allows most passes to get away with not handling
149 // the symbol table directly for this common task.
151 Constant *Module::getOrInsertFunction(StringRef Name,
152 const FunctionType *Ty,
153 AttrListPtr AttributeList) {
154 // See if we have a definition for the specified function already.
155 GlobalValue *F = getNamedValue(Name);
156 if (F == 0) {
157 // Nope, add it
158 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
159 if (!New->isIntrinsic()) // Intrinsics get attrs set on construction
160 New->setAttributes(AttributeList);
161 FunctionList.push_back(New);
162 return New; // Return the new prototype.
165 // Okay, the function exists. Does it have externally visible linkage?
166 if (F->hasLocalLinkage()) {
167 // Clear the function's name.
168 F->setName("");
169 // Retry, now there won't be a conflict.
170 Constant *NewF = getOrInsertFunction(Name, Ty);
171 F->setName(Name);
172 return NewF;
175 // If the function exists but has the wrong type, return a bitcast to the
176 // right type.
177 if (F->getType() != PointerType::getUnqual(Ty))
178 return ConstantExpr::getBitCast(F, PointerType::getUnqual(Ty));
180 // Otherwise, we just found the existing function or a prototype.
181 return F;
184 Constant *Module::getOrInsertTargetIntrinsic(StringRef Name,
185 const FunctionType *Ty,
186 AttrListPtr AttributeList) {
187 // See if we have a definition for the specified function already.
188 GlobalValue *F = getNamedValue(Name);
189 if (F == 0) {
190 // Nope, add it
191 Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
192 New->setAttributes(AttributeList);
193 FunctionList.push_back(New);
194 return New; // Return the new prototype.
197 // Otherwise, we just found the existing function or a prototype.
198 return F;
201 Constant *Module::getOrInsertFunction(StringRef Name,
202 const FunctionType *Ty) {
203 AttrListPtr AttributeList = AttrListPtr::get((AttributeWithIndex *)0, 0);
204 return getOrInsertFunction(Name, Ty, AttributeList);
207 // getOrInsertFunction - Look up the specified function in the module symbol
208 // table. If it does not exist, add a prototype for the function and return it.
209 // This version of the method takes a null terminated list of function
210 // arguments, which makes it easier for clients to use.
212 Constant *Module::getOrInsertFunction(StringRef Name,
213 AttrListPtr AttributeList,
214 const Type *RetTy, ...) {
215 va_list Args;
216 va_start(Args, RetTy);
218 // Build the list of argument types...
219 std::vector<const Type*> ArgTys;
220 while (const Type *ArgTy = va_arg(Args, const Type*))
221 ArgTys.push_back(ArgTy);
223 va_end(Args);
225 // Build the function type and chain to the other getOrInsertFunction...
226 return getOrInsertFunction(Name,
227 FunctionType::get(RetTy, ArgTys, false),
228 AttributeList);
231 Constant *Module::getOrInsertFunction(StringRef Name,
232 const Type *RetTy, ...) {
233 va_list Args;
234 va_start(Args, RetTy);
236 // Build the list of argument types...
237 std::vector<const Type*> ArgTys;
238 while (const Type *ArgTy = va_arg(Args, const Type*))
239 ArgTys.push_back(ArgTy);
241 va_end(Args);
243 // Build the function type and chain to the other getOrInsertFunction...
244 return getOrInsertFunction(Name,
245 FunctionType::get(RetTy, ArgTys, false),
246 AttrListPtr::get((AttributeWithIndex *)0, 0));
249 // getFunction - Look up the specified function in the module symbol table.
250 // If it does not exist, return null.
252 Function *Module::getFunction(StringRef Name) const {
253 return dyn_cast_or_null<Function>(getNamedValue(Name));
256 //===----------------------------------------------------------------------===//
257 // Methods for easy access to the global variables in the module.
260 /// getGlobalVariable - Look up the specified global variable in the module
261 /// symbol table. If it does not exist, return null. The type argument
262 /// should be the underlying type of the global, i.e., it should not have
263 /// the top-level PointerType, which represents the address of the global.
264 /// If AllowLocal is set to true, this function will return types that
265 /// have an local. By default, these types are not returned.
267 GlobalVariable *Module::getGlobalVariable(StringRef Name,
268 bool AllowLocal) const {
269 if (GlobalVariable *Result =
270 dyn_cast_or_null<GlobalVariable>(getNamedValue(Name)))
271 if (AllowLocal || !Result->hasLocalLinkage())
272 return Result;
273 return 0;
276 /// getOrInsertGlobal - Look up the specified global in the module symbol table.
277 /// 1. If it does not exist, add a declaration of the global and return it.
278 /// 2. Else, the global exists but has the wrong type: return the function
279 /// with a constantexpr cast to the right type.
280 /// 3. Finally, if the existing global is the correct delclaration, return the
281 /// existing global.
282 Constant *Module::getOrInsertGlobal(StringRef Name, const Type *Ty) {
283 // See if we have a definition for the specified global already.
284 GlobalVariable *GV = dyn_cast_or_null<GlobalVariable>(getNamedValue(Name));
285 if (GV == 0) {
286 // Nope, add it
287 GlobalVariable *New =
288 new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage,
289 0, Name);
290 return New; // Return the new declaration.
293 // If the variable exists but has the wrong type, return a bitcast to the
294 // right type.
295 if (GV->getType() != PointerType::getUnqual(Ty))
296 return ConstantExpr::getBitCast(GV, PointerType::getUnqual(Ty));
298 // Otherwise, we just found the existing function or a prototype.
299 return GV;
302 //===----------------------------------------------------------------------===//
303 // Methods for easy access to the global variables in the module.
306 // getNamedAlias - Look up the specified global in the module symbol table.
307 // If it does not exist, return null.
309 GlobalAlias *Module::getNamedAlias(StringRef Name) const {
310 return dyn_cast_or_null<GlobalAlias>(getNamedValue(Name));
313 /// getNamedMetadata - Return the first NamedMDNode in the module with the
314 /// specified name. This method returns null if a NamedMDNode with the
315 /// specified name is not found.
316 NamedMDNode *Module::getNamedMetadata(const Twine &Name) const {
317 SmallString<256> NameData;
318 StringRef NameRef = Name.toStringRef(NameData);
319 return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef);
322 /// getOrInsertNamedMetadata - Return the first named MDNode in the module
323 /// with the specified name. This method returns a new NamedMDNode if a
324 /// NamedMDNode with the specified name is not found.
325 NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) {
326 NamedMDNode *&NMD =
327 (*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name];
328 if (!NMD) {
329 NMD = new NamedMDNode(Name);
330 NMD->setParent(this);
331 NamedMDList.push_back(NMD);
333 return NMD;
336 void Module::eraseNamedMetadata(NamedMDNode *NMD) {
337 static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName());
338 NamedMDList.erase(NMD);
342 //===----------------------------------------------------------------------===//
343 // Methods to control the materialization of GlobalValues in the Module.
345 void Module::setMaterializer(GVMaterializer *GVM) {
346 assert(!Materializer &&
347 "Module already has a GVMaterializer. Call MaterializeAllPermanently"
348 " to clear it out before setting another one.");
349 Materializer.reset(GVM);
352 bool Module::isMaterializable(const GlobalValue *GV) const {
353 if (Materializer)
354 return Materializer->isMaterializable(GV);
355 return false;
358 bool Module::isDematerializable(const GlobalValue *GV) const {
359 if (Materializer)
360 return Materializer->isDematerializable(GV);
361 return false;
364 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
365 if (Materializer)
366 return Materializer->Materialize(GV, ErrInfo);
367 return false;
370 void Module::Dematerialize(GlobalValue *GV) {
371 if (Materializer)
372 return Materializer->Dematerialize(GV);
375 bool Module::MaterializeAll(std::string *ErrInfo) {
376 if (!Materializer)
377 return false;
378 return Materializer->MaterializeModule(this, ErrInfo);
381 bool Module::MaterializeAllPermanently(std::string *ErrInfo) {
382 if (MaterializeAll(ErrInfo))
383 return true;
384 Materializer.reset();
385 return false;
388 //===----------------------------------------------------------------------===//
389 // Other module related stuff.
393 // dropAllReferences() - This function causes all the subelementss to "let go"
394 // of all references that they are maintaining. This allows one to 'delete' a
395 // whole module at a time, even though there may be circular references... first
396 // all references are dropped, and all use counts go to zero. Then everything
397 // is deleted for real. Note that no operations are valid on an object that
398 // has "dropped all references", except operator delete.
400 void Module::dropAllReferences() {
401 for(Module::iterator I = begin(), E = end(); I != E; ++I)
402 I->dropAllReferences();
404 for(Module::global_iterator I = global_begin(), E = global_end(); I != E; ++I)
405 I->dropAllReferences();
407 for(Module::alias_iterator I = alias_begin(), E = alias_end(); I != E; ++I)
408 I->dropAllReferences();
411 void Module::addLibrary(StringRef Lib) {
412 for (Module::lib_iterator I = lib_begin(), E = lib_end(); I != E; ++I)
413 if (*I == Lib)
414 return;
415 LibraryList.push_back(Lib);
418 void Module::removeLibrary(StringRef Lib) {
419 LibraryListType::iterator I = LibraryList.begin();
420 LibraryListType::iterator E = LibraryList.end();
421 for (;I != E; ++I)
422 if (*I == Lib) {
423 LibraryList.erase(I);
424 return;
428 //===----------------------------------------------------------------------===//
429 // Type finding functionality.
430 //===----------------------------------------------------------------------===//
432 namespace {
433 /// TypeFinder - Walk over a module, identifying all of the types that are
434 /// used by the module.
435 class TypeFinder {
436 // To avoid walking constant expressions multiple times and other IR
437 // objects, we keep several helper maps.
438 DenseSet<const Value*> VisitedConstants;
439 DenseSet<const Type*> VisitedTypes;
441 std::vector<StructType*> &StructTypes;
442 public:
443 TypeFinder(std::vector<StructType*> &structTypes)
444 : StructTypes(structTypes) {}
446 void run(const Module &M) {
447 // Get types from global variables.
448 for (Module::const_global_iterator I = M.global_begin(),
449 E = M.global_end(); I != E; ++I) {
450 incorporateType(I->getType());
451 if (I->hasInitializer())
452 incorporateValue(I->getInitializer());
455 // Get types from aliases.
456 for (Module::const_alias_iterator I = M.alias_begin(),
457 E = M.alias_end(); I != E; ++I) {
458 incorporateType(I->getType());
459 if (const Value *Aliasee = I->getAliasee())
460 incorporateValue(Aliasee);
463 SmallVector<std::pair<unsigned, MDNode*>, 4> MDForInst;
465 // Get types from functions.
466 for (Module::const_iterator FI = M.begin(), E = M.end(); FI != E; ++FI) {
467 incorporateType(FI->getType());
469 for (Function::const_iterator BB = FI->begin(), E = FI->end();
470 BB != E;++BB)
471 for (BasicBlock::const_iterator II = BB->begin(),
472 E = BB->end(); II != E; ++II) {
473 const Instruction &I = *II;
474 // Incorporate the type of the instruction and all its operands.
475 incorporateType(I.getType());
476 for (User::const_op_iterator OI = I.op_begin(), OE = I.op_end();
477 OI != OE; ++OI)
478 incorporateValue(*OI);
480 // Incorporate types hiding in metadata.
481 I.getAllMetadata(MDForInst);
482 for (unsigned i = 0, e = MDForInst.size(); i != e; ++i)
483 incorporateMDNode(MDForInst[i].second);
484 MDForInst.clear();
488 for (Module::const_named_metadata_iterator I = M.named_metadata_begin(),
489 E = M.named_metadata_end(); I != E; ++I) {
490 const NamedMDNode *NMD = I;
491 for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i)
492 incorporateMDNode(NMD->getOperand(i));
496 private:
497 void incorporateType(Type *Ty) {
498 // Check to see if we're already visited this type.
499 if (!VisitedTypes.insert(Ty).second)
500 return;
502 // If this is a structure or opaque type, add a name for the type.
503 if (StructType *STy = dyn_cast<StructType>(Ty))
504 StructTypes.push_back(STy);
506 // Recursively walk all contained types.
507 for (Type::subtype_iterator I = Ty->subtype_begin(),
508 E = Ty->subtype_end(); I != E; ++I)
509 incorporateType(*I);
512 /// incorporateValue - This method is used to walk operand lists finding
513 /// types hiding in constant expressions and other operands that won't be
514 /// walked in other ways. GlobalValues, basic blocks, instructions, and
515 /// inst operands are all explicitly enumerated.
516 void incorporateValue(const Value *V) {
517 if (const MDNode *M = dyn_cast<MDNode>(V))
518 return incorporateMDNode(M);
519 if (!isa<Constant>(V) || isa<GlobalValue>(V)) return;
521 // Already visited?
522 if (!VisitedConstants.insert(V).second)
523 return;
525 // Check this type.
526 incorporateType(V->getType());
528 // Look in operands for types.
529 const User *U = cast<User>(V);
530 for (Constant::const_op_iterator I = U->op_begin(),
531 E = U->op_end(); I != E;++I)
532 incorporateValue(*I);
535 void incorporateMDNode(const MDNode *V) {
537 // Already visited?
538 if (!VisitedConstants.insert(V).second)
539 return;
541 // Look in operands for types.
542 for (unsigned i = 0, e = V->getNumOperands(); i != e; ++i)
543 if (Value *Op = V->getOperand(i))
544 incorporateValue(Op);
547 } // end anonymous namespace
549 void Module::findUsedStructTypes(std::vector<StructType*> &StructTypes) const {
550 TypeFinder(StructTypes).run(*this);