mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
ae65e281f3
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
126 lines
3.9 KiB
C++
126 lines
3.9 KiB
C++
//==- CFLAndersAliasAnalysis.h - Unification-based Alias Analysis -*- C++-*-==//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
/// \file
|
|
/// This is the interface for LLVM's inclusion-based alias analysis
|
|
/// implemented with CFL graph reachability.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H
|
|
#define LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/Optional.h"
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
#include "llvm/Analysis/CFLAliasAnalysisUtils.h"
|
|
#include "llvm/IR/PassManager.h"
|
|
#include "llvm/Pass.h"
|
|
#include <forward_list>
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
|
|
class Function;
|
|
class MemoryLocation;
|
|
class TargetLibraryInfo;
|
|
|
|
namespace cflaa {
|
|
|
|
struct AliasSummary;
|
|
|
|
} // end namespace cflaa
|
|
|
|
class CFLAndersAAResult : public AAResultBase<CFLAndersAAResult> {
|
|
friend AAResultBase<CFLAndersAAResult>;
|
|
|
|
class FunctionInfo;
|
|
|
|
public:
|
|
explicit CFLAndersAAResult(const TargetLibraryInfo &TLI);
|
|
CFLAndersAAResult(CFLAndersAAResult &&RHS);
|
|
~CFLAndersAAResult();
|
|
|
|
/// Handle invalidation events from the new pass manager.
|
|
/// By definition, this result is stateless and so remains valid.
|
|
bool invalidate(Function &, const PreservedAnalyses &,
|
|
FunctionAnalysisManager::Invalidator &) {
|
|
return false;
|
|
}
|
|
|
|
/// Evict the given function from cache
|
|
void evict(const Function *Fn);
|
|
|
|
/// Get the alias summary for the given function
|
|
/// Return nullptr if the summary is not found or not available
|
|
const cflaa::AliasSummary *getAliasSummary(const Function &);
|
|
|
|
AliasResult query(const MemoryLocation &, const MemoryLocation &);
|
|
AliasResult alias(const MemoryLocation &, const MemoryLocation &);
|
|
|
|
private:
|
|
/// Ensures that the given function is available in the cache.
|
|
/// Returns the appropriate entry from the cache.
|
|
const Optional<FunctionInfo> &ensureCached(const Function &);
|
|
|
|
/// Inserts the given Function into the cache.
|
|
void scan(const Function &);
|
|
|
|
/// Build summary for a given function
|
|
FunctionInfo buildInfoFrom(const Function &);
|
|
|
|
const TargetLibraryInfo &TLI;
|
|
|
|
/// Cached mapping of Functions to their StratifiedSets.
|
|
/// If a function's sets are currently being built, it is marked
|
|
/// in the cache as an Optional without a value. This way, if we
|
|
/// have any kind of recursion, it is discernable from a function
|
|
/// that simply has empty sets.
|
|
DenseMap<const Function *, Optional<FunctionInfo>> Cache;
|
|
|
|
std::forward_list<cflaa::FunctionHandle<CFLAndersAAResult>> Handles;
|
|
};
|
|
|
|
/// Analysis pass providing a never-invalidated alias analysis result.
|
|
///
|
|
/// FIXME: We really should refactor CFL to use the analysis more heavily, and
|
|
/// in particular to leverage invalidation to trigger re-computation.
|
|
class CFLAndersAA : public AnalysisInfoMixin<CFLAndersAA> {
|
|
friend AnalysisInfoMixin<CFLAndersAA>;
|
|
|
|
static AnalysisKey Key;
|
|
|
|
public:
|
|
using Result = CFLAndersAAResult;
|
|
|
|
CFLAndersAAResult run(Function &F, FunctionAnalysisManager &AM);
|
|
};
|
|
|
|
/// Legacy wrapper pass to provide the CFLAndersAAResult object.
|
|
class CFLAndersAAWrapperPass : public ImmutablePass {
|
|
std::unique_ptr<CFLAndersAAResult> Result;
|
|
|
|
public:
|
|
static char ID;
|
|
|
|
CFLAndersAAWrapperPass();
|
|
|
|
CFLAndersAAResult &getResult() { return *Result; }
|
|
const CFLAndersAAResult &getResult() const { return *Result; }
|
|
|
|
void initializePass() override;
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override;
|
|
};
|
|
|
|
// createCFLAndersAAWrapperPass - This pass implements a set-based approach to
|
|
// alias analysis.
|
|
ImmutablePass *createCFLAndersAAWrapperPass();
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_ANALYSIS_CFLANDERSALIASANALYSIS_H
|