Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1758 SDValue ClearSignMask = DAG.getConstant( in ExpandVP_FABS() local
1761 DAG.getNode(ISD::VP_AND, DL, IntVT, Cast, ClearSignMask, Mask, EVL); in ExpandVP_FABS()
1788 SDValue ClearSignMask = DAG.getConstant( in ExpandVP_FCOPYSIGN() local
1791 DAG.getNode(ISD::VP_AND, DL, IntVT, Mag, ClearSignMask, Mask, EVL); in ExpandVP_FCOPYSIGN()
1965 SDValue ClearSignMask = DAG.getConstant( in ExpandFABS() local
1967 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, IntVT, Cast, ClearSignMask); in ExpandFABS()
1993 SDValue ClearSignMask = DAG.getConstant( in ExpandFCOPYSIGN() local
1995 SDValue ClearedSign = DAG.getNode(ISD::AND, DL, IntVT, Mag, ClearSignMask); in ExpandFCOPYSIGN()
H A DLegalizeDAG.cpp1727 SDValue ClearSignMask = DAG.getConstant(~MagAsInt.SignMask, DL, MagVT); in ExpandFCOPYSIGN() local
1729 ClearSignMask); in ExpandFCOPYSIGN()
1789 SDValue ClearSignMask = DAG.getConstant(~ValueAsInt.SignMask, DL, IntVT); in ExpandFABS() local
1791 ClearSignMask); in ExpandFABS()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp6939 SDValue ClearSignMask = DAG.getConstant( in lowerFCOPYSIGN() local
6942 DAG.getNode(ISD::AND, DL, XLenVT, MagAsInt, ClearSignMask); in lowerFCOPYSIGN()