summaryrefslogtreecommitdiff
path: root/tools/llvm-extract
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-06-25 16:13:24 +0000
committerChris Lattner <sabre@nondot.org>2002-06-25 16:13:24 +0000
commit7e70829632f82de15db187845666aaca6e04b792 (patch)
tree48dd2d804e7ebec9a3cbd8bf229cb2a2aa20dce5 /tools/llvm-extract
parent0b12b5f50ec77a8bd01b92d287c52d748619bb4b (diff)
downloadllvm-7e70829632f82de15db187845666aaca6e04b792.tar.gz
llvm-7e70829632f82de15db187845666aaca6e04b792.tar.bz2
llvm-7e70829632f82de15db187845666aaca6e04b792.tar.xz
MEGAPATCH checkin.
For details, See: docs/2002-06-25-MegaPatchInfo.txt git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-extract')
-rw-r--r--tools/llvm-extract/llvm-extract.cpp36
1 files changed, 17 insertions, 19 deletions
diff --git a/tools/llvm-extract/llvm-extract.cpp b/tools/llvm-extract/llvm-extract.cpp
index a78d1fd9b9..d1680c0967 100644
--- a/tools/llvm-extract/llvm-extract.cpp
+++ b/tools/llvm-extract/llvm-extract.cpp
@@ -24,30 +24,29 @@ static cl::String ExtractFunc("func", "Specify function to extract", 0, "main");
struct FunctionExtractorPass : public Pass {
const char *getPassName() const { return "Function Extractor"; }
- bool run(Module *M) {
+ bool run(Module &M) {
// Mark all global variables to be internal
- for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
- (*I)->setInternalLinkage(true);
+ for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
+ I->setInternalLinkage(true);
Function *Named = 0;
// Loop over all of the functions in the module, dropping all references in
// functions that are not the named function.
- for (Module::iterator I = M->begin(), E = M->end(); I != E;)
+ for (Module::iterator I = M.begin(), E = M.end(); I != E;)
// Check to see if this is the named function!
- if (!Named && (*I)->getName() == ExtractFunc) {
+ if (!Named && I->getName() == ExtractFunc) {
// Yes, it is. Keep track of it...
- Named = *I;
+ Named = I;
// Make sure it's globally accessable...
Named->setInternalLinkage(false);
// Remove the named function from the module.
- M->getFunctionList().remove(I);
- E = M->end();
+ M.getFunctionList().remove(I);
} else {
// Nope it's not the named function, delete the body of the function
- (*I)->dropAllReferences();
+ I->dropAllReferences();
++I;
}
@@ -57,27 +56,26 @@ struct FunctionExtractorPass : public Pass {
// functions.
std::vector<Function*> NewFunctions;
- for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I)
- if (!(*I)->use_empty()) {
- Function *New = new Function((*I)->getFunctionType(), false,
- (*I)->getName());
- (*I)->replaceAllUsesWith(New);
+ for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
+ if (!I->use_empty()) {
+ Function *New = new Function(I->getFunctionType(), false, I->getName());
+ I->replaceAllUsesWith(New);
NewFunctions.push_back(New);
}
// Now the module only has unused functions with their references dropped.
// Delete them all now!
- M->getFunctionList().delete_all();
+ M.getFunctionList().clear();
// Re-insert the named function...
if (Named)
- M->getFunctionList().push_back(Named);
+ M.getFunctionList().push_back(Named);
else
std::cerr << "Warning: Function '" << ExtractFunc << "' not found!\n";
// Insert all of the function stubs...
- M->getFunctionList().insert(M->end(), NewFunctions.begin(),
- NewFunctions.end());
+ M.getFunctionList().insert(M.end(), NewFunctions.begin(),
+ NewFunctions.end());
return true;
}
};
@@ -102,6 +100,6 @@ int main(int argc, char **argv) {
Passes.add(createCleanupGCCOutputPass()); // Fix gccisms
Passes.add(new WriteBytecodePass(&std::cout)); // Write bytecode to file...
- Passes.run(M.get());
+ Passes.run(*M.get());
return 0;
}