blob: c0767cd7d194353b57b74c4e5efbc097cf6e5a82 [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Module.cpp - Implement the Module class ------------------*- C++ -*--=//
2//
3// This file implements the Module class for the VMCore library.
4//
5//===----------------------------------------------------------------------===//
6
Chris Lattner2f7c9632001-06-06 20:29:01 +00007#include "llvm/Module.h"
Chris Lattner57698e22002-03-26 18:01:55 +00008#include "llvm/Function.h"
Chris Lattnerda975502001-09-10 07:58:01 +00009#include "llvm/GlobalVariable.h"
Chris Lattner31cf9842001-06-30 04:35:40 +000010#include "llvm/InstrTypes.h"
11#include "llvm/ValueHolderImpl.h"
Chris Lattnerf50b7232001-09-07 16:47:42 +000012#include "llvm/Type.h"
Chris Lattner3462ae32001-12-03 22:26:30 +000013#include "llvm/ConstantVals.h"
Chris Lattnera483b062002-03-29 03:44:18 +000014#include "llvm/DerivedTypes.h"
Chris Lattner5de22042001-11-27 00:03:19 +000015#include "Support/STLExtras.h"
Chris Lattner446ad502001-10-13 06:58:40 +000016#include <map>
Chris Lattner2f7c9632001-06-06 20:29:01 +000017
18// Instantiate Templates - This ugliness is the price we have to pay
19// for having a DefHolderImpl.h file seperate from DefHolder.h! :(
20//
Chris Lattnerda975502001-09-10 07:58:01 +000021template class ValueHolder<GlobalVariable, Module, Module>;
Chris Lattner57698e22002-03-26 18:01:55 +000022template class ValueHolder<Function, Module, Module>;
Chris Lattner2f7c9632001-06-06 20:29:01 +000023
Chris Lattner446ad502001-10-13 06:58:40 +000024// Define the GlobalValueRefMap as a struct that wraps a map so that we don't
25// have Module.h depend on <map>
26//
Chris Lattner7f74a562002-01-20 22:54:45 +000027struct GlobalValueRefMap : public std::map<GlobalValue*, ConstantPointerRef*>{
Chris Lattner446ad502001-10-13 06:58:40 +000028};
29
30
Chris Lattner2f7c9632001-06-06 20:29:01 +000031Module::Module()
Chris Lattnerf50b7232001-09-07 16:47:42 +000032 : Value(Type::VoidTy, Value::ModuleVal, ""), SymTabValue(this),
Chris Lattner57698e22002-03-26 18:01:55 +000033 GlobalList(this, this), FunctionList(this, this), GVRefMap(0) {
Chris Lattner2f7c9632001-06-06 20:29:01 +000034}
35
36Module::~Module() {
37 dropAllReferences();
Chris Lattnerda975502001-09-10 07:58:01 +000038 GlobalList.delete_all();
39 GlobalList.setParent(0);
Chris Lattner57698e22002-03-26 18:01:55 +000040 FunctionList.delete_all();
41 FunctionList.setParent(0);
Chris Lattner2f7c9632001-06-06 20:29:01 +000042}
43
Chris Lattnera483b062002-03-29 03:44:18 +000044// getOrInsertFunction - Look up the specified function in the module symbol
45// table. If it does not exist, add a prototype for the function and return
46// it. This is nice because it allows most passes to get away with not handling
47// the symbol table directly for this common task.
48//
49Function *Module::getOrInsertFunction(const std::string &Name,
50 const FunctionType *Ty) {
51 SymbolTable *SymTab = getSymbolTableSure();
52
53 // See if we have a definitions for the specified function already...
54 if (Value *V = SymTab->lookup(PointerType::get(Ty), Name)) {
55 return cast<Function>(V); // Yup, got it
56 } else { // Nope, add one
57 Function *New = new Function(Ty, false, Name);
58 FunctionList.push_back(New);
59 return New; // Return the new prototype...
60 }
61}
62
63// getFunction - Look up the specified function in the module symbol table.
64// If it does not exist, return null.
65//
66Function *Module::getFunction(const std::string &Name, const FunctionType *Ty) {
67 SymbolTable *SymTab = getSymbolTable();
68 if (SymTab == 0) return 0; // No symtab, no symbols...
69
70 return cast_or_null<Function>(SymTab->lookup(PointerType::get(Ty), Name));
71}
72
73
Chris Lattner2f7c9632001-06-06 20:29:01 +000074
75// dropAllReferences() - This function causes all the subinstructions to "let
76// go" of all references that they are maintaining. This allows one to
77// 'delete' a whole class at a time, even though there may be circular
78// references... first all references are dropped, and all use counts go to
79// zero. Then everything is delete'd for real. Note that no operations are
80// valid on an object that has "dropped all references", except operator
81// delete.
82//
83void Module::dropAllReferences() {
Chris Lattner57698e22002-03-26 18:01:55 +000084 for_each(FunctionList.begin(), FunctionList.end(),
85 std::mem_fun(&Function::dropAllReferences));
Chris Lattner446ad502001-10-13 06:58:40 +000086
87 for_each(GlobalList.begin(), GlobalList.end(),
88 std::mem_fun(&GlobalVariable::dropAllReferences));
89
90 // If there are any GlobalVariable references still out there, nuke them now.
91 // Since all references are hereby dropped, nothing could possibly reference
92 // them still.
93 if (GVRefMap) {
94 for (GlobalValueRefMap::iterator I = GVRefMap->begin(), E = GVRefMap->end();
95 I != E; ++I) {
Chris Lattner3462ae32001-12-03 22:26:30 +000096 // Delete the ConstantPointerRef node...
Chris Lattner446ad502001-10-13 06:58:40 +000097 I->second->destroyConstant();
98 }
99
100 // Since the table is empty, we can now delete it...
101 delete GVRefMap;
102 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000103}
Chris Lattner31cf9842001-06-30 04:35:40 +0000104
Chris Lattner446ad502001-10-13 06:58:40 +0000105// Accessor for the underlying GlobalValRefMap...
Chris Lattner3462ae32001-12-03 22:26:30 +0000106ConstantPointerRef *Module::getConstantPointerRef(GlobalValue *V){
Chris Lattner446ad502001-10-13 06:58:40 +0000107 // Create ref map lazily on demand...
108 if (GVRefMap == 0) GVRefMap = new GlobalValueRefMap();
109
110 GlobalValueRefMap::iterator I = GVRefMap->find(V);
111 if (I != GVRefMap->end()) return I->second;
112
Chris Lattner3462ae32001-12-03 22:26:30 +0000113 ConstantPointerRef *Ref = new ConstantPointerRef(V);
Chris Lattner7f74a562002-01-20 22:54:45 +0000114 GVRefMap->insert(std::make_pair(V, Ref));
Chris Lattner446ad502001-10-13 06:58:40 +0000115
116 return Ref;
117}
118
Chris Lattner3462ae32001-12-03 22:26:30 +0000119void Module::mutateConstantPointerRef(GlobalValue *OldGV, GlobalValue *NewGV) {
Chris Lattner446ad502001-10-13 06:58:40 +0000120 GlobalValueRefMap::iterator I = GVRefMap->find(OldGV);
121 assert(I != GVRefMap->end() &&
Chris Lattner3462ae32001-12-03 22:26:30 +0000122 "mutateConstantPointerRef; OldGV not in table!");
123 ConstantPointerRef *Ref = I->second;
Chris Lattner446ad502001-10-13 06:58:40 +0000124
125 // Remove the old entry...
126 GVRefMap->erase(I);
127
128 // Insert the new entry...
Chris Lattner7f74a562002-01-20 22:54:45 +0000129 GVRefMap->insert(std::make_pair(NewGV, Ref));
Chris Lattner446ad502001-10-13 06:58:40 +0000130}