Home
last modified time | relevance | path

Searched refs:MaskWidth (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp948 unsigned MaskWidth = I->getOperand(1)->getType()->getScalarSizeInBits(); in SimplifyDemandedUseBits() local
949 RHSKnown = KnownBits(MaskWidth); in SimplifyDemandedUseBits()
953 I, 1, (DemandedMask & ~LHSKnown.Zero).zextOrTrunc(MaskWidth), in SimplifyDemandedUseBits()
981 I, 1, (DemandedMask & ~LHSKnown.Zero).zextOrTrunc(MaskWidth))) in SimplifyDemandedUseBits()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp3367 unsigned MaskWidth = in isWorthFoldingIntoOrrWithShift() local
3376 SrlImm + NumTrailingZeroInShiftedMask + MaskWidth - 1, DL, VT)); in isWorthFoldingIntoOrrWithShift()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6279 int MaskWidth = Mask.size(); in resolveTargetShuffleInputsAndMask() local
6282 int lo = UsedInputs.size() * MaskWidth; in resolveTargetShuffleInputsAndMask()
6283 int hi = lo + MaskWidth; in resolveTargetShuffleInputsAndMask()
6295 M -= MaskWidth; in resolveTargetShuffleInputsAndMask()
6306 M = (M < hi) ? ((M - lo) + (j * MaskWidth)) : (M - MaskWidth); in resolveTargetShuffleInputsAndMask()
39872 unsigned MaskWidth = std::max<unsigned>(OpMask.size(), RootMask.size()); in combineX86ShufflesRecursively() local
39879 assert(isPowerOf2_32(MaskWidth) && "Non-power-of-2 shuffle mask sizes"); in combineX86ShufflesRecursively()
39885 Mask.resize(MaskWidth, SM_SentinelUndef); in combineX86ShufflesRecursively()
39891 for (unsigned i = 0; i < MaskWidth; ++i) { in combineX86ShufflesRecursively()
39906 if ((RootMaskedIdx < (SrcOpIndex * MaskWidth)) || in combineX86ShufflesRecursively()
[all …]