2005-07-30 00:12:19 +00:00
|
|
|
//===---- llvm/Analysis/ScalarEvolutionExpander.h - SCEV Exprs --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the classes used to generate code from scalar expressions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
|
|
|
|
#define LLVM_ANALYSIS_SCALAREVOLUTION_EXPANDER_H
|
|
|
|
|
|
|
|
#include "llvm/BasicBlock.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/Analysis/ScalarEvolution.h"
|
|
|
|
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
|
|
|
|
#include "llvm/Support/CFG.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
/// SCEVExpander - This class uses information about analyze scalars to
|
|
|
|
/// rewrite expressions in canonical form.
|
|
|
|
///
|
|
|
|
/// Clients should create an instance of this class when rewriting is needed,
|
2006-11-27 01:05:10 +00:00
|
|
|
/// and destroy it when finished to allow the release of the associated
|
2005-07-30 00:12:19 +00:00
|
|
|
/// memory.
|
|
|
|
struct SCEVExpander : public SCEVVisitor<SCEVExpander, Value*> {
|
|
|
|
ScalarEvolution &SE;
|
|
|
|
LoopInfo &LI;
|
|
|
|
std::map<SCEVHandle, Value*> InsertedExpressions;
|
|
|
|
std::set<Instruction*> InsertedInstructions;
|
|
|
|
|
|
|
|
Instruction *InsertPt;
|
|
|
|
|
|
|
|
friend struct SCEVVisitor<SCEVExpander, Value*>;
|
|
|
|
public:
|
|
|
|
SCEVExpander(ScalarEvolution &se, LoopInfo &li) : SE(se), LI(li) {}
|
|
|
|
|
2006-02-04 05:49:01 +00:00
|
|
|
LoopInfo &getLoopInfo() const { return LI; }
|
|
|
|
|
2005-07-30 00:12:19 +00:00
|
|
|
/// clear - Erase the contents of the InsertedExpressions map so that users
|
2005-07-30 18:33:25 +00:00
|
|
|
/// trying to expand the same expression into multiple BasicBlocks or
|
2005-07-30 00:12:19 +00:00
|
|
|
/// different places within the same BasicBlock can do so.
|
|
|
|
void clear() { InsertedExpressions.clear(); }
|
2005-07-30 18:33:25 +00:00
|
|
|
|
2005-07-30 00:12:19 +00:00
|
|
|
/// isInsertedInstruction - Return true if the specified instruction was
|
|
|
|
/// inserted by the code rewriter. If so, the client should not modify the
|
|
|
|
/// instruction.
|
|
|
|
bool isInsertedInstruction(Instruction *I) const {
|
|
|
|
return InsertedInstructions.count(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getOrInsertCanonicalInductionVariable - This method returns the
|
|
|
|
/// canonical induction variable of the specified type for the specified
|
|
|
|
/// loop (inserting one if there is none). A canonical induction variable
|
|
|
|
/// starts at zero and steps by one on each iteration.
|
|
|
|
Value *getOrInsertCanonicalInductionVariable(const Loop *L, const Type *Ty){
|
2007-01-21 00:29:26 +00:00
|
|
|
assert(Ty->isInteger() && "Can only insert integer induction variables!");
|
2005-07-30 00:12:19 +00:00
|
|
|
SCEVHandle H = SCEVAddRecExpr::get(SCEVUnknown::getIntegerSCEV(0, Ty),
|
|
|
|
SCEVUnknown::getIntegerSCEV(1, Ty), L);
|
|
|
|
return expand(H);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// addInsertedValue - Remember the specified instruction as being the
|
|
|
|
/// canonical form for the specified SCEV.
|
|
|
|
void addInsertedValue(Instruction *I, SCEV *S) {
|
|
|
|
InsertedExpressions[S] = (Value*)I;
|
|
|
|
InsertedInstructions.insert(I);
|
|
|
|
}
|
|
|
|
|
2007-06-06 01:22:09 +00:00
|
|
|
Instruction *getInsertionPoint() const { return InsertPt; }
|
|
|
|
|
2005-07-30 00:12:19 +00:00
|
|
|
/// expandCodeFor - Insert code to directly compute the specified SCEV
|
|
|
|
/// expression into the program. The inserted code is inserted into the
|
|
|
|
/// specified block.
|
2007-06-15 14:38:12 +00:00
|
|
|
Value *expandCodeFor(SCEVHandle SH, Instruction *IP) {
|
2005-07-30 00:12:19 +00:00
|
|
|
// Expand the code for this SCEV.
|
|
|
|
this->InsertPt = IP;
|
2007-06-15 14:38:12 +00:00
|
|
|
return expand(SH);
|
2005-07-30 00:12:19 +00:00
|
|
|
}
|
|
|
|
|
2006-02-04 09:51:33 +00:00
|
|
|
/// InsertCastOfTo - Insert a cast of V to the specified type, doing what
|
|
|
|
/// we can to share the casts.
|
2006-12-13 08:06:42 +00:00
|
|
|
static Value *InsertCastOfTo(Instruction::CastOps opcode, Value *V,
|
|
|
|
const Type *Ty);
|
2007-04-13 05:04:18 +00:00
|
|
|
/// InsertBinop - Insert the specified binary operator, doing a small amount
|
|
|
|
/// of work to avoid inserting an obviously redundant operation.
|
|
|
|
static Value *InsertBinop(Instruction::BinaryOps Opcode, Value *LHS,
|
2007-04-18 00:43:05 +00:00
|
|
|
Value *RHS, Instruction *&InsertPt);
|
2005-07-30 00:12:19 +00:00
|
|
|
protected:
|
2007-08-20 21:17:26 +00:00
|
|
|
Value *expand(SCEV *S);
|
|
|
|
|
2005-07-30 00:12:19 +00:00
|
|
|
Value *visitConstant(SCEVConstant *S) {
|
|
|
|
return S->getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *visitTruncateExpr(SCEVTruncateExpr *S) {
|
|
|
|
Value *V = expand(S->getOperand());
|
2006-12-04 20:18:26 +00:00
|
|
|
return CastInst::createTruncOrBitCast(V, S->getType(), "tmp.", InsertPt);
|
2005-07-30 00:12:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Value *visitZeroExtendExpr(SCEVZeroExtendExpr *S) {
|
2007-06-15 14:38:12 +00:00
|
|
|
Value *V = expand(S->getOperand());
|
2006-12-04 20:18:26 +00:00
|
|
|
return CastInst::createZExtOrBitCast(V, S->getType(), "tmp.", InsertPt);
|
2005-07-30 00:12:19 +00:00
|
|
|
}
|
|
|
|
|
2007-06-15 14:38:12 +00:00
|
|
|
Value *visitSignExtendExpr(SCEVSignExtendExpr *S) {
|
|
|
|
Value *V = expand(S->getOperand());
|
|
|
|
return CastInst::createSExtOrBitCast(V, S->getType(), "tmp.", InsertPt);
|
|
|
|
}
|
|
|
|
|
2005-07-30 00:12:19 +00:00
|
|
|
Value *visitAddExpr(SCEVAddExpr *S) {
|
2007-06-15 14:38:12 +00:00
|
|
|
Value *V = expand(S->getOperand(S->getNumOperands()-1));
|
2005-07-30 00:12:19 +00:00
|
|
|
|
|
|
|
// Emit a bunch of add instructions
|
|
|
|
for (int i = S->getNumOperands()-2; i >= 0; --i)
|
2007-06-15 14:38:12 +00:00
|
|
|
V = InsertBinop(Instruction::Add, V, expand(S->getOperand(i)),
|
2007-04-13 05:04:18 +00:00
|
|
|
InsertPt);
|
2005-07-30 00:12:19 +00:00
|
|
|
return V;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *visitMulExpr(SCEVMulExpr *S);
|
|
|
|
|
2006-04-01 04:48:52 +00:00
|
|
|
Value *visitSDivExpr(SCEVSDivExpr *S) {
|
2007-06-15 14:38:12 +00:00
|
|
|
Value *LHS = expand(S->getLHS());
|
|
|
|
Value *RHS = expand(S->getRHS());
|
2007-04-13 05:04:18 +00:00
|
|
|
return InsertBinop(Instruction::SDiv, LHS, RHS, InsertPt);
|
2005-07-30 00:12:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Value *visitAddRecExpr(SCEVAddRecExpr *S);
|
|
|
|
|
|
|
|
Value *visitUnknown(SCEVUnknown *S) {
|
|
|
|
return S->getValue();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|