2001-06-06 20:29:01 +00:00
|
|
|
//===-- Module.cpp - Implement the Module class ------------------*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file implements the Module class for the VMCore library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2001-06-30 04:35:40 +00:00
|
|
|
#include "llvm/InstrTypes.h"
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2002-03-29 03:44:18 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/STLExtras.h"
|
2002-06-25 16:13:24 +00:00
|
|
|
#include "SymbolTableListTraitsImpl.h"
|
|
|
|
#include <algorithm>
|
2001-10-13 06:58:40 +00:00
|
|
|
#include <map>
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Function *ilist_traits<Function>::createNode() {
|
|
|
|
return new Function(FunctionType::get(Type::VoidTy,std::vector<const Type*>(),
|
|
|
|
false), false);
|
|
|
|
}
|
|
|
|
GlobalVariable *ilist_traits<GlobalVariable>::createNode() {
|
|
|
|
return new GlobalVariable(Type::IntTy, false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
iplist<Function> &ilist_traits<Function>::getList(Module *M) {
|
|
|
|
return M->getFunctionList();
|
|
|
|
}
|
|
|
|
iplist<GlobalVariable> &ilist_traits<GlobalVariable>::getList(Module *M) {
|
|
|
|
return M->getGlobalList();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicit instantiations of SymbolTableListTraits since some of the methods
|
|
|
|
// are not in the public header file...
|
|
|
|
template SymbolTableListTraits<GlobalVariable, Module, Module>;
|
|
|
|
template SymbolTableListTraits<Function, Module, Module>;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2001-10-13 06:58:40 +00:00
|
|
|
// Define the GlobalValueRefMap as a struct that wraps a map so that we don't
|
|
|
|
// have Module.h depend on <map>
|
|
|
|
//
|
2002-08-12 20:23:29 +00:00
|
|
|
struct GlobalValueRefMap {
|
|
|
|
typedef std::map<GlobalValue*, ConstantPointerRef*> MapTy;
|
|
|
|
typedef MapTy::iterator iterator;
|
|
|
|
std::map<GlobalValue*, ConstantPointerRef*> Map;
|
2001-10-13 06:58:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
Module::Module() {
|
|
|
|
FunctionList.setItemParent(this);
|
|
|
|
FunctionList.setParent(this);
|
|
|
|
GlobalList.setItemParent(this);
|
|
|
|
GlobalList.setParent(this);
|
2002-04-28 04:51:51 +00:00
|
|
|
GVRefMap = 0;
|
|
|
|
SymTab = 0;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Module::~Module() {
|
|
|
|
dropAllReferences();
|
2002-06-25 16:13:24 +00:00
|
|
|
GlobalList.clear();
|
2001-09-10 07:58:01 +00:00
|
|
|
GlobalList.setParent(0);
|
2002-06-25 16:13:24 +00:00
|
|
|
FunctionList.clear();
|
2002-03-26 18:01:55 +00:00
|
|
|
FunctionList.setParent(0);
|
2002-04-28 04:51:51 +00:00
|
|
|
delete SymTab;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-04-28 04:51:51 +00:00
|
|
|
SymbolTable *Module::getSymbolTableSure() {
|
|
|
|
if (!SymTab) SymTab = new SymbolTable(0);
|
|
|
|
return SymTab;
|
|
|
|
}
|
|
|
|
|
|
|
|
// hasSymbolTable() - Returns true if there is a symbol table allocated to
|
|
|
|
// this object AND if there is at least one name in it!
|
|
|
|
//
|
|
|
|
bool Module::hasSymbolTable() const {
|
|
|
|
if (!SymTab) return false;
|
|
|
|
|
|
|
|
for (SymbolTable::const_iterator I = SymTab->begin(), E = SymTab->end();
|
|
|
|
I != E; ++I)
|
|
|
|
if (I->second.begin() != I->second.end())
|
|
|
|
return true; // Found nonempty type plane!
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-29 03:44:18 +00: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.
|
|
|
|
//
|
|
|
|
Function *Module::getOrInsertFunction(const std::string &Name,
|
|
|
|
const FunctionType *Ty) {
|
|
|
|
SymbolTable *SymTab = getSymbolTableSure();
|
|
|
|
|
|
|
|
// See if we have a definitions for the specified function already...
|
|
|
|
if (Value *V = SymTab->lookup(PointerType::get(Ty), Name)) {
|
|
|
|
return cast<Function>(V); // Yup, got it
|
|
|
|
} else { // Nope, add one
|
|
|
|
Function *New = new Function(Ty, false, Name);
|
|
|
|
FunctionList.push_back(New);
|
|
|
|
return New; // Return the new prototype...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// getFunction - Look up the specified function in the module symbol table.
|
|
|
|
// If it does not exist, return null.
|
|
|
|
//
|
|
|
|
Function *Module::getFunction(const std::string &Name, const FunctionType *Ty) {
|
|
|
|
SymbolTable *SymTab = getSymbolTable();
|
|
|
|
if (SymTab == 0) return 0; // No symtab, no symbols...
|
|
|
|
|
|
|
|
return cast_or_null<Function>(SymTab->lookup(PointerType::get(Ty), Name));
|
|
|
|
}
|
|
|
|
|
2002-03-29 04:48:40 +00: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.
|
|
|
|
//
|
|
|
|
bool Module::addTypeName(const std::string &Name, const Type *Ty) {
|
|
|
|
SymbolTable *ST = getSymbolTableSure();
|
|
|
|
|
|
|
|
if (ST->lookup(Type::TypeTy, Name)) return true; // Already in symtab...
|
|
|
|
|
|
|
|
// Not in symbol table? Set the name with the Symtab as an argument so the
|
|
|
|
// type knows what to update...
|
|
|
|
((Value*)Ty)->setName(Name, ST);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-29 03:44:18 +00:00
|
|
|
|
2002-04-13 18:58:33 +00:00
|
|
|
// getTypeName - If there is at least one entry in the symbol table for the
|
|
|
|
// specified type, return it.
|
|
|
|
//
|
|
|
|
std::string Module::getTypeName(const Type *Ty) {
|
|
|
|
const SymbolTable *ST = getSymbolTable();
|
|
|
|
if (ST == 0) return ""; // No symbol table, must not have an entry...
|
|
|
|
if (ST->find(Type::TypeTy) == ST->end())
|
|
|
|
return ""; // No names for types...
|
|
|
|
|
|
|
|
SymbolTable::type_const_iterator TI = ST->type_begin(Type::TypeTy);
|
|
|
|
SymbolTable::type_const_iterator TE = ST->type_end(Type::TypeTy);
|
|
|
|
|
|
|
|
while (TI != TE && TI->second != (const Value*)Ty)
|
|
|
|
++TI;
|
|
|
|
|
|
|
|
if (TI != TE) // Must have found an entry!
|
|
|
|
return TI->first;
|
|
|
|
return ""; // Must not have found anything...
|
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// dropAllReferences() - This function causes all the subinstructions to "let
|
|
|
|
// go" of all references that they are maintaining. This allows one to
|
|
|
|
// 'delete' a whole class at a time, even though there may be circular
|
|
|
|
// references... first all references are dropped, and all use counts go to
|
|
|
|
// zero. Then everything is delete'd for real. Note that no operations are
|
|
|
|
// valid on an object that has "dropped all references", except operator
|
|
|
|
// delete.
|
|
|
|
//
|
|
|
|
void Module::dropAllReferences() {
|
2002-06-25 16:13:24 +00:00
|
|
|
for(Module::iterator I = begin(), E = end(); I != E; ++I)
|
|
|
|
I->dropAllReferences();
|
2001-10-13 06:58:40 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for(Module::giterator I = gbegin(), E = gend(); I != E; ++I)
|
|
|
|
I->dropAllReferences();
|
2001-10-13 06:58:40 +00:00
|
|
|
|
|
|
|
// If there are any GlobalVariable references still out there, nuke them now.
|
|
|
|
// Since all references are hereby dropped, nothing could possibly reference
|
|
|
|
// them still.
|
|
|
|
if (GVRefMap) {
|
2002-08-12 20:23:29 +00:00
|
|
|
for (GlobalValueRefMap::iterator I = GVRefMap->Map.begin(),
|
|
|
|
E = GVRefMap->Map.end(); I != E; ++I) {
|
2001-12-03 22:26:30 +00:00
|
|
|
// Delete the ConstantPointerRef node...
|
2001-10-13 06:58:40 +00:00
|
|
|
I->second->destroyConstant();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Since the table is empty, we can now delete it...
|
|
|
|
delete GVRefMap;
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2001-06-30 04:35:40 +00:00
|
|
|
|
2001-10-13 06:58:40 +00:00
|
|
|
// Accessor for the underlying GlobalValRefMap...
|
2001-12-03 22:26:30 +00:00
|
|
|
ConstantPointerRef *Module::getConstantPointerRef(GlobalValue *V){
|
2001-10-13 06:58:40 +00:00
|
|
|
// Create ref map lazily on demand...
|
|
|
|
if (GVRefMap == 0) GVRefMap = new GlobalValueRefMap();
|
|
|
|
|
2002-08-12 20:23:29 +00:00
|
|
|
GlobalValueRefMap::iterator I = GVRefMap->Map.find(V);
|
|
|
|
if (I != GVRefMap->Map.end()) return I->second;
|
2001-10-13 06:58:40 +00:00
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
ConstantPointerRef *Ref = new ConstantPointerRef(V);
|
2002-08-12 20:23:29 +00:00
|
|
|
GVRefMap->Map.insert(std::make_pair(V, Ref));
|
2001-10-13 06:58:40 +00:00
|
|
|
|
|
|
|
return Ref;
|
|
|
|
}
|
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
void Module::mutateConstantPointerRef(GlobalValue *OldGV, GlobalValue *NewGV) {
|
2002-08-12 20:23:29 +00:00
|
|
|
GlobalValueRefMap::iterator I = GVRefMap->Map.find(OldGV);
|
|
|
|
assert(I != GVRefMap->Map.end() &&
|
2001-12-03 22:26:30 +00:00
|
|
|
"mutateConstantPointerRef; OldGV not in table!");
|
|
|
|
ConstantPointerRef *Ref = I->second;
|
2001-10-13 06:58:40 +00:00
|
|
|
|
|
|
|
// Remove the old entry...
|
2002-08-12 20:23:29 +00:00
|
|
|
GVRefMap->Map.erase(I);
|
2001-10-13 06:58:40 +00:00
|
|
|
|
|
|
|
// Insert the new entry...
|
2002-08-12 20:23:29 +00:00
|
|
|
GVRefMap->Map.insert(std::make_pair(NewGV, Ref));
|
2001-10-13 06:58:40 +00:00
|
|
|
}
|