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

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 4008       return DAG.getConstant(0, DL, VT);
 4016     return DAG.getConstant(0, DL, N0.getValueType());
 4019     return DAG.getConstant(0, DL, VT);
 4025     SDValue LogBase2 = BuildLogBase2(N1, DL);
 4027         ISD::SUB, DL, VT, DAG.getConstant(NumEltBits, DL, VT), LogBase2);
 4027         ISD::SUB, DL, VT, DAG.getConstant(NumEltBits, DL, VT), LogBase2);
 4029     SDValue Trunc = DAG.getZExtOrTrunc(SRLAmt, DL, ShiftVT);
 4030     return DAG.getNode(ISD::SRL, DL, VT, N0, Trunc);
 4040       N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
 4041       N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
 4042       N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
 4043       N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
 4044             DAG.getConstant(SimpleSize, DL,
 4046       return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);