Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h341 uintptr_t OldBits = getSmallBits(); variable
343 (*BV)[I] = (OldBits >> I) & 1;
351 uintptr_t OldBits = getSmallRawBits(); in reserve() local
355 if ((OldBits >> I) & 1) in reserve()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp1046 unsigned OldBits = Op1.getScalarValueSizeInBits(); in PromoteIntRes_ADDSUBSHLSAT() local
1067 APInt MaxVal = APInt::getAllOnes(OldBits).zext(NewBits); in PromoteIntRes_ADDSUBSHLSAT()
1097 unsigned SHLAmount = NewBits - OldBits; in PromoteIntRes_ADDSUBSHLSAT()
1112 APInt MinVal = APInt::getSignedMinValue(OldBits).sext(NewBits); in PromoteIntRes_ADDSUBSHLSAT()
1113 APInt MaxVal = APInt::getSignedMaxValue(OldBits).sext(NewBits); in PromoteIntRes_ADDSUBSHLSAT()
1542 unsigned OldBits = OldVT.getScalarSizeInBits(); in PromoteIntRes_FunnelShift() local
1547 DAG.getConstant(OldBits, DL, AmtVT)); in PromoteIntRes_FunnelShift()
1554 if (NewBits >= (2 * OldBits) && !isa<ConstantSDNode>(Amt) && in PromoteIntRes_FunnelShift()
1556 SDValue HiShift = DAG.getConstant(OldBits, DL, VT); in PromoteIntRes_FunnelShift()
1567 SDValue ShiftOffset = DAG.getConstant(NewBits - OldBits, DL, AmtVT); in PromoteIntRes_FunnelShift()
[all …]