Home
last modified time | relevance | path

Searched refs:SplatUndef (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchISelDAGToDAG.cpp91 APInt SplatValue, SplatUndef; in INITIALIZE_PASS() local
101 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in INITIALIZE_PASS()
334 APInt SplatValue, SplatUndef; in selectVSplat() local
338 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in selectVSplat()
H A DLoongArchISelLowering.cpp455 APInt SplatValue, SplatUndef; in lowerBUILD_VECTOR() local
465 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in lowerBUILD_VECTOR()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp239 APInt SplatValue, SplatUndef; in selectVecAddAsVecSubIfProfitable() local
243 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in selectVecAddAsVecSubIfProfitable()
H A DMipsSEISelDAGToDAG.cpp521 APInt SplatValue, SplatUndef; in selectVSplat() local
525 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in selectVSplat()
1086 APInt SplatValue, SplatUndef; in trySelect() local
1096 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in trySelect()
H A DMipsSEISelLowering.cpp532 APInt SplatValue, SplatUndef; in isVSplat() local
536 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in isVSplat()
557 APInt SplatValue, SplatUndef; in isVectorAllOnes() local
563 if (BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs)) in isVectorAllOnes()
841 APInt SplatValue, SplatUndef; in performDSPShiftCombine() local
851 !BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs, in performDSPShiftCombine()
2452 APInt SplatValue, SplatUndef; in lowerBUILD_VECTOR() local
2459 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in lowerBUILD_VECTOR()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h803 APInt SplatUndef; // Bits correspoding to undef operands of the BVN. member
H A DSystemZISelLowering.cpp850 uint64_t SplatUndefZ = SplatUndef.getZExtValue(); in isVectorConstantLegal()
888 SplatUndef = 0; in SystemZVectorConstantInfo()
897 BVN->isConstantSplat(IntBits, SplatUndef, SplatBitSize, HasAnyUndefs, 128, in SystemZVectorConstantInfo()
901 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs, 8, in SystemZVectorConstantInfo()
6012 APInt SplatBits, SplatUndef; in lowerShift() local
6017 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs, in lowerShift()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6598 APInt SplatBits, SplatUndef; in getVShiftImm() local
6976 static SDValue isVMOVModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, in isVMOVModifiedImm() argument
7054 ((SplatBits | SplatUndef) & 0xff) == 0xff) { in isVMOVModifiedImm()
7066 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) { in isVMOVModifiedImm()
7088 if (((SplatBits | SplatUndef) & BitMask) == BitMask) { in isVMOVModifiedImm()
7911 APInt SplatBits, SplatUndef; in LowerBUILD_VECTOR() local
7915 if (SplatUndef.isAllOnes()) in LowerBUILD_VECTOR()
14412 APInt SplatBits, SplatUndef; in PerformANDCombine() local
14708 APInt SplatBits, SplatUndef; in PerformORCombine() local
14749 APInt SplatUndef; in PerformORCombine() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp161 APInt SplatUndef; in isConstantSplatVector() local
170 return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs, in isConstantSplatVector()
12395 bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, APInt &SplatUndef, in isConstantSplat() argument
12409 SplatUndef = APInt(VecWidth, 0); in isConstantSplat()
12425 SplatUndef.setBits(BitPos, BitPos + EltWidth); in isConstantSplat()
12436 HasAnyUndefs = (SplatUndef != 0); in isConstantSplat()
12447 APInt HighUndef = SplatUndef.extractBits(HalfSize, HalfSize); in isConstantSplat()
12448 APInt LowUndef = SplatUndef.extractBits(HalfSize, 0); in isConstantSplat()
12456 SplatUndef = HighUndef & LowUndef; in isConstantSplat()
H A DDAGCombiner.cpp7109 APInt SplatValue, SplatUndef; in visitAND() local
7119 Vector->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in visitAND()
7127 SplatValue |= SplatUndef; in visitAND()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp2575 APInt SplatValue, SplatUndef; in performVectorTruncZeroCombine() local
2581 Splat->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in performVectorTruncZeroCombine()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h2041 bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12442 APInt SplatBits, SplatUndef; in resolveBuildVector() local
12445 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { in resolveBuildVector()
12452 UndefBits |= (SplatBits ^ SplatUndef).zextOrTrunc(VT.getSizeInBits()); in resolveBuildVector()
13789 APInt SplatBits, SplatUndef; in getVShiftImm() local
13792 if (!BVN || !BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, in getVShiftImm()
13913 APInt SplatUndef; in EmitVectorComparison() local
13918 bool IsCnst = BVN && BVN->isConstantSplat(SplatValue, SplatUndef, in EmitVectorComparison()
19607 APInt SplatValue, SplatUndef; in tryCombineShiftImm() local
19610 if (!BVN->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in tryCombineShiftImm()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp9465 uint64_t SplatUndef = APSplatUndef.getZExtValue(); in LowerBUILD_VECTOR() local
9532 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) { in LowerBUILD_VECTOR()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp10049 auto *SplatUndef = UndefValue::get(Ty); in InsertExplicitUndefOperand() local
10050 Ops.insert(Ops.begin(), SplatUndef); in InsertExplicitUndefOperand()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp4142 APInt SplatValue, SplatUndef; in getAVX512Node() local
4145 if (BV->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, in getAVX512Node()