diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-16 18:58:08 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-16 18:58:08 +0000 |
commit | d5f25dc1eb1fc27ce88a28ec73318c62ea6f6422 (patch) | |
tree | bf1fedfcf243079a7d46eb2d86b6df20b9a493b1 /llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp | |
parent | 09038eec7b7dbe1704886ee67339aa93cbc67cd1 (diff) | |
download | bcm5719-llvm-d5f25dc1eb1fc27ce88a28ec73318c62ea6f6422.tar.gz bcm5719-llvm-d5f25dc1eb1fc27ce88a28ec73318c62ea6f6422.zip |
Moved over EmitFunctions to this library
llvm-svn: 2928
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp b/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp new file mode 100644 index 00000000000..2d9b9a7c93c --- /dev/null +++ b/llvm/lib/Transforms/Instrumentation/EmitFunctions.cpp @@ -0,0 +1,45 @@ +//===-- EmitFunctions.cpp - interface to insert instrumentation --*- C++ -*--=// +// +// This inserts a global constant table with function pointers all along +// +//===----------------------------------------------------------------------===// + +#include "llvm/Transforms/Instrumentation/EmitFunctions.h" +#include "llvm/Constants.h" +#include "llvm/DerivedTypes.h" +#include "llvm/Constants.h" +#include "llvm/Module.h" + +using std::vector; + +struct EmitFunctionTable : public Pass { + const char *getPassName() const { return "EmitFunctionTablePass"; } + + bool run(Module &M); +}; + +// Create a new pass to add function table +// +Pass *createEmitFunctionTablePass() { + return new EmitFunctionTable(); +} + +// Per Module pass for inserting function table +bool EmitFunctionTable::run(Module &M){ + vector<const Type*> vType; + vector<Constant *> vConsts; + for(Module::iterator MI = M.begin(), ME = M.end(); MI!=ME; ++MI) + if (!MI->isExternal()) { + ConstantPointerRef *CP = ConstantPointerRef::get(MI); + vType.push_back(MI->getType()); + vConsts.push_back(CP); + } + + StructType *sttype = StructType::get(vType); + ConstantStruct *cstruct = ConstantStruct::get(sttype, vConsts); + + GlobalVariable *gb = new GlobalVariable(cstruct->getType(), true, false, + cstruct, "llvmFunctionTable"); + M.getGlobalList().push_back(gb); + return true; // Always modifies program +} |