Home
last modified time | relevance | path

Searched refs:isSplatValue (Results 1 – 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
HDVectorUtils.cpp333 bool llvm::isSplatValue(const Value *V, unsigned Depth) { in isSplatValue() function in llvm
356 return isSplatValue(X, Depth) && isSplatValue(Y, Depth); in isSplatValue()
360 return isSplatValue(X, Depth) && isSplatValue(Y, Depth) && in isSplatValue()
361 isSplatValue(Z, Depth); in isSplatValue()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDVectorUtils.h230 bool isSplatValue(const Value *V, unsigned Depth = 0);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDSelectionDAG.h1621 bool isSplatValue(SDValue V, const APInt &DemandedElts, APInt &UndefElts);
1624 bool isSplatValue(SDValue V, bool AllowUndefs = false);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAG.cpp2280 bool SelectionDAG::isSplatValue(SDValue V, const APInt &DemandedElts, in isSplatValue() function in SelectionDAG
2337 if (isSplatValue(Src, DemandedSrc, UndefSrcElts)) { in isSplatValue()
2350 if (isSplatValue(LHS, DemandedElts, UndefLHS) && in isSplatValue()
2351 isSplatValue(RHS, DemandedElts, UndefRHS)) { in isSplatValue()
2363 bool SelectionDAG::isSplatValue(SDValue V, bool AllowUndefs) { in isSplatValue() function in SelectionDAG
2370 return isSplatValue(V, DemandedElts, UndefElts) && in isSplatValue()
2383 if (isSplatValue(V, DemandedElts, UndefElts)) { in getSplatSourceVector()
HDDAGCombiner.cpp12692 if (VT.isVector() && DAG.isSplatValue(N1)) in combineRepeatedFPDivisors()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDCodeGenPrepare.cpp6034 if (!isSplatValue(TVal) || !isSplatValue(FVal)) in optimizeShiftInst()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
HDMipsSEISelLowering.cpp2513 } else if (DAG.isSplatValue(Op, /* AllowUndefs */ false)) in lowerBUILD_VECTOR()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCISelLowering.cpp8743 if (InputLoad && DAG.isSplatValue(Op, true)) { in LowerBUILD_VECTOR()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86ISelLowering.cpp5262 if (DAG.isSplatValue(Y, /*AllowUndefs=*/true)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd()
27179 bool IsSplatAmt = DAG.isSplatValue(Amt); in LowerRotate()