forked from OSchip/llvm-project
LoopAccessAnalysis.h - reduce AliasAnalysis.h include to forward declaration. NFC.
Fix implicit include dependencies in source files and replace legacy AliasAnalysis typedef with AAResults where necessary.
This commit is contained in:
parent
3cb2190b0b
commit
db69b17409
|
@ -15,7 +15,6 @@
|
|||
#define LLVM_ANALYSIS_LOOPACCESSANALYSIS_H
|
||||
|
||||
#include "llvm/ADT/EquivalenceClasses.h"
|
||||
#include "llvm/Analysis/AliasAnalysis.h"
|
||||
#include "llvm/Analysis/LoopAnalysisManager.h"
|
||||
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
|
||||
#include "llvm/IR/DiagnosticInfo.h"
|
||||
|
@ -23,15 +22,15 @@
|
|||
|
||||
namespace llvm {
|
||||
|
||||
class Value;
|
||||
class AAResults;
|
||||
class DataLayout;
|
||||
class ScalarEvolution;
|
||||
class Loop;
|
||||
class SCEV;
|
||||
class SCEVUnionPredicate;
|
||||
class LoopAccessInfo;
|
||||
class OptimizationRemarkEmitter;
|
||||
class raw_osstream;
|
||||
class raw_ostream;
|
||||
class SCEV;
|
||||
class SCEVUnionPredicate;
|
||||
class Value;
|
||||
|
||||
/// Collection of parameters shared beetween the Loop Vectorizer and the
|
||||
/// Loop Access Analysis.
|
||||
|
@ -511,7 +510,7 @@ private:
|
|||
class LoopAccessInfo {
|
||||
public:
|
||||
LoopAccessInfo(Loop *L, ScalarEvolution *SE, const TargetLibraryInfo *TLI,
|
||||
AliasAnalysis *AA, DominatorTree *DT, LoopInfo *LI);
|
||||
AAResults *AA, DominatorTree *DT, LoopInfo *LI);
|
||||
|
||||
/// Return true we can analyze the memory accesses in the loop and there are
|
||||
/// no memory dependence cycles.
|
||||
|
@ -584,7 +583,7 @@ public:
|
|||
|
||||
private:
|
||||
/// Analyze the loop.
|
||||
void analyzeLoop(AliasAnalysis *AA, LoopInfo *LI,
|
||||
void analyzeLoop(AAResults *AA, LoopInfo *LI,
|
||||
const TargetLibraryInfo *TLI, DominatorTree *DT);
|
||||
|
||||
/// Check if the structure of the loop allows it to be analyzed by this
|
||||
|
@ -727,7 +726,7 @@ private:
|
|||
// The used analysis passes.
|
||||
ScalarEvolution *SE = nullptr;
|
||||
const TargetLibraryInfo *TLI = nullptr;
|
||||
AliasAnalysis *AA = nullptr;
|
||||
AAResults *AA = nullptr;
|
||||
DominatorTree *DT = nullptr;
|
||||
LoopInfo *LI = nullptr;
|
||||
};
|
||||
|
|
|
@ -198,7 +198,7 @@ class LoopVectorizationLegality {
|
|||
public:
|
||||
LoopVectorizationLegality(
|
||||
Loop *L, PredicatedScalarEvolution &PSE, DominatorTree *DT,
|
||||
TargetTransformInfo *TTI, TargetLibraryInfo *TLI, AliasAnalysis *AA,
|
||||
TargetTransformInfo *TTI, TargetLibraryInfo *TLI, AAResults *AA,
|
||||
Function *F, std::function<const LoopAccessInfo &(Loop &)> *GetLAA,
|
||||
LoopInfo *LI, OptimizationRemarkEmitter *ORE,
|
||||
LoopVectorizationRequirements *R, LoopVectorizeHints *H, DemandedBits *DB,
|
||||
|
|
|
@ -505,7 +505,7 @@ public:
|
|||
typedef PointerIntPair<Value *, 1, bool> MemAccessInfo;
|
||||
typedef SmallVector<MemAccessInfo, 8> MemAccessInfoList;
|
||||
|
||||
AccessAnalysis(const DataLayout &Dl, Loop *TheLoop, AliasAnalysis *AA,
|
||||
AccessAnalysis(const DataLayout &Dl, Loop *TheLoop, AAResults *AA,
|
||||
LoopInfo *LI, MemoryDepChecker::DepCandidates &DA,
|
||||
PredicatedScalarEvolution &PSE)
|
||||
: DL(Dl), TheLoop(TheLoop), AST(*AA), LI(LI), DepCands(DA),
|
||||
|
@ -1812,7 +1812,7 @@ bool LoopAccessInfo::canAnalyzeLoop() {
|
|||
return true;
|
||||
}
|
||||
|
||||
void LoopAccessInfo::analyzeLoop(AliasAnalysis *AA, LoopInfo *LI,
|
||||
void LoopAccessInfo::analyzeLoop(AAResults *AA, LoopInfo *LI,
|
||||
const TargetLibraryInfo *TLI,
|
||||
DominatorTree *DT) {
|
||||
typedef SmallPtrSet<Value*, 16> ValueSet;
|
||||
|
@ -2205,7 +2205,7 @@ void LoopAccessInfo::collectStridedAccess(Value *MemAccess) {
|
|||
}
|
||||
|
||||
LoopAccessInfo::LoopAccessInfo(Loop *L, ScalarEvolution *SE,
|
||||
const TargetLibraryInfo *TLI, AliasAnalysis *AA,
|
||||
const TargetLibraryInfo *TLI, AAResults *AA,
|
||||
DominatorTree *DT, LoopInfo *LI)
|
||||
: PSE(std::make_unique<PredicatedScalarEvolution>(*SE, *L)),
|
||||
PtrRtChecking(std::make_unique<RuntimePointerChecking>(SE)),
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/ADT/Twine.h"
|
||||
#include "llvm/Analysis/AliasAnalysis.h"
|
||||
#include "llvm/Analysis/AssumeBundleQueries.h"
|
||||
#include "llvm/Analysis/AssumptionCache.h"
|
||||
#include "llvm/Analysis/InstructionSimplify.h"
|
||||
|
@ -42,13 +43,13 @@
|
|||
#include "llvm/IR/Instructions.h"
|
||||
#include "llvm/IR/IntrinsicInst.h"
|
||||
#include "llvm/IR/Intrinsics.h"
|
||||
#include "llvm/IR/IntrinsicsX86.h"
|
||||
#include "llvm/IR/IntrinsicsARM.h"
|
||||
#include "llvm/IR/IntrinsicsAArch64.h"
|
||||
#include "llvm/IR/IntrinsicsAMDGPU.h"
|
||||
#include "llvm/IR/IntrinsicsARM.h"
|
||||
#include "llvm/IR/IntrinsicsHexagon.h"
|
||||
#include "llvm/IR/IntrinsicsNVPTX.h"
|
||||
#include "llvm/IR/IntrinsicsAMDGPU.h"
|
||||
#include "llvm/IR/IntrinsicsPowerPC.h"
|
||||
#include "llvm/IR/IntrinsicsX86.h"
|
||||
#include "llvm/IR/LLVMContext.h"
|
||||
#include "llvm/IR/Metadata.h"
|
||||
#include "llvm/IR/PatternMatch.h"
|
||||
|
|
Loading…
Reference in New Issue