1 //==- CFLAndersAliasAnalysis.h - Unification-based Alias Analysis -*- C++-*-==//
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
7 //===----------------------------------------------------------------------===//
9 /// This is the interface for LLVM's inclusion-based alias analysis
10 /// implemented with CFL graph reachability.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H
15 #define LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/Analysis/AliasAnalysis.h"
20 #include "llvm/Analysis/CFLAliasAnalysisUtils.h"
21 #include "llvm/IR/PassManager.h"
22 #include "llvm/Pass.h"
23 #include <forward_list>
30 class TargetLibraryInfo
;
36 } // end namespace cflaa
38 class CFLAndersAAResult
: public AAResultBase
<CFLAndersAAResult
> {
39 friend AAResultBase
<CFLAndersAAResult
>;
44 explicit CFLAndersAAResult(const TargetLibraryInfo
&TLI
);
45 CFLAndersAAResult(CFLAndersAAResult
&&RHS
);
48 /// Handle invalidation events from the new pass manager.
49 /// By definition, this result is stateless and so remains valid.
50 bool invalidate(Function
&, const PreservedAnalyses
&,
51 FunctionAnalysisManager::Invalidator
&) {
55 /// Evict the given function from cache
56 void evict(const Function
*Fn
);
58 /// Get the alias summary for the given function
59 /// Return nullptr if the summary is not found or not available
60 const cflaa::AliasSummary
*getAliasSummary(const Function
&);
62 AliasResult
query(const MemoryLocation
&, const MemoryLocation
&);
63 AliasResult
alias(const MemoryLocation
&, const MemoryLocation
&,
67 /// Ensures that the given function is available in the cache.
68 /// Returns the appropriate entry from the cache.
69 const Optional
<FunctionInfo
> &ensureCached(const Function
&);
71 /// Inserts the given Function into the cache.
72 void scan(const Function
&);
74 /// Build summary for a given function
75 FunctionInfo
buildInfoFrom(const Function
&);
77 const TargetLibraryInfo
&TLI
;
79 /// Cached mapping of Functions to their StratifiedSets.
80 /// If a function's sets are currently being built, it is marked
81 /// in the cache as an Optional without a value. This way, if we
82 /// have any kind of recursion, it is discernable from a function
83 /// that simply has empty sets.
84 DenseMap
<const Function
*, Optional
<FunctionInfo
>> Cache
;
86 std::forward_list
<cflaa::FunctionHandle
<CFLAndersAAResult
>> Handles
;
89 /// Analysis pass providing a never-invalidated alias analysis result.
91 /// FIXME: We really should refactor CFL to use the analysis more heavily, and
92 /// in particular to leverage invalidation to trigger re-computation.
93 class CFLAndersAA
: public AnalysisInfoMixin
<CFLAndersAA
> {
94 friend AnalysisInfoMixin
<CFLAndersAA
>;
96 static AnalysisKey Key
;
99 using Result
= CFLAndersAAResult
;
101 CFLAndersAAResult
run(Function
&F
, FunctionAnalysisManager
&AM
);
104 /// Legacy wrapper pass to provide the CFLAndersAAResult object.
105 class CFLAndersAAWrapperPass
: public ImmutablePass
{
106 std::unique_ptr
<CFLAndersAAResult
> Result
;
111 CFLAndersAAWrapperPass();
113 CFLAndersAAResult
&getResult() { return *Result
; }
114 const CFLAndersAAResult
&getResult() const { return *Result
; }
116 void initializePass() override
;
117 void getAnalysisUsage(AnalysisUsage
&AU
) const override
;
120 // createCFLAndersAAWrapperPass - This pass implements a set-based approach to
122 ImmutablePass
*createCFLAndersAAWrapperPass();
124 } // end namespace llvm
126 #endif // LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H