blob: 4ebf25b49c69932db7475d654ac7d4d9fd2a1069 [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 Lattnerd216e8b2006-12-19 22:17:40 +000016#define DEBUG_TYPE "raise"
Chris Lattnerbf881002003-09-01 20:45:33 +000017#include "llvm/Transforms/Scalar.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000018#include "llvm/Transforms/Utils/Local.h"
Chris Lattner59cd9f12001-11-04 23:24:06 +000019#include "TransformInternals.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000020#include "llvm/Instructions.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000021#include "llvm/Pass.h"
Chris Lattner497c60c2002-05-07 18:12:18 +000022#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/ADT/Statistic.h"
26#include "llvm/ADT/STLExtras.h"
Chris Lattnerd32a9612001-11-01 02:42:08 +000027#include <algorithm>
Chris Lattnere7999022003-12-23 07:43:38 +000028using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000029
Chris Lattner3378a5b2002-07-16 23:49:24 +000030// StartInst - This enables the -raise-start-inst=foo option to cause the level
31// raising pass to start at instruction "foo", which is immensely useful for
32// debugging!
33//
Chris Lattner5ff62e92002-07-22 02:10:13 +000034static cl::opt<std::string>
35StartInst("raise-start-inst", cl::Hidden, cl::value_desc("inst name"),
36 cl::desc("Start raise pass at the instruction with the specified name"));
Chris Lattner3378a5b2002-07-16 23:49:24 +000037
Chris Lattnerd216e8b2006-12-19 22:17:40 +000038STATISTIC(NumLoadStorePeepholes, "Number of load/store peepholes");
Chris Lattner5ff62e92002-07-22 02:10:13 +000039
Chris Lattnerd216e8b2006-12-19 22:17:40 +000040STATISTIC(NumGEPInstFormed, "Number of other getelementptr's formed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000041
Chris Lattnerd216e8b2006-12-19 22:17:40 +000042STATISTIC(NumExprTreesConv, "Number of expression trees converted");
Chris Lattner5ff62e92002-07-22 02:10:13 +000043
Chris Lattnerd216e8b2006-12-19 22:17:40 +000044STATISTIC(NumCastOfCast, "Number of cast-of-self removed");
Chris Lattner5ff62e92002-07-22 02:10:13 +000045
Chris Lattnerd216e8b2006-12-19 22:17:40 +000046STATISTIC(NumDCEorCP, "Number of insts DCEd or constprop'd");
Chris Lattner3c019372002-05-10 15:29:25 +000047
Chris Lattnerd216e8b2006-12-19 22:17:40 +000048STATISTIC(NumVarargCallChanges, "Number of vararg call peepholes");
Chris Lattner61b92c02002-10-08 22:19:25 +000049
Chris Lattnerd32a9612001-11-01 02:42:08 +000050#define PRINT_PEEPHOLE(ID, NUM, I) \
Bill Wendling62c804a2006-11-26 09:17:06 +000051 DOUT << "Inst P/H " << ID << "[" << NUM << "] " << I
Chris Lattnerd32a9612001-11-01 02:42:08 +000052
53#define PRINT_PEEPHOLE1(ID, I1) do { PRINT_PEEPHOLE(ID, 0, I1); } while (0)
54#define PRINT_PEEPHOLE2(ID, I1, I2) \
55 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); } while (0)
56#define PRINT_PEEPHOLE3(ID, I1, I2, I3) \
57 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
58 PRINT_PEEPHOLE(ID, 2, I3); } while (0)
Chris Lattnerd5b48ca2001-11-14 11:02:49 +000059#define PRINT_PEEPHOLE4(ID, I1, I2, I3, I4) \
60 do { PRINT_PEEPHOLE(ID, 0, I1); PRINT_PEEPHOLE(ID, 1, I2); \
61 PRINT_PEEPHOLE(ID, 2, I3); PRINT_PEEPHOLE(ID, 3, I4); } while (0)
Chris Lattnerd32a9612001-11-01 02:42:08 +000062
Chris Lattner16125fb2003-04-24 18:25:27 +000063namespace {
64 struct RPR : public FunctionPass {
65 virtual bool runOnFunction(Function &F);
66
67 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
68 AU.setPreservesCFG();
69 AU.addRequired<TargetData>();
70 }
71
72 private:
73 bool DoRaisePass(Function &F);
74 bool PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI);
75 };
76
Chris Lattner7f8897f2006-08-27 22:42:52 +000077 RegisterPass<RPR> X("raise", "Raise Pointer References");
Chris Lattner16125fb2003-04-24 18:25:27 +000078}
79
Brian Gaeked0fde302003-11-11 22:41:34 +000080
Chris Lattnerded6d0c2004-09-20 04:43:57 +000081FunctionPass *llvm::createRaisePointerReferencesPass() {
Chris Lattner16125fb2003-04-24 18:25:27 +000082 return new RPR();
83}
84
Chris Lattner16125fb2003-04-24 18:25:27 +000085bool RPR::PeepholeOptimize(BasicBlock *BB, BasicBlock::iterator &BI) {
Chris Lattner7e708292002-06-25 16:13:24 +000086 Instruction *I = BI;
Chris Lattner16125fb2003-04-24 18:25:27 +000087 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattnerd32a9612001-11-01 02:42:08 +000088
89 if (CastInst *CI = dyn_cast<CastInst>(I)) {
90 Value *Src = CI->getOperand(0);
Chris Lattnerd32a9612001-11-01 02:42:08 +000091 const Type *DestTy = CI->getType();
92
Chris Lattnere99c66b2001-11-01 17:05:27 +000093 // Peephole optimize the following instruction:
94 // %V2 = cast <ty> %V to <ty>
95 //
96 // Into: <nothing>
97 //
98 if (DestTy == Src->getType()) { // Check for a cast to same type as src!!
Chris Lattner30b43442004-07-15 02:06:12 +000099 PRINT_PEEPHOLE1("cast-of-self-ty", *CI);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000100 CI->replaceAllUsesWith(Src);
101 if (!Src->hasName() && CI->hasName()) {
Chris Lattner697954c2002-01-20 22:54:45 +0000102 std::string Name = CI->getName();
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000103 CI->setName("");
Chris Lattner7acff252005-03-05 19:05:20 +0000104 Src->setName(Name);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000105 }
Chris Lattner3c019372002-05-10 15:29:25 +0000106
107 // DCE the instruction now, to avoid having the iterative version of DCE
108 // have to worry about it.
109 //
Chris Lattner7e708292002-06-25 16:13:24 +0000110 BI = BB->getInstList().erase(BI);
Chris Lattner3c019372002-05-10 15:29:25 +0000111
112 ++NumCastOfCast;
Chris Lattnerd32a9612001-11-01 02:42:08 +0000113 return true;
114 }
115
Chris Lattnerd32a9612001-11-01 02:42:08 +0000116 // Check to see if it's a cast of an instruction that does not depend on the
117 // specific type of the operands to do it's job.
Reid Spencer3da59db2006-11-27 01:05:10 +0000118 if (CI->isLosslessCast()) {
Chris Lattnerb980e182001-11-04 21:32:11 +0000119 ValueTypeCache ConvertedTypes;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000120
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000121 // Check to see if we can convert the source of the cast to match the
122 // destination type of the cast...
Chris Lattnera8b6d432001-12-05 06:34:00 +0000123 //
Chris Lattnerd5543802001-12-14 16:37:52 +0000124 ConvertedTypes[CI] = CI->getType(); // Make sure the cast doesn't change
Misha Brukmanf117cc92003-05-20 18:45:36 +0000125 if (ExpressionConvertibleToType(Src, DestTy, ConvertedTypes, TD)) {
Chris Lattner30b43442004-07-15 02:06:12 +0000126 PRINT_PEEPHOLE3("CAST-SRC-EXPR-CONV:in ", *Src, *CI, *BB->getParent());
Misha Brukmanfd939082005-04-21 23:48:37 +0000127
Bill Wendling62c804a2006-11-26 09:17:06 +0000128 DOUT << "\nCONVERTING SRC EXPR TYPE:\n";
Chris Lattnerb1b42622002-07-17 17:11:33 +0000129 { // ValueMap must be destroyed before function verified!
130 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000131 Value *E = ConvertExpressionToType(Src, DestTy, ValueMap, TD);
Chris Lattnerc0b90e72001-11-08 20:19:56 +0000132
Chris Lattnerb1b42622002-07-17 17:11:33 +0000133 if (Constant *CPV = dyn_cast<Constant>(E))
134 CI->replaceAllUsesWith(CPV);
Misha Brukmanfd939082005-04-21 23:48:37 +0000135
Chris Lattner30b43442004-07-15 02:06:12 +0000136 PRINT_PEEPHOLE1("CAST-SRC-EXPR-CONV:out", *E);
Bill Wendling62c804a2006-11-26 09:17:06 +0000137 DOUT << "DONE CONVERTING SRC EXPR TYPE: \n"
138 << *BB->getParent();
Chris Lattnerb1b42622002-07-17 17:11:33 +0000139 }
Chris Lattner3378a5b2002-07-16 23:49:24 +0000140
Chris Lattnerb1b42622002-07-17 17:11:33 +0000141 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000142 ++NumExprTreesConv;
Chris Lattnerd5543802001-12-14 16:37:52 +0000143 return true;
144 }
145
Chris Lattnerd20a98e2002-05-24 20:41:51 +0000146 // Check to see if we can convert the users of the cast value to match the
147 // source type of the cast...
Chris Lattnerd5543802001-12-14 16:37:52 +0000148 //
149 ConvertedTypes.clear();
Chris Lattner61b92c02002-10-08 22:19:25 +0000150 // Make sure the source doesn't change type
151 ConvertedTypes[Src] = Src->getType();
Misha Brukmanf117cc92003-05-20 18:45:36 +0000152 if (ValueConvertibleToType(CI, Src->getType(), ConvertedTypes, TD)) {
Chris Lattner5e2e2722004-08-08 01:27:56 +0000153 //PRINT_PEEPHOLE3("CAST-DEST-EXPR-CONV:in ", *Src, *CI,
154 // *BB->getParent());
Chris Lattnerd5543802001-12-14 16:37:52 +0000155
Bill Wendling62c804a2006-11-26 09:17:06 +0000156 DOUT << "\nCONVERTING EXPR TYPE:\n";
Chris Lattnerb1b42622002-07-17 17:11:33 +0000157 { // ValueMap must be destroyed before function verified!
158 ValueMapCache ValueMap;
Chris Lattner16125fb2003-04-24 18:25:27 +0000159 ConvertValueToNewType(CI, Src, ValueMap, TD); // This will delete CI!
Chris Lattnerb1b42622002-07-17 17:11:33 +0000160 }
Chris Lattnerd5543802001-12-14 16:37:52 +0000161
Chris Lattner30b43442004-07-15 02:06:12 +0000162 PRINT_PEEPHOLE1("CAST-DEST-EXPR-CONV:out", *Src);
Bill Wendling62c804a2006-11-26 09:17:06 +0000163 DOUT << "DONE CONVERTING EXPR TYPE: \n\n" << *BB->getParent();
Chris Lattner3378a5b2002-07-16 23:49:24 +0000164
Chris Lattnerb1b42622002-07-17 17:11:33 +0000165 BI = BB->begin(); // Rescan basic block. BI might be invalidated.
Chris Lattner3c019372002-05-10 15:29:25 +0000166 ++NumExprTreesConv;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000167 return true;
Chris Lattnerf3b976e2001-11-04 20:21:12 +0000168 }
Chris Lattnerf17a09d2001-12-06 18:06:13 +0000169 }
170
Chris Lattnere99c66b2001-11-01 17:05:27 +0000171 // Check to see if we are casting from a structure pointer to a pointer to
172 // the first element of the structure... to avoid munching other peepholes,
173 // we only let this happen if there are no add uses of the cast.
174 //
175 // Peephole optimize the following instructions:
176 // %t1 = cast {<...>} * %StructPtr to <ty> *
177 //
178 // Into: %t2 = getelementptr {<...>} * %StructPtr, <0, 0, 0, ...>
179 // %t1 = cast <eltype> * %t1 to <ty> *
180 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000181 if (const CompositeType *CTy = getPointedToComposite(Src->getType()))
Chris Lattnere99c66b2001-11-01 17:05:27 +0000182 if (const PointerType *DestPTy = dyn_cast<PointerType>(DestTy)) {
183
184 // Loop over uses of the cast, checking for add instructions. If an add
185 // exists, this is probably a part of a more complex GEP, so we don't
186 // want to mess around with the cast.
187 //
188 bool HasAddUse = false;
189 for (Value::use_iterator I = CI->use_begin(), E = CI->use_end();
190 I != E; ++I)
191 if (isa<Instruction>(*I) &&
192 cast<Instruction>(*I)->getOpcode() == Instruction::Add) {
193 HasAddUse = true; break;
194 }
195
196 // If it doesn't have an add use, check to see if the dest type is
Misha Brukmanf117cc92003-05-20 18:45:36 +0000197 // losslessly convertible to one of the types in the start of the struct
Chris Lattnere99c66b2001-11-01 17:05:27 +0000198 // type.
199 //
200 if (!HasAddUse) {
Chris Lattner7a176752001-12-04 00:03:30 +0000201 const Type *DestPointedTy = DestPTy->getElementType();
Chris Lattnere99c66b2001-11-01 17:05:27 +0000202 unsigned Depth = 1;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000203 const CompositeType *CurCTy = CTy;
Chris Lattnere99c66b2001-11-01 17:05:27 +0000204 const Type *ElTy = 0;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000205
206 // Build the index vector, full of all zeros
Chris Lattner697954c2002-01-20 22:54:45 +0000207 std::vector<Value*> Indices;
Chris Lattner559d5192004-01-09 05:53:38 +0000208
Reid Spencerc5b206b2006-12-31 05:48:39 +0000209 Indices.push_back(Constant::getNullValue(Type::Int32Ty));
Chris Lattnerd5543802001-12-14 16:37:52 +0000210 while (CurCTy && !isa<PointerType>(CurCTy)) {
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000211 if (const StructType *CurSTy = dyn_cast<StructType>(CurCTy)) {
212 // Check for a zero element struct type... if we have one, bail.
Chris Lattnerd21cd802004-02-09 04:37:31 +0000213 if (CurSTy->getNumElements() == 0) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000214
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000215 // Grab the first element of the struct type, which must lie at
216 // offset zero in the struct.
217 //
Chris Lattnerd21cd802004-02-09 04:37:31 +0000218 ElTy = CurSTy->getElementType(0);
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000219 } else {
Chris Lattner7d719c32005-01-19 16:16:35 +0000220 ElTy = cast<SequentialType>(CurCTy)->getElementType();
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000221 }
222
223 // Insert a zero to index through this type...
Reid Spencerc5b206b2006-12-31 05:48:39 +0000224 Indices.push_back(Constant::getNullValue(Type::Int32Ty));
Chris Lattnere99c66b2001-11-01 17:05:27 +0000225
226 // Did we find what we're looking for?
Reid Spencer3da59db2006-11-27 01:05:10 +0000227 if (ElTy->canLosslesslyBitCastTo(DestPointedTy)) break;
Misha Brukmanfd939082005-04-21 23:48:37 +0000228
Chris Lattnere99c66b2001-11-01 17:05:27 +0000229 // Nope, go a level deeper.
230 ++Depth;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000231 CurCTy = dyn_cast<CompositeType>(ElTy);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000232 ElTy = 0;
233 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000234
Chris Lattnere99c66b2001-11-01 17:05:27 +0000235 // Did we find what we were looking for? If so, do the transformation
236 if (ElTy) {
Chris Lattner30b43442004-07-15 02:06:12 +0000237 PRINT_PEEPHOLE1("cast-for-first:in", *CI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000238
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000239 std::string Name = CI->getName(); CI->setName("");
240
Chris Lattnere99c66b2001-11-01 17:05:27 +0000241 // Insert the new T cast instruction... stealing old T's name
242 GetElementPtrInst *GEP = new GetElementPtrInst(Src, Indices,
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000243 Name, BI);
Chris Lattnere99c66b2001-11-01 17:05:27 +0000244
245 // Make the old cast instruction reference the new GEP instead of
Reid Spencer3da59db2006-11-27 01:05:10 +0000246 // the old src value.
247 if (CI->getOperand(0)->getType() == GEP->getType()) {
248 // If the source types are the same we can safely replace the
249 // first operand of the CastInst because the opcode won't
250 // change as a result.
251 CI->setOperand(0, GEP);
252 } else {
253 // The existing and new operand 0 types are different so we must
254 // replace CI with a new CastInst so that we are assured to
255 // get the correct cast opcode.
Reid Spencer7b06bd52006-12-13 00:50:17 +0000256 CastInst *NewCI = new BitCastInst(GEP, CI->getType(),
257 CI->getName(), CI);
Reid Spencer3da59db2006-11-27 01:05:10 +0000258 CI->replaceAllUsesWith(NewCI);
259 CI->eraseFromParent();
260 CI = NewCI;
261 BI = NewCI; // Don't let the iterator invalidate
262 }
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:
Reid Spencer3da59db2006-11-27 01:05:10 +0000276 // %t = cast <T1>* %P to <T2> * ;; If T1 is losslessly castable 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?
Reid Spencer3da59db2006-11-27 01:05:10 +0000292 if (Val->getType()->canLosslesslyBitCastTo(CSPT->getElementType()))
293 {
Chris Lattner30b43442004-07-15 02:06:12 +0000294 PRINT_PEEPHOLE3("st-src-cast:in ", *Pointer, *Val, *SI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000295
296 // Insert the new T cast instruction... stealing old T's name
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000297 std::string Name(CI->getName()); CI->setName("");
Reid Spencer3da59db2006-11-27 01:05:10 +0000298 CastInst *NCI = CastInst::create(Instruction::BitCast, Val,
299 CSPT->getElementType(), Name, BI);
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000300
301 // Replace the old store with a new one!
302 ReplaceInstWithInst(BB->getInstList(), BI,
303 SI = new StoreInst(NCI, CastSrc));
Chris Lattner30b43442004-07-15 02:06:12 +0000304 PRINT_PEEPHOLE3("st-src-cast:out", *NCI, *CastSrc, *SI);
Chris Lattner3c019372002-05-10 15:29:25 +0000305 ++NumLoadStorePeepholes;
Chris Lattnerdedee7b2001-11-01 05:57:59 +0000306 return true;
307 }
308
Chris Lattnerc99428f2002-05-14 05:23:45 +0000309 } else if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
310 Value *Pointer = LI->getOperand(0);
311 const Type *PtrElType =
312 cast<PointerType>(Pointer->getType())->getElementType();
Misha Brukmanfd939082005-04-21 23:48:37 +0000313
Chris Lattnerc99428f2002-05-14 05:23:45 +0000314 // Peephole optimize the following instructions:
Misha Brukmanf117cc92003-05-20 18:45:36 +0000315 // %Val = cast <T1>* to <T2>* ;; If T1 is losslessly convertible to T2
Chris Lattnerc99428f2002-05-14 05:23:45 +0000316 // %t = load <T2>* %P
317 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000318 // Into:
Chris Lattnerc99428f2002-05-14 05:23:45 +0000319 // %t = load <T1>* %P
320 // %Val = cast <T1> to <T2>
321 //
322 // Note: This is not taken care of by expr conversion because there might
323 // not be a cast available for the store to convert the incoming value of.
324 // This code is basically here to make sure that pointers don't have casts
325 // if possible.
326 //
327 if (CastInst *CI = dyn_cast<CastInst>(Pointer))
328 if (Value *CastSrc = CI->getOperand(0)) // CSPT = CastSrcPointerType
Chris Lattner7e708292002-06-25 16:13:24 +0000329 if (const PointerType *CSPT = dyn_cast<PointerType>(CastSrc->getType()))
Misha Brukmanf117cc92003-05-20 18:45:36 +0000330 // convertible types?
Reid Spencer3da59db2006-11-27 01:05:10 +0000331 if (PtrElType->canLosslesslyBitCastTo(CSPT->getElementType())) {
Chris Lattner30b43442004-07-15 02:06:12 +0000332 PRINT_PEEPHOLE2("load-src-cast:in ", *Pointer, *LI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000333
334 // Create the new load instruction... loading the pre-casted value
Chris Lattner2a7c23e2002-09-10 17:04:02 +0000335 LoadInst *NewLI = new LoadInst(CastSrc, LI->getName(), BI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000336
Chris Lattnerc99428f2002-05-14 05:23:45 +0000337 // Insert the new T cast instruction... stealing old T's name
Reid Spencer3da59db2006-11-27 01:05:10 +0000338 CastInst *NCI =
339 CastInst::create(Instruction::BitCast, NewLI, LI->getType(),
340 CI->getName());
Chris Lattnerc99428f2002-05-14 05:23:45 +0000341
342 // Replace the old store with a new one!
343 ReplaceInstWithInst(BB->getInstList(), BI, NCI);
Chris Lattner30b43442004-07-15 02:06:12 +0000344 PRINT_PEEPHOLE3("load-src-cast:out", *NCI, *CastSrc, *NewLI);
Chris Lattnerc99428f2002-05-14 05:23:45 +0000345 ++NumLoadStorePeepholes;
346 return true;
347 }
348
Chris Lattner61b92c02002-10-08 22:19:25 +0000349 } else if (CallInst *CI = dyn_cast<CallInst>(I)) {
350 // If we have a call with all varargs arguments, convert the call to use the
351 // actual argument types present...
352 //
353 const PointerType *PTy = cast<PointerType>(CI->getCalledValue()->getType());
354 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
355
356 // Is the call to a vararg variable with no real parameters?
Chris Lattnercdeb81d2003-05-01 21:02:53 +0000357 if (FTy->isVarArg() && FTy->getNumParams() == 0 &&
358 !CI->getCalledFunction()) {
Chris Lattner61b92c02002-10-08 22:19:25 +0000359 // If so, insert a new cast instruction, casting it to a function type
360 // that matches the current arguments...
361 //
362 std::vector<const Type *> Params; // Parameter types...
363 for (unsigned i = 1, e = CI->getNumOperands(); i != e; ++i)
364 Params.push_back(CI->getOperand(i)->getType());
365
366 FunctionType *NewFT = FunctionType::get(FTy->getReturnType(),
367 Params, false);
368 PointerType *NewPFunTy = PointerType::get(NewFT);
369
370 // Create a new cast, inserting it right before the function call...
Chris Lattner95549282003-04-28 01:25:38 +0000371 Value *NewCast;
Chris Lattner95549282003-04-28 01:25:38 +0000372 if (Constant *CS = dyn_cast<Constant>(CI->getCalledValue()))
Reid Spencer3da59db2006-11-27 01:05:10 +0000373 NewCast = ConstantExpr::getBitCast(CS, NewPFunTy);
Chris Lattner95549282003-04-28 01:25:38 +0000374 else
Reid Spencer3da59db2006-11-27 01:05:10 +0000375 NewCast = CastInst::create(Instruction::BitCast, CI->getCalledValue(),
376 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
Chris Lattner16125fb2003-04-24 18:25:27 +0000396bool RPR::DoRaisePass(Function &F) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000397 bool Changed = false;
Chris Lattner7e708292002-06-25 16:13:24 +0000398 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattnerd32a9612001-11-01 02:42:08 +0000399 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Bill Wendling62c804a2006-11-26 09:17:06 +0000400 DOUT << "LevelRaising: " << *BI;
Misha Brukman82c89b92003-05-20 21:01:22 +0000401 if (dceInstruction(BI) || doConstantPropagation(BI)) {
Misha Brukmanfd939082005-04-21 23:48:37 +0000402 Changed = true;
Chris Lattner3c019372002-05-10 15:29:25 +0000403 ++NumDCEorCP;
Bill Wendling62c804a2006-11-26 09:17:06 +0000404 DOUT << "***\t\t^^-- Dead code eliminated!\n";
Chris Lattner7e708292002-06-25 16:13:24 +0000405 } else if (PeepholeOptimize(BB, BI)) {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000406 Changed = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000407 } else {
Chris Lattnerd32a9612001-11-01 02:42:08 +0000408 ++BI;
Chris Lattner7e708292002-06-25 16:13:24 +0000409 }
Chris Lattnerd32a9612001-11-01 02:42:08 +0000410 }
Chris Lattner7e708292002-06-25 16:13:24 +0000411
Chris Lattnerd32a9612001-11-01 02:42:08 +0000412 return Changed;
413}
414
415
Chris Lattner16125fb2003-04-24 18:25:27 +0000416// runOnFunction - Raise a function representation to a higher level.
417bool RPR::runOnFunction(Function &F) {
Bill Wendling62c804a2006-11-26 09:17:06 +0000418 DOUT << "\n\n\nStarting to work on Function '" << F.getName() << "'\n";
Chris Lattner68b07b72001-11-01 07:00:51 +0000419
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000420 // Insert casts for all incoming pointer pointer values that are treated as
421 // arrays...
Chris Lattnerd32a9612001-11-01 02:42:08 +0000422 //
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000423 bool Changed = false, LocalChange;
Chris Lattner3378a5b2002-07-16 23:49:24 +0000424
425 // If the StartInst option was specified, then Peephole optimize that
426 // instruction first if it occurs in this function.
427 //
428 if (!StartInst.empty()) {
429 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
430 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end(); ++BI)
431 if (BI->getName() == StartInst) {
432 bool SavedDebug = DebugFlag; // Save the DEBUG() controlling flag.
433 DebugFlag = true; // Turn on DEBUG's
434 Changed |= PeepholeOptimize(BB, BI);
435 DebugFlag = SavedDebug; // Restore DebugFlag to previous state
436 }
437 }
438
Chris Lattner4b770a32001-12-04 08:12:53 +0000439 do {
Bill Wendling62c804a2006-11-26 09:17:06 +0000440 DOUT << "Looping: \n" << F;
Chris Lattnera8b6d432001-12-05 06:34:00 +0000441
Chris Lattnerf57b8452002-04-27 06:56:12 +0000442 // Iterate over the function, refining it, until it converges on a stable
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000443 // state
Chris Lattnerd5543802001-12-14 16:37:52 +0000444 LocalChange = false;
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000445 while (DoRaisePass(F)) LocalChange = true;
Chris Lattner3cc7dde2001-11-26 16:58:14 +0000446 Changed |= LocalChange;
447
448 } while (LocalChange);
Chris Lattnerd32a9612001-11-01 02:42:08 +0000449
450 return Changed;
451}
Brian Gaeked0fde302003-11-11 22:41:34 +0000452