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

References

lib/Target/PowerPC/PPCISelDAGToDAG.cpp
 2531   assert((N->getOpcode() == ISD::ZERO_EXTEND ||
 2532           N->getOpcode() == ISD::SIGN_EXTEND) &&
 2537   if (isLogicOp(N->getOperand(0).getOpcode()) &&
 2538       N->getOperand(0).getValueType() == MVT::i1 &&
 2539       N->getOpcode() == ISD::ZERO_EXTEND)
 2540     WideRes = computeLogicOpInGPR(N->getOperand(0));
 2541   else if (N->getOperand(0).getOpcode() != ISD::SETCC)
 2545       getSETCCInGPR(N->getOperand(0),
 2546                     N->getOpcode() == ISD::SIGN_EXTEND ?
 2552   SDLoc dl(N);
 2554   bool Output32Bit = N->getValueType(0) == MVT::i32;
 2556   NumSextSetcc += N->getOpcode() == ISD::SIGN_EXTEND ? 1 : 0;
 2557   NumZextSetcc += N->getOpcode() == ISD::SIGN_EXTEND ? 0 : 1;