Home
last modified time | relevance | path

Searched refs:CreateVectorSplat (Results 1 – 22 of 22) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DMatrixBuilder.h44 RHS = B.CreateVectorSplat( in splatScalarOperandIfNeeded()
50 LHS = B.CreateVectorSplat( in splatScalarOperandIfNeeded()
166 RHS = B.CreateVectorSplat( in CreateAdd()
172 LHS = B.CreateVectorSplat( in CreateAdd()
191 RHS = B.CreateVectorSplat( in CreateSub()
197 LHS = B.CreateVectorSplat( in CreateSub()
225 B.CreateVectorSplat(cast<VectorType>(LHS->getType())->getElementCount(), in CreateScalarDiv()
H A DIRBuilder.h2572 Value *CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name = "");
2576 Value *CreateVectorSplat(ElementCount EC, Value *V, const Twine &Name = "");
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp769 Builder.CreateVectorSplat(Ty->getNumElements(), Builder.getInt32(TypeScale)), in tryCreateIncrementingGatScat()
774 Builder.CreateVectorSplat( in tryCreateIncrementingGatScat()
826 Builder.CreateVectorSplat(NumElems, Builder.getInt32(TypeScale)), in tryCreateIncrementingWBGatScat()
831 Builder.CreateVectorSplat( in tryCreateIncrementingWBGatScat()
840 Builder.CreateVectorSplat(NumElems, Builder.getInt32(Immediate)), in tryCreateIncrementingWBGatScat()
1099 NonVectorVal = Builder.CreateVectorSplat( in CheckAndCreateOffsetAdd()
1105 Builder.CreateVectorSplat(VT->getNumElements(), NonVectorVal); in CheckAndCreateOffsetAdd()
H A DARMTargetTransformInfo.cpp179 auto TrueVector = IC.Builder.CreateVectorSplat( in instCombineIntrinsic()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/Utils/
H A DLocal.h77 Op = Builder->CreateVectorSplat(
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandVectorPredication.cpp208 Value *VLSplat = Builder.CreateVectorSplat(NumElems, EVLParam); in convertEVLToMask()
H A DCodeGenPrepare.cpp6921 Value *Shuffle = Builder.CreateVectorSplat(NewVecType->getNumElements(), BC1); in optimizeShuffleVectorInst()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp782 VF.isScalar() ? TCMO : Builder.CreateVectorSplat(VF, TCMO, "broadcast"); in execute()
1225 : Builder.CreateVectorSplat(VF.getKnownMinValue(), in execute()
1322 Builder.CreateVectorSplat(State.VF, StartV, "minmax.ident"); in execute()
H A DLoopVectorize.cpp2270 Value *Shuf = Builder.CreateVectorSplat(VF, V, "broadcast"); in getBroadcastInstrs()
2292 Value *SplatStart = Builder.CreateVectorSplat(VF, Start); in createVectorIntOrFpInductionPHI()
2326 : Builder.CreateVectorSplat(VF, Mul); in createVectorIntOrFpInductionPHI()
2547 Value *StartIdxSplat = Builder.CreateVectorSplat( in getStepVector()
2552 Step = Builder.CreateVectorSplat(VLen, Step); in getStepVector()
2564 Step = Builder.CreateVectorSplat(VLen, Step); in getStepVector()
2607 SplatStep = Builder.CreateVectorSplat(VF, Step); in buildScalarSteps()
2608 SplatIV = Builder.CreateVectorSplat(VF, ScalarIV); in buildScalarSteps()
3403 Y = B.CreateVectorSplat(XVTy->getElementCount(), Y); in emitTransformedIndex()
4651 Value *EntryPart = Builder.CreateVectorSplat(VF, Clone); in widenGEP()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp1098 Value *IRBuilderBase::CreateVectorSplat(unsigned NumElts, Value *V, in CreateVectorSplat() function in IRBuilderBase
1101 return CreateVectorSplat(EC, V, Name); in CreateVectorSplat()
1104 Value *IRBuilderBase::CreateVectorSplat(ElementCount EC, Value *V, in CreateVectorSplat() function in IRBuilderBase
H A DAutoUpgrade.cpp1296 Amt = Builder.CreateVectorSplat(NumElts, Amt); in upgradeX86Rotate()
1366 Amt = Builder.CreateVectorSplat(NumElts, Amt); in upgradeX86ConcatShift()
1950 Rep = Builder.CreateVectorSplat(NumElts, Rep); in UpgradeIntrinsicCall()
1999 Rep = Builder.CreateVectorSplat(NumElts, CI->getArgOperand(0)); in UpgradeIntrinsicCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp648 Op0 = Builder.CreateVectorSplat(NumElems, Op0); in visitGetElementPtrInst()
659 Op = Builder.CreateVectorSplat(NumElems, Op); in visitGetElementPtrInst()
H A DLowerMatrixIntrinsics.cpp1238 Value *Splat = Builder.CreateVectorSplat(BlockSize, RH, "splat"); in emitMatrixMultiply()
1265 Value *Splat = Builder.CreateVectorSplat(BlockSize, LH, "splat"); in emitMatrixMultiply()
H A DRewriteStatepointsForGC.cpp2929 auto *Splat = B.CreateVectorSplat(VF, I.getOperand(0)); in runOnFunction()
H A DSROA.cpp2778 V = IRB.CreateVectorSplat(NumElements, V, "vsplat"); in getVectorSplat()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp217 Amt = Builder.CreateVectorSplat(VWidth, Amt); in simplifyX86immShift()
226 return Builder.CreateAShr(Vec, Builder.CreateVectorSplat(VWidth, Amt)); in simplifyX86immShift()
287 auto ShiftVec = Builder.CreateVectorSplat(VWidth, ShiftAmt); in simplifyX86immShift()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorCombine.cpp1155 Value *PadVec = Builder.CreateVectorSplat(CurSize, Pad); in vresize()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp792 Builder.CreateVectorSplat(VTy->getElementCount(), Extract); in instCombineSVETBL()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp1372 return Builder.CreateVectorSplat(NumElements, Src, "splat"); in EmitScalarConversion()
2281 return Builder.CreateVectorSplat(NumElements, Elt, "splat"); in VisitCastExpr()
H A DCGBuiltin.cpp8049 return Builder.CreateVectorSplat(Elements, V); in ARMMVEVectorSplat()
11902 Amt = CGF.Builder.CreateVectorSplat(NumElts, Amt); in EmitX86FunnelShift()
18018 Value *Splat = Builder.CreateVectorSplat(2, Builder.getInt32(0)); in EmitWebAssemblyBuiltinExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2029 Sel, 0, IC.Builder.CreateVectorSplat(Ty->getElementCount(), Cond)); in canonicalizeScalarSelectOfVecs()
H A DInstCombineCompares.cpp887 Base = Builder.CreateVectorSplat(EC, Base); in foldGEPICmp()