[ARM] VQADD instructions
[llvm-complete.git] / lib / Target / AMDGPU / AMDGPUAliasAnalysis.h
blobfb722920900f0d68cfee3cf4a3879322ed77853a
1 //===- AMDGPUAliasAnalysis --------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 /// This is the AMGPU address space based alias analysis pass.
10 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H
13 #define LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H
15 #include "AMDGPU.h"
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/Analysis/AliasAnalysis.h"
18 #include "llvm/IR/Function.h"
19 #include "llvm/IR/Module.h"
20 #include "llvm/Pass.h"
21 #include <algorithm>
22 #include <memory>
24 namespace llvm {
26 class DataLayout;
27 class MDNode;
28 class MemoryLocation;
30 /// A simple AA result that uses TBAA metadata to answer queries.
31 class AMDGPUAAResult : public AAResultBase<AMDGPUAAResult> {
32 friend AAResultBase<AMDGPUAAResult>;
34 const DataLayout &DL;
36 public:
37 explicit AMDGPUAAResult(const DataLayout &DL, Triple T) : AAResultBase(),
38 DL(DL) {}
39 AMDGPUAAResult(AMDGPUAAResult &&Arg)
40 : AAResultBase(std::move(Arg)), DL(Arg.DL) {}
42 /// Handle invalidation events from the new pass manager.
43 ///
44 /// By definition, this result is stateless and so remains valid.
45 bool invalidate(Function &, const PreservedAnalyses &) { return false; }
47 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB,
48 AAQueryInfo &AAQI);
49 bool pointsToConstantMemory(const MemoryLocation &Loc, AAQueryInfo &AAQI,
50 bool OrLocal);
52 private:
53 bool Aliases(const MDNode *A, const MDNode *B) const;
54 bool PathAliases(const MDNode *A, const MDNode *B) const;
57 /// Analysis pass providing a never-invalidated alias analysis result.
58 class AMDGPUAA : public AnalysisInfoMixin<AMDGPUAA> {
59 friend AnalysisInfoMixin<AMDGPUAA>;
61 static char PassID;
63 public:
64 using Result = AMDGPUAAResult;
66 AMDGPUAAResult run(Function &F, AnalysisManager<Function> &AM) {
67 return AMDGPUAAResult(F.getParent()->getDataLayout(),
68 Triple(F.getParent()->getTargetTriple()));
72 /// Legacy wrapper pass to provide the AMDGPUAAResult object.
73 class AMDGPUAAWrapperPass : public ImmutablePass {
74 std::unique_ptr<AMDGPUAAResult> Result;
76 public:
77 static char ID;
79 AMDGPUAAWrapperPass() : ImmutablePass(ID) {
80 initializeAMDGPUAAWrapperPassPass(*PassRegistry::getPassRegistry());
83 AMDGPUAAResult &getResult() { return *Result; }
84 const AMDGPUAAResult &getResult() const { return *Result; }
86 bool doInitialization(Module &M) override {
87 Result.reset(new AMDGPUAAResult(M.getDataLayout(),
88 Triple(M.getTargetTriple())));
89 return false;
92 bool doFinalization(Module &M) override {
93 Result.reset();
94 return false;
97 void getAnalysisUsage(AnalysisUsage &AU) const override;
100 // Wrapper around ExternalAAWrapperPass so that the default constructor gets the
101 // callback.
102 class AMDGPUExternalAAWrapper : public ExternalAAWrapperPass {
103 public:
104 static char ID;
106 AMDGPUExternalAAWrapper() : ExternalAAWrapperPass(
107 [](Pass &P, Function &, AAResults &AAR) {
108 if (auto *WrapperPass = P.getAnalysisIfAvailable<AMDGPUAAWrapperPass>())
109 AAR.addAAResult(WrapperPass->getResult());
110 }) {}
113 } // end namespace llvm
115 #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUALIASANALYSIS_H