[llvm] bcb931c - SelectionDAG: Add AssumptionCache analysis dependency
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 19 16:10:59 PDT 2022
Author: Matt Arsenault
Date: 2022-09-19T19:10:51-04:00
New Revision: bcb931c484682dcec35a37c6ba12f9b39a591dfd
URL: https://github.com/llvm/llvm-project/commit/bcb931c484682dcec35a37c6ba12f9b39a591dfd
DIFF: https://github.com/llvm/llvm-project/commit/bcb931c484682dcec35a37c6ba12f9b39a591dfd.diff
LOG: SelectionDAG: Add AssumptionCache analysis dependency
Fixes compile time regression after
bb70b5d40652207c0bd3d385def10ef3ef1d45b4
Added:
Modified:
llvm/include/llvm/CodeGen/SelectionDAGISel.h
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGISel.h b/llvm/include/llvm/CodeGen/SelectionDAGISel.h
index e152503f9e1a2..c395452713adb 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAGISel.h
+++ b/llvm/include/llvm/CodeGen/SelectionDAGISel.h
@@ -21,6 +21,7 @@
namespace llvm {
class AAResults;
+class AssumptionCache;
class TargetInstrInfo;
class TargetMachine;
class SelectionDAGBuilder;
@@ -48,6 +49,7 @@ class SelectionDAGISel : public MachineFunctionPass {
SelectionDAG *CurDAG;
std::unique_ptr<SelectionDAGBuilder> SDB;
AAResults *AA = nullptr;
+ AssumptionCache *AC = nullptr;
GCFunctionInfo *GFI = nullptr;
CodeGenOpt::Level OptLevel;
const TargetInstrInfo *TII;
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 89e23f133005c..403fde7ed4a9c 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -1026,8 +1026,10 @@ RegsForValue::getRegsAndSizes() const {
}
void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis *aa,
+ AssumptionCache *ac,
const TargetLibraryInfo *li) {
AA = aa;
+ AC = ac;
GFI = gfi;
LibInfo = li;
Context = DAG.getContext();
@@ -4139,7 +4141,7 @@ void SelectionDAGBuilder::visitLoad(const LoadInst &I) {
}
if (isDereferenceableAndAlignedPointer(SV, Ty, Alignment, DAG.getDataLayout(),
- &I, nullptr, nullptr, LibInfo))
+ &I, AC, nullptr, LibInfo))
MMOFlags |= MachineMemOperand::MODereferenceable;
SDLoc dl = getCurSDLoc();
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
index d1915fd4e7aee..6838676edbf45 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
@@ -42,6 +42,7 @@ class AAResults;
class AllocaInst;
class AtomicCmpXchgInst;
class AtomicRMWInst;
+class AssumptionCache;
class BasicBlock;
class BranchInst;
class CallInst;
@@ -191,6 +192,7 @@ class SelectionDAGBuilder {
SelectionDAG &DAG;
AAResults *AA = nullptr;
+ AssumptionCache *AC = nullptr;
const TargetLibraryInfo *LibInfo;
class SDAGSwitchLowering : public SwitchCG::SwitchLowering {
@@ -244,7 +246,7 @@ class SelectionDAGBuilder {
SL(std::make_unique<SDAGSwitchLowering>(this, funcinfo)), FuncInfo(funcinfo),
SwiftError(swifterror) {}
- void init(GCFunctionInfo *gfi, AAResults *AA,
+ void init(GCFunctionInfo *gfi, AAResults *AA, AssumptionCache *AC,
const TargetLibraryInfo *li);
/// Clear out the current SelectionDAG and the associated state and prepare
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 366eb7ab42510..52b8eee7bcc7a 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -22,6 +22,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Analysis/AliasAnalysis.h"
+#include "llvm/Analysis/AssumptionCache.h"
#include "llvm/Analysis/BranchProbabilityInfo.h"
#include "llvm/Analysis/CFG.h"
#include "llvm/Analysis/EHPersonalities.h"
@@ -336,6 +337,7 @@ void SelectionDAGISel::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addPreserved<GCModuleInfo>();
AU.addRequired<TargetLibraryInfoWrapperPass>();
AU.addRequired<TargetTransformInfoWrapperPass>();
+ AU.addRequired<AssumptionCacheTracker>();
if (UseMBPI && OptLevel != CodeGenOpt::None)
AU.addRequired<BranchProbabilityInfoWrapperPass>();
AU.addRequired<ProfileSummaryInfoWrapperPass>();
@@ -403,6 +405,7 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
LibInfo = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(Fn);
GFI = Fn.hasGC() ? &getAnalysis<GCModuleInfo>().getFunctionInfo(Fn) : nullptr;
ORE = std::make_unique<OptimizationRemarkEmitter>(&Fn);
+ AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(mf.getFunction());
auto *PSI = &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
BlockFrequencyInfo *BFI = nullptr;
if (PSI && PSI->hasProfileSummary() && OptLevel != CodeGenOpt::None)
@@ -430,7 +433,7 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
else
AA = nullptr;
- SDB->init(GFI, AA, LibInfo);
+ SDB->init(GFI, AA, AC, LibInfo);
MF->setHasInlineAsm(false);
More information about the llvm-commits
mailing list