73#define DEBUG_TYPE "consthoist"
75STATISTIC(NumConstantsHoisted,
"Number of constants hoisted");
76STATISTIC(NumConstantsRebased,
"Number of constants rebased");
80 cl::desc(
"Enable the use of the block frequency analysis to reduce the "
81 "chance to execute const materialization more frequently than "
82 "without hoisting."));
86 cl::desc(
"Try hoisting constant gep expressions"));
90 cl::desc(
"Do not rebase if number of dependent constants of a Base is less "
107 StringRef getPassName()
const override {
return "Constant Hoisting"; }
109 void getAnalysisUsage(AnalysisUsage &AU)
const override {
119 ConstantHoistingPass Impl;
124char ConstantHoistingLegacyPass::ID = 0;
127 "Constant Hoisting",
false,
false)
136 return new ConstantHoistingLegacyPass();
140bool ConstantHoistingLegacyPass::runOnFunction(
Function &Fn) {
141 if (skipFunction(Fn))
144 LLVM_DEBUG(
dbgs() <<
"********** Begin Constant Hoisting **********\n");
148 Impl.runImpl(Fn, getAnalysis<TargetTransformInfoWrapperPass>().getTTI(Fn),
149 getAnalysis<DominatorTreeWrapperPass>().
getDomTree(),
151 ? &getAnalysis<BlockFrequencyInfoWrapperPass>().getBFI()
154 &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI());
156 LLVM_DEBUG(
dbgs() <<
"********** End Constant Hoisting **********\n");
161void ConstantHoistingPass::collectMatInsertPts(
163 SmallVectorImpl<BasicBlock::iterator> &MatInsertPts)
const {
164 for (
const RebasedConstantInfo &RCI : RebasedConstants)
165 for (
const ConstantUser &U : RCI.Uses)
171 unsigned Idx)
const {
177 if (CastInst->isCast())
178 return CastInst->getIterator();
187 assert(Entry != Inst->
getParent() &&
"PHI or landing pad in entry block!");
191 if (!InsertionBlock->
isEHPad()) {
201 auto *IDom = DT->getNode(InsertionBlock)->getIDom();
202 while (IDom->getBlock()->isEHPad()) {
203 assert(Entry != IDom->getBlock() &&
"eh pad in entry block");
204 IDom = IDom->getIDom();
207 return IDom->getBlock()->getTerminator()->getIterator();
216 assert(!BBs.
count(Entry) &&
"Assume Entry is not in BBs");
223 for (
auto *BB : BBs) {
240 "Entry doens't dominate current Node");
258 while (Idx != Orders.
size()) {
261 if (Candidates.
count(ChildDomNode->getBlock()))
262 Orders.
push_back(ChildDomNode->getBlock());
267 using InsertPtsCostPair =
278 auto &[InsertPts, InsertPtsFreq] = InsertPtsMap.
find(
Node)->second;
294 auto &[ParentInsertPts, ParentPtsFreq] = InsertPtsMap.
find(Parent)->second;
305 ParentInsertPts.insert(
Node);
308 ParentInsertPts.insert_range(InsertPts);
309 ParentPtsFreq += InsertPtsFreq;
315SetVector<BasicBlock::iterator>
316ConstantHoistingPass::findConstantInsertionPoint(
317 const ConstantInfo &ConstInfo,
321 SetVector<BasicBlock *> BBs;
322 SetVector<BasicBlock::iterator> InsertPts;
325 BBs.
insert(MatInsertPt->getParent());
327 if (BBs.
count(Entry)) {
334 for (BasicBlock *BB : BBs)
335 InsertPts.
insert(BB->getFirstInsertionPt());
339 while (BBs.size() >= 2) {
341 BB1 = BBs.pop_back_val();
342 BB2 = BBs.pop_back_val();
343 BB = DT->findNearestCommonDominator(BB1, BB2);
350 assert((BBs.size() == 1) &&
"Expected only one element.");
352 InsertPts.
insert(findMatInsertPt(&FirstInst));
362void ConstantHoistingPass::collectConstantCandidates(
363 ConstCandMapType &ConstCandMap, Instruction *Inst,
unsigned Idx,
364 ConstantInt *ConstInt) {
382 ConstCandMapType::iterator Itr;
384 ConstPtrUnionType Cand = ConstInt;
385 std::tie(Itr, Inserted) = ConstCandMap.try_emplace(Cand);
387 ConstIntCandVec.push_back(ConstantCandidate(ConstInt));
388 Itr->second = ConstIntCandVec.size() - 1;
390 ConstIntCandVec[Itr->second].addUser(Inst, Idx,
Cost.
getValue());
392 <<
"Collect constant " << *ConstInt <<
" from " << *Inst
393 <<
" with cost " <<
Cost <<
'\n';
394 else dbgs() <<
"Collect constant " << *ConstInt
395 <<
" indirectly from " << *Inst <<
" via "
402void ConstantHoistingPass::collectConstantCandidates(
403 ConstCandMapType &ConstCandMap, Instruction *Inst,
unsigned Idx,
404 ConstantExpr *ConstExpr) {
415 IntegerType *OffsetTy =
DL->getIndexType(*Ctx, GVPtrTy->getAddressSpace());
416 APInt
Offset(
DL->getTypeSizeInBits(OffsetTy), 0,
true);
423 if (!GEPO->isInBounds())
426 if (!GEPO->accumulateConstantOffset(*
DL,
Offset))
439 ConstCandVecType &ExprCandVec = ConstGEPCandMap[BaseGV];
440 ConstCandMapType::iterator Itr;
442 ConstPtrUnionType Cand = ConstExpr;
443 std::tie(Itr, Inserted) = ConstCandMap.try_emplace(Cand);
445 ExprCandVec.push_back(ConstantCandidate(
446 ConstantInt::get(Type::getInt32Ty(*Ctx),
Offset.getLimitedValue()),
448 Itr->second = ExprCandVec.size() - 1;
450 ExprCandVec[Itr->second].addUser(Inst, Idx,
Cost.
getValue());
454void ConstantHoistingPass::collectConstantCandidates(
455 ConstCandMapType &ConstCandMap, Instruction *Inst,
unsigned Idx) {
460 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
468 if (!CastInst->isCast())
474 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
483 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstExpr);
492 collectConstantCandidates(ConstCandMap, Inst, Idx, ConstInt);
500void ConstantHoistingPass::collectConstantCandidates(
501 ConstCandMapType &ConstCandMap, Instruction *Inst) {
514 collectConstantCandidates(ConstCandMap, Inst, Idx);
521void ConstantHoistingPass::collectConstantCandidates(Function &Fn) {
522 ConstCandMapType ConstCandMap;
523 for (BasicBlock &BB : Fn) {
525 if (!DT->isReachableFromEntry(&BB))
527 for (Instruction &Inst : BB)
529 collectConstantCandidates(ConstCandMap, &Inst);
557ConstantHoistingPass::maximizeConstantsInRange(ConstCandVecType::iterator S,
558 ConstCandVecType::iterator
E,
559 ConstCandVecType::iterator &MaxCostItr) {
560 unsigned NumUses = 0;
562 if (!OptForSize || std::distance(S,
E) > 100) {
563 for (
auto ConstCand = S; ConstCand !=
E; ++ConstCand) {
564 NumUses += ConstCand->Uses.size();
565 if (ConstCand->CumulativeCost > MaxCostItr->CumulativeCost)
566 MaxCostItr = ConstCand;
573 for (
auto ConstCand = S; ConstCand !=
E; ++ConstCand) {
574 auto Value = ConstCand->ConstInt->getValue();
575 Type *Ty = ConstCand->ConstInt->getType();
577 NumUses += ConstCand->Uses.size();
578 LLVM_DEBUG(
dbgs() <<
"= Constant: " << ConstCand->ConstInt->getValue()
581 for (
auto User : ConstCand->Uses) {
582 unsigned Opcode =
User.Inst->getOpcode();
583 unsigned OpndIdx =
User.OpndIdx;
588 for (
auto C2 = S; C2 !=
E; ++C2) {
589 APInt Diff = C2->ConstInt->getValue() - ConstCand->ConstInt->getValue();
594 <<
"has penalty: " << ImmCosts <<
"\n"
595 <<
"Adjusted cost: " <<
Cost <<
"\n");
599 if (
Cost > MaxCost) {
601 MaxCostItr = ConstCand;
602 LLVM_DEBUG(
dbgs() <<
"New candidate: " << MaxCostItr->ConstInt->getValue()
611void ConstantHoistingPass::findAndMakeBaseConstant(
612 ConstCandVecType::iterator S, ConstCandVecType::iterator
E,
613 SmallVectorImpl<consthoist::ConstantInfo> &ConstInfoVec) {
615 unsigned NumUses = maximizeConstantsInRange(S,
E, MaxCostItr);
621 ConstantInt *ConstInt = MaxCostItr->ConstInt;
622 ConstantExpr *ConstExpr = MaxCostItr->ConstExpr;
623 ConstantInfo ConstInfo;
629 for (
auto ConstCand = S; ConstCand !=
E; ++ConstCand) {
630 APInt Diff = ConstCand->ConstInt->getValue() - ConstInt->
getValue();
631 Constant *
Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff);
633 ConstCand->ConstExpr ? ConstCand->ConstExpr->getType() :
nullptr;
635 RebasedConstantInfo(std::move(ConstCand->Uses),
Offset, ConstTy));
637 ConstInfoVec.
push_back(std::move(ConstInfo));
642void ConstantHoistingPass::findBaseConstants(GlobalVariable *BaseGV) {
645 ConstCandVecType &ConstCandVec = BaseGV ?
646 ConstGEPCandMap[BaseGV] : ConstIntCandVec;
647 ConstInfoVecType &ConstInfoVec = BaseGV ?
648 ConstGEPInfoMap[BaseGV] : ConstIntInfoVec;
652 const ConstantCandidate &
RHS) {
654 return LHS.ConstInt->getBitWidth() <
RHS.ConstInt->getBitWidth();
655 return LHS.ConstInt->getValue().ult(
RHS.ConstInt->getValue());
660 auto MinValItr = ConstCandVec.begin();
661 for (
auto CC = std::next(ConstCandVec.begin()),
E = ConstCandVec.end();
663 if (MinValItr->ConstInt->getType() == CC->ConstInt->getType()) {
664 Type *MemUseValTy =
nullptr;
665 for (
auto &U : CC->Uses) {
668 MemUseValTy = LI->getType();
672 if (
SI->getPointerOperand() ==
SI->getOperand(
U.OpndIdx)) {
673 MemUseValTy =
SI->getValueOperand()->getType();
680 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue();
692 findAndMakeBaseConstant(MinValItr, CC, ConstInfoVec);
697 findAndMakeBaseConstant(MinValItr, ConstCandVec.end(), ConstInfoVec);
715 for (
unsigned i = 0; i < Idx; ++i) {
716 if (
PHI->getIncomingBlock(i) == IncomingBB) {
717 Value *IncomingVal =
PHI->getIncomingValue(i);
730void ConstantHoistingPass::emitBaseConstants(Instruction *
Base,
731 UserAdjustment *Adj) {
735 if (!Adj->Offset && Adj->Ty && Adj->Ty !=
Base->getType())
736 Adj->Offset = ConstantInt::get(Type::getInt32Ty(*Ctx), 0);
742 "mat_gep", Adj->MatInsertPt);
744 Mat =
new BitCastInst(Mat, Adj->Ty,
"mat_bitcast",
745 Adj->MatInsertPt->getIterator());
750 "const_mat", Adj->MatInsertPt->getIterator());
753 <<
" + " << *Adj->Offset <<
") in BB "
758 Value *Opnd = Adj->User.Inst->getOperand(Adj->User.OpndIdx);
763 if (!
updateOperand(Adj->User.Inst, Adj->User.OpndIdx, Mat) && Adj->Offset)
771 assert(CastInst->isCast() &&
"Expected an cast instruction!");
774 Instruction *&ClonedCastInst = ClonedCastMap[CastInst];
775 if (!ClonedCastInst) {
776 ClonedCastInst = CastInst->
clone();
778 ClonedCastInst->
insertAfter(CastInst->getIterator());
780 ClonedCastInst->
setDebugLoc(CastInst->getDebugLoc());
782 <<
"To : " << *ClonedCastInst <<
'\n');
786 updateOperand(Adj->User.Inst, Adj->User.OpndIdx, ClonedCastInst);
800 assert(ConstExpr->
isCast() &&
"ConstExpr should be a cast");
806 ConstExprInst->
setDebugLoc(Adj->User.Inst->getDebugLoc());
808 LLVM_DEBUG(
dbgs() <<
"Create instruction: " << *ConstExprInst <<
'\n'
809 <<
"From : " << *ConstExpr <<
'\n');
811 if (!
updateOperand(Adj->User.Inst, Adj->User.OpndIdx, ConstExprInst)) {
823bool ConstantHoistingPass::emitBaseConstants(GlobalVariable *BaseGV) {
824 bool MadeChange =
false;
825 SmallVectorImpl<consthoist::ConstantInfo> &ConstInfoVec =
826 BaseGV ? ConstGEPInfoMap[BaseGV] : ConstIntInfoVec;
827 for (
const consthoist::ConstantInfo &ConstInfo : ConstInfoVec) {
830 SetVector<BasicBlock::iterator> IPSet =
831 findConstantInsertionPoint(ConstInfo, MatInsertPts);
836 unsigned UsesNum = 0;
837 unsigned ReBasesNum = 0;
838 unsigned NotRebasedNum = 0;
845 UsesNum += RCI.Uses.size();
846 for (
auto const &U : RCI.Uses) {
848 BasicBlock *OrigMatInsertBB = MatInsertPt->getParent();
851 if (IPSet.size() == 1 ||
852 DT->dominates(IP->getParent(), OrigMatInsertBB))
853 ToBeRebased.
emplace_back(RCI.Offset, RCI.Ty, MatInsertPt, U);
860 NotRebasedNum += ToBeRebased.
size();
868 assert(BaseGV &&
"A base constant expression must have an base GV");
870 Base =
new BitCastInst(ConstInfo.
BaseExpr, Ty,
"const", IP);
873 Base =
new BitCastInst(ConstInfo.
BaseInt, Ty,
"const", IP);
876 Base->setDebugLoc(IP->getDebugLoc());
879 <<
") to BB " << IP->getParent()->
getName() <<
'\n'
883 for (UserAdjustment &R : ToBeRebased) {
884 emitBaseConstants(
Base, &R);
888 Base->getDebugLoc(),
R.User.Inst->getDebugLoc()));
890 assert(!
Base->use_empty() &&
"The use list is empty!?");
892 "All uses should be instructions.");
898 assert(UsesNum == (ReBasesNum + NotRebasedNum) &&
899 "Not all uses are rebased");
901 NumConstantsHoisted++;
914void ConstantHoistingPass::deleteDeadCastInst()
const {
915 for (
auto const &
I : ClonedCastMap)
916 if (
I.first->use_empty())
917 I.first->eraseFromParent();
929 this->Entry = &Entry;
935 collectConstantCandidates(Fn);
939 if (!ConstIntCandVec.empty())
940 findBaseConstants(
nullptr);
941 for (
const auto &MapEntry : ConstGEPCandMap)
942 if (!MapEntry.second.empty())
943 findBaseConstants(MapEntry.first);
947 bool MadeChange =
false;
948 if (!ConstIntInfoVec.empty())
949 MadeChange = emitBaseConstants(
nullptr);
950 for (
const auto &MapEntry : ConstGEPInfoMap)
951 if (!MapEntry.second.empty())
952 MadeChange |= emitBaseConstants(MapEntry.first);
956 deleteDeadCastInst();
972 if (!
runImpl(
F, TTI, DT, BFI,
F.getEntryBlock(), PSI))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static void cleanup(BlockFrequencyInfoImplBase &BFI)
Clear all memory not needed downstream.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static bool updateOperand(Instruction *Inst, unsigned Idx, Instruction *Mat)
Updates the operand at Idx in instruction Inst with the result of instruction Mat.
static void findBestInsertionSet(DominatorTree &DT, BlockFrequencyInfo &BFI, BasicBlock *Entry, SetVector< BasicBlock * > &BBs)
Given BBs as input, find another set of BBs which collectively dominates BBs and have the minimal sum...
static cl::opt< unsigned > MinNumOfDependentToRebase("consthoist-min-num-to-rebase", cl::desc("Do not rebase if number of dependent constants of a Base is less " "than this number."), cl::init(0), cl::Hidden)
static cl::opt< bool > ConstHoistWithBlockFrequency("consthoist-with-block-frequency", cl::init(true), cl::Hidden, cl::desc("Enable the use of the block frequency analysis to reduce the " "chance to execute const materialization more frequently than " "without hoisting."))
static cl::opt< bool > ConstHoistGEP("consthoist-gep", cl::init(false), cl::Hidden, cl::desc("Try hoisting constant gep expressions"))
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseMap class.
static bool runOnFunction(Function &F, bool PostInlining)
static bool runImpl(Function &F, const TargetLowering &TLI, const LibcallLoweringInfo &Libcalls, AssumptionCache *AC)
static bool isCandidate(const MachineInstr *MI, Register &DefedReg, Register FrameReg)
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
static DominatorTree getDomTree(Function &F)
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
unsigned getBitWidth() const
Return the number of bits in the APInt.
int64_t getSExtValue() const
Get sign extended value.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
LLVM Basic Block Representation.
InstListType::iterator iterator
Instruction iterators...
bool isEHPad() const
Return true if this basic block is an exception handling block.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
static LLVM_ABI BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a binary instruction, given the opcode and the two operands.
Analysis pass which computes BlockFrequencyInfo.
Legacy analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
LLVM_ABI BlockFrequency getBlockFreq(const BasicBlock *BB) const
getblockFreq - Return block frequency.
Represents analyses that only rely on functions' control flow.
LLVM_ABI bool isCast() const
Return true if this is a convert constant expression.
LLVM_ABI Instruction * getAsInstruction() const
Returns an Instruction which implements the same operation as this ConstantExpr.
LLVM_ABI bool runImpl(Function &F, TargetTransformInfo &TTI, DominatorTree &DT, BlockFrequencyInfo *BFI, BasicBlock &Entry, ProfileSummaryInfo *PSI)
Optimize expensive integer constants in the given function.
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
IntegerType * getIntegerType() const
Variant of the getType() method to always return an IntegerType, which reduces the amount of casting ...
const APInt & getValue() const
Return the constant as an APInt value reference.
static LLVM_ABI DebugLoc getMergedLocation(DebugLoc LocA, DebugLoc LocB)
When two instructions are combined into a single instruction we also need to combine the original loc...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
iterator_range< iterator > children()
DomTreeNodeBase * getIDom() const
Analysis pass which computes a DominatorTree.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
FunctionPass class - This class is used to implement most global optimizations.
const BasicBlock & getEntryBlock() const
const DataLayout & getDataLayout() const
Get the data layout of the module this function belongs to.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
static GetElementPtrInst * Create(Type *PointeeType, Value *Ptr, ArrayRef< Value * > IdxList, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
PointerType * getType() const
Global values are always pointers.
CostType getValue() const
This function is intended to be used as sparingly as possible, since the class provides the full rang...
LLVM_ABI Instruction * clone() const
Create a copy of 'this' instruction that is identical in all ways except the following:
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
bool isEHPad() const
Return true if the instruction is a variety of EH-block.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
LLVM_ABI void insertAfter(Instruction *InsertPos)
Insert an unlinked instruction into a basic block immediately after the specified instruction.
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
An analysis pass based on legacy pass manager to deliver ProfileSummaryInfo.
Analysis providing profile information.
A vector that has set insertion semantics.
void insert_range(Range &&R)
size_type count(const_arg_type key) const
Count the number of elements of a given key in the SetVector.
void clear()
Completely clear the SetVector.
bool empty() const
Determine if the SetVector is empty or not.
bool insert(const value_type &X)
Insert a new element into the SetVector.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Analysis pass providing the TargetTransformInfo.
bool isVectorTy() const
True if this is an instance of VectorType.
void setOperand(unsigned i, Value *Val)
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
const ParentTy * getParent() const
self_iterator getIterator()
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ BasicBlock
Various leaf nodes.
initializer< Ty > init(const Ty &Val)
A private "module" namespace for types and utilities used by ConstantHoisting.
SmallVector< RebasedConstantInfo, 4 > RebasedConstantListType
@ User
could "use" a pointer
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr Value
void stable_sort(R &&Range)
LLVM_ABI FunctionPass * createConstantHoistingPass()
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
auto reverse(ContainerTy &&C)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI void initializeConstantHoistingLegacyPassPass(PassRegistry &)
LLVM_ABI bool canReplaceOperandWithVariable(const Instruction *I, unsigned OpIdx)
Given an instruction, is it legal to set operand OpIdx to a non-constant value?
ArrayRef(const T &OneElt) -> ArrayRef< T >
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
RebasedConstantListType RebasedConstants