Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp449 unsigned NarrowWidth = DestTy->getScalarSizeInBits(); in narrowFunnelShift() local
451 if (!isPowerOf2_32(NarrowWidth)) in narrowFunnelShift()
483 unsigned MaxShiftAmountWidth = Log2_32(NarrowWidth); in narrowFunnelShift()
510 Value *ShAmt = matchShiftAmount(ShAmt0, ShAmt1, NarrowWidth); in narrowFunnelShift()
513 ShAmt = matchShiftAmount(ShAmt1, ShAmt0, NarrowWidth); in narrowFunnelShift()
522 APInt HiBitMask = APInt::getHighBitsSet(WideWidth, WideWidth - NarrowWidth); in narrowFunnelShift()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5026 unsigned NarrowWidth = Mask.countr_one(); in matchNarrowBinopFeedingAnd() local
5027 if (NarrowWidth == WideTy.getSizeInBits()) in matchNarrowBinopFeedingAnd()
5029 LLT NarrowTy = LLT::scalar(NarrowWidth); in matchNarrowBinopFeedingAnd()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp24464 unsigned NarrowWidth = VT.getSizeInBits(); in narrowExtractedVectorBinOp() local
24465 if (WideWidth % NarrowWidth != 0) in narrowExtractedVectorBinOp()
24470 unsigned NarrowingRatio = WideWidth / NarrowWidth; in narrowExtractedVectorBinOp()