mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
396a4a55e5
a smallvector instead of a DenseMap. This speeds up GVN by 5% on 403.gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60255 91177308-0d34-0410-b5e6-96231b3b80d8
220 lines
8.7 KiB
C++
220 lines
8.7 KiB
C++
//===- llvm/Analysis/MemoryDependenceAnalysis.h - Memory Deps --*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the MemoryDependenceAnalysis analysis pass.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ANALYSIS_MEMORY_DEPENDENCE_H
|
|
#define LLVM_ANALYSIS_MEMORY_DEPENDENCE_H
|
|
|
|
#include "llvm/BasicBlock.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
#include "llvm/ADT/PointerIntPair.h"
|
|
|
|
namespace llvm {
|
|
class Function;
|
|
class FunctionPass;
|
|
class Instruction;
|
|
class CallSite;
|
|
|
|
/// MemDepResult - A memory dependence query can return one of three different
|
|
/// answers:
|
|
/// Normal : The query is dependent on a specific instruction.
|
|
/// NonLocal: The query does not depend on anything inside this block, but
|
|
/// we haven't scanned beyond the block to find out what.
|
|
/// None : The query does not depend on anything: we found the entry
|
|
/// block or the allocation site of the memory.
|
|
class MemDepResult {
|
|
enum DepType {
|
|
Invalid = 0, Normal, NonLocal, None
|
|
};
|
|
typedef PointerIntPair<Instruction*, 2, DepType> PairTy;
|
|
PairTy Value;
|
|
explicit MemDepResult(PairTy V) : Value(V) {}
|
|
public:
|
|
MemDepResult() : Value(0, Invalid) {}
|
|
|
|
/// get methods: These are static ctor methods for creating various
|
|
/// MemDepResult kinds.
|
|
static MemDepResult get(Instruction *Inst) {
|
|
return MemDepResult(PairTy(Inst, Normal));
|
|
}
|
|
static MemDepResult getNonLocal() {
|
|
return MemDepResult(PairTy(0, NonLocal));
|
|
}
|
|
static MemDepResult getNone() {
|
|
return MemDepResult(PairTy(0, None));
|
|
}
|
|
|
|
/// isNormal - Return true if this MemDepResult represents a query that is
|
|
/// a normal instruction dependency.
|
|
bool isNormal() const { return Value.getInt() == Normal; }
|
|
|
|
/// isNonLocal - Return true if this MemDepResult represents an query that
|
|
/// is transparent to the start of the block, but where a non-local hasn't
|
|
/// been done.
|
|
bool isNonLocal() const { return Value.getInt() == NonLocal; }
|
|
|
|
/// isNone - Return true if this MemDepResult represents a query that
|
|
/// doesn't depend on any instruction.
|
|
bool isNone() const { return Value.getInt() == None; }
|
|
|
|
/// getInst() - If this is a normal dependency, return the instruction that
|
|
/// is depended on. Otherwise, return null.
|
|
Instruction *getInst() const { return isNormal() ? Value.getPointer() : 0; }
|
|
|
|
bool operator==(const MemDepResult &M) { return M.Value == Value; }
|
|
bool operator!=(const MemDepResult &M) { return M.Value != Value; }
|
|
};
|
|
|
|
/// MemoryDependenceAnalysis - This is an analysis that determines, for a
|
|
/// given memory operation, what preceding memory operations it depends on.
|
|
/// It builds on alias analysis information, and tries to provide a lazy,
|
|
/// caching interface to a common kind of alias information query.
|
|
class MemoryDependenceAnalysis : public FunctionPass {
|
|
/// DepType - This enum is used to indicate what flavor of dependence this
|
|
/// is. If the type is Normal, there is an associated instruction pointer.
|
|
enum DepType {
|
|
/// Dirty - Entries with this marker may come in two forms, depending on
|
|
/// whether they are in a LocalDeps map or NonLocalDeps map. In either
|
|
/// case, this marker indicates that the cached value has been invalidated
|
|
/// by a removeInstruction call.
|
|
///
|
|
/// If in the LocalDeps map, the Instruction field will indicate the place
|
|
/// in the current block to start scanning. If in the non-localdeps map,
|
|
/// the instruction will be null.
|
|
///
|
|
/// In a default-constructed DepResultTy object, the type will be Dirty
|
|
/// and the instruction pointer will be null.
|
|
///
|
|
/// FIXME: Why not add a scanning point for the non-local deps map???
|
|
Dirty = 0,
|
|
|
|
/// Normal - This is a normal instruction dependence. The pointer member
|
|
/// of the DepResultTy pair holds the instruction.
|
|
Normal,
|
|
|
|
/// None - This dependence type indicates that the query does not depend
|
|
/// on any instructions, either because it scanned to the start of the
|
|
/// function or it scanned to the definition of the memory
|
|
/// (alloca/malloc).
|
|
None,
|
|
|
|
/// NonLocal - This marker indicates that the query has no dependency in
|
|
/// the specified block. To find out more, the client should query other
|
|
/// predecessor blocks.
|
|
NonLocal
|
|
};
|
|
typedef PointerIntPair<Instruction*, 2, DepType> DepResultTy;
|
|
|
|
// A map from instructions to their dependency.
|
|
typedef DenseMap<Instruction*, DepResultTy> LocalDepMapType;
|
|
LocalDepMapType LocalDeps;
|
|
|
|
// A map from instructions to their non-local dependencies.
|
|
// FIXME: DENSEMAP of DENSEMAP not a great idea.
|
|
typedef DenseMap<Instruction*,
|
|
DenseMap<BasicBlock*, DepResultTy> > NonLocalDepMapType;
|
|
NonLocalDepMapType NonLocalDeps;
|
|
|
|
// A reverse mapping from dependencies to the dependees. This is
|
|
// used when removing instructions to keep the cache coherent.
|
|
typedef DenseMap<Instruction*,
|
|
SmallPtrSet<Instruction*, 4> > ReverseDepMapType;
|
|
ReverseDepMapType ReverseLocalDeps;
|
|
|
|
// A reverse mapping form dependencies to the non-local dependees.
|
|
ReverseDepMapType ReverseNonLocalDeps;
|
|
|
|
public:
|
|
MemoryDependenceAnalysis() : FunctionPass(&ID) {}
|
|
static char ID;
|
|
|
|
/// Pass Implementation stuff. This doesn't do any analysis.
|
|
///
|
|
bool runOnFunction(Function &) {return false; }
|
|
|
|
/// Clean up memory in between runs
|
|
void releaseMemory() {
|
|
LocalDeps.clear();
|
|
NonLocalDeps.clear();
|
|
ReverseLocalDeps.clear();
|
|
ReverseNonLocalDeps.clear();
|
|
}
|
|
|
|
/// getAnalysisUsage - Does not modify anything. It uses Value Numbering
|
|
/// and Alias Analysis.
|
|
///
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
/// getDependency - Return the instruction on which a memory operation
|
|
/// depends.
|
|
MemDepResult getDependency(Instruction *QueryInst);
|
|
|
|
/// getDependencyFrom - Return the instruction on which the memory operation
|
|
/// 'QueryInst' depends. This starts scanning from the instruction before
|
|
/// the position indicated by ScanIt.
|
|
MemDepResult getDependencyFrom(Instruction *QueryInst,
|
|
BasicBlock::iterator ScanIt, BasicBlock *BB);
|
|
|
|
|
|
/// getNonLocalDependency - Perform a full dependency query for the
|
|
/// specified instruction, returning the set of blocks that the value is
|
|
/// potentially live across. The returned set of results will include a
|
|
/// "NonLocal" result for all blocks where the value is live across.
|
|
///
|
|
/// This method assumes the instruction returns a "nonlocal" dependency
|
|
/// within its own block.
|
|
void getNonLocalDependency(Instruction *QueryInst,
|
|
SmallVectorImpl<std::pair<BasicBlock*,
|
|
MemDepResult> > &Result);
|
|
|
|
/// removeInstruction - Remove an instruction from the dependence analysis,
|
|
/// updating the dependence of instructions that previously depended on it.
|
|
void removeInstruction(Instruction *InstToRemove);
|
|
|
|
/// dropInstruction - Remove an instruction from the analysis, making
|
|
/// absolutely conservative assumptions when updating the cache. This is
|
|
/// useful, for example when an instruction is changed rather than removed.
|
|
void dropInstruction(Instruction *InstToDrop);
|
|
|
|
private:
|
|
DepResultTy ConvFromResult(MemDepResult R) {
|
|
if (Instruction *I = R.getInst())
|
|
return DepResultTy(I, Normal);
|
|
if (R.isNonLocal())
|
|
return DepResultTy(0, NonLocal);
|
|
assert(R.isNone() && "Unknown MemDepResult!");
|
|
return DepResultTy(0, None);
|
|
}
|
|
|
|
MemDepResult ConvToResult(DepResultTy R) {
|
|
if (R.getInt() == Normal)
|
|
return MemDepResult::get(R.getPointer());
|
|
if (R.getInt() == NonLocal)
|
|
return MemDepResult::getNonLocal();
|
|
assert(R.getInt() == None && "Unknown MemDepResult!");
|
|
return MemDepResult::getNone();
|
|
}
|
|
|
|
/// verifyRemoved - Verify that the specified instruction does not occur
|
|
/// in our internal data structures.
|
|
void verifyRemoved(Instruction *Inst) const;
|
|
|
|
MemDepResult getCallSiteDependency(CallSite C, BasicBlock::iterator ScanIt,
|
|
BasicBlock *BB);
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
#endif
|