2017-08-09 07:53:55 +08:00
|
|
|
//===- AMDGPUAliasAnalysis --------------------------------------*- C++ -*-===//
|
2017-03-18 07:56:58 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-03-18 07:56:58 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
|
|
|
/// This is the AMGPU address space based alias analysis pass.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-08-09 07:53:55 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H
|
2017-03-18 07:56:58 +08:00
|
|
|
|
2017-03-27 22:04:01 +08:00
|
|
|
#include "AMDGPU.h"
|
2017-08-09 07:53:55 +08:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2017-03-18 07:56:58 +08:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/Pass.h"
|
2017-08-09 07:53:55 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
2017-03-18 07:56:58 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2017-08-09 07:53:55 +08:00
|
|
|
class DataLayout;
|
|
|
|
class MDNode;
|
|
|
|
class MemoryLocation;
|
|
|
|
|
2017-03-18 07:56:58 +08:00
|
|
|
/// A simple AA result that uses TBAA metadata to answer queries.
|
|
|
|
class AMDGPUAAResult : public AAResultBase<AMDGPUAAResult> {
|
|
|
|
friend AAResultBase<AMDGPUAAResult>;
|
|
|
|
|
|
|
|
const DataLayout &DL;
|
|
|
|
|
|
|
|
public:
|
2017-03-27 22:04:01 +08:00
|
|
|
explicit AMDGPUAAResult(const DataLayout &DL, Triple T) : AAResultBase(),
|
2018-09-11 12:00:49 +08:00
|
|
|
DL(DL) {}
|
2017-03-18 07:56:58 +08:00
|
|
|
AMDGPUAAResult(AMDGPUAAResult &&Arg)
|
2018-09-11 12:00:49 +08:00
|
|
|
: AAResultBase(std::move(Arg)), DL(Arg.DL) {}
|
2017-03-18 07:56:58 +08:00
|
|
|
|
|
|
|
/// Handle invalidation events from the new pass manager.
|
|
|
|
///
|
|
|
|
/// By definition, this result is stateless and so remains valid.
|
|
|
|
bool invalidate(Function &, const PreservedAnalyses &) { return false; }
|
|
|
|
|
[AliasAnalysis] Second prototype to cache BasicAA / anyAA state.
Summary:
Adding contained caching to AliasAnalysis. BasicAA is currently the only one using it.
AA changes:
- This patch is pulling the caches from BasicAAResults to AAResults, meaning the getModRefInfo call benefits from the IsCapturedCache as well when in "batch mode".
- All AAResultBase implementations add the QueryInfo member to all APIs. AAResults APIs maintain wrapper APIs such that all alias()/getModRefInfo call sites are unchanged.
- AA now provides a BatchAAResults type as a wrapper to AAResults. It keeps the AAResults instance and a QueryInfo instantiated to batch mode. It delegates all work to the AAResults instance with the batched QueryInfo. More API wrappers may be needed in BatchAAResults; only the minimum needed is currently added.
MemorySSA changes:
- All walkers are now templated on the AA used (AliasAnalysis=AAResults or BatchAAResults).
- At build time, we optimize uses; now we create a local walker (lives only as long as OptimizeUses does) using BatchAAResults.
- All Walkers have an internal AA and only use that now, never the AA in MemorySSA. The Walkers receive the AA they will use when built.
- The walker we use for queries after the build is instantiated on AliasAnalysis and is built after building MemorySSA and setting AA.
- All static methods doing walking are now templated on AliasAnalysisType if they are used both during build and after. If used only during build, the method now only takes a BatchAAResults. If used only after build, the method now takes an AliasAnalysis.
Subscribers: sanjoy, arsenm, jvesely, nhaehnle, jlebar, george.burgess.iv, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D59315
llvm-svn: 356783
2019-03-23 01:22:19 +08:00
|
|
|
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB,
|
|
|
|
AAQueryInfo &AAQI);
|
|
|
|
bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
|
|
|
|
bool OrLocal);
|
2017-03-18 07:56:58 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool Aliases(const MDNode *A, const MDNode *B) const;
|
|
|
|
bool PathAliases(const MDNode *A, const MDNode *B) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Analysis pass providing a never-invalidated alias analysis result.
|
|
|
|
class AMDGPUAA : public AnalysisInfoMixin<AMDGPUAA> {
|
|
|
|
friend AnalysisInfoMixin<AMDGPUAA>;
|
2017-08-09 07:53:55 +08:00
|
|
|
|
2017-03-18 07:56:58 +08:00
|
|
|
static char PassID;
|
|
|
|
|
|
|
|
public:
|
2017-08-09 07:53:55 +08:00
|
|
|
using Result = AMDGPUAAResult;
|
2017-03-18 07:56:58 +08:00
|
|
|
|
|
|
|
AMDGPUAAResult run(Function &F, AnalysisManager<Function> &AM) {
|
2017-03-27 22:04:01 +08:00
|
|
|
return AMDGPUAAResult(F.getParent()->getDataLayout(),
|
|
|
|
Triple(F.getParent()->getTargetTriple()));
|
2017-03-18 07:56:58 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Legacy wrapper pass to provide the AMDGPUAAResult object.
|
|
|
|
class AMDGPUAAWrapperPass : public ImmutablePass {
|
|
|
|
std::unique_ptr<AMDGPUAAResult> Result;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
|
|
|
|
AMDGPUAAWrapperPass() : ImmutablePass(ID) {
|
|
|
|
initializeAMDGPUAAWrapperPassPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
AMDGPUAAResult &getResult() { return *Result; }
|
|
|
|
const AMDGPUAAResult &getResult() const { return *Result; }
|
|
|
|
|
|
|
|
bool doInitialization(Module &M) override {
|
2017-03-27 22:04:01 +08:00
|
|
|
Result.reset(new AMDGPUAAResult(M.getDataLayout(),
|
|
|
|
Triple(M.getTargetTriple())));
|
2017-03-18 07:56:58 +08:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-09 07:53:55 +08:00
|
|
|
|
2017-03-18 07:56:58 +08:00
|
|
|
bool doFinalization(Module &M) override {
|
|
|
|
Result.reset();
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-09 07:53:55 +08:00
|
|
|
|
2017-03-18 07:56:58 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
|
|
|
};
|
|
|
|
|
2018-11-08 04:26:42 +08:00
|
|
|
// Wrapper around ExternalAAWrapperPass so that the default constructor gets the
|
|
|
|
// callback.
|
|
|
|
class AMDGPUExternalAAWrapper : public ExternalAAWrapperPass {
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
|
|
|
|
AMDGPUExternalAAWrapper() : ExternalAAWrapperPass(
|
|
|
|
[](Pass &P, Function &, AAResults &AAR) {
|
|
|
|
if (auto *WrapperPass = P.getAnalysisIfAvailable<AMDGPUAAWrapperPass>())
|
|
|
|
AAR.addAAResult(WrapperPass->getResult());
|
|
|
|
}) {}
|
|
|
|
};
|
|
|
|
|
2017-08-09 07:53:55 +08:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H
|