Home
last modified time | relevance | path

Searched refs:UseVector (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h117 using UseVector = SmallVector<RetOrArg, 5>; variable
124 Liveness markIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses);
125 Liveness surveyUse(const Use *U, UseVector &MaybeLiveUses,
127 Liveness surveyUses(const Value *V, UseVector &MaybeLiveUses);
132 const UseVector &MaybeLiveUses);
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp369 UseVector &MaybeLiveUses) { in markIfNotLive()
388 DeadArgumentEliminationPass::surveyUse(const Use *U, UseVector &MaybeLiveUses, in surveyUse()
477 UseVector &MaybeLiveUses) { in surveyUses()
519 using RetUses = SmallVector<UseVector, 5>; in surveyFunction()
598 UseVector MaybeLiveAggregateUses; in surveyFunction()
628 UseVector MaybeLiveArgUses; in surveyFunction()
663 const UseVector &MaybeLiveUses) { in markValue()
H A DOpenMPOpt.cpp344 using UseVector = SmallVector<Use *, 16>; typedef
353 UseVector &getOrCreateUseVector(Function *F) { in getOrCreateUseVector()
354 std::shared_ptr<UseVector> &UV = UsesMap[F]; in getOrCreateUseVector()
356 UV = std::make_shared<UseVector>(); in getOrCreateUseVector()
362 const UseVector *getUseVector(Function &F) const { in getUseVector()
392 UseVector &UV = getOrCreateUseVector(F); in foreachUse()
412 DenseMap<Function *, std::shared_ptr<UseVector>> UsesMap;
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1664 bool UseVector = IsCurrIdxVector || IsPrevIdxVector; in ConstantFoldGetElementPtr() local
1676 if (UseVector) in ConstantFoldGetElementPtr()
1701 if (UseVector) in ConstantFoldGetElementPtr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp773 bool IsConstantSrc, bool UseVector,
19850 bool IsConstantSrc, bool UseVector, bool UseTrunc) { in mergeStoresOfConstantsOrVecElts() argument
19855 assert((!UseTrunc || !UseVector) && in mergeStoresOfConstantsOrVecElts()
19882 if (UseVector) { in mergeStoresOfConstantsOrVecElts()
19890 if (UseVector) { in mergeStoresOfConstantsOrVecElts()
20402 bool UseVector = (LastLegalVectorType > LastLegalType) && AllowVectors; in tryStoreMergeOfConstants() local
20403 unsigned NumElem = (UseVector) ? LastLegalVectorType : LastLegalType; in tryStoreMergeOfConstants()
20404 bool UseTrunc = LastIntegerTrunc && !UseVector; in tryStoreMergeOfConstants()
20437 UseVector, UseTrunc); in tryStoreMergeOfConstants()