diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-29 03:44:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-29 03:44:18 +0000 |
commit | 6056c49ca0e86e222b4bd7184a4b23c9277ab065 (patch) | |
tree | b93317a4dac41ab3e6441bd0468e5a8d2c62a803 /lib/VMCore/Module.cpp | |
parent | 89851077da34f052819b2da026bf881f3ae0eac7 (diff) | |
download | external_llvm-6056c49ca0e86e222b4bd7184a4b23c9277ab065.zip external_llvm-6056c49ca0e86e222b4bd7184a4b23c9277ab065.tar.gz external_llvm-6056c49ca0e86e222b4bd7184a4b23c9277ab065.tar.bz2 |
Implement new getFunction and getOrInsertFunction methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Module.cpp')
-rw-r--r-- | lib/VMCore/Module.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index 144c6f3..c0767cd 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -11,6 +11,7 @@ #include "llvm/ValueHolderImpl.h" #include "llvm/Type.h" #include "llvm/ConstantVals.h" +#include "llvm/DerivedTypes.h" #include "Support/STLExtras.h" #include <map> @@ -40,6 +41,36 @@ Module::~Module() { FunctionList.setParent(0); } +// 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)); +} + + // dropAllReferences() - This function causes all the subinstructions to "let // go" of all references that they are maintaining. This allows one to |