Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp2062 unsigned AMShiftAmt = MaskTZ; in foldMaskAndShiftToScale() local
2066 if (AMShiftAmt == 0 || AMShiftAmt > 3) return true; in foldMaskAndShiftToScale()
2110 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, DL, MVT::i8); in foldMaskAndShiftToScale()
2112 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, DL, MVT::i8); in foldMaskAndShiftToScale()
2127 AM.Scale = 1 << AMShiftAmt; in foldMaskAndShiftToScale()
2157 unsigned AMShiftAmt = countTrailingZeros(Mask); in foldMaskedShiftToBEXTR() local
2161 if (AMShiftAmt == 0 || AMShiftAmt > 3) return true; in foldMaskedShiftToBEXTR()
2165 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, DL, MVT::i8); in foldMaskedShiftToBEXTR()
2167 SDValue NewMask = DAG.getConstant(Mask >> AMShiftAmt, DL, VT); in foldMaskedShiftToBEXTR()
2169 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, DL, MVT::i8); in foldMaskedShiftToBEXTR()
[all …]