mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
b5210c934f
explicitly split into stride-and-offset pairs. Also, add the ability to track multiple post-increment loops on the same expression. This refines the concept of "normalizing" SCEV expressions used for to post-increment uses, and introduces a dedicated utility routine for normalizing and denormalizing expressions. This fixes the expansion of expressions which are post-increment users of more than one loop at a time. More broadly, this takes LSR another step closer to being able to reason about more than one loop at a time. llvm-svn: 100699
190 lines
6.1 KiB
C++
190 lines
6.1 KiB
C++
//===- llvm/Analysis/IVUsers.h - Induction Variable Users -------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements bookkeeping for "interesting" users of expressions
|
|
// computed from induction variables.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ANALYSIS_IVUSERS_H
|
|
#define LLVM_ANALYSIS_IVUSERS_H
|
|
|
|
#include "llvm/Analysis/LoopPass.h"
|
|
#include "llvm/Analysis/ScalarEvolutionNormalization.h"
|
|
#include "llvm/Support/ValueHandle.h"
|
|
|
|
namespace llvm {
|
|
|
|
class DominatorTree;
|
|
class Instruction;
|
|
class Value;
|
|
class IVUsers;
|
|
class ScalarEvolution;
|
|
class SCEV;
|
|
class IVUsers;
|
|
|
|
/// IVStrideUse - Keep track of one use of a strided induction variable.
|
|
/// The Expr member keeps track of the expression, User is the actual user
|
|
/// instruction of the operand, and 'OperandValToReplace' is the operand of
|
|
/// the User that is the use.
|
|
class IVStrideUse : public CallbackVH, public ilist_node<IVStrideUse> {
|
|
friend class IVUsers;
|
|
public:
|
|
IVStrideUse(IVUsers *P, const SCEV *E,
|
|
Instruction* U, Value *O)
|
|
: CallbackVH(U), Parent(P), Expr(E), OperandValToReplace(O) {
|
|
}
|
|
|
|
/// getUser - Return the user instruction for this use.
|
|
Instruction *getUser() const {
|
|
return cast<Instruction>(getValPtr());
|
|
}
|
|
|
|
/// setUser - Assign a new user instruction for this use.
|
|
void setUser(Instruction *NewUser) {
|
|
setValPtr(NewUser);
|
|
}
|
|
|
|
/// getParent - Return a pointer to the IVUsers that owns
|
|
/// this IVStrideUse.
|
|
IVUsers *getParent() const { return Parent; }
|
|
|
|
/// getExpr - Return the expression for the use.
|
|
const SCEV *getExpr() const { return Expr; }
|
|
|
|
/// setExpr - Assign a new expression to this use.
|
|
void setExpr(const SCEV *Val) {
|
|
Expr = Val;
|
|
}
|
|
|
|
const SCEV *getStride(const Loop *L) const;
|
|
|
|
/// getOperandValToReplace - Return the Value of the operand in the user
|
|
/// instruction that this IVStrideUse is representing.
|
|
Value *getOperandValToReplace() const {
|
|
return OperandValToReplace;
|
|
}
|
|
|
|
/// setOperandValToReplace - Assign a new Value as the operand value
|
|
/// to replace.
|
|
void setOperandValToReplace(Value *Op) {
|
|
OperandValToReplace = Op;
|
|
}
|
|
|
|
/// getPostIncLoops - Return the set of loops for which the expression has
|
|
/// been adjusted to use post-inc mode.
|
|
const PostIncLoopSet &getPostIncLoops() const {
|
|
return PostIncLoops;
|
|
}
|
|
|
|
/// transformToPostInc - Transform the expression to post-inc form for the
|
|
/// given loop.
|
|
void transformToPostInc(const Loop *L);
|
|
|
|
private:
|
|
/// Parent - a pointer to the IVUsers that owns this IVStrideUse.
|
|
IVUsers *Parent;
|
|
|
|
/// Expr - The expression for this use.
|
|
const SCEV *Expr;
|
|
|
|
/// OperandValToReplace - The Value of the operand in the user instruction
|
|
/// that this IVStrideUse is representing.
|
|
WeakVH OperandValToReplace;
|
|
|
|
/// PostIncLoops - The set of loops for which Expr has been adjusted to
|
|
/// use post-inc mode. This corresponds with SCEVExpander's post-inc concept.
|
|
PostIncLoopSet PostIncLoops;
|
|
|
|
/// Deleted - Implementation of CallbackVH virtual function to
|
|
/// receive notification when the User is deleted.
|
|
virtual void deleted();
|
|
};
|
|
|
|
template<> struct ilist_traits<IVStrideUse>
|
|
: public ilist_default_traits<IVStrideUse> {
|
|
// createSentinel is used to get hold of a node that marks the end of
|
|
// the list...
|
|
// The sentinel is relative to this instance, so we use a non-static
|
|
// method.
|
|
IVStrideUse *createSentinel() const {
|
|
// since i(p)lists always publicly derive from the corresponding
|
|
// traits, placing a data member in this class will augment i(p)list.
|
|
// But since the NodeTy is expected to publicly derive from
|
|
// ilist_node<NodeTy>, there is a legal viable downcast from it
|
|
// to NodeTy. We use this trick to superpose i(p)list with a "ghostly"
|
|
// NodeTy, which becomes the sentinel. Dereferencing the sentinel is
|
|
// forbidden (save the ilist_node<NodeTy>) so no one will ever notice
|
|
// the superposition.
|
|
return static_cast<IVStrideUse*>(&Sentinel);
|
|
}
|
|
static void destroySentinel(IVStrideUse*) {}
|
|
|
|
IVStrideUse *provideInitialHead() const { return createSentinel(); }
|
|
IVStrideUse *ensureHead(IVStrideUse*) const { return createSentinel(); }
|
|
static void noteHead(IVStrideUse*, IVStrideUse*) {}
|
|
|
|
private:
|
|
mutable ilist_node<IVStrideUse> Sentinel;
|
|
};
|
|
|
|
class IVUsers : public LoopPass {
|
|
friend class IVStrideUse;
|
|
Loop *L;
|
|
LoopInfo *LI;
|
|
DominatorTree *DT;
|
|
ScalarEvolution *SE;
|
|
SmallPtrSet<Instruction*,16> Processed;
|
|
|
|
/// IVUses - A list of all tracked IV uses of induction variable expressions
|
|
/// we are interested in.
|
|
ilist<IVStrideUse> IVUses;
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
|
|
|
|
virtual void releaseMemory();
|
|
|
|
public:
|
|
static char ID; // Pass ID, replacement for typeid
|
|
IVUsers();
|
|
|
|
/// AddUsersIfInteresting - Inspect the specified Instruction. If it is a
|
|
/// reducible SCEV, recursively add its users to the IVUsesByStride set and
|
|
/// return true. Otherwise, return false.
|
|
bool AddUsersIfInteresting(Instruction *I);
|
|
|
|
IVStrideUse &AddUser(const SCEV *Expr,
|
|
Instruction *User, Value *Operand);
|
|
|
|
/// getReplacementExpr - Return a SCEV expression which computes the
|
|
/// value of the OperandValToReplace of the given IVStrideUse.
|
|
const SCEV *getReplacementExpr(const IVStrideUse &U) const;
|
|
|
|
typedef ilist<IVStrideUse>::iterator iterator;
|
|
typedef ilist<IVStrideUse>::const_iterator const_iterator;
|
|
iterator begin() { return IVUses.begin(); }
|
|
iterator end() { return IVUses.end(); }
|
|
const_iterator begin() const { return IVUses.begin(); }
|
|
const_iterator end() const { return IVUses.end(); }
|
|
bool empty() const { return IVUses.empty(); }
|
|
|
|
void print(raw_ostream &OS, const Module* = 0) const;
|
|
|
|
/// dump - This method is used for debugging.
|
|
void dump() const;
|
|
};
|
|
|
|
Pass *createIVUsersPass();
|
|
|
|
}
|
|
|
|
#endif
|