blob: fb653981597e884f036f9319ac6baf9778bb3ba5 [file] [log] [blame]
Chris Lattnerd32a9612001-11-01 02:42:08 +00001//===- LevelRaise.cpp - Code to change LLVM to higher level -----------------=//
2//
3// This file implements the 'raising' part of the LevelChange API. This is
4// useful because, in general, it makes the LLVM code terser and easier to
Chris Lattner3cc7dde2001-11-26 16:58:14 +00005// analyze.
Chris Lattnerd32a9612001-11-01 02:42:08 +00006//
7//===----------------------------------------------------------------------===//
8
Chris Lattnerbf881002003-09-01 20:45:33 +00009#include "llvm/Transforms/Scalar.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000010#include "llvm/Transforms/Utils/Local.h"
Chris Lattner59cd9f12001-11-04 23:24:06 +000011#include "TransformInternals.h"
Chris Lattnerd32a9612001-11-01 02:42:08 +000012#include "llvm/iOther.h"
13#include "llvm/iMemory.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000014#include "llvm/Pass.h"
Chris Lattner968ddc92002-04-08 20:18:09 +000015#include "llvm/ConstantHandling.h"
Chris Lattnerd5b48ca2001-11-14 11:02:49 +000016#include "llvm/Analysis/Expressions.h"
Chris Lattner3378a5b2002-07-16 23:49:24 +000017#include "llvm/Analysis/Verifier.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000018#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattner3378a5b2002-07-16 23:49:24 +000019#include "Support/CommandLine.h"
Chris Lattner6806f562003-08-01 22:15:03 +000020#include "Support/Debug.h"
21#include "Support/Statistic.h"
22#include "Support/STLExtras.h"
Chris Lattnerd32a9612001-11-01 02:42:08 +000023#include <algorithm>
24
Chris Lattner3378a5b2002-07-16 23:49:24 +000025// StartInst - This enables the -raise-start-inst=foo option to cause the level
26// raising pass to start at instruction "foo", which is immensely useful for
27// debugging!
28//
Chris Lattner5ff62e92002-07-22 02:10:13 +000029static cl::opt<std::string>
30StartInst("raise-start-inst", cl::Hidden, cl::value_desc("inst name"),
31 cl::desc("Start raise pass at the instruction with the specified name"));
Chris Lattner3378a5b2002-07-16 23:49:24 +000032
Chris Lattner5ff62e92002-07-22 02:10:13 +000033static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000034NumLoadStorePeepholes("raise", "Number of load/store peepholes");
Chris Lattner5ff62e92002-07-22 02:10:13 +000035
36static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000037NumGEPInstFormed("raise", "Number of other getelementptr's formed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000038
39static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000040NumExprTreesConv("raise", "Number of expression trees converted");
Chris Lattner5ff62e92002-07-22 02:10:13 +000041
42static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000043NumCastOfCast("raise", "Number of cast-of-self removed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000044
45static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000046NumDCEorCP("raise", "Number of insts DCEd or constprop'd");
Chris Lattner3c019372002-05-10 15:29:25 +000047
Chris Lattner61b92c02002-10-08 22:19:25 +000048static Statistic<>
49NumVarargCallChanges("raise", "Number of vararg call peepholes");
50
Chris Lattner3c019372002-05-10 15:29:25 +000051
Chris Lattnerd32a9612001-11-01 02:42:08 +000052#define PRINT_PEEPHOLE(ID, NUM, I) \
Chris Lattnerb3abf9d2002-05-22 17:27:12 +000053 DEBUG(std::cerr << "Inst P/H " << ID << "[" << NUM << "] " << I)
Chris Lattnerd32a9612001-11-01 02:42:08 +000054
55#define PRINT_PEEPHOLE1(ID, I1) do { PRINT_PEEPHOLE(ID, 0, I1); } while (0)
56#define PRINT_PEEPHOLE2(ID, I1, I2) \
57 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); } while (0)
58#define PRINT_PEEPHOLE3(ID, I1, I2, I3) \
59 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
60 PRINT_PEEPHOLE(ID, 2, I3); } while (0)
Chris Lattnerd5b48ca2001-11-14 11:02:49 +000061#define PRINT_PEEPHOLE4(ID, I1, I2, I3, I4) \
62 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
63 PRINT_PEEPHOLE(ID, 2, I3); PRINT_PEEPHOLE(ID, 3, I4); } while (0)
Chris Lattnerd32a9612001-11-01 02:42:08 +000064
Chris Lattner16125fb2003-04-24 18:25:27 +000065namespace {
66 struct RPR : public FunctionPass {
67 virtual bool runOnFunction(Function &F);
68
69 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
70 AU.setPreservesCFG();
71 AU.addRequired<TargetData>();
72 }
73
74 private:
75 bool DoRaisePass(Function &F);
76 bool PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI);
77 };
78
79 RegisterOpt<RPR> X("raise", "Raise Pointer References");
80}
81
82Pass *createRaisePointerReferencesPass() {
83 return new RPR();
84}
85
86
Chris Lattnerd32a9612001-11-01 02:42:08 +000087
Chris Lattnerd32a9612001-11-01 02:42:08 +000088// isReinterpretingCast - Return true if the cast instruction specified will
89// cause the operand to be "reinterpreted". A value is reinterpreted if the
90// cast instruction would cause the underlying bits to change.
91//
92static inline bool isReinterpretingCast(const CastInst *CI) {
Misha Brukmanf117cc92003-05-20 18:45:36 +000093 return!CI->getOperand(0)->getType()->isLosslesslyConvertibleTo(CI->getType());
Chris Lattnerd32a9612001-11-01 02:42:08 +000094}
95
96
Chris Lattnera8b6d432001-12-05 06:34:00 +000097// Peephole optimize the following instructions:
98// %t1 = cast ? to x *
99// %t2 = add x * %SP, %t1 ;; Constant must be 2nd operand
100//
101// Into: %t3 = getelementptr {<...>} * %SP, <element indices>
102// %t2 = cast <eltype> * %t3 to {<...>}*
103//
104static bool HandleCastToPointer(BasicBlock::iterator BI,
Chris Lattner16125fb2003-04-24 18:25:27 +0000105 const PointerType *DestPTy,
106 const TargetData &TD) {
Chris Lattner7e708292002-06-25 16:13:24 +0000107 CastInst &CI = cast<CastInst>(*BI);
108 if (CI.use_empty()) return false;
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000109
Chris Lattner2d399092003-05-02 19:32:04 +0000110 // Scan all of the uses, looking for any uses that are not add or sub
Chris Lattnera8b6d432001-12-05 06:34:00 +0000111 // instructions. If we have non-adds, do not make this transformation.
112 //
Chris Lattner2d399092003-05-02 19:32:04 +0000113 bool HasSubUse = false; // Keep track of any subtracts...
Chris Lattner7e708292002-06-25 16:13:24 +0000114 for (Value::use_iterator I = CI.use_begin(), E = CI.use_end();
Chris Lattner2d399092003-05-02 19:32:04 +0000115 I != E; ++I)
Chris Lattnera8b6d432001-12-05 06:34:00 +0000116 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(*I)) {
Chris Lattner2d399092003-05-02 19:32:04 +0000117 if ((BO->getOpcode() != Instruction::Add &&
118 BO->getOpcode() != Instruction::Sub) ||
Chris Lattner3fb2ddd2002-07-16 21:41:31 +0000119 // Avoid add sbyte* %X, %X cases...
120 BO->getOperand(0) == BO->getOperand(1))
Chris Lattnera8b6d432001-12-05 06:34:00 +0000121 return false;
Chris Lattner2d399092003-05-02 19:32:04 +0000122 else
123 HasSubUse |= BO->getOpcode() == Instruction::Sub;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000124 } else {
125 return false;
126 }
Chris Lattnera8b6d432001-12-05 06:34:00 +0000127
Chris Lattner697954c2002-01-20 22:54:45 +0000128 std::vector<Value*> Indices;
Chris Lattner7e708292002-06-25 16:13:24 +0000129 Value *Src = CI.getOperand(0);
Misha Brukmanf117cc92003-05-20 18:45:36 +0000130 const Type *Result = ConvertibleToGEP(DestPTy, Src, Indices, TD, &BI);
131 if (Result == 0) return false; // Not convertible...
Chris Lattnera8b6d432001-12-05 06:34:00 +0000132
Chris Lattner2d399092003-05-02 19:32:04 +0000133 // Cannot handle subtracts if there is more than one index required...
134 if (HasSubUse && Indices.size() != 1) return false;
135
Chris Lattnera8b6d432001-12-05 06:34:00 +0000136 PRINT_PEEPHOLE2("cast-add-to-gep:in", Src, CI);
137
138 // If we have a getelementptr capability... transform all of the
139 // add instruction uses into getelementptr's.
Chris Lattner7e708292002-06-25 16:13:24 +0000140 while (!CI.use_empty()) {
141 BinaryOperator *I = cast<BinaryOperator>(*CI.use_begin());
Chris Lattner2d399092003-05-02 19:32:04 +0000142 assert((I->getOpcode() == Instruction::Add ||
143 I->getOpcode() == Instruction::Sub) &&
Chris Lattnera8b6d432001-12-05 06:34:00 +0000144 "Use is not a valid add instruction!");
145
146 // Get the value added to the cast result pointer...
Chris Lattner7e708292002-06-25 16:13:24 +0000147 Value *OtherPtr = I->getOperand((I->getOperand(0) == &CI) ? 1 : 0);
Chris Lattnera8b6d432001-12-05 06:34:00 +0000148
Chris Lattner45ef5c22002-03-21 06:22:23 +0000149 Instruction *GEP = new GetElementPtrInst(OtherPtr, Indices, I->getName());
Chris Lattnera8b6d432001-12-05 06:34:00 +0000150 PRINT_PEEPHOLE1("cast-add-to-gep:i", I);
Chris Lattner45ef5c22002-03-21 06:22:23 +0000151
Chris Lattner2d399092003-05-02 19:32:04 +0000152 // If the instruction is actually a subtract, we are guaranteed to only have
153 // one index (from code above), so we just need to negate the pointer index
154 // long value.
155 if (I->getOpcode() == Instruction::Sub) {
156 Instruction *Neg = BinaryOperator::createNeg(GEP->getOperand(1),
157 GEP->getOperand(1)->getName()+".neg", I);
158 GEP->setOperand(1, Neg);
159 }
160
Chris Lattner45ef5c22002-03-21 06:22:23 +0000161 if (GEP->getType() == I->getType()) {
162 // Replace the old add instruction with the shiny new GEP inst
163 ReplaceInstWithInst(I, GEP);
164 } else {
165 // If the type produced by the gep instruction differs from the original
166 // add instruction type, insert a cast now.
167 //
168
Chris Lattner7e708292002-06-25 16:13:24 +0000169 // Insert the GEP instruction before the old add instruction...
170 I->getParent()->getInstList().insert(I, GEP);
Chris Lattner45ef5c22002-03-21 06:22:23 +0000171
172 PRINT_PEEPHOLE1("cast-add-to-gep:o", GEP);
Chris Lattner7e708292002-06-25 16:13:24 +0000173 GEP = new CastInst(GEP, I->getType());
Chris Lattner45ef5c22002-03-21 06:22:23 +0000174
175 // Replace the old add instruction with the shiny new GEP inst
Chris Lattner7e708292002-06-25 16:13:24 +0000176 ReplaceInstWithInst(I, GEP);
Chris Lattner45ef5c22002-03-21 06:22:23 +0000177 }
178
Chris Lattnera8b6d432001-12-05 06:34:00 +0000179 PRINT_PEEPHOLE1("cast-add-to-gep:o", GEP);
180 }
181 return true;
182}
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000183
184// Peephole optimize the following instructions:
185// %t1 = cast ulong <const int> to {<...>} *
186// %t2 = add {<...>} * %SP, %t1 ;; Constant must be 2nd operand
187//
188// or
189// %t1 = cast {<...>}* %SP to int*
190// %t5 = cast ulong <const int> to int*
191// %t2 = add int* %t1, %t5 ;; int is same size as field
192//
193// Into: %t3 = getelementptr {<...>} * %SP, <element indices>
194// %t2 = cast <eltype> * %t3 to {<...>}*
195//
196static bool PeepholeOptimizeAddCast(BasicBlock *BB, BasicBlock::iterator &BI,
Chris Lattner16125fb2003-04-24 18:25:27 +0000197 Value *AddOp1, CastInst *AddOp2,
198 const TargetData &TD) {
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000199 const CompositeType *CompTy;
200 Value *OffsetVal = AddOp2->getOperand(0);
Chris Lattner0ceeb422002-10-22 23:34:11 +0000201 Value *SrcPtr = 0; // Of type pointer to struct...
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000202
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000203 if ((CompTy = getPointedToComposite(AddOp1->getType()))) {
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000204 SrcPtr = AddOp1; // Handle the first case...
205 } else if (CastInst *AddOp1c = dyn_cast<CastInst>(AddOp1)) {
206 SrcPtr = AddOp1c->getOperand(0); // Handle the second case...
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000207 CompTy = getPointedToComposite(SrcPtr->getType());
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000208 }
209
210 // Only proceed if we have detected all of our conditions successfully...
Chris Lattner0c4e8862002-09-03 01:08:28 +0000211 if (!CompTy || !SrcPtr || !OffsetVal->getType()->isInteger())
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000212 return false;
213
Chris Lattner697954c2002-01-20 22:54:45 +0000214 std::vector<Value*> Indices;
Misha Brukmanf117cc92003-05-20 18:45:36 +0000215 if (!ConvertibleToGEP(SrcPtr->getType(), OffsetVal, Indices, TD, &BI))
216 return false; // Not convertible... perhaps next time
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000217
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000218 if (getPointedToComposite(AddOp1->getType())) { // case 1
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000219 PRINT_PEEPHOLE2("add-to-gep1:in", AddOp2, *BI);
220 } else {
221 PRINT_PEEPHOLE3("add-to-gep2:in", AddOp1, AddOp2, *BI);
222 }
223
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000224 GetElementPtrInst *GEP = new GetElementPtrInst(SrcPtr, Indices,
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000225 AddOp2->getName(), BI);
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000226
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000227 Instruction *NCI = new CastInst(GEP, AddOp1->getType());
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000228 ReplaceInstWithInst(BB->getInstList(), BI, NCI);
229 PRINT_PEEPHOLE2("add-to-gep:out", GEP, NCI);
230 return true;
231}
232
Chris Lattner16125fb2003-04-24 18:25:27 +0000233bool RPR::PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI) {
Chris Lattner7e708292002-06-25 16:13:24 +0000234 Instruction *I = BI;
Chris Lattner16125fb2003-04-24 18:25:27 +0000235 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattnerd32a9612001-11-01 02:42:08 +0000236
237 if (CastInst *CI = dyn_cast<CastInst>(I)) {
238 Value *Src = CI->getOperand(0);
239 Instruction *SrcI = dyn_cast<Instruction>(Src); // Nonnull if instr source
240 const Type *DestTy = CI->getType();
241
Chris Lattnere99c66b2001-11-01 17:05:27 +0000242 // Peephole optimize the following instruction:
243 // %V2 = cast <ty> %V to <ty>
244 //
245 // Into: <nothing>
246 //
247 if (DestTy == Src->getType()) { // Check for a cast to same type as src!!
Chris Lattnerd32a9612001-11-01 02:42:08 +0000248 PRINT_PEEPHOLE1("cast-of-self-ty", CI);
249 CI->replaceAllUsesWith(Src);
250 if (!Src->hasName() && CI->hasName()) {
Chris Lattner697954c2002-01-20 22:54:45 +0000251 std::string Name = CI->getName();
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000252 CI->setName("");
Chris Lattner6e6026b2002-11-20 18:36:02 +0000253 Src->setName(Name, &BB->getParent()->getSymbolTable());
Chris Lattnerd32a9612001-11-01 02:42:08 +0000254 }
Chris Lattner3c019372002-05-10 15:29:25 +0000255
256 // DCE the instruction now, to avoid having the iterative version of DCE
257 // have to worry about it.
258 //
Chris Lattner7e708292002-06-25 16:13:24 +0000259 BI = BB->getInstList().erase(BI);
Chris Lattner3c019372002-05-10 15:29:25 +0000260
261 ++NumCastOfCast;
Chris Lattnerd32a9612001-11-01 02:42:08 +0000262 return true;
263 }
264
Chris Lattnerd32a9612001-11-01 02:42:08 +0000265 // Check to see if it's a cast of an instruction that does not depend on the
266 // specific type of the operands to do it's job.
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000267 if (!isReinterpretingCast(CI)) {
Chris Lattnerb980e182001-11-04 21:32:11 +0000268 ValueTypeCache ConvertedTypes;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000269
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000270 // Check to see if we can convert the source of the cast to match the
271 // destination type of the cast...
Chris Lattnera8b6d432001-12-05 06:34:00 +0000272 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000273 ConvertedTypes[CI] = CI->getType(); // Make sure the cast doesn't change
Misha Brukmanf117cc92003-05-20 18:45:36 +0000274 if (ExpressionConvertibleToType(Src, DestTy, ConvertedTypes, TD)) {
Chris Lattnerd5543802001-12-14 16:37:52 +0000275 PRINT_PEEPHOLE3("CAST-SRC-EXPR-CONV:in ", Src, CI, BB->getParent());
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000276
Chris Lattner6806f562003-08-01 22:15:03 +0000277 DEBUG(std::cerr << "\nCONVERTING SRC EXPR TYPE:\n");
Chris Lattnerb1b42622002-07-17 17:11:33 +0000278 { // ValueMap must be destroyed before function verified!
279 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000280 Value *E = ConvertExpressionToType(Src, DestTy, ValueMap, TD);
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000281
Chris Lattnerb1b42622002-07-17 17:11:33 +0000282 if (Constant *CPV = dyn_cast<Constant>(E))
283 CI->replaceAllUsesWith(CPV);
284
285 PRINT_PEEPHOLE1("CAST-SRC-EXPR-CONV:out", E);
Chris Lattner6806f562003-08-01 22:15:03 +0000286 DEBUG(std::cerr << "DONE CONVERTING SRC EXPR TYPE: \n"
287 << BB->getParent());
Chris Lattnerb1b42622002-07-17 17:11:33 +0000288 }
Chris Lattner3378a5b2002-07-16 23:49:24 +0000289
290 DEBUG(assert(verifyFunction(*BB->getParent()) == false &&
291 "Function broken!"));
Chris Lattnerb1b42622002-07-17 17:11:33 +0000292 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000293 ++NumExprTreesConv;
Chris Lattnerd5543802001-12-14 16:37:52 +0000294 return true;
295 }
296
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000297 // Check to see if we can convert the users of the cast value to match the
298 // source type of the cast...
Chris Lattnerd5543802001-12-14 16:37:52 +0000299 //
300 ConvertedTypes.clear();
Chris Lattner61b92c02002-10-08 22:19:25 +0000301 // Make sure the source doesn't change type
302 ConvertedTypes[Src] = Src->getType();
Misha Brukmanf117cc92003-05-20 18:45:36 +0000303 if (ValueConvertibleToType(CI, Src->getType(), ConvertedTypes, TD)) {
Chris Lattnerd5543802001-12-14 16:37:52 +0000304 PRINT_PEEPHOLE3("CAST-DEST-EXPR-CONV:in ", Src, CI, BB->getParent());
305
Chris Lattner6806f562003-08-01 22:15:03 +0000306 DEBUG(std::cerr << "\nCONVERTING EXPR TYPE:\n");
Chris Lattnerb1b42622002-07-17 17:11:33 +0000307 { // ValueMap must be destroyed before function verified!
308 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000309 ConvertValueToNewType(CI, Src, ValueMap, TD); // This will delete CI!
Chris Lattnerb1b42622002-07-17 17:11:33 +0000310 }
Chris Lattnerd5543802001-12-14 16:37:52 +0000311
Chris Lattnerd5543802001-12-14 16:37:52 +0000312 PRINT_PEEPHOLE1("CAST-DEST-EXPR-CONV:out", Src);
Chris Lattner6806f562003-08-01 22:15:03 +0000313 DEBUG(std::cerr << "DONE CONVERTING EXPR TYPE: \n\n" << BB->getParent());
Chris Lattner3378a5b2002-07-16 23:49:24 +0000314
315 DEBUG(assert(verifyFunction(*BB->getParent()) == false &&
316 "Function broken!"));
Chris Lattnerb1b42622002-07-17 17:11:33 +0000317 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000318 ++NumExprTreesConv;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000319 return true;
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000320 }
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000321 }
322
323 // Otherwise find out it this cast is a cast to a pointer type, which is
324 // then added to some other pointer, then loaded or stored through. If
325 // so, convert the add into a getelementptr instruction...
326 //
327 if (const PointerType *DestPTy = dyn_cast<PointerType>(DestTy)) {
Chris Lattner16125fb2003-04-24 18:25:27 +0000328 if (HandleCastToPointer(BI, DestPTy, TD)) {
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000329 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000330 ++NumGEPInstFormed;
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000331 return true;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000332 }
Chris Lattnerd32a9612001-11-01 02:42:08 +0000333 }
334
Chris Lattnere99c66b2001-11-01 17:05:27 +0000335 // Check to see if we are casting from a structure pointer to a pointer to
336 // the first element of the structure... to avoid munching other peepholes,
337 // we only let this happen if there are no add uses of the cast.
338 //
339 // Peephole optimize the following instructions:
340 // %t1 = cast {<...>} * %StructPtr to <ty> *
341 //
342 // Into: %t2 = getelementptr {<...>} * %StructPtr, <0, 0, 0, ...>
343 // %t1 = cast <eltype> * %t1 to <ty> *
344 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000345 if (const CompositeType *CTy = getPointedToComposite(Src->getType()))
Chris Lattnere99c66b2001-11-01 17:05:27 +0000346 if (const PointerType *DestPTy = dyn_cast<PointerType>(DestTy)) {
347
348 // Loop over uses of the cast, checking for add instructions. If an add
349 // exists, this is probably a part of a more complex GEP, so we don't
350 // want to mess around with the cast.
351 //
352 bool HasAddUse = false;
353 for (Value::use_iterator I = CI->use_begin(), E = CI->use_end();
354 I != E; ++I)
355 if (isa<Instruction>(*I) &&
356 cast<Instruction>(*I)->getOpcode() == Instruction::Add) {
357 HasAddUse = true; break;
358 }
359
360 // If it doesn't have an add use, check to see if the dest type is
Misha Brukmanf117cc92003-05-20 18:45:36 +0000361 // losslessly convertible to one of the types in the start of the struct
Chris Lattnere99c66b2001-11-01 17:05:27 +0000362 // type.
363 //
364 if (!HasAddUse) {
Chris Lattner7a176752001-12-04 00:03:30 +0000365 const Type *DestPointedTy = DestPTy->getElementType();
Chris Lattnere99c66b2001-11-01 17:05:27 +0000366 unsigned Depth = 1;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000367 const CompositeType *CurCTy = CTy;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000368 const Type *ElTy = 0;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000369
370 // Build the index vector, full of all zeros
Chris Lattner697954c2002-01-20 22:54:45 +0000371 std::vector<Value*> Indices;
Chris Lattner106ff452002-09-11 01:21:29 +0000372 Indices.push_back(ConstantSInt::get(Type::LongTy, 0));
Chris Lattnerd5543802001-12-14 16:37:52 +0000373 while (CurCTy && !isa<PointerType>(CurCTy)) {
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000374 if (const StructType *CurSTy = dyn_cast<StructType>(CurCTy)) {
375 // Check for a zero element struct type... if we have one, bail.
376 if (CurSTy->getElementTypes().size() == 0) break;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000377
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000378 // Grab the first element of the struct type, which must lie at
379 // offset zero in the struct.
380 //
381 ElTy = CurSTy->getElementTypes()[0];
382 } else {
383 ElTy = cast<ArrayType>(CurCTy)->getElementType();
384 }
385
386 // Insert a zero to index through this type...
Chris Lattner106ff452002-09-11 01:21:29 +0000387 Indices.push_back(Constant::getNullValue(CurCTy->getIndexType()));
Chris Lattnere99c66b2001-11-01 17:05:27 +0000388
389 // Did we find what we're looking for?
Misha Brukmanf117cc92003-05-20 18:45:36 +0000390 if (ElTy->isLosslesslyConvertibleTo(DestPointedTy)) break;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000391
392 // Nope, go a level deeper.
393 ++Depth;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000394 CurCTy = dyn_cast<CompositeType>(ElTy);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000395 ElTy = 0;
396 }
397
398 // Did we find what we were looking for? If so, do the transformation
399 if (ElTy) {
400 PRINT_PEEPHOLE1("cast-for-first:in", CI);
401
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000402 std::string Name = CI->getName(); CI->setName("");
403
Chris Lattnere99c66b2001-11-01 17:05:27 +0000404 // Insert the new T cast instruction... stealing old T's name
405 GetElementPtrInst *GEP = new GetElementPtrInst(Src, Indices,
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000406 Name, BI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000407
408 // Make the old cast instruction reference the new GEP instead of
409 // the old src value.
410 //
411 CI->setOperand(0, GEP);
412
413 PRINT_PEEPHOLE2("cast-for-first:out", GEP, CI);
Chris Lattner3c019372002-05-10 15:29:25 +0000414 ++NumGEPInstFormed;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000415 return true;
416 }
417 }
418 }
Chris Lattnere99c66b2001-11-01 17:05:27 +0000419
Chris Lattner8d38e542001-11-01 03:12:34 +0000420 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
421 Value *Val = SI->getOperand(0);
Chris Lattner65ea1712001-11-14 11:27:58 +0000422 Value *Pointer = SI->getPointerOperand();
Chris Lattner8d38e542001-11-01 03:12:34 +0000423
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000424 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000425 // %t = cast <T1>* %P to <T2> * ;; If T1 is losslessly convertible to T2
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000426 // store <T2> %V, <T2>* %t
427 //
428 // Into:
429 // %t = cast <T2> %V to <T1>
430 // store <T1> %t2, <T1>* %P
431 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000432 // Note: This is not taken care of by expr conversion because there might
433 // not be a cast available for the store to convert the incoming value of.
434 // This code is basically here to make sure that pointers don't have casts
435 // if possible.
436 //
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000437 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
438 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000439 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000440 // convertible types?
441 if (Val->getType()->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000442 PRINT_PEEPHOLE3("st-src-cast:in ", Pointer, Val, SI);
443
444 // Insert the new T cast instruction... stealing old T's name
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000445 std::string Name(CI->getName()); CI->setName("");
Chris Lattner7a176752001-12-04 00:03:30 +0000446 CastInst *NCI = new CastInst(Val, CSPT->getElementType(),
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000447 Name, BI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000448
449 // Replace the old store with a new one!
450 ReplaceInstWithInst(BB->getInstList(), BI,
451 SI = new StoreInst(NCI, CastSrc));
452 PRINT_PEEPHOLE3("st-src-cast:out", NCI, CastSrc, SI);
Chris Lattner3c019372002-05-10 15:29:25 +0000453 ++NumLoadStorePeepholes;
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000454 return true;
455 }
456
Chris Lattnerc99428f2002-05-14 05:23:45 +0000457 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
458 Value *Pointer = LI->getOperand(0);
459 const Type *PtrElType =
460 cast<PointerType>(Pointer->getType())->getElementType();
461
462 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000463 // %Val = cast <T1>* to <T2>* ;; If T1 is losslessly convertible to T2
Chris Lattnerc99428f2002-05-14 05:23:45 +0000464 // %t = load <T2>* %P
465 //
466 // Into:
467 // %t = load <T1>* %P
468 // %Val = cast <T1> to <T2>
469 //
470 // Note: This is not taken care of by expr conversion because there might
471 // not be a cast available for the store to convert the incoming value of.
472 // This code is basically here to make sure that pointers don't have casts
473 // if possible.
474 //
475 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
476 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000477 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000478 // convertible types?
479 if (PtrElType->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattnerc99428f2002-05-14 05:23:45 +0000480 PRINT_PEEPHOLE2("load-src-cast:in ", Pointer, LI);
481
482 // Create the new load instruction... loading the pre-casted value
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000483 LoadInst *NewLI = new LoadInst(CastSrc, LI->getName(), BI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000484
485 // Insert the new T cast instruction... stealing old T's name
486 CastInst *NCI = new CastInst(NewLI, LI->getType(), CI->getName());
Chris Lattnerc99428f2002-05-14 05:23:45 +0000487
488 // Replace the old store with a new one!
489 ReplaceInstWithInst(BB->getInstList(), BI, NCI);
490 PRINT_PEEPHOLE3("load-src-cast:out", NCI, CastSrc, NewLI);
491 ++NumLoadStorePeepholes;
492 return true;
493 }
494
Chris Lattnerd32a9612001-11-01 02:42:08 +0000495 } else if (I->getOpcode() == Instruction::Add &&
496 isa<CastInst>(I->getOperand(1))) {
497
Chris Lattnerd5b48ca2001-11-14 11:02:49 +0000498 if (PeepholeOptimizeAddCast(BB, BI, I->getOperand(0),
Chris Lattner16125fb2003-04-24 18:25:27 +0000499 cast<CastInst>(I->getOperand(1)), TD)) {
Chris Lattner3c019372002-05-10 15:29:25 +0000500 ++NumGEPInstFormed;
Chris Lattnerd32a9612001-11-01 02:42:08 +0000501 return true;
Chris Lattner3c019372002-05-10 15:29:25 +0000502 }
Chris Lattner61b92c02002-10-08 22:19:25 +0000503 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
504 // If we have a call with all varargs arguments, convert the call to use the
505 // actual argument types present...
506 //
507 const PointerType *PTy = cast<PointerType>(CI->getCalledValue()->getType());
508 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
509
510 // Is the call to a vararg variable with no real parameters?
Chris Lattnercdeb81d2003-05-01 21:02:53 +0000511 if (FTy->isVarArg() && FTy->getNumParams() == 0 &&
512 !CI->getCalledFunction()) {
Chris Lattner61b92c02002-10-08 22:19:25 +0000513 // If so, insert a new cast instruction, casting it to a function type
514 // that matches the current arguments...
515 //
516 std::vector<const Type *> Params; // Parameter types...
517 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
518 Params.push_back(CI->getOperand(i)->getType());
519
520 FunctionType *NewFT = FunctionType::get(FTy->getReturnType(),
521 Params, false);
522 PointerType *NewPFunTy = PointerType::get(NewFT);
523
524 // Create a new cast, inserting it right before the function call...
Chris Lattner95549282003-04-28 01:25:38 +0000525 Value *NewCast;
526 Constant *ConstantCallSrc = 0;
527 if (Constant *CS = dyn_cast<Constant>(CI->getCalledValue()))
528 ConstantCallSrc = CS;
529 else if (GlobalValue *GV = dyn_cast<GlobalValue>(CI->getCalledValue()))
530 ConstantCallSrc = ConstantPointerRef::get(GV);
531
532 if (ConstantCallSrc)
533 NewCast = ConstantExpr::getCast(ConstantCallSrc, NewPFunTy);
534 else
535 NewCast = new CastInst(CI->getCalledValue(), NewPFunTy,
536 CI->getCalledValue()->getName()+"_c",CI);
Chris Lattner61b92c02002-10-08 22:19:25 +0000537
538 // Create a new call instruction...
539 CallInst *NewCall = new CallInst(NewCast,
540 std::vector<Value*>(CI->op_begin()+1, CI->op_end()));
541 ++BI;
542 ReplaceInstWithInst(CI, NewCall);
543
544 ++NumVarargCallChanges;
545 return true;
546 }
547
Chris Lattnerd32a9612001-11-01 02:42:08 +0000548 }
549
550 return false;
551}
552
553
554
555
Chris Lattner16125fb2003-04-24 18:25:27 +0000556bool RPR::DoRaisePass(Function &F) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000557 bool Changed = false;
Chris Lattner7e708292002-06-25 16:13:24 +0000558 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattnerd32a9612001-11-01 02:42:08 +0000559 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Chris Lattner6806f562003-08-01 22:15:03 +0000560 DEBUG(std::cerr << "Processing: " << *BI);
Misha Brukman82c89b92003-05-20 21:01:22 +0000561 if (dceInstruction(BI) || doConstantPropagation(BI)) {
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000562 Changed = true;
Chris Lattner3c019372002-05-10 15:29:25 +0000563 ++NumDCEorCP;
Chris Lattner6806f562003-08-01 22:15:03 +0000564 DEBUG(std::cerr << "***\t\t^^-- Dead code eliminated!\n");
Chris Lattner7e708292002-06-25 16:13:24 +0000565 } else if (PeepholeOptimize(BB, BI)) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000566 Changed = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000567 } else {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000568 ++BI;
Chris Lattner7e708292002-06-25 16:13:24 +0000569 }
Chris Lattnerd32a9612001-11-01 02:42:08 +0000570 }
Chris Lattner7e708292002-06-25 16:13:24 +0000571
Chris Lattnerd32a9612001-11-01 02:42:08 +0000572 return Changed;
573}
574
575
Chris Lattner16125fb2003-04-24 18:25:27 +0000576// runOnFunction - Raise a function representation to a higher level.
577bool RPR::runOnFunction(Function &F) {
Chris Lattner6806f562003-08-01 22:15:03 +0000578 DEBUG(std::cerr << "\n\n\nStarting to work on Function '" << F.getName()
579 << "'\n");
Chris Lattner68b07b72001-11-01 07:00:51 +0000580
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000581 // Insert casts for all incoming pointer pointer values that are treated as
582 // arrays...
Chris Lattnerd32a9612001-11-01 02:42:08 +0000583 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000584 bool Changed = false, LocalChange;
Chris Lattner3378a5b2002-07-16 23:49:24 +0000585
586 // If the StartInst option was specified, then Peephole optimize that
587 // instruction first if it occurs in this function.
588 //
589 if (!StartInst.empty()) {
590 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
591 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end(); ++BI)
592 if (BI->getName() == StartInst) {
593 bool SavedDebug = DebugFlag; // Save the DEBUG() controlling flag.
594 DebugFlag = true; // Turn on DEBUG's
595 Changed |= PeepholeOptimize(BB, BI);
596 DebugFlag = SavedDebug; // Restore DebugFlag to previous state
597 }
598 }
599
Chris Lattner4b770a32001-12-04 08:12:53 +0000600 do {
Chris Lattner6806f562003-08-01 22:15:03 +0000601 DEBUG(std::cerr << "Looping: \n" << F);
Chris Lattnera8b6d432001-12-05 06:34:00 +0000602
Chris Lattnerf57b8452002-04-27 06:56:12 +0000603 // Iterate over the function, refining it, until it converges on a stable
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000604 // state
Chris Lattnerd5543802001-12-14 16:37:52 +0000605 LocalChange = false;
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000606 while (DoRaisePass(F)) LocalChange = true;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000607 Changed |= LocalChange;
608
609 } while (LocalChange);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000610
611 return Changed;
612}