blob: 59172b5d0185218a94ad66c1fdba5e3a8443ed0e [file] [log] [blame]
Chris Lattnerca081252001-12-14 16:52:21 +00001//===- InstructionCombining.cpp - Combine multiple instructions -------------=//
2//
3// InstructionCombining - Combine instructions to form fewer, simple
4// instructions. This pass does not modify the CFG, and has a tendancy to
Chris Lattner31ba1292002-04-29 22:24:47 +00005// make instructions dead, so a subsequent DIE pass is useful.
Chris Lattnerca081252001-12-14 16:52:21 +00006//
7// This pass combines things like:
8// %Y = add int 1, %X
9// %Z = add int 1, %Y
10// into:
11// %Z = add int 2, %X
12//
13// This is a simple worklist driven algorithm.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/Transforms/Scalar/InstructionCombining.h"
Chris Lattner65b529f2002-04-08 20:18:09 +000018#include "llvm/ConstantHandling.h"
Chris Lattnerca081252001-12-14 16:52:21 +000019#include "llvm/iMemory.h"
Chris Lattner3a60d042002-04-15 19:45:29 +000020#include "llvm/iOther.h"
Chris Lattner260ab202002-04-18 17:39:14 +000021#include "llvm/iOperators.h"
Chris Lattner04805fa2002-02-26 21:46:54 +000022#include "llvm/Pass.h"
Chris Lattner60a65912002-02-12 21:07:25 +000023#include "llvm/Support/InstIterator.h"
Chris Lattner260ab202002-04-18 17:39:14 +000024#include "llvm/Support/InstVisitor.h"
Chris Lattneree965ab2002-01-21 23:17:48 +000025#include "../TransformInternals.h"
Chris Lattnerca081252001-12-14 16:52:21 +000026
Chris Lattnerca081252001-12-14 16:52:21 +000027
Chris Lattner260ab202002-04-18 17:39:14 +000028namespace {
Chris Lattnerc8e66542002-04-27 06:56:12 +000029 class InstCombiner : public FunctionPass,
Chris Lattner260ab202002-04-18 17:39:14 +000030 public InstVisitor<InstCombiner, Instruction*> {
31 // Worklist of all of the instructions that need to be simplified.
32 std::vector<Instruction*> WorkList;
33
34 void AddUsesToWorkList(Instruction *I) {
35 // The instruction was simplified, add all users of the instruction to
36 // the work lists because they might get more simplified now...
37 //
38 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
39 UI != UE; ++UI)
40 WorkList.push_back(cast<Instruction>(*UI));
41 }
42
43 public:
Chris Lattner37104aa2002-04-29 14:57:45 +000044 const char *getPassName() const { return "Instruction Combining"; }
45
Chris Lattnerc8e66542002-04-27 06:56:12 +000046 virtual bool runOnFunction(Function *F);
Chris Lattner260ab202002-04-18 17:39:14 +000047
Chris Lattnerf12cc842002-04-28 21:27:06 +000048 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
49 AU.preservesCFG();
50 }
51
Chris Lattner260ab202002-04-18 17:39:14 +000052 // Visitation implementation - Implement instruction combining for different
53 // instruction types. The semantics are as follows:
54 // Return Value:
55 // null - No change was made
56 // I - Change was made, I is still valid
57 // otherwise - Change was made, replace I with returned instruction
58 //
59
60 Instruction *visitAdd(BinaryOperator *I);
61 Instruction *visitSub(BinaryOperator *I);
62 Instruction *visitMul(BinaryOperator *I);
63 Instruction *visitCastInst(CastInst *CI);
Chris Lattner48a44f72002-05-02 17:06:02 +000064 Instruction *visitGetElementPtrInst(GetElementPtrInst *GEP);
Chris Lattner260ab202002-04-18 17:39:14 +000065 Instruction *visitMemAccessInst(MemAccessInst *MAI);
66
67 // visitInstruction - Specify what to return for unhandled instructions...
68 Instruction *visitInstruction(Instruction *I) { return 0; }
69 };
70}
71
72
73
74// Make sure that this instruction has a constant on the right hand side if it
75// has any constant arguments. If not, fix it an return true.
76//
77static bool SimplifyBinOp(BinaryOperator *I) {
Chris Lattnerca081252001-12-14 16:52:21 +000078 if (isa<Constant>(I->getOperand(0)) && !isa<Constant>(I->getOperand(1)))
Chris Lattner31ba1292002-04-29 22:24:47 +000079 return !I->swapOperands();
Chris Lattner260ab202002-04-18 17:39:14 +000080 return false;
81}
Chris Lattnerca081252001-12-14 16:52:21 +000082
Chris Lattner260ab202002-04-18 17:39:14 +000083Instruction *InstCombiner::visitAdd(BinaryOperator *I) {
84 if (I->use_empty()) return 0; // Don't fix dead add instructions...
85 bool Changed = SimplifyBinOp(I);
86 Value *Op1 = I->getOperand(0);
87
88 // Simplify add instructions with a constant RHS...
89 if (Constant *Op2 = dyn_cast<Constant>(I->getOperand(1))) {
90 // Eliminate 'add int %X, 0'
91 if (I->getType()->isIntegral() && Op2->isNullValue()) {
92 AddUsesToWorkList(I); // Add all modified instrs to worklist
93 I->replaceAllUsesWith(Op1);
94 return I;
95 }
96
97 if (BinaryOperator *IOp1 = dyn_cast<BinaryOperator>(Op1)) {
98 Changed |= SimplifyBinOp(IOp1);
99
100 if (IOp1->getOpcode() == Instruction::Add &&
101 isa<Constant>(IOp1->getOperand(1))) {
102 // Fold:
103 // %Y = add int %X, 1
104 // %Z = add int %Y, 1
105 // into:
106 // %Z = add int %X, 2
107 //
108 if (Constant *Val = *Op2 + *cast<Constant>(IOp1->getOperand(1))) {
109 I->setOperand(0, IOp1->getOperand(0));
110 I->setOperand(1, Val);
Chris Lattnerbee86622002-03-11 23:28:45 +0000111 return I;
Chris Lattner04805fa2002-02-26 21:46:54 +0000112 }
Chris Lattnerca081252001-12-14 16:52:21 +0000113 }
114 }
Chris Lattnerca081252001-12-14 16:52:21 +0000115 }
116
Chris Lattner260ab202002-04-18 17:39:14 +0000117 return Changed ? I : 0;
118}
119
120Instruction *InstCombiner::visitSub(BinaryOperator *I) {
121 if (I->use_empty()) return 0; // Don't fix dead add instructions...
122 bool Changed = SimplifyBinOp(I);
123
124 // If this is a subtract instruction with a constant RHS, convert it to an add
125 // instruction of a negative constant
126 //
127 if (Constant *Op2 = dyn_cast<Constant>(I->getOperand(1)))
128 // Calculate 0 - RHS
Chris Lattner2716b5e2002-04-27 02:25:14 +0000129 if (Constant *RHS = *Constant::getNullValue(I->getType()) - *Op2) {
Chris Lattner260ab202002-04-18 17:39:14 +0000130 return BinaryOperator::create(Instruction::Add, I->getOperand(0), RHS,
131 I->getName());
132 }
133
134 return Changed ? I : 0;
135}
136
137Instruction *InstCombiner::visitMul(BinaryOperator *I) {
138 if (I->use_empty()) return 0; // Don't fix dead add instructions...
139 bool Changed = SimplifyBinOp(I);
140 Value *Op1 = I->getOperand(0);
141
142 // Simplify add instructions with a constant RHS...
143 if (Constant *Op2 = dyn_cast<Constant>(I->getOperand(1))) {
144 if (I->getType()->isIntegral() && cast<ConstantInt>(Op2)->equalsInt(1)){
145 // Eliminate 'mul int %X, 1'
146 AddUsesToWorkList(I); // Add all modified instrs to worklist
147 I->replaceAllUsesWith(Op1);
148 return I;
Chris Lattner31ba1292002-04-29 22:24:47 +0000149
150 } else if (I->getType()->isIntegral() &&
151 cast<ConstantInt>(Op2)->equalsInt(2)) {
152 // Convert 'mul int %X, 2' to 'add int %X, %X'
153 return BinaryOperator::create(Instruction::Add, Op1, Op1, I->getName());
154
155 } else if (Op2->isNullValue()) {
156 // Eliminate 'mul int %X, 0'
157 AddUsesToWorkList(I); // Add all modified instrs to worklist
158 I->replaceAllUsesWith(Op2); // Set this value to zero directly
159 return I;
Chris Lattner260ab202002-04-18 17:39:14 +0000160 }
161 }
162
163 return Changed ? I : 0;
164}
165
166
Chris Lattner48a44f72002-05-02 17:06:02 +0000167// isEliminableCastOfCast - Return true if it is valid to eliminate the CI
168// instruction.
169//
170static inline bool isEliminableCastOfCast(const CastInst *CI,
171 const CastInst *CSrc) {
172 assert(CI->getOperand(0) == CSrc);
173 const Type *SrcTy = CSrc->getOperand(0)->getType();
174 const Type *MidTy = CSrc->getType();
175 const Type *DstTy = CI->getType();
176
177 // It is legal to eliminate the instruction if casting A->B->A
178 if (SrcTy == DstTy) return true;
179
180 // Allow free casting and conversion of sizes as long as the sign doesn't
181 // change...
182 if (SrcTy->isSigned() == MidTy->isSigned() &&
183 MidTy->isSigned() == DstTy->isSigned())
184 return true;
185
186 // Otherwise, we cannot succeed. Specifically we do not want to allow things
187 // like: short -> ushort -> uint, because this can create wrong results if
188 // the input short is negative!
189 //
190 return false;
191}
192
193
194// CastInst simplification
Chris Lattner260ab202002-04-18 17:39:14 +0000195//
196Instruction *InstCombiner::visitCastInst(CastInst *CI) {
Chris Lattner48a44f72002-05-02 17:06:02 +0000197 // If the user is casting a value to the same type, eliminate this cast
198 // instruction...
Chris Lattner260ab202002-04-18 17:39:14 +0000199 if (CI->getType() == CI->getOperand(0)->getType() && !CI->use_empty()) {
200 AddUsesToWorkList(CI); // Add all modified instrs to worklist
201 CI->replaceAllUsesWith(CI->getOperand(0));
202 return CI;
203 }
Chris Lattner48a44f72002-05-02 17:06:02 +0000204
205
206 // If casting the result of another cast instruction, try to eliminate this
207 // one!
208 //
209 if (CastInst *CSrc = dyn_cast<CastInst>(CI->getOperand(0)))
210 if (isEliminableCastOfCast(CI, CSrc)) {
211 // This instruction now refers directly to the cast's src operand. This
212 // has a good chance of making CSrc dead.
213 CI->setOperand(0, CSrc->getOperand(0));
214 return CI;
215 }
216
Chris Lattner260ab202002-04-18 17:39:14 +0000217 return 0;
Chris Lattnerca081252001-12-14 16:52:21 +0000218}
219
Chris Lattner48a44f72002-05-02 17:06:02 +0000220
221
222Instruction *InstCombiner::visitGetElementPtrInst(GetElementPtrInst *GEP) {
223 // Is it getelementptr %P, uint 0
224 // If so, elminate the noop.
225 if (GEP->getNumOperands() == 2 && !GEP->use_empty() &&
226 GEP->getOperand(1) == Constant::getNullValue(Type::UIntTy)) {
227 AddUsesToWorkList(GEP); // Add all modified instrs to worklist
228 GEP->replaceAllUsesWith(GEP->getOperand(0));
229 return GEP;
230 }
231
232 return visitMemAccessInst(GEP);
233}
234
235
Chris Lattnerca081252001-12-14 16:52:21 +0000236// Combine Indices - If the source pointer to this mem access instruction is a
237// getelementptr instruction, combine the indices of the GEP into this
238// instruction
239//
Chris Lattner260ab202002-04-18 17:39:14 +0000240Instruction *InstCombiner::visitMemAccessInst(MemAccessInst *MAI) {
Chris Lattnerca081252001-12-14 16:52:21 +0000241 GetElementPtrInst *Src =
242 dyn_cast<GetElementPtrInst>(MAI->getPointerOperand());
243 if (!Src) return 0;
244
Chris Lattner7f74a562002-01-20 22:54:45 +0000245 std::vector<Value *> Indices;
Chris Lattnerca081252001-12-14 16:52:21 +0000246
247 // Only special case we have to watch out for is pointer arithmetic on the
248 // 0th index of MAI.
249 unsigned FirstIdx = MAI->getFirstIndexOperandNumber();
250 if (FirstIdx == MAI->getNumOperands() ||
251 (FirstIdx == MAI->getNumOperands()-1 &&
252 MAI->getOperand(FirstIdx) == ConstantUInt::get(Type::UIntTy, 0))) {
253 // Replace the index list on this MAI with the index on the getelementptr
254 Indices.insert(Indices.end(), Src->idx_begin(), Src->idx_end());
255 } else if (*MAI->idx_begin() == ConstantUInt::get(Type::UIntTy, 0)) {
256 // Otherwise we can do the fold if the first index of the GEP is a zero
257 Indices.insert(Indices.end(), Src->idx_begin(), Src->idx_end());
258 Indices.insert(Indices.end(), MAI->idx_begin()+1, MAI->idx_end());
259 }
260
261 if (Indices.empty()) return 0; // Can't do the fold?
262
263 switch (MAI->getOpcode()) {
264 case Instruction::GetElementPtr:
265 return new GetElementPtrInst(Src->getOperand(0), Indices, MAI->getName());
266 case Instruction::Load:
267 return new LoadInst(Src->getOperand(0), Indices, MAI->getName());
268 case Instruction::Store:
Chris Lattnerf40379e2002-04-18 14:43:54 +0000269 return new StoreInst(MAI->getOperand(0), Src->getOperand(0), Indices);
Chris Lattnerca081252001-12-14 16:52:21 +0000270 default:
271 assert(0 && "Unknown memaccessinst!");
272 break;
273 }
274 abort();
275 return 0;
276}
277
Chris Lattnerca081252001-12-14 16:52:21 +0000278
Chris Lattnerc8e66542002-04-27 06:56:12 +0000279bool InstCombiner::runOnFunction(Function *F) {
Chris Lattner260ab202002-04-18 17:39:14 +0000280 bool Changed = false;
Chris Lattnerca081252001-12-14 16:52:21 +0000281
Chris Lattner260ab202002-04-18 17:39:14 +0000282 WorkList.insert(WorkList.end(), inst_begin(F), inst_end(F));
Chris Lattnerca081252001-12-14 16:52:21 +0000283
284 while (!WorkList.empty()) {
285 Instruction *I = WorkList.back(); // Get an instruction from the worklist
286 WorkList.pop_back();
287
288 // Now that we have an instruction, try combining it to simplify it...
Chris Lattner260ab202002-04-18 17:39:14 +0000289 Instruction *Result = visit(I);
290 if (Result) {
291 // Should we replace the old instruction with a new one?
292 if (Result != I)
293 ReplaceInstWithInst(I, Result);
294
295 WorkList.push_back(Result);
296 AddUsesToWorkList(Result);
297 Changed = true;
Chris Lattnerca081252001-12-14 16:52:21 +0000298 }
299 }
300
Chris Lattner260ab202002-04-18 17:39:14 +0000301 return Changed;
Chris Lattner04805fa2002-02-26 21:46:54 +0000302}
303
304Pass *createInstructionCombiningPass() {
Chris Lattner260ab202002-04-18 17:39:14 +0000305 return new InstCombiner();
Chris Lattner04805fa2002-02-26 21:46:54 +0000306}