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

References

lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 1102   SDLoc DL(Op);
 1103   if (ISD::isUNINDEXEDLoad(Op.getNode())) {
 1104     LoadSDNode *LD = cast<LoadSDNode>(Op);
 1114   unsigned Opc = Op.getOpcode();
 1118     if (SDValue Op0 = SExtPromoteOperand(Op.getOperand(0), PVT))
 1119       return DAG.getNode(ISD::AssertSext, DL, PVT, Op0, Op.getOperand(1));
 1122     if (SDValue Op0 = ZExtPromoteOperand(Op.getOperand(0), PVT))
 1123       return DAG.getNode(ISD::AssertZext, DL, PVT, Op0, Op.getOperand(1));
 1127       Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
 1128     return DAG.getNode(ExtOpc, DL, PVT, Op);
 1134   return DAG.getNode(ISD::ANY_EXTEND, DL, PVT, Op);