/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APFixedPoint.h | 41 struct Lsb { struct 46 : FixedPointSemantics(Width, Lsb{-static_cast<int>(Scale)}, IsSigned, in FixedPointSemantics() 48 FixedPointSemantics(unsigned Width, Lsb Weight, bool IsSigned, in FixedPointSemantics()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APFixedPoint.cpp | 183 return FixedPointSemantics(CommonWidth, Lsb{CommonLsb}, ResultIsSigned, in getCommonSemantics() 389 int Lsb = getLsbWeight(); in toString() local 392 if (Lsb >= 0) { in toString() 394 IntPart = IntPart.extend(IntPart.getBitWidth() + Lsb); in toString() 395 IntPart <<= Lsb; in toString()
|
/freebsd/contrib/gdtoa/ |
H A D | strtod.c | 104 ULong Lsb, Lsb1; local 603 Lsb = LSB; 612 Lsb <<= i; 614 Lsb1 = Lsb << (i-32); 860 else if (!(word1(&rv) & Lsb))
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/Disassembler/ |
H A D | MipsDisassembler.cpp | 1011 unsigned Lsb = fieldFromInstruction(Insn, 6, 5); in DecodeDEXT() local 1017 Pos = Lsb; in DecodeDEXT() 1021 Pos = Lsb; in DecodeDEXT() 1025 Pos = Lsb + 32; in DecodeDEXT() 1053 unsigned Lsb = fieldFromInstruction(Insn, 6, 5); in DecodeDINS() local 1059 Pos = Lsb; in DecodeDINS() 1063 Pos = Lsb; in DecodeDINS() 1067 Pos = Lsb + 32; in DecodeDINS()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVISelDAGToDAG.cpp | 695 auto BitfieldExtract = [&](SDValue N0, unsigned Msb, unsigned Lsb, SDLoc DL, in trySignedBitfieldExtract() 699 CurDAG->getTargetConstant(Lsb, DL, VT)); in trySignedBitfieldExtract() 721 const unsigned Lsb = RightShAmt - LeftShAmt; in trySignedBitfieldExtract() local 723 SDNode *TH_EXT = BitfieldExtract(N0, Msb, Lsb, DL, VT); in trySignedBitfieldExtract() 739 const unsigned Lsb = RightShAmt; in trySignedBitfieldExtract() local 741 SDNode *TH_EXT = BitfieldExtract(N0, Msb, Lsb, DL, VT); in trySignedBitfieldExtract() 1227 unsigned Lsb) { in Select() argument 1233 CurDAG->getTargetConstant(Lsb, DL, VT)); in Select() 1306 const unsigned Lsb = C2; in Select() local 1307 if (tryUnsignedBitfieldExtract(Node, DL, VT, X, Msb, Lsb)) in Select()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/AsmParser/ |
H A D | LoongArchAsmParser.cpp | 1452 const signed Lsb = in checkTargetMatchPredicate() local 1456 if (Msb < Lsb) in checkTargetMatchPredicate()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 11337 SDValue Lsb = DAG.getNode(ISD::SRL, dl, I32, Op, in expandFP_ROUND() local 11339 Lsb = DAG.getNode(ISD::AND, dl, I32, Lsb, One); in expandFP_ROUND() 11341 DAG.getNode(ISD::ADD, dl, I32, DAG.getConstant(0x7fff, dl, I32), Lsb); in expandFP_ROUND()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 4323 SDValue Lsb = DAG.getNode(ISD::SRL, dl, I32, Narrow, in LowerFP_ROUND() local 4325 Lsb = DAG.getNode(ISD::AND, dl, I32, Lsb, One); in LowerFP_ROUND() 4327 DAG.getNode(ISD::ADD, dl, I32, DAG.getConstant(0x7fff, dl, I32), Lsb); in LowerFP_ROUND()
|