2003-10-13 05:32:08 +02:00
|
|
|
//===-- Module.cpp - Implement the Module class ---------------------------===//
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
// This file implements the Module class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2001-06-30 06:35:40 +02:00
|
|
|
#include "llvm/InstrTypes.h"
|
2002-04-28 21:55:58 +02:00
|
|
|
#include "llvm/Constants.h"
|
2002-03-29 04:44:18 +01:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2010-01-27 21:34:15 +01:00
|
|
|
#include "llvm/GVMaterializer.h"
|
2009-07-01 18:58:40 +02:00
|
|
|
#include "llvm/LLVMContext.h"
|
2010-06-16 02:53:55 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2006-05-18 04:10:31 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/Support/LeakDetector.h"
|
2002-06-25 18:13:24 +02:00
|
|
|
#include "SymbolTableListTraitsImpl.h"
|
2007-01-06 08:24:44 +01:00
|
|
|
#include "llvm/TypeSymbolTable.h"
|
2002-06-25 18:13:24 +02:00
|
|
|
#include <algorithm>
|
2003-08-31 02:19:28 +02:00
|
|
|
#include <cstdarg>
|
2006-05-18 04:10:31 +02:00
|
|
|
#include <cstdlib>
|
2003-11-21 21:23:48 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-04-21 20:27:56 +02:00
|
|
|
// Methods to implement the globals and functions lists.
|
2003-12-31 09:43:01 +01:00
|
|
|
//
|
|
|
|
|
2005-01-30 01:09:23 +01:00
|
|
|
GlobalVariable *ilist_traits<GlobalVariable>::createSentinel() {
|
2009-11-06 05:27:31 +01:00
|
|
|
GlobalVariable *Ret = new GlobalVariable(Type::getInt32Ty(getGlobalContext()),
|
2009-07-08 21:03:57 +02:00
|
|
|
false, GlobalValue::ExternalLinkage);
|
2002-09-08 20:59:35 +02:00
|
|
|
// This should not be garbage monitored.
|
|
|
|
LeakDetector::removeGarbageObject(Ret);
|
|
|
|
return Ret;
|
2002-06-25 18:13:24 +02:00
|
|
|
}
|
2007-04-25 16:27:10 +02:00
|
|
|
GlobalAlias *ilist_traits<GlobalAlias>::createSentinel() {
|
2009-08-13 23:58:54 +02:00
|
|
|
GlobalAlias *Ret = new GlobalAlias(Type::getInt32Ty(getGlobalContext()),
|
2008-01-29 13:09:55 +01:00
|
|
|
GlobalValue::ExternalLinkage);
|
2007-04-25 16:27:10 +02:00
|
|
|
// This should not be garbage monitored.
|
|
|
|
LeakDetector::removeGarbageObject(Ret);
|
|
|
|
return Ret;
|
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
|
|
|
|
// Explicit instantiations of SymbolTableListTraits since some of the methods
|
2006-01-24 05:13:11 +01:00
|
|
|
// are not in the public header file.
|
2009-12-19 01:55:12 +01:00
|
|
|
template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
|
|
|
|
template class llvm::SymbolTableListTraits<Function, Module>;
|
|
|
|
template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Primitive Module methods.
|
|
|
|
//
|
2001-10-13 08:58:40 +02:00
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
Module::Module(StringRef MID, LLVMContext& C)
|
2010-08-04 03:39:08 +02:00
|
|
|
: Context(C), Materializer(NULL), ModuleID(MID) {
|
2007-02-05 21:47:22 +01:00
|
|
|
ValSymTab = new ValueSymbolTable();
|
2007-01-06 08:24:44 +01:00
|
|
|
TypeSymTab = new TypeSymbolTable();
|
2010-07-22 01:38:33 +02:00
|
|
|
NamedMDSymTab = new StringMap<NamedMDNode *>();
|
2010-09-08 20:03:32 +02:00
|
|
|
Context.addModule(this);
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Module::~Module() {
|
2010-09-08 20:03:32 +02:00
|
|
|
Context.removeModule(this);
|
2001-06-06 22:29:01 +02:00
|
|
|
dropAllReferences();
|
2002-06-25 18:13:24 +02:00
|
|
|
GlobalList.clear();
|
|
|
|
FunctionList.clear();
|
2007-04-25 16:27:10 +02:00
|
|
|
AliasList.clear();
|
2004-07-25 20:08:57 +02:00
|
|
|
LibraryList.clear();
|
2009-07-29 19:16:17 +02:00
|
|
|
NamedMDList.clear();
|
2007-01-06 08:24:44 +01:00
|
|
|
delete ValSymTab;
|
|
|
|
delete TypeSymTab;
|
2010-07-22 01:38:33 +02:00
|
|
|
delete static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab);
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
|
|
|
|
2006-05-18 04:10:31 +02:00
|
|
|
/// Target endian information...
|
|
|
|
Module::Endianness Module::getEndianness() const {
|
2010-01-11 19:03:24 +01:00
|
|
|
StringRef temp = DataLayout;
|
2006-05-18 07:46:08 +02:00
|
|
|
Module::Endianness ret = AnyEndianness;
|
2006-05-18 04:10:31 +02:00
|
|
|
|
2006-05-18 07:46:08 +02:00
|
|
|
while (!temp.empty()) {
|
2010-01-11 19:03:24 +01:00
|
|
|
StringRef token = DataLayout;
|
2010-03-23 22:48:41 +01:00
|
|
|
tie(token, temp) = getToken(temp, "-");
|
2006-05-18 04:10:31 +02:00
|
|
|
|
|
|
|
if (token[0] == 'e') {
|
2006-05-18 07:46:08 +02:00
|
|
|
ret = LittleEndian;
|
2006-05-18 04:10:31 +02:00
|
|
|
} else if (token[0] == 'E') {
|
2006-05-18 07:46:08 +02:00
|
|
|
ret = BigEndian;
|
2006-05-18 04:10:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-18 07:46:08 +02:00
|
|
|
return ret;
|
2006-05-18 04:10:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Target Pointer Size information...
|
|
|
|
Module::PointerSize Module::getPointerSize() const {
|
2010-01-11 19:03:24 +01:00
|
|
|
StringRef temp = DataLayout;
|
2006-05-18 07:46:08 +02:00
|
|
|
Module::PointerSize ret = AnyPointerSize;
|
2006-05-18 04:10:31 +02:00
|
|
|
|
2006-05-18 07:46:08 +02:00
|
|
|
while (!temp.empty()) {
|
2010-01-11 19:03:24 +01:00
|
|
|
StringRef token, signalToken;
|
|
|
|
tie(token, temp) = getToken(temp, "-");
|
|
|
|
tie(signalToken, token) = getToken(token, ":");
|
2006-05-18 04:10:31 +02:00
|
|
|
|
2010-01-11 19:03:24 +01:00
|
|
|
if (signalToken[0] == 'p') {
|
|
|
|
int size = 0;
|
|
|
|
getToken(token, ":").first.getAsInteger(10, size);
|
2006-05-18 04:10:31 +02:00
|
|
|
if (size == 32)
|
2006-05-18 07:46:08 +02:00
|
|
|
ret = Pointer32;
|
2006-05-18 04:10:31 +02:00
|
|
|
else if (size == 64)
|
2006-05-18 07:46:08 +02:00
|
|
|
ret = Pointer64;
|
2006-05-18 04:10:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-18 07:46:08 +02:00
|
|
|
return ret;
|
2006-05-18 04:10:31 +02:00
|
|
|
}
|
|
|
|
|
2009-03-06 23:04:43 +01:00
|
|
|
/// getNamedValue - Return the first global value in the module with
|
|
|
|
/// the specified name, of arbitrary type. This method returns null
|
|
|
|
/// if a global with the specified name is not found.
|
2009-11-06 11:58:06 +01:00
|
|
|
GlobalValue *Module::getNamedValue(StringRef Name) const {
|
2009-03-06 23:04:43 +01:00
|
|
|
return cast_or_null<GlobalValue>(getValueSymbolTable().lookup(Name));
|
|
|
|
}
|
|
|
|
|
2009-12-29 10:01:33 +01:00
|
|
|
/// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
|
|
|
|
/// This ID is uniqued across modules in the current LLVMContext.
|
|
|
|
unsigned Module::getMDKindID(StringRef Name) const {
|
|
|
|
return Context.getMDKindID(Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getMDKindNames - Populate client supplied SmallVector with the name for
|
|
|
|
/// custom metadata IDs registered in this LLVMContext. ID #0 is not used,
|
|
|
|
/// so it is filled in as an empty string.
|
|
|
|
void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const {
|
|
|
|
return Context.getMDKindNames(Result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Methods for easy access to the functions in the module.
|
|
|
|
//
|
|
|
|
|
2007-02-05 21:47:22 +01:00
|
|
|
// getOrInsertFunction - Look up the specified function in the module symbol
|
|
|
|
// table. If it does not exist, add a prototype for the function and return
|
|
|
|
// it. This is nice because it allows most passes to get away with not handling
|
|
|
|
// the symbol table directly for this common task.
|
|
|
|
//
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertFunction(StringRef Name,
|
2009-01-04 23:54:40 +01:00
|
|
|
const FunctionType *Ty,
|
|
|
|
AttrListPtr AttributeList) {
|
2007-02-05 21:47:22 +01:00
|
|
|
// See if we have a definition for the specified function already.
|
2009-03-06 23:04:43 +01:00
|
|
|
GlobalValue *F = getNamedValue(Name);
|
2007-01-07 09:09:25 +01:00
|
|
|
if (F == 0) {
|
2007-02-05 21:47:22 +01:00
|
|
|
// Nope, add it
|
2008-04-06 22:25:17 +02:00
|
|
|
Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
|
2009-01-04 23:54:40 +01:00
|
|
|
if (!New->isIntrinsic()) // Intrinsics get attrs set on construction
|
|
|
|
New->setAttributes(AttributeList);
|
2002-03-29 04:44:18 +01:00
|
|
|
FunctionList.push_back(New);
|
2007-01-07 09:09:25 +01:00
|
|
|
return New; // Return the new prototype.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Okay, the function exists. Does it have externally visible linkage?
|
2009-01-15 21:18:42 +01:00
|
|
|
if (F->hasLocalLinkage()) {
|
2008-06-27 23:25:24 +02:00
|
|
|
// Clear the function's name.
|
|
|
|
F->setName("");
|
2007-01-07 09:09:25 +01:00
|
|
|
// Retry, now there won't be a conflict.
|
2008-06-27 23:25:24 +02:00
|
|
|
Constant *NewF = getOrInsertFunction(Name, Ty);
|
2009-07-25 08:02:13 +02:00
|
|
|
F->setName(Name);
|
2008-06-27 23:25:24 +02:00
|
|
|
return NewF;
|
2002-03-29 04:44:18 +01:00
|
|
|
}
|
2007-01-07 09:09:25 +01:00
|
|
|
|
|
|
|
// If the function exists but has the wrong type, return a bitcast to the
|
|
|
|
// right type.
|
2009-07-30 00:17:13 +02:00
|
|
|
if (F->getType() != PointerType::getUnqual(Ty))
|
|
|
|
return ConstantExpr::getBitCast(F, PointerType::getUnqual(Ty));
|
2007-01-07 09:09:25 +01:00
|
|
|
|
|
|
|
// Otherwise, we just found the existing function or a prototype.
|
|
|
|
return F;
|
2002-03-29 04:44:18 +01:00
|
|
|
}
|
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertTargetIntrinsic(StringRef Name,
|
2009-02-05 02:49:45 +01:00
|
|
|
const FunctionType *Ty,
|
|
|
|
AttrListPtr AttributeList) {
|
|
|
|
// See if we have a definition for the specified function already.
|
2009-03-06 23:04:43 +01:00
|
|
|
GlobalValue *F = getNamedValue(Name);
|
2009-02-05 02:49:45 +01:00
|
|
|
if (F == 0) {
|
|
|
|
// Nope, add it
|
|
|
|
Function *New = Function::Create(Ty, GlobalVariable::ExternalLinkage, Name);
|
|
|
|
New->setAttributes(AttributeList);
|
|
|
|
FunctionList.push_back(New);
|
|
|
|
return New; // Return the new prototype.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we just found the existing function or a prototype.
|
|
|
|
return F;
|
|
|
|
}
|
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertFunction(StringRef Name,
|
2009-01-04 23:54:40 +01:00
|
|
|
const FunctionType *Ty) {
|
|
|
|
AttrListPtr AttributeList = AttrListPtr::get((AttributeWithIndex *)0, 0);
|
|
|
|
return getOrInsertFunction(Name, Ty, AttributeList);
|
|
|
|
}
|
|
|
|
|
2003-08-31 02:19:28 +02:00
|
|
|
// getOrInsertFunction - Look up the specified function in the module symbol
|
|
|
|
// table. If it does not exist, add a prototype for the function and return it.
|
|
|
|
// This version of the method takes a null terminated list of function
|
|
|
|
// arguments, which makes it easier for clients to use.
|
|
|
|
//
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertFunction(StringRef Name,
|
2009-01-04 23:54:40 +01:00
|
|
|
AttrListPtr AttributeList,
|
2003-08-31 02:19:28 +02:00
|
|
|
const Type *RetTy, ...) {
|
|
|
|
va_list Args;
|
|
|
|
va_start(Args, RetTy);
|
|
|
|
|
|
|
|
// Build the list of argument types...
|
|
|
|
std::vector<const Type*> ArgTys;
|
|
|
|
while (const Type *ArgTy = va_arg(Args, const Type*))
|
|
|
|
ArgTys.push_back(ArgTy);
|
|
|
|
|
|
|
|
va_end(Args);
|
|
|
|
|
|
|
|
// Build the function type and chain to the other getOrInsertFunction...
|
2009-07-09 01:50:31 +02:00
|
|
|
return getOrInsertFunction(Name,
|
2009-07-30 00:17:13 +02:00
|
|
|
FunctionType::get(RetTy, ArgTys, false),
|
2009-01-04 23:54:40 +01:00
|
|
|
AttributeList);
|
2003-08-31 02:19:28 +02:00
|
|
|
}
|
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertFunction(StringRef Name,
|
2009-01-04 23:54:40 +01:00
|
|
|
const Type *RetTy, ...) {
|
|
|
|
va_list Args;
|
|
|
|
va_start(Args, RetTy);
|
|
|
|
|
|
|
|
// Build the list of argument types...
|
|
|
|
std::vector<const Type*> ArgTys;
|
|
|
|
while (const Type *ArgTy = va_arg(Args, const Type*))
|
|
|
|
ArgTys.push_back(ArgTy);
|
|
|
|
|
|
|
|
va_end(Args);
|
|
|
|
|
|
|
|
// Build the function type and chain to the other getOrInsertFunction...
|
2009-07-09 01:50:31 +02:00
|
|
|
return getOrInsertFunction(Name,
|
2009-07-30 00:17:13 +02:00
|
|
|
FunctionType::get(RetTy, ArgTys, false),
|
2009-01-04 23:54:40 +01:00
|
|
|
AttrListPtr::get((AttributeWithIndex *)0, 0));
|
|
|
|
}
|
2003-08-31 02:19:28 +02:00
|
|
|
|
2002-03-29 04:44:18 +01:00
|
|
|
// getFunction - Look up the specified function in the module symbol table.
|
|
|
|
// If it does not exist, return null.
|
|
|
|
//
|
2009-11-06 11:58:06 +01:00
|
|
|
Function *Module::getFunction(StringRef Name) const {
|
2009-03-06 23:04:43 +01:00
|
|
|
return dyn_cast_or_null<Function>(getNamedValue(Name));
|
2008-06-27 23:09:10 +02:00
|
|
|
}
|
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Methods for easy access to the global variables in the module.
|
|
|
|
//
|
|
|
|
|
|
|
|
/// getGlobalVariable - Look up the specified global variable in the module
|
2005-12-05 06:30:21 +01:00
|
|
|
/// symbol table. If it does not exist, return null. The type argument
|
|
|
|
/// should be the underlying type of the global, i.e., it should not have
|
|
|
|
/// the top-level PointerType, which represents the address of the global.
|
2009-01-15 21:18:42 +01:00
|
|
|
/// If AllowLocal is set to true, this function will return types that
|
|
|
|
/// have an local. By default, these types are not returned.
|
2003-12-31 09:43:01 +01:00
|
|
|
///
|
2009-11-06 11:58:06 +01:00
|
|
|
GlobalVariable *Module::getGlobalVariable(StringRef Name,
|
2009-01-15 21:18:42 +01:00
|
|
|
bool AllowLocal) const {
|
2009-03-06 23:04:43 +01:00
|
|
|
if (GlobalVariable *Result =
|
|
|
|
dyn_cast_or_null<GlobalVariable>(getNamedValue(Name)))
|
|
|
|
if (AllowLocal || !Result->hasLocalLinkage())
|
2003-12-31 09:43:01 +01:00
|
|
|
return Result;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-06 00:42:27 +01:00
|
|
|
/// getOrInsertGlobal - Look up the specified global in the module symbol table.
|
|
|
|
/// 1. If it does not exist, add a declaration of the global and return it.
|
|
|
|
/// 2. Else, the global exists but has the wrong type: return the function
|
|
|
|
/// with a constantexpr cast to the right type.
|
|
|
|
/// 3. Finally, if the existing global is the correct delclaration, return the
|
|
|
|
/// existing global.
|
2009-11-06 11:58:06 +01:00
|
|
|
Constant *Module::getOrInsertGlobal(StringRef Name, const Type *Ty) {
|
2008-11-04 23:51:24 +01:00
|
|
|
// See if we have a definition for the specified global already.
|
2009-03-06 23:04:43 +01:00
|
|
|
GlobalVariable *GV = dyn_cast_or_null<GlobalVariable>(getNamedValue(Name));
|
2008-11-04 23:51:24 +01:00
|
|
|
if (GV == 0) {
|
|
|
|
// Nope, add it
|
|
|
|
GlobalVariable *New =
|
2009-07-08 21:03:57 +02:00
|
|
|
new GlobalVariable(*this, Ty, false, GlobalVariable::ExternalLinkage,
|
|
|
|
0, Name);
|
|
|
|
return New; // Return the new declaration.
|
2008-11-04 23:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the variable exists but has the wrong type, return a bitcast to the
|
|
|
|
// right type.
|
2009-07-30 00:17:13 +02:00
|
|
|
if (GV->getType() != PointerType::getUnqual(Ty))
|
|
|
|
return ConstantExpr::getBitCast(GV, PointerType::getUnqual(Ty));
|
2008-11-04 23:51:24 +01:00
|
|
|
|
|
|
|
// Otherwise, we just found the existing function or a prototype.
|
|
|
|
return GV;
|
|
|
|
}
|
|
|
|
|
2007-04-25 16:27:10 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Methods for easy access to the global variables in the module.
|
|
|
|
//
|
|
|
|
|
|
|
|
// getNamedAlias - Look up the specified global in the module symbol table.
|
|
|
|
// If it does not exist, return null.
|
|
|
|
//
|
2009-11-06 11:58:06 +01:00
|
|
|
GlobalAlias *Module::getNamedAlias(StringRef Name) const {
|
2009-03-06 23:04:43 +01:00
|
|
|
return dyn_cast_or_null<GlobalAlias>(getNamedValue(Name));
|
2007-04-25 16:27:10 +02:00
|
|
|
}
|
|
|
|
|
2009-07-31 01:59:04 +02:00
|
|
|
/// getNamedMetadata - Return the first NamedMDNode in the module with the
|
|
|
|
/// specified name. This method returns null if a NamedMDNode with the
|
2010-06-19 07:33:57 +02:00
|
|
|
/// specified name is not found.
|
2010-06-22 03:19:38 +02:00
|
|
|
NamedMDNode *Module::getNamedMetadata(const Twine &Name) const {
|
2010-06-16 02:53:55 +02:00
|
|
|
SmallString<256> NameData;
|
|
|
|
StringRef NameRef = Name.toStringRef(NameData);
|
2010-07-22 01:38:33 +02:00
|
|
|
return static_cast<StringMap<NamedMDNode*> *>(NamedMDSymTab)->lookup(NameRef);
|
2010-06-16 02:53:55 +02:00
|
|
|
}
|
|
|
|
|
2009-07-31 01:59:04 +02:00
|
|
|
/// getOrInsertNamedMetadata - Return the first named MDNode in the module
|
|
|
|
/// with the specified name. This method returns a new NamedMDNode if a
|
|
|
|
/// NamedMDNode with the specified name is not found.
|
2009-11-06 11:58:06 +01:00
|
|
|
NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) {
|
2010-07-22 01:38:33 +02:00
|
|
|
NamedMDNode *&NMD =
|
|
|
|
(*static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab))[Name];
|
|
|
|
if (!NMD) {
|
|
|
|
NMD = new NamedMDNode(Name);
|
|
|
|
NMD->setParent(this);
|
|
|
|
NamedMDList.push_back(NMD);
|
|
|
|
}
|
2009-07-31 01:59:04 +02:00
|
|
|
return NMD;
|
|
|
|
}
|
|
|
|
|
2010-07-22 01:38:33 +02:00
|
|
|
void Module::eraseNamedMetadata(NamedMDNode *NMD) {
|
|
|
|
static_cast<StringMap<NamedMDNode *> *>(NamedMDSymTab)->erase(NMD->getName());
|
|
|
|
NamedMDList.erase(NMD);
|
|
|
|
}
|
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Methods for easy access to the types in the module.
|
|
|
|
//
|
|
|
|
|
2002-11-08 21:34:02 +01:00
|
|
|
|
2003-12-31 08:09:33 +01:00
|
|
|
// addTypeName - Insert an entry in the symbol table mapping Str to Type. If
|
|
|
|
// there is already an entry for this name, true is returned and the symbol
|
|
|
|
// table is not modified.
|
|
|
|
//
|
2009-11-06 11:58:06 +01:00
|
|
|
bool Module::addTypeName(StringRef Name, const Type *Ty) {
|
2007-01-06 08:24:44 +01:00
|
|
|
TypeSymbolTable &ST = getTypeSymbolTable();
|
2003-12-31 08:09:33 +01:00
|
|
|
|
2007-01-06 08:24:44 +01:00
|
|
|
if (ST.lookup(Name)) return true; // Already in symtab...
|
2005-04-22 01:48:37 +02:00
|
|
|
|
2003-12-31 08:09:33 +01:00
|
|
|
// Not in symbol table? Set the name with the Symtab as an argument so the
|
|
|
|
// type knows what to update...
|
2004-07-10 18:37:42 +02:00
|
|
|
ST.insert(Name, Ty);
|
2003-12-31 08:09:33 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getTypeByName - Return the type with the specified name in this module, or
|
|
|
|
/// null if there is none by that name.
|
2009-11-06 11:58:06 +01:00
|
|
|
const Type *Module::getTypeByName(StringRef Name) const {
|
2007-01-06 08:24:44 +01:00
|
|
|
const TypeSymbolTable &ST = getTypeSymbolTable();
|
|
|
|
return cast_or_null<Type>(ST.lookup(Name));
|
2003-12-31 08:09:33 +01:00
|
|
|
}
|
2002-11-08 21:34:02 +01:00
|
|
|
|
2002-04-13 20:58:33 +02:00
|
|
|
// getTypeName - If there is at least one entry in the symbol table for the
|
|
|
|
// specified type, return it.
|
|
|
|
//
|
2003-12-31 08:09:33 +01:00
|
|
|
std::string Module::getTypeName(const Type *Ty) const {
|
2007-01-06 08:24:44 +01:00
|
|
|
const TypeSymbolTable &ST = getTypeSymbolTable();
|
2002-04-13 20:58:33 +02:00
|
|
|
|
2007-01-06 08:24:44 +01:00
|
|
|
TypeSymbolTable::const_iterator TI = ST.begin();
|
|
|
|
TypeSymbolTable::const_iterator TE = ST.end();
|
2004-05-25 10:52:20 +02:00
|
|
|
if ( TI == TE ) return ""; // No names for types
|
2002-04-13 20:58:33 +02:00
|
|
|
|
2004-05-25 10:52:20 +02:00
|
|
|
while (TI != TE && TI->second != Ty)
|
2002-04-13 20:58:33 +02:00
|
|
|
++TI;
|
|
|
|
|
|
|
|
if (TI != TE) // Must have found an entry!
|
|
|
|
return TI->first;
|
|
|
|
return ""; // Must not have found anything...
|
|
|
|
}
|
|
|
|
|
2010-01-27 21:34:15 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Methods to control the materialization of GlobalValues in the Module.
|
|
|
|
//
|
|
|
|
void Module::setMaterializer(GVMaterializer *GVM) {
|
|
|
|
assert(!Materializer &&
|
|
|
|
"Module already has a GVMaterializer. Call MaterializeAllPermanently"
|
|
|
|
" to clear it out before setting another one.");
|
|
|
|
Materializer.reset(GVM);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Module::isMaterializable(const GlobalValue *GV) const {
|
|
|
|
if (Materializer)
|
|
|
|
return Materializer->isMaterializable(GV);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Module::isDematerializable(const GlobalValue *GV) const {
|
|
|
|
if (Materializer)
|
|
|
|
return Materializer->isDematerializable(GV);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) {
|
|
|
|
if (Materializer)
|
|
|
|
return Materializer->Materialize(GV, ErrInfo);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Module::Dematerialize(GlobalValue *GV) {
|
|
|
|
if (Materializer)
|
|
|
|
return Materializer->Dematerialize(GV);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Module::MaterializeAll(std::string *ErrInfo) {
|
|
|
|
if (!Materializer)
|
|
|
|
return false;
|
|
|
|
return Materializer->MaterializeModule(this, ErrInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Module::MaterializeAllPermanently(std::string *ErrInfo) {
|
|
|
|
if (MaterializeAll(ErrInfo))
|
|
|
|
return true;
|
|
|
|
Materializer.reset();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-12-31 09:43:01 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Other module related stuff.
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2002-08-18 01:32:47 +02:00
|
|
|
// dropAllReferences() - This function causes all the subelementss to "let go"
|
|
|
|
// of all references that they are maintaining. This allows one to 'delete' a
|
|
|
|
// whole module at a time, even though there may be circular references... first
|
|
|
|
// all references are dropped, and all use counts go to zero. Then everything
|
2003-10-10 19:54:14 +02:00
|
|
|
// is deleted for real. Note that no operations are valid on an object that
|
2002-08-18 01:32:47 +02:00
|
|
|
// has "dropped all references", except operator delete.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
void Module::dropAllReferences() {
|
2002-06-25 18:13:24 +02:00
|
|
|
for(Module::iterator I = begin(), E = end(); I != E; ++I)
|
|
|
|
I->dropAllReferences();
|
2001-10-13 08:58:40 +02:00
|
|
|
|
2005-03-15 05:54:21 +01:00
|
|
|
for(Module::global_iterator I = global_begin(), E = global_end(); I != E; ++I)
|
2002-06-25 18:13:24 +02:00
|
|
|
I->dropAllReferences();
|
2007-04-28 15:45:00 +02:00
|
|
|
|
|
|
|
for(Module::alias_iterator I = alias_begin(), E = alias_end(); I != E; ++I)
|
|
|
|
I->dropAllReferences();
|
2001-06-06 22:29:01 +02:00
|
|
|
}
|
2001-06-30 06:35:40 +02:00
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
void Module::addLibrary(StringRef Lib) {
|
2007-02-04 01:40:42 +01:00
|
|
|
for (Module::lib_iterator I = lib_begin(), E = lib_end(); I != E; ++I)
|
|
|
|
if (*I == Lib)
|
|
|
|
return;
|
|
|
|
LibraryList.push_back(Lib);
|
|
|
|
}
|
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
void Module::removeLibrary(StringRef Lib) {
|
2007-02-04 01:40:42 +01:00
|
|
|
LibraryListType::iterator I = LibraryList.begin();
|
|
|
|
LibraryListType::iterator E = LibraryList.end();
|
|
|
|
for (;I != E; ++I)
|
|
|
|
if (*I == Lib) {
|
|
|
|
LibraryList.erase(I);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|