reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SelectionDAG/TargetLowering.cpp
 2913   assert(KeptBits > 0 && KeptBits < XVT.getSizeInBits() && "unreachable");
 2918           XVT, KeptBits))
 2921   const unsigned MaskedBits = XVT.getSizeInBits() - KeptBits;
 2922   assert(MaskedBits > 0 && MaskedBits < XVT.getSizeInBits() && "unreachable");
 2926   SDValue ShiftAmt = DAG.getConstant(MaskedBits, DL, XVT);
 2927   SDValue T0 = DAG.getNode(ISD::SHL, DL, XVT, X, ShiftAmt);
 2928   SDValue T1 = DAG.getNode(ISD::SRA, DL, XVT, T0, ShiftAmt);