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

References

lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
 2887       Result = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS);
 2891       Result = DAG.getNode(MulOp, dl, DAG.getVTList(VT, BoolVT), LHS, RHS);
 2892       SDValue Product = Result.getValue(0);
 2893       SDValue Overflow = Result.getValue(1);
 2901         Result = DAG.getSelect(dl, VT, ProdNeg, SatMax, SatMin);
 2902         Result = DAG.getSelect(dl, VT, Overflow, Result, Product);
 2902         Result = DAG.getSelect(dl, VT, Overflow, Result, Product);
 2908         Result = DAG.getSelect(dl, VT, Overflow, SatMax, Product);
 2911     SplitInteger(Result, Lo, Hi);