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

References

lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
 2874   unsigned VTSize = VT.getScalarSizeInBits();
 2887       Result = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
 2889       EVT BoolVT = getSetCCResultType(VT);
 2891       Result = DAG.getNode(MulOp, dl, DAG.getVTList(VT, BoolVT), LHS, RHS);
 2897         SDValue SatMin = DAG.getConstant(MinVal, dl, VT);
 2898         SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
 2899         SDValue Zero = DAG.getConstant(0, dl, VT);
 2901         Result = DAG.getSelect(dl, VT, ProdNeg, SatMax, SatMin);
 2902         Result = DAG.getSelect(dl, VT, Overflow, Result, Product);
 2907         SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
 2908         Result = DAG.getSelect(dl, VT, Overflow, SatMax, Product);
 2919   EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT);
 2926   if (!TLI.expandMUL_LOHI(LoHiOp, VT, dl, LHS, RHS, Result, NVT, DAG,