blob: 1996aea67d6a4f74a883898da91dd38f8d01f713 [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
Chris Lattner4dabb2c2004-07-07 06:32:21 +000015#include "llvm/Analysis/DataStructure/DataStructure.h"
16#include "llvm/Analysis/DataStructure/DSGraph.h"
Chris Lattner934fe852003-06-28 21:54:55 +000017#include "llvm/Module.h"
18#include "llvm/Constant.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/ADT/Statistic.h"
Chris Lattner9a927292003-11-12 23:11:14 +000020using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000021
Chris Lattner934fe852003-06-28 21:54:55 +000022namespace {
23 Statistic<>
24 NumGlobalsConstanted("ds-opt", "Number of globals marked constant");
Chris Lattner5e459db2003-06-28 22:10:58 +000025 Statistic<>
26 NumGlobalsIsolated("ds-opt", "Number of globals with references dropped");
Chris Lattner934fe852003-06-28 21:54:55 +000027
Chris Lattnerb12914b2004-09-20 04:48:05 +000028 class DSOpt : public ModulePass {
Chris Lattner934fe852003-06-28 21:54:55 +000029 TDDataStructures *TD;
30 public:
Chris Lattnerb12914b2004-09-20 04:48:05 +000031 bool runOnModule(Module &M) {
Chris Lattner934fe852003-06-28 21:54:55 +000032 TD = &getAnalysis<TDDataStructures>();
33 bool Changed = OptimizeGlobals(M);
34 return Changed;
35 }
36
37 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
38 AU.addRequired<TDDataStructures>(); // Uses TD Datastructures
39 AU.addPreserved<LocalDataStructures>(); // Preserves local...
40 AU.addPreserved<TDDataStructures>(); // Preserves bu...
41 AU.addPreserved<BUDataStructures>(); // Preserves td...
42 }
43
44 private:
45 bool OptimizeGlobals(Module &M);
46 };
47
48 RegisterOpt<DSOpt> X("ds-opt", "DSA-based simple optimizations");
49}
50
Chris Lattner934fe852003-06-28 21:54:55 +000051/// 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}