blob: b178b5dedf0c32b00177900399567f30d6ecbbfb [file] [log] [blame]
Chris Lattner44d2c352003-10-13 03:32:08 +00001//===-- CombineBranch.cpp -------------------------------------------------===//
John Criswell482202a2003-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 Lattner44d2c352003-10-13 03:32:08 +00009//
Anand Shukla89233e12003-07-18 16:08:32 +000010// Pass to instrument loops
11//
12// At every backedge, insert a counter for that backedge and a call function
Chris Lattner44d2c352003-10-13 03:32:08 +000013//
Anand Shukla89233e12003-07-18 16:08:32 +000014//===----------------------------------------------------------------------===//
15
Anand Shukla89233e12003-07-18 16:08:32 +000016#include "llvm/Analysis/Dominators.h"
17#include "llvm/Support/CFG.h"
18#include "llvm/Constants.h"
19#include "llvm/iMemory.h"
20#include "llvm/GlobalVariable.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/iOther.h"
23#include "llvm/iOperators.h"
24#include "llvm/iTerminators.h"
25#include "llvm/iPHINode.h"
26#include "llvm/Module.h"
27#include "llvm/Function.h"
28#include "llvm/Pass.h"
29
Brian Gaeke960707c2003-11-11 22:41:34 +000030namespace llvm {
31
Anand Shukla89233e12003-07-18 16:08:32 +000032//this is used to color vertices
33//during DFS
34
35enum Color{
36 WHITE,
37 GREY,
38 BLACK
39};
40
Brian Gaeke960707c2003-11-11 22:41:34 +000041namespace {
Anand Shukla89233e12003-07-18 16:08:32 +000042 struct CombineBranches : public FunctionPass {
43 private:
44 //DominatorSet *DS;
45 void getBackEdgesVisit(BasicBlock *u,
46 std::map<BasicBlock *, Color > &color,
47 std::map<BasicBlock *, int > &d,
48 int &time,
49 std::map<BasicBlock *, BasicBlock *> &be);
50 void removeRedundant(std::map<BasicBlock *, BasicBlock *> &be);
51 void getBackEdges(Function &F);
52 public:
53 bool runOnFunction(Function &F);
54 };
55
56 RegisterOpt<CombineBranches> X("branch-combine", "Multiple backedges going to same target are merged");
57}
58
Anand Shukla89233e12003-07-18 16:08:32 +000059//helper function to get back edges: it is called by
60//the "getBackEdges" function below
61void CombineBranches::getBackEdgesVisit(BasicBlock *u,
62 std::map<BasicBlock *, Color > &color,
63 std::map<BasicBlock *, int > &d,
64 int &time,
65 std::map<BasicBlock *, BasicBlock *> &be) {
66
67 color[u]=GREY;
68 time++;
69 d[u]=time;
70
Chris Lattnera9400952003-09-24 22:06:25 +000071 for (succ_iterator vl = succ_begin(u), ve = succ_end(u); vl != ve; ++vl){
Anand Shukla89233e12003-07-18 16:08:32 +000072
73 BasicBlock *BB = *vl;
74
75 if(color[BB]!=GREY && color[BB]!=BLACK){
76 getBackEdgesVisit(BB, color, d, time, be);
77 }
78
79 //now checking for d and f vals
80 else if(color[BB]==GREY){
81 //so v is ancestor of u if time of u > time of v
82 if(d[u] >= d[BB]){
83 //u->BB is a backedge
84 be[u] = BB;
85 }
86 }
87 }
88 color[u]=BLACK;//done with visiting the node and its neighbors
89}
90
91//look at all BEs, and remove all BEs that are dominated by other BE's in the
92//set
93void CombineBranches::removeRedundant(std::map<BasicBlock *, BasicBlock *> &be){
94 std::vector<BasicBlock *> toDelete;
95 std::map<BasicBlock *, int> seenBB;
96
97 for(std::map<BasicBlock *, BasicBlock *>::iterator MI = be.begin(),
98 ME = be.end(); MI != ME; ++MI){
99
100 if(seenBB[MI->second])
101 continue;
102
103 seenBB[MI->second] = 1;
104
105 std::vector<BasicBlock *> sameTarget;
106 sameTarget.clear();
107
108 for(std::map<BasicBlock *, BasicBlock *>::iterator MMI = be.begin(),
109 MME = be.end(); MMI != MME; ++MMI){
110
111 if(MMI->first == MI->first)
112 continue;
113
114 if(MMI->second == MI->second)
115 sameTarget.push_back(MMI->first);
116
117 }
118
119 //so more than one branch to same target
120 if(sameTarget.size()){
121
122 sameTarget.push_back(MI->first);
123
124 BasicBlock *newBB = new BasicBlock("newCommon", MI->first->getParent());
Chris Lattner2af51722003-11-20 18:25:24 +0000125 BranchInst *newBranch = new BranchInst(MI->second, 0, 0, newBB);
Anand Shukla89233e12003-07-18 16:08:32 +0000126
127 std::map<PHINode *, std::vector<unsigned int> > phiMap;
128
129
130 for(std::vector<BasicBlock *>::iterator VBI = sameTarget.begin(),
131 VBE = sameTarget.end(); VBI != VBE; ++VBI){
132
133 //std::cerr<<(*VBI)->getName()<<"\n";
134
135 BranchInst *ti = cast<BranchInst>((*VBI)->getTerminator());
136 unsigned char index = 1;
137 if(ti->getSuccessor(0) == MI->second){
138 index = 0;
139 }
140
141 ti->setSuccessor(index, newBB);
142
143 for(BasicBlock::iterator BB2Inst = MI->second->begin(),
144 BBend = MI->second->end(); BB2Inst != BBend; ++BB2Inst){
145
146 if (PHINode *phiInst = dyn_cast<PHINode>(BB2Inst)){
147 int bbIndex;
148 bbIndex = phiInst->getBasicBlockIndex(*VBI);
149 if(bbIndex>=0){
150 phiMap[phiInst].push_back(bbIndex);
151 //phiInst->setIncomingBlock(bbIndex, newBB);
152 }
153 }
154 }
155 }
156
157 for(std::map<PHINode *, std::vector<unsigned int> >::iterator
158 PI = phiMap.begin(), PE = phiMap.end(); PI != PE; ++PI){
159
160 PHINode *phiNode = new PHINode(PI->first->getType(), "phi", newBranch);
161 for(std::vector<unsigned int>::iterator II = PI->second.begin(),
162 IE = PI->second.end(); II != IE; ++II){
163 phiNode->addIncoming(PI->first->getIncomingValue(*II),
164 PI->first->getIncomingBlock(*II));
165 }
166
167 std::vector<BasicBlock *> tempBB;
168 for(std::vector<unsigned int>::iterator II = PI->second.begin(),
169 IE = PI->second.end(); II != IE; ++II){
170 tempBB.push_back(PI->first->getIncomingBlock(*II));
171 }
172
173 for(std::vector<BasicBlock *>::iterator II = tempBB.begin(),
174 IE = tempBB.end(); II != IE; ++II){
175 PI->first->removeIncomingValue(*II);
176 }
177
178 PI->first->addIncoming(phiNode, newBB);
179 }
180 //std::cerr<<"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n";
181 //std::cerr<<MI->second;
182 //std::cerr<<"-----------------------------------\n";
183 //std::cerr<<newBB;
184 //std::cerr<<"END%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n";
185
186 }
187 }
188}
189
190//getting the backedges in a graph
191//Its a variation of DFS to get the backedges in the graph
192//We get back edges by associating a time
193//and a color with each vertex.
194//The time of a vertex is the time when it was first visited
195//The color of a vertex is initially WHITE,
196//Changes to GREY when it is first visited,
197//and changes to BLACK when ALL its neighbors
198//have been visited
199//So we have a back edge when we meet a successor of
200//a node with smaller time, and GREY color
201void CombineBranches::getBackEdges(Function &F){
202 std::map<BasicBlock *, Color > color;
203 std::map<BasicBlock *, int> d;
204 std::map<BasicBlock *, BasicBlock *> be;
205 int time=0;
206 getBackEdgesVisit(F.begin(), color, d, time, be);
207
208 removeRedundant(be);
209}
210
211//Per function pass for inserting counters and call function
212bool CombineBranches::runOnFunction(Function &F){
213
214 if(F.isExternal()) {
215 return false;
216 }
217
218 //if(F.getName() == "main"){
219 // F.setName("llvm_gprof_main");
220 //}
221
222 //std::cerr<<F;
223 //std::cerr<<"///////////////////////////////////////////////\n";
224 getBackEdges(F);
225
226 return true;
227}
Brian Gaeke960707c2003-11-11 22:41:34 +0000228
229} // End llvm namespace