blob: 77136099078f1076156d31da844a29a09f7f281c [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===- LevelRaise.cpp - Code to change LLVM to higher level ---------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerd32a9612001-11-01 02:42:08 +00009//
10// This file implements the 'raising' part of the LevelChange API. This is
11// useful because, in general, it makes the LLVM code terser and easier to
Chris Lattner3cc7dde2001-11-26 16:58:14 +000012// analyze.
Chris Lattnerd32a9612001-11-01 02:42:08 +000013//
14//===----------------------------------------------------------------------===//
15
Chris Lattnerbf881002003-09-01 20:45:33 +000016#include "llvm/Transforms/Scalar.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000017#include "llvm/Transforms/Utils/Local.h"
Chris Lattner59cd9f12001-11-04 23:24:06 +000018#include "TransformInternals.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000019#include "llvm/Instructions.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000020#include "llvm/Pass.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000021#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000022#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/Debug.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/ADT/STLExtras.h"
Chris Lattnerd32a9612001-11-01 02:42:08 +000026#include <algorithm>
Chris Lattnere7999022003-12-23 07:43:38 +000027using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000028
Chris Lattner3378a5b2002-07-16 23:49:24 +000029// StartInst - This enables the -raise-start-inst=foo option to cause the level
30// raising pass to start at instruction "foo", which is immensely useful for
31// debugging!
32//
Chris Lattner5ff62e92002-07-22 02:10:13 +000033static cl::opt<std::string>
34StartInst("raise-start-inst", cl::Hidden, cl::value_desc("inst name"),
35 cl::desc("Start raise pass at the instruction with the specified name"));
Chris Lattner3378a5b2002-07-16 23:49:24 +000036
Chris Lattner5ff62e92002-07-22 02:10:13 +000037static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000038NumLoadStorePeepholes("raise", "Number of load/store peepholes");
Chris Lattner5ff62e92002-07-22 02:10:13 +000039
Misha Brukmanfd939082005-04-21 23:48:37 +000040static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000041NumGEPInstFormed("raise", "Number of other getelementptr's formed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000042
43static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000044NumExprTreesConv("raise", "Number of expression trees converted");
Chris Lattner5ff62e92002-07-22 02:10:13 +000045
46static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000047NumCastOfCast("raise", "Number of cast-of-self removed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000048
49static Statistic<>
Chris Lattner6ee6bbe2002-10-01 22:38:37 +000050NumDCEorCP("raise", "Number of insts DCEd or constprop'd");
Chris Lattner3c019372002-05-10 15:29:25 +000051
Chris Lattner61b92c02002-10-08 22:19:25 +000052static Statistic<>
53NumVarargCallChanges("raise", "Number of vararg call peepholes");
54
Chris Lattnerd32a9612001-11-01 02:42:08 +000055#define PRINT_PEEPHOLE(ID, NUM, I) \
Bill Wendling62c804a2006-11-26 09:17:06 +000056 DOUT << "Inst P/H " << ID << "[" << NUM << "] " << I
Chris Lattnerd32a9612001-11-01 02:42:08 +000057
58#define PRINT_PEEPHOLE1(ID, I1) do { PRINT_PEEPHOLE(ID, 0, I1); } while (0)
59#define PRINT_PEEPHOLE2(ID, I1, I2) \
60 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); } while (0)
61#define PRINT_PEEPHOLE3(ID, I1, I2, I3) \
62 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
63 PRINT_PEEPHOLE(ID, 2, I3); } while (0)
Chris Lattnerd5b48ca2001-11-14 11:02:49 +000064#define PRINT_PEEPHOLE4(ID, I1, I2, I3, I4) \
65 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
66 PRINT_PEEPHOLE(ID, 2, I3); PRINT_PEEPHOLE(ID, 3, I4); } while (0)
Chris Lattnerd32a9612001-11-01 02:42:08 +000067
Chris Lattner16125fb2003-04-24 18:25:27 +000068namespace {
69 struct RPR : public FunctionPass {
70 virtual bool runOnFunction(Function &F);
71
72 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
73 AU.setPreservesCFG();
74 AU.addRequired<TargetData>();
75 }
76
77 private:
78 bool DoRaisePass(Function &F);
79 bool PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI);
80 };
81
Chris Lattner7f8897f2006-08-27 22:42:52 +000082 RegisterPass<RPR> X("raise", "Raise Pointer References");
Chris Lattner16125fb2003-04-24 18:25:27 +000083}
84
Brian Gaeked0fde302003-11-11 22:41:34 +000085
Chris Lattnerded6d0c2004-09-20 04:43:57 +000086FunctionPass *llvm::createRaisePointerReferencesPass() {
Chris Lattner16125fb2003-04-24 18:25:27 +000087 return new RPR();
88}
89
90
Chris Lattnerd32a9612001-11-01 02:42:08 +000091// isReinterpretingCast - Return true if the cast instruction specified will
92// cause the operand to be "reinterpreted". A value is reinterpreted if the
93// cast instruction would cause the underlying bits to change.
94//
95static inline bool isReinterpretingCast(const CastInst *CI) {
Misha Brukmanf117cc92003-05-20 18:45:36 +000096 return!CI->getOperand(0)->getType()->isLosslesslyConvertibleTo(CI->getType());
Chris Lattnerd32a9612001-11-01 02:42:08 +000097}
98
Chris Lattner16125fb2003-04-24 18:25:27 +000099bool RPR::PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI) {
Chris Lattner7e708292002-06-25 16:13:24 +0000100 Instruction *I = BI;
Chris Lattner16125fb2003-04-24 18:25:27 +0000101 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattnerd32a9612001-11-01 02:42:08 +0000102
103 if (CastInst *CI = dyn_cast<CastInst>(I)) {
104 Value *Src = CI->getOperand(0);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000105 const Type *DestTy = CI->getType();
106
Chris Lattnere99c66b2001-11-01 17:05:27 +0000107 // Peephole optimize the following instruction:
108 // %V2 = cast <ty> %V to <ty>
109 //
110 // Into: <nothing>
111 //
112 if (DestTy == Src->getType()) { // Check for a cast to same type as src!!
Chris Lattner30b43442004-07-15 02:06:12 +0000113 PRINT_PEEPHOLE1("cast-of-self-ty", *CI);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000114 CI->replaceAllUsesWith(Src);
115 if (!Src->hasName() && CI->hasName()) {
Chris Lattner697954c2002-01-20 22:54:45 +0000116 std::string Name = CI->getName();
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000117 CI->setName("");
Chris Lattner7acff252005-03-05 19:05:20 +0000118 Src->setName(Name);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000119 }
Chris Lattner3c019372002-05-10 15:29:25 +0000120
121 // DCE the instruction now, to avoid having the iterative version of DCE
122 // have to worry about it.
123 //
Chris Lattner7e708292002-06-25 16:13:24 +0000124 BI = BB->getInstList().erase(BI);
Chris Lattner3c019372002-05-10 15:29:25 +0000125
126 ++NumCastOfCast;
Chris Lattnerd32a9612001-11-01 02:42:08 +0000127 return true;
128 }
129
Chris Lattnerd32a9612001-11-01 02:42:08 +0000130 // Check to see if it's a cast of an instruction that does not depend on the
131 // specific type of the operands to do it's job.
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000132 if (!isReinterpretingCast(CI)) {
Chris Lattnerb980e182001-11-04 21:32:11 +0000133 ValueTypeCache ConvertedTypes;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000134
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000135 // Check to see if we can convert the source of the cast to match the
136 // destination type of the cast...
Chris Lattnera8b6d432001-12-05 06:34:00 +0000137 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000138 ConvertedTypes[CI] = CI->getType(); // Make sure the cast doesn't change
Misha Brukmanf117cc92003-05-20 18:45:36 +0000139 if (ExpressionConvertibleToType(Src, DestTy, ConvertedTypes, TD)) {
Chris Lattner30b43442004-07-15 02:06:12 +0000140 PRINT_PEEPHOLE3("CAST-SRC-EXPR-CONV:in ", *Src, *CI, *BB->getParent());
Misha Brukmanfd939082005-04-21 23:48:37 +0000141
Bill Wendling62c804a2006-11-26 09:17:06 +0000142 DOUT << "\nCONVERTING SRC EXPR TYPE:\n";
Chris Lattnerb1b42622002-07-17 17:11:33 +0000143 { // ValueMap must be destroyed before function verified!
144 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000145 Value *E = ConvertExpressionToType(Src, DestTy, ValueMap, TD);
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000146
Chris Lattnerb1b42622002-07-17 17:11:33 +0000147 if (Constant *CPV = dyn_cast<Constant>(E))
148 CI->replaceAllUsesWith(CPV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000149
Chris Lattner30b43442004-07-15 02:06:12 +0000150 PRINT_PEEPHOLE1("CAST-SRC-EXPR-CONV:out", *E);
Bill Wendling62c804a2006-11-26 09:17:06 +0000151 DOUT << "DONE CONVERTING SRC EXPR TYPE: \n"
152 << *BB->getParent();
Chris Lattnerb1b42622002-07-17 17:11:33 +0000153 }
Chris Lattner3378a5b2002-07-16 23:49:24 +0000154
Chris Lattnerb1b42622002-07-17 17:11:33 +0000155 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000156 ++NumExprTreesConv;
Chris Lattnerd5543802001-12-14 16:37:52 +0000157 return true;
158 }
159
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000160 // Check to see if we can convert the users of the cast value to match the
161 // source type of the cast...
Chris Lattnerd5543802001-12-14 16:37:52 +0000162 //
163 ConvertedTypes.clear();
Chris Lattner61b92c02002-10-08 22:19:25 +0000164 // Make sure the source doesn't change type
165 ConvertedTypes[Src] = Src->getType();
Misha Brukmanf117cc92003-05-20 18:45:36 +0000166 if (ValueConvertibleToType(CI, Src->getType(), ConvertedTypes, TD)) {
Chris Lattner5e2e2722004-08-08 01:27:56 +0000167 //PRINT_PEEPHOLE3("CAST-DEST-EXPR-CONV:in ", *Src, *CI,
168 // *BB->getParent());
Chris Lattnerd5543802001-12-14 16:37:52 +0000169
Bill Wendling62c804a2006-11-26 09:17:06 +0000170 DOUT << "\nCONVERTING EXPR TYPE:\n";
Chris Lattnerb1b42622002-07-17 17:11:33 +0000171 { // ValueMap must be destroyed before function verified!
172 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000173 ConvertValueToNewType(CI, Src, ValueMap, TD); // This will delete CI!
Chris Lattnerb1b42622002-07-17 17:11:33 +0000174 }
Chris Lattnerd5543802001-12-14 16:37:52 +0000175
Chris Lattner30b43442004-07-15 02:06:12 +0000176 PRINT_PEEPHOLE1("CAST-DEST-EXPR-CONV:out", *Src);
Bill Wendling62c804a2006-11-26 09:17:06 +0000177 DOUT << "DONE CONVERTING EXPR TYPE: \n\n" << *BB->getParent();
Chris Lattner3378a5b2002-07-16 23:49:24 +0000178
Chris Lattnerb1b42622002-07-17 17:11:33 +0000179 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000180 ++NumExprTreesConv;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000181 return true;
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000182 }
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000183 }
184
Chris Lattnere99c66b2001-11-01 17:05:27 +0000185 // Check to see if we are casting from a structure pointer to a pointer to
186 // the first element of the structure... to avoid munching other peepholes,
187 // we only let this happen if there are no add uses of the cast.
188 //
189 // Peephole optimize the following instructions:
190 // %t1 = cast {<...>} * %StructPtr to <ty> *
191 //
192 // Into: %t2 = getelementptr {<...>} * %StructPtr, <0, 0, 0, ...>
193 // %t1 = cast <eltype> * %t1 to <ty> *
194 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000195 if (const CompositeType *CTy = getPointedToComposite(Src->getType()))
Chris Lattnere99c66b2001-11-01 17:05:27 +0000196 if (const PointerType *DestPTy = dyn_cast<PointerType>(DestTy)) {
197
198 // Loop over uses of the cast, checking for add instructions. If an add
199 // exists, this is probably a part of a more complex GEP, so we don't
200 // want to mess around with the cast.
201 //
202 bool HasAddUse = false;
203 for (Value::use_iterator I = CI->use_begin(), E = CI->use_end();
204 I != E; ++I)
205 if (isa<Instruction>(*I) &&
206 cast<Instruction>(*I)->getOpcode() == Instruction::Add) {
207 HasAddUse = true; break;
208 }
209
210 // If it doesn't have an add use, check to see if the dest type is
Misha Brukmanf117cc92003-05-20 18:45:36 +0000211 // losslessly convertible to one of the types in the start of the struct
Chris Lattnere99c66b2001-11-01 17:05:27 +0000212 // type.
213 //
214 if (!HasAddUse) {
Chris Lattner7a176752001-12-04 00:03:30 +0000215 const Type *DestPointedTy = DestPTy->getElementType();
Chris Lattnere99c66b2001-11-01 17:05:27 +0000216 unsigned Depth = 1;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000217 const CompositeType *CurCTy = CTy;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000218 const Type *ElTy = 0;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000219
220 // Build the index vector, full of all zeros
Chris Lattner697954c2002-01-20 22:54:45 +0000221 std::vector<Value*> Indices;
Chris Lattner559d5192004-01-09 05:53:38 +0000222
Chris Lattner28977af2004-04-05 01:30:19 +0000223 Indices.push_back(Constant::getNullValue(Type::UIntTy));
Chris Lattnerd5543802001-12-14 16:37:52 +0000224 while (CurCTy && !isa<PointerType>(CurCTy)) {
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000225 if (const StructType *CurSTy = dyn_cast<StructType>(CurCTy)) {
226 // Check for a zero element struct type... if we have one, bail.
Chris Lattnerd21cd802004-02-09 04:37:31 +0000227 if (CurSTy->getNumElements() == 0) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000228
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000229 // Grab the first element of the struct type, which must lie at
230 // offset zero in the struct.
231 //
Chris Lattnerd21cd802004-02-09 04:37:31 +0000232 ElTy = CurSTy->getElementType(0);
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000233 } else {
Chris Lattner7d719c32005-01-19 16:16:35 +0000234 ElTy = cast<SequentialType>(CurCTy)->getElementType();
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000235 }
236
237 // Insert a zero to index through this type...
Chris Lattner28977af2004-04-05 01:30:19 +0000238 Indices.push_back(Constant::getNullValue(Type::UIntTy));
Chris Lattnere99c66b2001-11-01 17:05:27 +0000239
240 // Did we find what we're looking for?
Misha Brukmanf117cc92003-05-20 18:45:36 +0000241 if (ElTy->isLosslesslyConvertibleTo(DestPointedTy)) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000242
Chris Lattnere99c66b2001-11-01 17:05:27 +0000243 // Nope, go a level deeper.
244 ++Depth;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000245 CurCTy = dyn_cast<CompositeType>(ElTy);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000246 ElTy = 0;
247 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000248
Chris Lattnere99c66b2001-11-01 17:05:27 +0000249 // Did we find what we were looking for? If so, do the transformation
250 if (ElTy) {
Chris Lattner30b43442004-07-15 02:06:12 +0000251 PRINT_PEEPHOLE1("cast-for-first:in", *CI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000252
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000253 std::string Name = CI->getName(); CI->setName("");
254
Chris Lattnere99c66b2001-11-01 17:05:27 +0000255 // Insert the new T cast instruction... stealing old T's name
256 GetElementPtrInst *GEP = new GetElementPtrInst(Src, Indices,
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000257 Name, BI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000258
259 // Make the old cast instruction reference the new GEP instead of
260 // the old src value.
261 //
262 CI->setOperand(0, GEP);
Misha Brukmanfd939082005-04-21 23:48:37 +0000263
Chris Lattner30b43442004-07-15 02:06:12 +0000264 PRINT_PEEPHOLE2("cast-for-first:out", *GEP, *CI);
Chris Lattner3c019372002-05-10 15:29:25 +0000265 ++NumGEPInstFormed;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000266 return true;
267 }
268 }
269 }
Chris Lattnere99c66b2001-11-01 17:05:27 +0000270
Chris Lattner8d38e542001-11-01 03:12:34 +0000271 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
272 Value *Val = SI->getOperand(0);
Chris Lattner65ea1712001-11-14 11:27:58 +0000273 Value *Pointer = SI->getPointerOperand();
Misha Brukmanfd939082005-04-21 23:48:37 +0000274
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000275 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000276 // %t = cast <T1>* %P to <T2> * ;; If T1 is losslessly convertible to T2
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000277 // store <T2> %V, <T2>* %t
278 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000279 // Into:
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000280 // %t = cast <T2> %V to <T1>
281 // store <T1> %t2, <T1>* %P
282 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000283 // Note: This is not taken care of by expr conversion because there might
284 // not be a cast available for the store to convert the incoming value of.
285 // This code is basically here to make sure that pointers don't have casts
286 // if possible.
287 //
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000288 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
289 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000290 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000291 // convertible types?
292 if (Val->getType()->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattner30b43442004-07-15 02:06:12 +0000293 PRINT_PEEPHOLE3("st-src-cast:in ", *Pointer, *Val, *SI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000294
295 // Insert the new T cast instruction... stealing old T's name
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000296 std::string Name(CI->getName()); CI->setName("");
Chris Lattner7a176752001-12-04 00:03:30 +0000297 CastInst *NCI = new CastInst(Val, CSPT->getElementType(),
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000298 Name, BI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000299
300 // Replace the old store with a new one!
301 ReplaceInstWithInst(BB->getInstList(), BI,
302 SI = new StoreInst(NCI, CastSrc));
Chris Lattner30b43442004-07-15 02:06:12 +0000303 PRINT_PEEPHOLE3("st-src-cast:out", *NCI, *CastSrc, *SI);
Chris Lattner3c019372002-05-10 15:29:25 +0000304 ++NumLoadStorePeepholes;
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000305 return true;
306 }
307
Chris Lattnerc99428f2002-05-14 05:23:45 +0000308 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
309 Value *Pointer = LI->getOperand(0);
310 const Type *PtrElType =
311 cast<PointerType>(Pointer->getType())->getElementType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000312
Chris Lattnerc99428f2002-05-14 05:23:45 +0000313 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000314 // %Val = cast <T1>* to <T2>* ;; If T1 is losslessly convertible to T2
Chris Lattnerc99428f2002-05-14 05:23:45 +0000315 // %t = load <T2>* %P
316 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000317 // Into:
Chris Lattnerc99428f2002-05-14 05:23:45 +0000318 // %t = load <T1>* %P
319 // %Val = cast <T1> to <T2>
320 //
321 // Note: This is not taken care of by expr conversion because there might
322 // not be a cast available for the store to convert the incoming value of.
323 // This code is basically here to make sure that pointers don't have casts
324 // if possible.
325 //
326 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
327 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000328 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000329 // convertible types?
330 if (PtrElType->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattner30b43442004-07-15 02:06:12 +0000331 PRINT_PEEPHOLE2("load-src-cast:in ", *Pointer, *LI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000332
333 // Create the new load instruction... loading the pre-casted value
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000334 LoadInst *NewLI = new LoadInst(CastSrc, LI->getName(), BI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000335
Chris Lattnerc99428f2002-05-14 05:23:45 +0000336 // Insert the new T cast instruction... stealing old T's name
337 CastInst *NCI = new CastInst(NewLI, LI->getType(), CI->getName());
Chris Lattnerc99428f2002-05-14 05:23:45 +0000338
339 // Replace the old store with a new one!
340 ReplaceInstWithInst(BB->getInstList(), BI, NCI);
Chris Lattner30b43442004-07-15 02:06:12 +0000341 PRINT_PEEPHOLE3("load-src-cast:out", *NCI, *CastSrc, *NewLI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000342 ++NumLoadStorePeepholes;
343 return true;
344 }
345
Chris Lattner61b92c02002-10-08 22:19:25 +0000346 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
347 // If we have a call with all varargs arguments, convert the call to use the
348 // actual argument types present...
349 //
350 const PointerType *PTy = cast<PointerType>(CI->getCalledValue()->getType());
351 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
352
353 // Is the call to a vararg variable with no real parameters?
Chris Lattnercdeb81d2003-05-01 21:02:53 +0000354 if (FTy->isVarArg() && FTy->getNumParams() == 0 &&
355 !CI->getCalledFunction()) {
Chris Lattner61b92c02002-10-08 22:19:25 +0000356 // If so, insert a new cast instruction, casting it to a function type
357 // that matches the current arguments...
358 //
359 std::vector<const Type *> Params; // Parameter types...
360 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
361 Params.push_back(CI->getOperand(i)->getType());
362
363 FunctionType *NewFT = FunctionType::get(FTy->getReturnType(),
364 Params, false);
365 PointerType *NewPFunTy = PointerType::get(NewFT);
366
367 // Create a new cast, inserting it right before the function call...
Chris Lattner95549282003-04-28 01:25:38 +0000368 Value *NewCast;
369 Constant *ConstantCallSrc = 0;
370 if (Constant *CS = dyn_cast<Constant>(CI->getCalledValue()))
371 ConstantCallSrc = CS;
Chris Lattner95549282003-04-28 01:25:38 +0000372
373 if (ConstantCallSrc)
374 NewCast = ConstantExpr::getCast(ConstantCallSrc, NewPFunTy);
375 else
376 NewCast = new CastInst(CI->getCalledValue(), NewPFunTy,
377 CI->getCalledValue()->getName()+"_c",CI);
Chris Lattner61b92c02002-10-08 22:19:25 +0000378
379 // Create a new call instruction...
380 CallInst *NewCall = new CallInst(NewCast,
381 std::vector<Value*>(CI->op_begin()+1, CI->op_end()));
Chris Lattner65af1ab2005-05-14 12:28:32 +0000382 if (CI->isTailCall()) NewCall->setTailCall();
383 NewCall->setCallingConv(CI->getCallingConv());
Chris Lattner61b92c02002-10-08 22:19:25 +0000384 ++BI;
385 ReplaceInstWithInst(CI, NewCall);
Misha Brukmanfd939082005-04-21 23:48:37 +0000386
Chris Lattner61b92c02002-10-08 22:19:25 +0000387 ++NumVarargCallChanges;
388 return true;
389 }
390
Chris Lattnerd32a9612001-11-01 02:42:08 +0000391 }
392
393 return false;
394}
395
396
397
398
Chris Lattner16125fb2003-04-24 18:25:27 +0000399bool RPR::DoRaisePass(Function &F) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000400 bool Changed = false;
Chris Lattner7e708292002-06-25 16:13:24 +0000401 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattnerd32a9612001-11-01 02:42:08 +0000402 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Bill Wendling62c804a2006-11-26 09:17:06 +0000403 DOUT << "LevelRaising: " << *BI;
Misha Brukman82c89b92003-05-20 21:01:22 +0000404 if (dceInstruction(BI) || doConstantPropagation(BI)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000405 Changed = true;
Chris Lattner3c019372002-05-10 15:29:25 +0000406 ++NumDCEorCP;
Bill Wendling62c804a2006-11-26 09:17:06 +0000407 DOUT << "***\t\t^^-- Dead code eliminated!\n";
Chris Lattner7e708292002-06-25 16:13:24 +0000408 } else if (PeepholeOptimize(BB, BI)) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000409 Changed = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000410 } else {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000411 ++BI;
Chris Lattner7e708292002-06-25 16:13:24 +0000412 }
Chris Lattnerd32a9612001-11-01 02:42:08 +0000413 }
Chris Lattner7e708292002-06-25 16:13:24 +0000414
Chris Lattnerd32a9612001-11-01 02:42:08 +0000415 return Changed;
416}
417
418
Chris Lattner16125fb2003-04-24 18:25:27 +0000419// runOnFunction - Raise a function representation to a higher level.
420bool RPR::runOnFunction(Function &F) {
Bill Wendling62c804a2006-11-26 09:17:06 +0000421 DOUT << "\n\n\nStarting to work on Function '" << F.getName() << "'\n";
Chris Lattner68b07b72001-11-01 07:00:51 +0000422
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000423 // Insert casts for all incoming pointer pointer values that are treated as
424 // arrays...
Chris Lattnerd32a9612001-11-01 02:42:08 +0000425 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000426 bool Changed = false, LocalChange;
Chris Lattner3378a5b2002-07-16 23:49:24 +0000427
428 // If the StartInst option was specified, then Peephole optimize that
429 // instruction first if it occurs in this function.
430 //
431 if (!StartInst.empty()) {
432 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
433 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end(); ++BI)
434 if (BI->getName() == StartInst) {
435 bool SavedDebug = DebugFlag; // Save the DEBUG() controlling flag.
436 DebugFlag = true; // Turn on DEBUG's
437 Changed |= PeepholeOptimize(BB, BI);
438 DebugFlag = SavedDebug; // Restore DebugFlag to previous state
439 }
440 }
441
Chris Lattner4b770a32001-12-04 08:12:53 +0000442 do {
Bill Wendling62c804a2006-11-26 09:17:06 +0000443 DOUT << "Looping: \n" << F;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000444
Chris Lattnerf57b8452002-04-27 06:56:12 +0000445 // Iterate over the function, refining it, until it converges on a stable
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000446 // state
Chris Lattnerd5543802001-12-14 16:37:52 +0000447 LocalChange = false;
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000448 while (DoRaisePass(F)) LocalChange = true;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000449 Changed |= LocalChange;
450
451 } while (LocalChange);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000452
453 return Changed;
454}
Brian Gaeked0fde302003-11-11 22:41:34 +0000455