2001-11-26 18:41:20 +00:00
|
|
|
//===- llvm/Analysis/InductionVariable.h - Induction variable ----*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This interface is used to identify and classify induction variables that
|
|
|
|
// exist in the program. Induction variables must contain a PHI node that
|
|
|
|
// exists in a loop header. Because of this, they are identified an managed by
|
|
|
|
// this PHI node.
|
|
|
|
//
|
|
|
|
// Induction variables are classified into a type. Knowing that an induction
|
|
|
|
// variable is of a specific type can constrain the values of the start and
|
|
|
|
// step. For example, a SimpleLinear induction variable must have a start and
|
|
|
|
// step values that are constants.
|
|
|
|
//
|
|
|
|
// Induction variables can be created with or without loop information. If no
|
|
|
|
// loop information is available, induction variables cannot be recognized to be
|
|
|
|
// more than SimpleLinear variables.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/InductionVariable.h"
|
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Analysis/Expressions.h"
|
2001-12-03 18:02:31 +00:00
|
|
|
#include "llvm/iPHINode.h"
|
|
|
|
#include "llvm/InstrTypes.h"
|
2001-11-26 18:41:20 +00:00
|
|
|
#include "llvm/Type.h"
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2001-11-26 18:41:20 +00:00
|
|
|
|
|
|
|
using analysis::ExprType;
|
|
|
|
|
|
|
|
|
2002-04-28 16:21:30 +00:00
|
|
|
static bool isLoopInvariant(const Value *V, const Loop *L) {
|
2002-04-09 19:48:49 +00:00
|
|
|
if (isa<Constant>(V) || isa<Argument>(V) || isa<GlobalValue>(V))
|
2001-11-26 18:41:20 +00:00
|
|
|
return true;
|
|
|
|
|
2002-04-28 00:15:57 +00:00
|
|
|
Instruction *I = cast<Instruction>(V);
|
|
|
|
BasicBlock *BB = I->getParent();
|
2001-11-26 18:41:20 +00:00
|
|
|
|
|
|
|
return !L->contains(BB);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum InductionVariable::iType
|
|
|
|
InductionVariable::Classify(const Value *Start, const Value *Step,
|
2002-04-28 16:21:30 +00:00
|
|
|
const Loop *L = 0) {
|
2001-11-26 18:41:20 +00:00
|
|
|
// Check for cannonical and simple linear expressions now...
|
2001-12-03 22:26:30 +00:00
|
|
|
if (ConstantInt *CStart = dyn_cast<ConstantInt>(Start))
|
|
|
|
if (ConstantInt *CStep = dyn_cast<ConstantInt>(Step)) {
|
2001-11-26 18:41:20 +00:00
|
|
|
if (CStart->equalsInt(0) && CStep->equalsInt(1))
|
|
|
|
return Cannonical;
|
|
|
|
else
|
|
|
|
return SimpleLinear;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Without loop information, we cannot do any better, so bail now...
|
|
|
|
if (L == 0) return Unknown;
|
|
|
|
|
|
|
|
if (isLoopInvariant(Start, L) && isLoopInvariant(Step, L))
|
|
|
|
return Linear;
|
|
|
|
return Unknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an induction variable for the specified value. If it is a PHI, and
|
|
|
|
// if it's recognizable, classify it and fill in instance variables.
|
|
|
|
//
|
2002-04-28 16:21:30 +00:00
|
|
|
InductionVariable::InductionVariable(PHINode *P, LoopInfo *LoopInfo) {
|
2001-11-26 18:41:20 +00:00
|
|
|
InductionType = Unknown; // Assume the worst
|
2001-12-03 17:27:42 +00:00
|
|
|
Phi = P;
|
2001-11-26 18:41:20 +00:00
|
|
|
|
2001-12-03 17:27:42 +00:00
|
|
|
// If the PHI node has more than two predecessors, we don't know how to
|
2001-11-26 18:41:20 +00:00
|
|
|
// handle it.
|
|
|
|
//
|
2001-12-03 17:27:42 +00:00
|
|
|
if (Phi->getNumIncomingValues() != 2) return;
|
2001-11-26 18:41:20 +00:00
|
|
|
|
2001-12-05 06:32:30 +00:00
|
|
|
// FIXME: Handle FP induction variables.
|
|
|
|
if (Phi->getType() == Type::FloatTy || Phi->getType() == Type::DoubleTy)
|
|
|
|
return;
|
|
|
|
|
2001-11-26 18:41:20 +00:00
|
|
|
// If we have loop information, make sure that this PHI node is in the header
|
|
|
|
// of a loop...
|
|
|
|
//
|
2002-04-28 16:21:30 +00:00
|
|
|
const Loop *L = LoopInfo ? LoopInfo->getLoopFor(Phi->getParent()) : 0;
|
2001-11-26 18:41:20 +00:00
|
|
|
if (L && L->getHeader() != Phi->getParent())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Value *V1 = Phi->getIncomingValue(0);
|
|
|
|
Value *V2 = Phi->getIncomingValue(1);
|
|
|
|
|
|
|
|
if (L == 0) { // No loop information? Base everything on expression analysis
|
|
|
|
ExprType E1 = analysis::ClassifyExpression(V1);
|
|
|
|
ExprType E2 = analysis::ClassifyExpression(V2);
|
|
|
|
|
|
|
|
if (E1.ExprTy > E2.ExprTy) // Make E1 be the simpler expression
|
2002-01-20 22:54:45 +00:00
|
|
|
std::swap(E1, E2);
|
2001-11-26 18:41:20 +00:00
|
|
|
|
|
|
|
// E1 must be a constant incoming value, and E2 must be a linear expression
|
|
|
|
// with respect to the PHI node.
|
|
|
|
//
|
|
|
|
if (E1.ExprTy > ExprType::Constant || E2.ExprTy != ExprType::Linear ||
|
|
|
|
E2.Var != Phi)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Okay, we have found an induction variable. Save the start and step values
|
|
|
|
const Type *ETy = Phi->getType();
|
|
|
|
if (ETy->isPointerType()) ETy = Type::ULongTy;
|
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
Start = (Value*)(E1.Offset ? E1.Offset : ConstantInt::get(ETy, 0));
|
|
|
|
Step = (Value*)(E2.Offset ? E2.Offset : ConstantInt::get(ETy, 0));
|
2001-11-26 18:41:20 +00:00
|
|
|
} else {
|
|
|
|
// Okay, at this point, we know that we have loop information...
|
|
|
|
|
|
|
|
// Make sure that V1 is the incoming value, and V2 is from the backedge of
|
|
|
|
// the loop.
|
|
|
|
if (L->contains(Phi->getIncomingBlock(0))) // Wrong order. Swap now.
|
2002-01-20 22:54:45 +00:00
|
|
|
std::swap(V1, V2);
|
2001-11-26 18:41:20 +00:00
|
|
|
|
|
|
|
Start = V1; // We know that Start has to be loop invariant...
|
|
|
|
Step = 0;
|
|
|
|
|
|
|
|
if (V2 == Phi) { // referencing the PHI directly? Must have zero step
|
2002-04-27 02:25:14 +00:00
|
|
|
Step = Constant::getNullValue(Phi->getType());
|
2001-11-26 18:41:20 +00:00
|
|
|
} else if (BinaryOperator *I = dyn_cast<BinaryOperator>(V2)) {
|
|
|
|
// TODO: This could be much better...
|
|
|
|
if (I->getOpcode() == Instruction::Add) {
|
|
|
|
if (I->getOperand(0) == Phi)
|
|
|
|
Step = I->getOperand(1);
|
|
|
|
else if (I->getOperand(1) == Phi)
|
|
|
|
Step = I->getOperand(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Step == 0) { // Unrecognized step value...
|
|
|
|
ExprType StepE = analysis::ClassifyExpression(V2);
|
|
|
|
if (StepE.ExprTy != ExprType::Linear ||
|
|
|
|
StepE.Var != Phi) return;
|
|
|
|
|
2001-12-04 08:12:47 +00:00
|
|
|
const Type *ETy = Phi->getType();
|
|
|
|
if (ETy->isPointerType()) ETy = Type::ULongTy;
|
|
|
|
Step = (Value*)(StepE.Offset ? StepE.Offset : ConstantInt::get(ETy, 0));
|
|
|
|
} else { // We were able to get a step value, simplify with expr analysis
|
|
|
|
ExprType StepE = analysis::ClassifyExpression(Step);
|
|
|
|
if (StepE.ExprTy == ExprType::Linear && StepE.Offset == 0) {
|
|
|
|
// No offset from variable? Grab the variable
|
|
|
|
Step = StepE.Var;
|
|
|
|
} else if (StepE.ExprTy == ExprType::Constant) {
|
|
|
|
if (StepE.Offset)
|
|
|
|
Step = (Value*)StepE.Offset;
|
|
|
|
else
|
2002-04-27 02:25:14 +00:00
|
|
|
Step = Constant::getNullValue(Step->getType());
|
2001-12-05 06:32:30 +00:00
|
|
|
const Type *ETy = Phi->getType();
|
|
|
|
if (ETy->isPointerType()) ETy = Type::ULongTy;
|
|
|
|
Step = (Value*)(StepE.Offset ? StepE.Offset : ConstantInt::get(ETy,0));
|
2001-12-04 08:12:47 +00:00
|
|
|
}
|
2001-11-26 18:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Classify the induction variable type now...
|
|
|
|
InductionType = InductionVariable::Classify(Start, Step, L);
|
|
|
|
}
|