blob: 454f6014e6dbd43a90f5a89b0ad704dd93dbaa8c [file] [log] [blame]
Chris Lattnerbd422e62001-11-26 18:42:17 +00001//===-- GlobalDCE.cpp - DCE unreachable internal methods ---------*- C++ -*--=//
2//
3// This transform is designed to eliminate unreachable internal globals
4//
5//===----------------------------------------------------------------------===//
6
7#include "llvm/Transforms/IPO/GlobalDCE.h"
8#include "llvm/Analysis/CallGraph.h"
Chris Lattnerbd422e62001-11-26 18:42:17 +00009#include "llvm/Module.h"
10#include "llvm/Method.h"
Chris Lattner04805fa2002-02-26 21:46:54 +000011#include "llvm/Pass.h"
Chris Lattner5de22042001-11-27 00:03:19 +000012#include "Support/DepthFirstIterator.h"
Chris Lattnerbd422e62001-11-26 18:42:17 +000013#include <set>
14
Chris Lattner0686e432002-01-21 07:31:50 +000015static bool RemoveUnreachableMethods(Module *M, cfg::CallGraph &CallGraph) {
Chris Lattnerbd422e62001-11-26 18:42:17 +000016 // Calculate which methods are reachable from the external methods in the call
17 // graph.
18 //
Chris Lattner7f74a562002-01-20 22:54:45 +000019 std::set<cfg::CallGraphNode*> ReachableNodes(df_begin(&CallGraph),
20 df_end(&CallGraph));
Chris Lattnerbd422e62001-11-26 18:42:17 +000021
22 // Loop over the methods in the module twice. The first time is used to drop
23 // references that methods have to each other before they are deleted. The
24 // second pass removes the methods that need to be removed.
25 //
Chris Lattner7f74a562002-01-20 22:54:45 +000026 std::vector<cfg::CallGraphNode*> MethodsToDelete; // Track unused methods
Chris Lattnerbd422e62001-11-26 18:42:17 +000027 for (Module::iterator I = M->begin(), E = M->end(); I != E; ++I) {
28 cfg::CallGraphNode *N = CallGraph[*I];
29 if (!ReachableNodes.count(N)) { // Not reachable??
30 (*I)->dropAllReferences();
31 N->removeAllCalledMethods();
32 MethodsToDelete.push_back(N);
33 }
34 }
35
36 // Nothing to do if no unreachable methods have been found...
Chris Lattner0686e432002-01-21 07:31:50 +000037 if (MethodsToDelete.empty()) return false;
Chris Lattnerbd422e62001-11-26 18:42:17 +000038
39 // Unreachables methods have been found and should have no references to them,
40 // delete them now.
41 //
Chris Lattner7f74a562002-01-20 22:54:45 +000042 for (std::vector<cfg::CallGraphNode*>::iterator I = MethodsToDelete.begin(),
Chris Lattnerbd422e62001-11-26 18:42:17 +000043 E = MethodsToDelete.end(); I != E; ++I)
44 delete CallGraph.removeMethodFromModule(*I);
45
Chris Lattnerbd422e62001-11-26 18:42:17 +000046 return true;
47}
48
Chris Lattner04805fa2002-02-26 21:46:54 +000049namespace {
50 struct GlobalDCE : public Pass {
51 // run - Do the GlobalDCE pass on the specified module, optionally updating
52 // the specified callgraph to reflect the changes.
53 //
54 bool run(Module *M) {
55 return RemoveUnreachableMethods(M, getAnalysis<cfg::CallGraph>());
56 }
57
58 // getAnalysisUsageInfo - This function works on the call graph of a module.
59 // It is capable of updating the call graph to reflect the new state of the
60 // module.
61 //
62 virtual void getAnalysisUsageInfo(Pass::AnalysisSet &Required,
63 Pass::AnalysisSet &Destroyed,
64 Pass::AnalysisSet &Provided) {
65 Required.push_back(cfg::CallGraph::ID);
66 // FIXME: This should update the callgraph, not destroy it!
67 Destroyed.push_back(cfg::CallGraph::ID);
68 }
69 };
Chris Lattnerd5d56782002-01-31 00:45:11 +000070}
71
Chris Lattner04805fa2002-02-26 21:46:54 +000072Pass *createGlobalDCEPass() { return new GlobalDCE(); }