reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
946 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Expand || 947 TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Expand) 953 unsigned BW = VT.getScalarSizeInBits(); 955 SDValue ShiftSz = DAG.getConstant(BW - OrigBW, DL, VT); 958 Op = DAG.getNode(ISD::SHL, DL, VT, Op, ShiftSz); 959 return DAG.getNode(ISD::SRA, DL, VT, Op, ShiftSz);