Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:ShTy

1752   EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy);
1753 if (OpTy == ShTy || OpTy.isVector()) return Op;
1755 ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1756 return getNode(Opcode, SDLoc(Op), ShTy, Op);