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.cpp524 unsigned NarrowWidth = DestTy->getScalarSizeInBits(); in narrowFunnelShift() local
526 if (!isPowerOf2_32(NarrowWidth)) in narrowFunnelShift()
558 unsigned MaxShiftAmountWidth = Log2_32(NarrowWidth); in narrowFunnelShift()
585 Value *ShAmt = matchShiftAmount(ShAmt0, ShAmt1, NarrowWidth); in narrowFunnelShift()
588 ShAmt = matchShiftAmount(ShAmt1, ShAmt0, NarrowWidth); in narrowFunnelShift()
597 APInt HiBitMask = APInt::getHighBitsSet(WideWidth, WideWidth - NarrowWidth); in narrowFunnelShift()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5157 unsigned NarrowWidth = Mask.countr_one(); in matchNarrowBinopFeedingAnd() local
5158 if (NarrowWidth == WideTy.getSizeInBits()) in matchNarrowBinopFeedingAnd()
5160 LLT NarrowTy = LLT::scalar(NarrowWidth); in matchNarrowBinopFeedingAnd()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp25529 unsigned NarrowWidth = VT.getSizeInBits(); in narrowExtractedVectorBinOp() local
25530 if (WideWidth % NarrowWidth != 0) in narrowExtractedVectorBinOp()
25535 unsigned NarrowingRatio = WideWidth / NarrowWidth; in narrowExtractedVectorBinOp()