36#ifndef LLVM_TRANSFORMS_SCALAR_CONSTANTHOISTING_H
37#define LLVM_TRANSFORMS_SCALAR_CONSTANTHOISTING_H
51class BlockFrequencyInfo;
59class ProfileSummaryInfo;
60class TargetTransformInfo;
133 ClonedCastMap.clear();
134 ConstIntCandVec.clear();
135 for (
auto MapEntry : ConstGEPCandMap)
136 MapEntry.second.clear();
137 ConstGEPCandMap.clear();
138 ConstIntInfoVec.
clear();
139 for (
auto MapEntry : ConstGEPInfoMap)
140 MapEntry.second.clear();
141 ConstGEPInfoMap.clear();
157 using ConstCandVecType = std::vector<consthoist::ConstantCandidate>;
159 ConstCandVecType ConstIntCandVec;
160 GVCandVecMapType ConstGEPCandMap;
165 ConstInfoVecType ConstIntInfoVec;
166 GVInfoVecMapType ConstGEPInfoMap;
174 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
177 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
180 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
182 void collectConstantCandidates(ConstCandMapType &ConstCandMap,
184 void collectConstantCandidates(
Function &Fn);
185 void findAndMakeBaseConstant(ConstCandVecType::iterator S,
186 ConstCandVecType::iterator
E,
188 unsigned maximizeConstantsInRange(ConstCandVecType::iterator S,
189 ConstCandVecType::iterator
E,
190 ConstCandVecType::iterator &MaxCostItr);
199 void deleteDeadCastInst()
const;
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This file defines the DenseMap class.
This file implements a map that provides insertion order iteration.
This header defines various interfaces for pass management in LLVM.
This file defines the PointerUnion class, which is a discriminated union of pointer types.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallVector class.
A container for analyses that lazily runs them and caches their results.
LLVM Basic Block Representation.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
A constant value that is initialized with an expression using other constant values.
bool runImpl(Function &F, TargetTransformInfo &TTI, DominatorTree &DT, BlockFrequencyInfo *BFI, BasicBlock &Entry, ProfileSummaryInfo *PSI)
Optimize expensive integer constants in the given function.
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
This is the shared class of boolean and integer constants.
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
This is an important class for using LLVM in a threaded context.
This class implements a map that also provides access to all stored values in a deterministic order.
A discriminated union of two or more pointer types, with the discriminator in the low bit of the poin...
A set of analyses that are preserved following a run of a transformation pass.
Analysis providing profile information.
A vector that has set insertion semantics.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
The instances of the Type class are immutable: once they are created, they are never changed.
@ BasicBlock
Various leaf nodes.
This is an optimization pass for GlobalISel generic memory operations.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
A CRTP mix-in to automatically provide informational APIs needed for passes.
Keeps track of a constant candidate and its uses.
void addUser(Instruction *Inst, unsigned Idx, unsigned Cost)
Add the user to the use list and update the cost.
ConstantCandidate(ConstantInt *ConstInt, ConstantExpr *ConstExpr=nullptr)
A base constant and all its rebased constants.
RebasedConstantListType RebasedConstants
Keeps track of the user of a constant and the operand index where the constant is used.
ConstantUser(Instruction *Inst, unsigned Idx)
This represents a constant that has been rebased with respect to a base constant.
RebasedConstantInfo(ConstantUseListType &&Uses, Constant *Offset, Type *Ty=nullptr)