Searched refs:isSplatValue (Results 1 – 9 of 9) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | VectorUtils.cpp | 333 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/ |
| HD | VectorUtils.h | 230 bool isSplatValue(const Value *V, unsigned Depth = 0);
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| HD | SelectionDAG.h | 1621 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/ |
| HD | SelectionDAG.cpp | 2280 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()
|
| HD | DAGCombiner.cpp | 12692 if (VT.isVector() && DAG.isSplatValue(N1)) in combineRepeatedFPDivisors()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| HD | CodeGenPrepare.cpp | 6034 if (!isSplatValue(TVal) || !isSplatValue(FVal)) in optimizeShiftInst()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| HD | MipsSEISelLowering.cpp | 2513 } else if (DAG.isSplatValue(Op, /* AllowUndefs */ false)) in lowerBUILD_VECTOR()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| HD | PPCISelLowering.cpp | 8743 if (InputLoad && DAG.isSplatValue(Op, true)) { in LowerBUILD_VECTOR()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| HD | X86ISelLowering.cpp | 5262 if (DAG.isSplatValue(Y, /*AllowUndefs=*/true)) in shouldProduceAndByConstByHoistingConstFromShiftsLHSOfAnd() 27179 bool IsSplatAmt = DAG.isSplatValue(Amt); in LowerRotate()
|