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/Method.h"
|
2001-09-10 07:58:01 +00:00
|
|
|
#include "llvm/GlobalVariable.h"
|
2001-06-30 04:35:40 +00:00
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/InstrTypes.h"
|
|
|
|
#include "llvm/ValueHolderImpl.h"
|
2001-09-07 16:47:42 +00:00
|
|
|
#include "llvm/Type.h"
|
2001-12-03 22:26:30 +00:00
|
|
|
#include "llvm/ConstantVals.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/STLExtras.h"
|
2001-10-13 06:58:40 +00:00
|
|
|
#include <map>
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
// Instantiate Templates - This ugliness is the price we have to pay
|
|
|
|
// for having a DefHolderImpl.h file seperate from DefHolder.h! :(
|
|
|
|
//
|
2001-09-10 07:58:01 +00:00
|
|
|
template class ValueHolder<GlobalVariable, Module, Module>;
|
2001-07-14 06:13:19 +00:00
|
|
|
template class ValueHolder<Method, 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>
|
|
|
|
//
|
2001-12-03 22:26:30 +00:00
|
|
|
struct GlobalValueRefMap : public map<GlobalValue*, ConstantPointerRef*>{
|
2001-10-13 06:58:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
Module::Module()
|
2001-09-07 16:47:42 +00:00
|
|
|
: Value(Type::VoidTy, Value::ModuleVal, ""), SymTabValue(this),
|
2001-10-13 06:58:40 +00:00
|
|
|
GlobalList(this, this), MethodList(this, this), GVRefMap(0) {
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Module::~Module() {
|
|
|
|
dropAllReferences();
|
2001-09-10 07:58:01 +00:00
|
|
|
GlobalList.delete_all();
|
|
|
|
GlobalList.setParent(0);
|
2001-06-06 20:29:01 +00:00
|
|
|
MethodList.delete_all();
|
|
|
|
MethodList.setParent(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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() {
|
2001-10-13 06:58:40 +00:00
|
|
|
for_each(MethodList.begin(), MethodList.end(),
|
|
|
|
std::mem_fun(&Method::dropAllReferences));
|
|
|
|
|
|
|
|
for_each(GlobalList.begin(), GlobalList.end(),
|
|
|
|
std::mem_fun(&GlobalVariable::dropAllReferences));
|
|
|
|
|
|
|
|
// 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) {
|
|
|
|
for (GlobalValueRefMap::iterator I = GVRefMap->begin(), E = GVRefMap->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
|
|
|
|
|
|
|
// reduceApply - Apply the specified function to all of the methods in this
|
|
|
|
// module. The result values are or'd together and the result is returned.
|
|
|
|
//
|
2001-09-10 07:58:01 +00:00
|
|
|
bool Module::reduceApply(bool (*Func)(GlobalVariable*)) {
|
|
|
|
return reduce_apply_bool(gbegin(), gend(), Func);
|
|
|
|
}
|
|
|
|
bool Module::reduceApply(bool (*Func)(const GlobalVariable*)) const {
|
|
|
|
return reduce_apply_bool(gbegin(), gend(), Func);
|
|
|
|
}
|
2001-06-30 04:35:40 +00:00
|
|
|
bool Module::reduceApply(bool (*Func)(Method*)) {
|
|
|
|
return reduce_apply_bool(begin(), end(), Func);
|
|
|
|
}
|
|
|
|
bool Module::reduceApply(bool (*Func)(const Method*)) const {
|
|
|
|
return reduce_apply_bool(begin(), end(), Func);
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
GlobalValueRefMap::iterator I = GVRefMap->find(V);
|
|
|
|
if (I != GVRefMap->end()) return I->second;
|
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
ConstantPointerRef *Ref = new ConstantPointerRef(V);
|
2001-10-13 06:58:40 +00:00
|
|
|
GVRefMap->insert(make_pair(V, Ref));
|
|
|
|
|
|
|
|
return Ref;
|
|
|
|
}
|
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
void Module::mutateConstantPointerRef(GlobalValue *OldGV, GlobalValue *NewGV) {
|
2001-10-13 06:58:40 +00:00
|
|
|
GlobalValueRefMap::iterator I = GVRefMap->find(OldGV);
|
|
|
|
assert(I != GVRefMap->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...
|
|
|
|
GVRefMap->erase(I);
|
|
|
|
|
|
|
|
// Insert the new entry...
|
|
|
|
GVRefMap->insert(make_pair(NewGV, Ref));
|
|
|
|
}
|