blob: d36046811cbca1e0911093ee47411757ea5eeaaf [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) \
Chris Lattnerb3abf9d2002-05-22 17:27:12 +000056 DEBUG(std::cerr << "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
82 RegisterOpt<RPR> X("raise", "Raise Pointer References");
83}
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);
105 Instruction *SrcI = dyn_cast<Instruction>(Src); // Nonnull if instr source
106 const Type *DestTy = CI->getType();
107
Chris Lattnere99c66b2001-11-01 17:05:27 +0000108 // Peephole optimize the following instruction:
109 // %V2 = cast <ty> %V to <ty>
110 //
111 // Into: <nothing>
112 //
113 if (DestTy == Src->getType()) { // Check for a cast to same type as src!!
Chris Lattner30b43442004-07-15 02:06:12 +0000114 PRINT_PEEPHOLE1("cast-of-self-ty", *CI);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000115 CI->replaceAllUsesWith(Src);
116 if (!Src->hasName() && CI->hasName()) {
Chris Lattner697954c2002-01-20 22:54:45 +0000117 std::string Name = CI->getName();
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000118 CI->setName("");
Chris Lattner7acff252005-03-05 19:05:20 +0000119 Src->setName(Name);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000120 }
Chris Lattner3c019372002-05-10 15:29:25 +0000121
122 // DCE the instruction now, to avoid having the iterative version of DCE
123 // have to worry about it.
124 //
Chris Lattner7e708292002-06-25 16:13:24 +0000125 BI = BB->getInstList().erase(BI);
Chris Lattner3c019372002-05-10 15:29:25 +0000126
127 ++NumCastOfCast;
Chris Lattnerd32a9612001-11-01 02:42:08 +0000128 return true;
129 }
130
Chris Lattnerd32a9612001-11-01 02:42:08 +0000131 // Check to see if it's a cast of an instruction that does not depend on the
132 // specific type of the operands to do it's job.
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000133 if (!isReinterpretingCast(CI)) {
Chris Lattnerb980e182001-11-04 21:32:11 +0000134 ValueTypeCache ConvertedTypes;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000135
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000136 // Check to see if we can convert the source of the cast to match the
137 // destination type of the cast...
Chris Lattnera8b6d432001-12-05 06:34:00 +0000138 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000139 ConvertedTypes[CI] = CI->getType(); // Make sure the cast doesn't change
Misha Brukmanf117cc92003-05-20 18:45:36 +0000140 if (ExpressionConvertibleToType(Src, DestTy, ConvertedTypes, TD)) {
Chris Lattner30b43442004-07-15 02:06:12 +0000141 PRINT_PEEPHOLE3("CAST-SRC-EXPR-CONV:in ", *Src, *CI, *BB->getParent());
Misha Brukmanfd939082005-04-21 23:48:37 +0000142
Chris Lattner6806f562003-08-01 22:15:03 +0000143 DEBUG(std::cerr << "\nCONVERTING SRC EXPR TYPE:\n");
Chris Lattnerb1b42622002-07-17 17:11:33 +0000144 { // ValueMap must be destroyed before function verified!
145 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000146 Value *E = ConvertExpressionToType(Src, DestTy, ValueMap, TD);
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000147
Chris Lattnerb1b42622002-07-17 17:11:33 +0000148 if (Constant *CPV = dyn_cast<Constant>(E))
149 CI->replaceAllUsesWith(CPV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000150
Chris Lattner30b43442004-07-15 02:06:12 +0000151 PRINT_PEEPHOLE1("CAST-SRC-EXPR-CONV:out", *E);
Chris Lattner6806f562003-08-01 22:15:03 +0000152 DEBUG(std::cerr << "DONE CONVERTING SRC EXPR TYPE: \n"
Chris Lattner30b43442004-07-15 02:06:12 +0000153 << *BB->getParent());
Chris Lattnerb1b42622002-07-17 17:11:33 +0000154 }
Chris Lattner3378a5b2002-07-16 23:49:24 +0000155
Chris Lattnerb1b42622002-07-17 17:11:33 +0000156 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000157 ++NumExprTreesConv;
Chris Lattnerd5543802001-12-14 16:37:52 +0000158 return true;
159 }
160
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000161 // Check to see if we can convert the users of the cast value to match the
162 // source type of the cast...
Chris Lattnerd5543802001-12-14 16:37:52 +0000163 //
164 ConvertedTypes.clear();
Chris Lattner61b92c02002-10-08 22:19:25 +0000165 // Make sure the source doesn't change type
166 ConvertedTypes[Src] = Src->getType();
Misha Brukmanf117cc92003-05-20 18:45:36 +0000167 if (ValueConvertibleToType(CI, Src->getType(), ConvertedTypes, TD)) {
Chris Lattner5e2e2722004-08-08 01:27:56 +0000168 //PRINT_PEEPHOLE3("CAST-DEST-EXPR-CONV:in ", *Src, *CI,
169 // *BB->getParent());
Chris Lattnerd5543802001-12-14 16:37:52 +0000170
Chris Lattner6806f562003-08-01 22:15:03 +0000171 DEBUG(std::cerr << "\nCONVERTING EXPR TYPE:\n");
Chris Lattnerb1b42622002-07-17 17:11:33 +0000172 { // ValueMap must be destroyed before function verified!
173 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000174 ConvertValueToNewType(CI, Src, ValueMap, TD); // This will delete CI!
Chris Lattnerb1b42622002-07-17 17:11:33 +0000175 }
Chris Lattnerd5543802001-12-14 16:37:52 +0000176
Chris Lattner30b43442004-07-15 02:06:12 +0000177 PRINT_PEEPHOLE1("CAST-DEST-EXPR-CONV:out", *Src);
178 DEBUG(std::cerr << "DONE CONVERTING EXPR TYPE: \n\n" <<
179 *BB->getParent());
Chris Lattner3378a5b2002-07-16 23:49:24 +0000180
Chris Lattnerb1b42622002-07-17 17:11:33 +0000181 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000182 ++NumExprTreesConv;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000183 return true;
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000184 }
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000185 }
186
Chris Lattnere99c66b2001-11-01 17:05:27 +0000187 // Check to see if we are casting from a structure pointer to a pointer to
188 // the first element of the structure... to avoid munching other peepholes,
189 // we only let this happen if there are no add uses of the cast.
190 //
191 // Peephole optimize the following instructions:
192 // %t1 = cast {<...>} * %StructPtr to <ty> *
193 //
194 // Into: %t2 = getelementptr {<...>} * %StructPtr, <0, 0, 0, ...>
195 // %t1 = cast <eltype> * %t1 to <ty> *
196 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000197 if (const CompositeType *CTy = getPointedToComposite(Src->getType()))
Chris Lattnere99c66b2001-11-01 17:05:27 +0000198 if (const PointerType *DestPTy = dyn_cast<PointerType>(DestTy)) {
199
200 // Loop over uses of the cast, checking for add instructions. If an add
201 // exists, this is probably a part of a more complex GEP, so we don't
202 // want to mess around with the cast.
203 //
204 bool HasAddUse = false;
205 for (Value::use_iterator I = CI->use_begin(), E = CI->use_end();
206 I != E; ++I)
207 if (isa<Instruction>(*I) &&
208 cast<Instruction>(*I)->getOpcode() == Instruction::Add) {
209 HasAddUse = true; break;
210 }
211
212 // If it doesn't have an add use, check to see if the dest type is
Misha Brukmanf117cc92003-05-20 18:45:36 +0000213 // losslessly convertible to one of the types in the start of the struct
Chris Lattnere99c66b2001-11-01 17:05:27 +0000214 // type.
215 //
216 if (!HasAddUse) {
Chris Lattner7a176752001-12-04 00:03:30 +0000217 const Type *DestPointedTy = DestPTy->getElementType();
Chris Lattnere99c66b2001-11-01 17:05:27 +0000218 unsigned Depth = 1;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000219 const CompositeType *CurCTy = CTy;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000220 const Type *ElTy = 0;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000221
222 // Build the index vector, full of all zeros
Chris Lattner697954c2002-01-20 22:54:45 +0000223 std::vector<Value*> Indices;
Chris Lattner559d5192004-01-09 05:53:38 +0000224
Chris Lattner28977af2004-04-05 01:30:19 +0000225 Indices.push_back(Constant::getNullValue(Type::UIntTy));
Chris Lattnerd5543802001-12-14 16:37:52 +0000226 while (CurCTy && !isa<PointerType>(CurCTy)) {
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000227 if (const StructType *CurSTy = dyn_cast<StructType>(CurCTy)) {
228 // Check for a zero element struct type... if we have one, bail.
Chris Lattnerd21cd802004-02-09 04:37:31 +0000229 if (CurSTy->getNumElements() == 0) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000230
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000231 // Grab the first element of the struct type, which must lie at
232 // offset zero in the struct.
233 //
Chris Lattnerd21cd802004-02-09 04:37:31 +0000234 ElTy = CurSTy->getElementType(0);
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000235 } else {
Chris Lattner7d719c32005-01-19 16:16:35 +0000236 ElTy = cast<SequentialType>(CurCTy)->getElementType();
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000237 }
238
239 // Insert a zero to index through this type...
Chris Lattner28977af2004-04-05 01:30:19 +0000240 Indices.push_back(Constant::getNullValue(Type::UIntTy));
Chris Lattnere99c66b2001-11-01 17:05:27 +0000241
242 // Did we find what we're looking for?
Misha Brukmanf117cc92003-05-20 18:45:36 +0000243 if (ElTy->isLosslesslyConvertibleTo(DestPointedTy)) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000244
Chris Lattnere99c66b2001-11-01 17:05:27 +0000245 // Nope, go a level deeper.
246 ++Depth;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000247 CurCTy = dyn_cast<CompositeType>(ElTy);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000248 ElTy = 0;
249 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000250
Chris Lattnere99c66b2001-11-01 17:05:27 +0000251 // Did we find what we were looking for? If so, do the transformation
252 if (ElTy) {
Chris Lattner30b43442004-07-15 02:06:12 +0000253 PRINT_PEEPHOLE1("cast-for-first:in", *CI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000254
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000255 std::string Name = CI->getName(); CI->setName("");
256
Chris Lattnere99c66b2001-11-01 17:05:27 +0000257 // Insert the new T cast instruction... stealing old T's name
258 GetElementPtrInst *GEP = new GetElementPtrInst(Src, Indices,
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000259 Name, BI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000260
261 // Make the old cast instruction reference the new GEP instead of
262 // the old src value.
263 //
264 CI->setOperand(0, GEP);
Misha Brukmanfd939082005-04-21 23:48:37 +0000265
Chris Lattner30b43442004-07-15 02:06:12 +0000266 PRINT_PEEPHOLE2("cast-for-first:out", *GEP, *CI);
Chris Lattner3c019372002-05-10 15:29:25 +0000267 ++NumGEPInstFormed;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000268 return true;
269 }
270 }
271 }
Chris Lattnere99c66b2001-11-01 17:05:27 +0000272
Chris Lattner8d38e542001-11-01 03:12:34 +0000273 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
274 Value *Val = SI->getOperand(0);
Chris Lattner65ea1712001-11-14 11:27:58 +0000275 Value *Pointer = SI->getPointerOperand();
Misha Brukmanfd939082005-04-21 23:48:37 +0000276
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000277 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000278 // %t = cast <T1>* %P to <T2> * ;; If T1 is losslessly convertible to T2
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000279 // store <T2> %V, <T2>* %t
280 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000281 // Into:
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000282 // %t = cast <T2> %V to <T1>
283 // store <T1> %t2, <T1>* %P
284 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000285 // Note: This is not taken care of by expr conversion because there might
286 // not be a cast available for the store to convert the incoming value of.
287 // This code is basically here to make sure that pointers don't have casts
288 // if possible.
289 //
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000290 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
291 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000292 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000293 // convertible types?
294 if (Val->getType()->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattner30b43442004-07-15 02:06:12 +0000295 PRINT_PEEPHOLE3("st-src-cast:in ", *Pointer, *Val, *SI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000296
297 // Insert the new T cast instruction... stealing old T's name
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000298 std::string Name(CI->getName()); CI->setName("");
Chris Lattner7a176752001-12-04 00:03:30 +0000299 CastInst *NCI = new CastInst(Val, CSPT->getElementType(),
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000300 Name, BI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000301
302 // Replace the old store with a new one!
303 ReplaceInstWithInst(BB->getInstList(), BI,
304 SI = new StoreInst(NCI, CastSrc));
Chris Lattner30b43442004-07-15 02:06:12 +0000305 PRINT_PEEPHOLE3("st-src-cast:out", *NCI, *CastSrc, *SI);
Chris Lattner3c019372002-05-10 15:29:25 +0000306 ++NumLoadStorePeepholes;
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000307 return true;
308 }
309
Chris Lattnerc99428f2002-05-14 05:23:45 +0000310 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
311 Value *Pointer = LI->getOperand(0);
312 const Type *PtrElType =
313 cast<PointerType>(Pointer->getType())->getElementType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000314
Chris Lattnerc99428f2002-05-14 05:23:45 +0000315 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000316 // %Val = cast <T1>* to <T2>* ;; If T1 is losslessly convertible to T2
Chris Lattnerc99428f2002-05-14 05:23:45 +0000317 // %t = load <T2>* %P
318 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000319 // Into:
Chris Lattnerc99428f2002-05-14 05:23:45 +0000320 // %t = load <T1>* %P
321 // %Val = cast <T1> to <T2>
322 //
323 // Note: This is not taken care of by expr conversion because there might
324 // not be a cast available for the store to convert the incoming value of.
325 // This code is basically here to make sure that pointers don't have casts
326 // if possible.
327 //
328 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
329 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000330 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000331 // convertible types?
332 if (PtrElType->isLosslesslyConvertibleTo(CSPT->getElementType())) {
Chris Lattner30b43442004-07-15 02:06:12 +0000333 PRINT_PEEPHOLE2("load-src-cast:in ", *Pointer, *LI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000334
335 // Create the new load instruction... loading the pre-casted value
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000336 LoadInst *NewLI = new LoadInst(CastSrc, LI->getName(), BI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000337
Chris Lattnerc99428f2002-05-14 05:23:45 +0000338 // Insert the new T cast instruction... stealing old T's name
339 CastInst *NCI = new CastInst(NewLI, LI->getType(), CI->getName());
Chris Lattnerc99428f2002-05-14 05:23:45 +0000340
341 // Replace the old store with a new one!
342 ReplaceInstWithInst(BB->getInstList(), BI, NCI);
Chris Lattner30b43442004-07-15 02:06:12 +0000343 PRINT_PEEPHOLE3("load-src-cast:out", *NCI, *CastSrc, *NewLI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000344 ++NumLoadStorePeepholes;
345 return true;
346 }
347
Chris Lattner61b92c02002-10-08 22:19:25 +0000348 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
349 // If we have a call with all varargs arguments, convert the call to use the
350 // actual argument types present...
351 //
352 const PointerType *PTy = cast<PointerType>(CI->getCalledValue()->getType());
353 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
354
355 // Is the call to a vararg variable with no real parameters?
Chris Lattnercdeb81d2003-05-01 21:02:53 +0000356 if (FTy->isVarArg() && FTy->getNumParams() == 0 &&
357 !CI->getCalledFunction()) {
Chris Lattner61b92c02002-10-08 22:19:25 +0000358 // If so, insert a new cast instruction, casting it to a function type
359 // that matches the current arguments...
360 //
361 std::vector<const Type *> Params; // Parameter types...
362 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
363 Params.push_back(CI->getOperand(i)->getType());
364
365 FunctionType *NewFT = FunctionType::get(FTy->getReturnType(),
366 Params, false);
367 PointerType *NewPFunTy = PointerType::get(NewFT);
368
369 // Create a new cast, inserting it right before the function call...
Chris Lattner95549282003-04-28 01:25:38 +0000370 Value *NewCast;
371 Constant *ConstantCallSrc = 0;
372 if (Constant *CS = dyn_cast<Constant>(CI->getCalledValue()))
373 ConstantCallSrc = CS;
Chris Lattner95549282003-04-28 01:25:38 +0000374
375 if (ConstantCallSrc)
376 NewCast = ConstantExpr::getCast(ConstantCallSrc, NewPFunTy);
377 else
378 NewCast = new CastInst(CI->getCalledValue(), NewPFunTy,
379 CI->getCalledValue()->getName()+"_c",CI);
Chris Lattner61b92c02002-10-08 22:19:25 +0000380
381 // Create a new call instruction...
382 CallInst *NewCall = new CallInst(NewCast,
383 std::vector<Value*>(CI->op_begin()+1, CI->op_end()));
Chris Lattner65af1ab2005-05-14 12:28:32 +0000384 if (CI->isTailCall()) NewCall->setTailCall();
385 NewCall->setCallingConv(CI->getCallingConv());
Chris Lattner61b92c02002-10-08 22:19:25 +0000386 ++BI;
387 ReplaceInstWithInst(CI, NewCall);
Misha Brukmanfd939082005-04-21 23:48:37 +0000388
Chris Lattner61b92c02002-10-08 22:19:25 +0000389 ++NumVarargCallChanges;
390 return true;
391 }
392
Chris Lattnerd32a9612001-11-01 02:42:08 +0000393 }
394
395 return false;
396}
397
398
399
400
Chris Lattner16125fb2003-04-24 18:25:27 +0000401bool RPR::DoRaisePass(Function &F) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000402 bool Changed = false;
Chris Lattner7e708292002-06-25 16:13:24 +0000403 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattnerd32a9612001-11-01 02:42:08 +0000404 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Brian Gaekea9160a02004-07-01 19:27:10 +0000405 DEBUG(std::cerr << "LevelRaising: " << *BI);
Misha Brukman82c89b92003-05-20 21:01:22 +0000406 if (dceInstruction(BI) || doConstantPropagation(BI)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000407 Changed = true;
Chris Lattner3c019372002-05-10 15:29:25 +0000408 ++NumDCEorCP;
Chris Lattner6806f562003-08-01 22:15:03 +0000409 DEBUG(std::cerr << "***\t\t^^-- Dead code eliminated!\n");
Chris Lattner7e708292002-06-25 16:13:24 +0000410 } else if (PeepholeOptimize(BB, BI)) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000411 Changed = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000412 } else {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000413 ++BI;
Chris Lattner7e708292002-06-25 16:13:24 +0000414 }
Chris Lattnerd32a9612001-11-01 02:42:08 +0000415 }
Chris Lattner7e708292002-06-25 16:13:24 +0000416
Chris Lattnerd32a9612001-11-01 02:42:08 +0000417 return Changed;
418}
419
420
Chris Lattner16125fb2003-04-24 18:25:27 +0000421// runOnFunction - Raise a function representation to a higher level.
422bool RPR::runOnFunction(Function &F) {
Chris Lattner6806f562003-08-01 22:15:03 +0000423 DEBUG(std::cerr << "\n\n\nStarting to work on Function '" << F.getName()
424 << "'\n");
Chris Lattner68b07b72001-11-01 07:00:51 +0000425
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000426 // Insert casts for all incoming pointer pointer values that are treated as
427 // arrays...
Chris Lattnerd32a9612001-11-01 02:42:08 +0000428 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000429 bool Changed = false, LocalChange;
Chris Lattner3378a5b2002-07-16 23:49:24 +0000430
431 // If the StartInst option was specified, then Peephole optimize that
432 // instruction first if it occurs in this function.
433 //
434 if (!StartInst.empty()) {
435 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
436 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end(); ++BI)
437 if (BI->getName() == StartInst) {
438 bool SavedDebug = DebugFlag; // Save the DEBUG() controlling flag.
439 DebugFlag = true; // Turn on DEBUG's
440 Changed |= PeepholeOptimize(BB, BI);
441 DebugFlag = SavedDebug; // Restore DebugFlag to previous state
442 }
443 }
444
Chris Lattner4b770a32001-12-04 08:12:53 +0000445 do {
Chris Lattner6806f562003-08-01 22:15:03 +0000446 DEBUG(std::cerr << "Looping: \n" << F);
Chris Lattnera8b6d432001-12-05 06:34:00 +0000447
Chris Lattnerf57b8452002-04-27 06:56:12 +0000448 // Iterate over the function, refining it, until it converges on a stable
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000449 // state
Chris Lattnerd5543802001-12-14 16:37:52 +0000450 LocalChange = false;
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000451 while (DoRaisePass(F)) LocalChange = true;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000452 Changed |= LocalChange;
453
454 } while (LocalChange);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000455
456 return Changed;
457}
Brian Gaeked0fde302003-11-11 22:41:34 +0000458