Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelDAGToDAG.cpp632 const unsigned RightShAmt = N1C->getZExtValue(); in trySignedBitfieldExtract() local
644 if (LeftShAmt > RightShAmt) in trySignedBitfieldExtract()
649 const unsigned Lsb = RightShAmt - LeftShAmt; in trySignedBitfieldExtract()
669 const unsigned Lsb = RightShAmt > Msb ? Msb : RightShAmt; in trySignedBitfieldExtract()
748 const unsigned RightShAmt = N1C->getZExtValue(); in trySignedBitfieldInsertInSign() local
760 if (LeftShAmt <= RightShAmt) in trySignedBitfieldInsertInSign()
763 const unsigned MsbPlusOne = VT.getSizeInBits() - RightShAmt; in trySignedBitfieldInsertInSign()
765 const unsigned Lsb = LeftShAmt - RightShAmt; in trySignedBitfieldInsertInSign()