Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp362 UseVector &MaybeLiveUses) { in markIfNotLive()
381 DeadArgumentEliminationPass::surveyUse(const Use *U, UseVector &MaybeLiveUses, in surveyUse()
470 UseVector &MaybeLiveUses) { in surveyUses()
512 using RetUses = SmallVector<UseVector, 5>; in surveyFunction()
583 UseVector MaybeLiveAggregateUses; in surveyFunction()
613 UseVector MaybeLiveArgUses; in surveyFunction()
648 const UseVector &MaybeLiveUses) { in markValue()
H A DOpenMPOpt.cpp249 using UseVector = SmallVector<Use *, 16>; typedef
258 UseVector &getOrCreateUseVector(Function *F) { in getOrCreateUseVector()
259 std::shared_ptr<UseVector> &UV = UsesMap[F]; in getOrCreateUseVector()
261 UV = std::make_shared<UseVector>(); in getOrCreateUseVector()
267 const UseVector *getUseVector(Function &F) const { in getUseVector()
297 UseVector &UV = getOrCreateUseVector(F); in foreachUse()
317 DenseMap<Function *, std::shared_ptr<UseVector>> UsesMap;
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantFold.cpp2218 bool UseVector = IsCurrIdxVector || IsPrevIdxVector; in ConstantFoldGetElementPtr() local
2230 if (UseVector) in ConstantFoldGetElementPtr()
2255 if (UseVector) in ConstantFoldGetElementPtr()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp722 bool IsConstantSrc, bool UseVector,
18534 bool IsConstantSrc, bool UseVector, bool UseTrunc) { in mergeStoresOfConstantsOrVecElts() argument
18539 assert((!UseTrunc || !UseVector) && in mergeStoresOfConstantsOrVecElts()
18566 if (UseVector) { in mergeStoresOfConstantsOrVecElts()
18574 if (UseVector) { in mergeStoresOfConstantsOrVecElts()
19065 bool UseVector = (LastLegalVectorType > LastLegalType) && AllowVectors; in tryStoreMergeOfConstants() local
19066 unsigned NumElem = (UseVector) ? LastLegalVectorType : LastLegalType; in tryStoreMergeOfConstants()
19067 bool UseTrunc = LastIntegerTrunc && !UseVector; in tryStoreMergeOfConstants()
19100 UseVector, UseTrunc); in tryStoreMergeOfConstants()