blob: 0ca7d6bffc017450b695ee9d4934a2152dc5a8c0 [file] [log] [blame]
Chris Lattner934fe852003-06-28 21:54:55 +00001//===- DataStructureOpt.cpp - Data Structure Analysis Based Optimizations -===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner934fe852003-06-28 21:54:55 +00009//
10// This pass uses DSA to a series of simple optimizations, like marking
11// unwritten global variables 'constant'.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/DataStructure.h"
16#include "llvm/Analysis/DSGraph.h"
17#include "llvm/Module.h"
18#include "llvm/Constant.h"
19#include "Support/Statistic.h"
20
21namespace {
22 Statistic<>
23 NumGlobalsConstanted("ds-opt", "Number of globals marked constant");
Chris Lattner5e459db2003-06-28 22:10:58 +000024 Statistic<>
25 NumGlobalsIsolated("ds-opt", "Number of globals with references dropped");
Chris Lattner934fe852003-06-28 21:54:55 +000026
27 class DSOpt : public Pass {
28 TDDataStructures *TD;
29 public:
30 bool run(Module &M) {
31 TD = &getAnalysis<TDDataStructures>();
32 bool Changed = OptimizeGlobals(M);
33 return Changed;
34 }
35
36 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
37 AU.addRequired<TDDataStructures>(); // Uses TD Datastructures
38 AU.addPreserved<LocalDataStructures>(); // Preserves local...
39 AU.addPreserved<TDDataStructures>(); // Preserves bu...
40 AU.addPreserved<BUDataStructures>(); // Preserves td...
41 }
42
43 private:
44 bool OptimizeGlobals(Module &M);
45 };
46
47 RegisterOpt<DSOpt> X("ds-opt", "DSA-based simple optimizations");
48}
49
50
51/// OptimizeGlobals - This method uses information taken from DSA to optimize
52/// global variables.
53///
54bool DSOpt::OptimizeGlobals(Module &M) {
55 DSGraph &GG = TD->getGlobalsGraph();
56 const DSGraph::ScalarMapTy &SM = GG.getScalarMap();
57 bool Changed = false;
58
59 for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
60 if (!I->isExternal()) { // Loop over all of the non-external globals...
61 // Look up the node corresponding to this global, if it exists.
62 DSNode *GNode = 0;
63 DSGraph::ScalarMapTy::const_iterator SMI = SM.find(I);
64 if (SMI != SM.end()) GNode = SMI->second.getNode();
65
66 if (GNode == 0 && I->hasInternalLinkage()) {
67 // If there is no entry in the scalar map for this global, it was never
68 // referenced in the program. If it has internal linkage, that means we
69 // can delete it. We don't ACTUALLY want to delete the global, just
70 // remove anything that references the global: later passes will take
71 // care of nuking it.
Chris Lattner5e459db2003-06-28 22:10:58 +000072 if (!I->use_empty()) {
73 I->replaceAllUsesWith(Constant::getNullValue((Type*)I->getType()));
74 ++NumGlobalsIsolated;
75 }
Chris Lattner934fe852003-06-28 21:54:55 +000076 } else if (GNode && GNode->isComplete()) {
Chris Lattner5e459db2003-06-28 22:10:58 +000077
78 // If the node has not been read or written, and it is not externally
79 // visible, kill any references to it so it can be DCE'd.
80 if (!GNode->isModified() && !GNode->isRead() &&I->hasInternalLinkage()){
81 if (!I->use_empty()) {
82 I->replaceAllUsesWith(Constant::getNullValue((Type*)I->getType()));
83 ++NumGlobalsIsolated;
84 }
85 }
86
Chris Lattner934fe852003-06-28 21:54:55 +000087 // We expect that there will almost always be a node for this global.
88 // If there is, and the node doesn't have the M bit set, we can set the
89 // 'constant' bit on the global.
90 if (!GNode->isModified() && !I->isConstant()) {
91 I->setConstant(true);
92 ++NumGlobalsConstanted;
93 Changed = true;
94 }
95 }
96 }
97 return Changed;
98}