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

References

lib/Target/ARM/ARMISelLowering.cpp
 4378     Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS);
 4379     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
 4385     Value = DAG.getNode(ARMISD::ADDC, dl,
 4388     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS);
 4392     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
 4397     Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS);
 4403     Value = DAG.getNode(ISD::UMUL_LOHI, dl,
 4406     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value.getValue(1),
 4408     Value = Value.getValue(0); // We only want the low 32 bits for the result.
 4408     Value = Value.getValue(0); // We only want the low 32 bits for the result.
 4414     Value = DAG.getNode(ISD::SMUL_LOHI, dl,
 4417     OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value.getValue(1),
 4419                                           Value.getValue(0),
 4421     Value = Value.getValue(0); // We only want the low 32 bits for the result.
 4421     Value = Value.getValue(0); // We only want the low 32 bits for the result.
 4425   return std::make_pair(Value, OverflowCmp);