blob: 71afe928baa29b8ae030a54021e6379e90bec480 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===- ConstantProp.cpp - Code to perform Constant Propogation ------------===//
2//
3// This file implements constant propogation and merging:
4//
5// Specifically, this:
6// * Folds multiple identical constants in the constant pool together
7// Note that if one is named and the other is not, that the result gets the
8// original name.
9// * Converts instructions like "add int %1, %2" into a direct def of %3 in
10// the constant pool
11// * Converts conditional branches on a constant boolean value into direct
12// branches.
13// * Converts phi nodes with one incoming def to the incoming def directly
14// . Converts switch statements with one entry into a test & conditional
15// branch
16// . Converts switches on constant values into an unconditional branch.
17//
18// Notice that:
19// * This pass has a habit of making definitions be dead. It is a good idea
20// to to run a DCE pass sometime after running this pass.
21//
22//===----------------------------------------------------------------------===//
23
Chris Lattner59b6b8e2002-01-21 23:17:48 +000024#include "llvm/Transforms/Scalar/ConstantProp.h"
Chris Lattner968ddc92002-04-08 20:18:09 +000025#include "llvm/ConstantHandling.h"
Chris Lattner00950542001-06-06 20:29:01 +000026#include "llvm/Module.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000027#include "llvm/Function.h"
Chris Lattner00950542001-06-06 20:29:01 +000028#include "llvm/BasicBlock.h"
29#include "llvm/iTerminators.h"
Chris Lattner7061dc52001-12-03 18:02:31 +000030#include "llvm/iPHINode.h"
Chris Lattner00950542001-06-06 20:29:01 +000031#include "llvm/iOther.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000032#include "llvm/Pass.h"
Chris Lattnere9bb2df2001-12-03 22:26:30 +000033#include "llvm/ConstantVals.h"
Chris Lattner00950542001-06-06 20:29:01 +000034
35inline static bool
Chris Lattnerfaffb052001-11-26 18:57:12 +000036ConstantFoldUnaryInst(BasicBlock *BB, BasicBlock::iterator &II,
Chris Lattnere9bb2df2001-12-03 22:26:30 +000037 UnaryOperator *Op, Constant *D) {
Chris Lattner59b6b8e2002-01-21 23:17:48 +000038 Constant *ReplaceWith = ConstantFoldUnaryInstruction(Op->getOpcode(), D);
Chris Lattner00950542001-06-06 20:29:01 +000039
40 if (!ReplaceWith) return false; // Nothing new to change...
41
Chris Lattner00950542001-06-06 20:29:01 +000042 // Replaces all of the uses of a variable with uses of the constant.
43 Op->replaceAllUsesWith(ReplaceWith);
44
45 // Remove the operator from the list of definitions...
Chris Lattnerfaffb052001-11-26 18:57:12 +000046 Op->getParent()->getInstList().remove(II);
Chris Lattner00950542001-06-06 20:29:01 +000047
48 // The new constant inherits the old name of the operator...
Chris Lattner9b644cc2001-09-07 16:41:30 +000049 if (Op->hasName())
Chris Lattnerfaffb052001-11-26 18:57:12 +000050 ReplaceWith->setName(Op->getName(), BB->getParent()->getSymbolTableSure());
Chris Lattner00950542001-06-06 20:29:01 +000051
52 // Delete the operator now...
53 delete Op;
54 return true;
55}
56
57inline static bool
Chris Lattnerfaffb052001-11-26 18:57:12 +000058ConstantFoldCast(BasicBlock *BB, BasicBlock::iterator &II,
Chris Lattnere9bb2df2001-12-03 22:26:30 +000059 CastInst *CI, Constant *D) {
Chris Lattner59b6b8e2002-01-21 23:17:48 +000060 Constant *ReplaceWith = ConstantFoldCastInstruction(D, CI->getType());
Chris Lattner37aabf22001-10-31 05:07:57 +000061
62 if (!ReplaceWith) return false; // Nothing new to change...
63
64 // Replaces all of the uses of a variable with uses of the constant.
65 CI->replaceAllUsesWith(ReplaceWith);
66
67 // Remove the cast from the list of definitions...
Chris Lattnerfaffb052001-11-26 18:57:12 +000068 CI->getParent()->getInstList().remove(II);
Chris Lattner37aabf22001-10-31 05:07:57 +000069
70 // The new constant inherits the old name of the cast...
71 if (CI->hasName())
Chris Lattnerfaffb052001-11-26 18:57:12 +000072 ReplaceWith->setName(CI->getName(), BB->getParent()->getSymbolTableSure());
Chris Lattner37aabf22001-10-31 05:07:57 +000073
74 // Delete the cast now...
75 delete CI;
76 return true;
77}
78
79inline static bool
Chris Lattnerfaffb052001-11-26 18:57:12 +000080ConstantFoldBinaryInst(BasicBlock *BB, BasicBlock::iterator &II,
Chris Lattner00950542001-06-06 20:29:01 +000081 BinaryOperator *Op,
Chris Lattnere9bb2df2001-12-03 22:26:30 +000082 Constant *D1, Constant *D2) {
Chris Lattner59b6b8e2002-01-21 23:17:48 +000083 Constant *ReplaceWith = ConstantFoldBinaryInstruction(Op->getOpcode(), D1,D2);
Chris Lattner00950542001-06-06 20:29:01 +000084 if (!ReplaceWith) return false; // Nothing new to change...
85
Chris Lattner00950542001-06-06 20:29:01 +000086 // Replaces all of the uses of a variable with uses of the constant.
87 Op->replaceAllUsesWith(ReplaceWith);
88
89 // Remove the operator from the list of definitions...
Chris Lattnerfaffb052001-11-26 18:57:12 +000090 Op->getParent()->getInstList().remove(II);
Chris Lattner00950542001-06-06 20:29:01 +000091
92 // The new constant inherits the old name of the operator...
Chris Lattner9b644cc2001-09-07 16:41:30 +000093 if (Op->hasName())
Chris Lattnerfaffb052001-11-26 18:57:12 +000094 ReplaceWith->setName(Op->getName(), BB->getParent()->getSymbolTableSure());
Chris Lattner00950542001-06-06 20:29:01 +000095
96 // Delete the operator now...
97 delete Op;
98 return true;
99}
100
Chris Lattner2b058802001-06-29 23:56:58 +0000101// ConstantFoldTerminator - If a terminator instruction is predicated on a
102// constant value, convert it into an unconditional branch to the constant
103// destination.
104//
Chris Lattner0fce76a2002-03-11 22:11:07 +0000105bool ConstantFoldTerminator(BasicBlock *BB, BasicBlock::iterator &II,
106 TerminatorInst *T) {
Chris Lattner00950542001-06-06 20:29:01 +0000107 // Branch - See if we are conditional jumping on constant
Chris Lattnerb00c5822001-10-02 03:41:24 +0000108 if (BranchInst *BI = dyn_cast<BranchInst>(T)) {
Chris Lattner2b058802001-06-29 23:56:58 +0000109 if (BI->isUnconditional()) return false; // Can't optimize uncond branch
Chris Lattner9636a912001-10-01 16:18:37 +0000110 BasicBlock *Dest1 = cast<BasicBlock>(BI->getOperand(0));
111 BasicBlock *Dest2 = cast<BasicBlock>(BI->getOperand(1));
Chris Lattner2b058802001-06-29 23:56:58 +0000112
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000113 if (ConstantBool *Cond = dyn_cast<ConstantBool>(BI->getCondition())) {
Chris Lattner1d87bcf2001-10-01 20:11:19 +0000114 // Are we branching on constant?
Chris Lattner00950542001-06-06 20:29:01 +0000115 // YES. Change to unconditional branch...
Chris Lattner2b058802001-06-29 23:56:58 +0000116 BasicBlock *Destination = Cond->getValue() ? Dest1 : Dest2;
117 BasicBlock *OldDest = Cond->getValue() ? Dest2 : Dest1;
Chris Lattnerbca26a42001-06-29 05:23:10 +0000118
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000119 //cerr << "Function: " << T->getParent()->getParent()
Chris Lattner2b058802001-06-29 23:56:58 +0000120 // << "\nRemoving branch from " << T->getParent()
121 // << "\n\nTo: " << OldDest << endl;
Chris Lattnerbca26a42001-06-29 05:23:10 +0000122
123 // Let the basic block know that we are letting go of it. Based on this,
124 // it will adjust it's PHI nodes.
Chris Lattner2b058802001-06-29 23:56:58 +0000125 assert(BI->getParent() && "Terminator not inserted in block!");
126 OldDest->removePredecessor(BI->getParent());
Chris Lattner00950542001-06-06 20:29:01 +0000127
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000128 // Set the unconditional destination, and change the insn to be an
129 // unconditional branch.
130 BI->setUnconditionalDest(Destination);
Chris Lattner0fce76a2002-03-11 22:11:07 +0000131 II = BB->end()-1; // Update instruction iterator!
Chris Lattner00950542001-06-06 20:29:01 +0000132 return true;
Chris Lattner9b644cc2001-09-07 16:41:30 +0000133 }
134#if 0
135 // FIXME: TODO: This doesn't work if the destination has PHI nodes with
136 // different incoming values on each branch!
137 //
138 else if (Dest2 == Dest1) { // Conditional branch to same location?
Chris Lattner2b058802001-06-29 23:56:58 +0000139 // This branch matches something like this:
140 // br bool %cond, label %Dest, label %Dest
141 // and changes it into: br label %Dest
142
143 // Let the basic block know that we are letting go of one copy of it.
144 assert(BI->getParent() && "Terminator not inserted in block!");
145 Dest1->removePredecessor(BI->getParent());
146
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000147 // Change a conditional branch to unconditional.
148 BI->setUnconditionalDest(Dest1);
Chris Lattner2b058802001-06-29 23:56:58 +0000149 return true;
Chris Lattner00950542001-06-06 20:29:01 +0000150 }
Chris Lattner9b644cc2001-09-07 16:41:30 +0000151#endif
Chris Lattner00950542001-06-06 20:29:01 +0000152 }
153 return false;
154}
155
156// ConstantFoldInstruction - If an instruction references constants, try to fold
157// them together...
158//
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000159bool doConstantPropogation(BasicBlock *BB, BasicBlock::iterator &II) {
Chris Lattner00950542001-06-06 20:29:01 +0000160 Instruction *Inst = *II;
Chris Lattner697954c2002-01-20 22:54:45 +0000161 if (isa<BinaryOperator>(Inst)) {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000162 Constant *D1 = dyn_cast<Constant>(Inst->getOperand(0));
163 Constant *D2 = dyn_cast<Constant>(Inst->getOperand(1));
Chris Lattner531450d2001-06-27 23:35:26 +0000164
165 if (D1 && D2)
Chris Lattnerfaffb052001-11-26 18:57:12 +0000166 return ConstantFoldBinaryInst(BB, II, cast<BinaryOperator>(Inst), D1, D2);
Chris Lattner00950542001-06-06 20:29:01 +0000167
Chris Lattner37aabf22001-10-31 05:07:57 +0000168 } else if (CastInst *CI = dyn_cast<CastInst>(Inst)) {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000169 Constant *D = dyn_cast<Constant>(CI->getOperand(0));
Chris Lattnerfaffb052001-11-26 18:57:12 +0000170 if (D) return ConstantFoldCast(BB, II, CI, D);
Chris Lattner37aabf22001-10-31 05:07:57 +0000171
Chris Lattnerb00c5822001-10-02 03:41:24 +0000172 } else if (UnaryOperator *UInst = dyn_cast<UnaryOperator>(Inst)) {
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000173 Constant *D = dyn_cast<Constant>(UInst->getOperand(0));
Chris Lattnerfaffb052001-11-26 18:57:12 +0000174 if (D) return ConstantFoldUnaryInst(BB, II, UInst, D);
Chris Lattnerb00c5822001-10-02 03:41:24 +0000175 } else if (TerminatorInst *TInst = dyn_cast<TerminatorInst>(Inst)) {
Chris Lattner0fce76a2002-03-11 22:11:07 +0000176 return ConstantFoldTerminator(BB, II, TInst);
Chris Lattner00950542001-06-06 20:29:01 +0000177
Chris Lattnerb00c5822001-10-02 03:41:24 +0000178 } else if (PHINode *PN = dyn_cast<PHINode>(Inst)) {
179 // If it's a PHI node and only has one operand
180 // Then replace it directly with that operand.
Chris Lattner9102aee2001-12-13 00:45:40 +0000181 assert(PN->getNumOperands() && "PHI Node must have at least one operand!");
Chris Lattnerc8b25d42001-07-07 08:36:50 +0000182 if (PN->getNumOperands() == 1) { // If the PHI Node has exactly 1 operand
Chris Lattner00950542001-06-06 20:29:01 +0000183 Value *V = PN->getOperand(0);
184 PN->replaceAllUsesWith(V); // Replace all uses of this PHI
185 // Unlink from basic block
Chris Lattnerfaffb052001-11-26 18:57:12 +0000186 PN->getParent()->getInstList().remove(II);
Chris Lattner9b644cc2001-09-07 16:41:30 +0000187 if (PN->hasName()) // Inherit PHINode name
Chris Lattnerfaffb052001-11-26 18:57:12 +0000188 V->setName(PN->getName(), BB->getParent()->getSymbolTableSure());
Chris Lattner00950542001-06-06 20:29:01 +0000189 delete PN; // Finally, delete the node...
190 return true;
191 }
192 }
193 return false;
194}
195
196// DoConstPropPass - Propogate constants and do constant folding on instructions
197// this returns true if something was changed, false if nothing was changed.
198//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000199static bool DoConstPropPass(Function *F) {
Chris Lattner00950542001-06-06 20:29:01 +0000200 bool SomethingChanged = false;
201
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000202 for (Method::iterator BBI = F->begin(); BBI != F->end(); ++BBI) {
Chris Lattnerfaffb052001-11-26 18:57:12 +0000203 BasicBlock *BB = *BBI;
204 for (BasicBlock::iterator I = BB->begin(); I != BB->end(); )
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000205 if (doConstantPropogation(BB, I))
Chris Lattnerfaffb052001-11-26 18:57:12 +0000206 SomethingChanged = true;
207 else
208 ++I;
Chris Lattner00950542001-06-06 20:29:01 +0000209 }
Chris Lattner00950542001-06-06 20:29:01 +0000210 return SomethingChanged;
211}
212
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000213namespace {
214 struct ConstantPropogation : public MethodPass {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000215 inline bool runOnMethod(Function *F) {
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000216 bool Modified = false;
Chris Lattner00950542001-06-06 20:29:01 +0000217
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000218 // Fold constants until we make no progress...
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000219 while (DoConstPropPass(F)) Modified = true;
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000220
221 return Modified;
222 }
223 };
Chris Lattner00950542001-06-06 20:29:01 +0000224}
Chris Lattnerbd0ef772002-02-26 21:46:54 +0000225
226Pass *createConstantPropogationPass() {
227 return new ConstantPropogation();
228}
229