reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1582 SDValue Eight = DAG.getConstant(8, DL, MVT::i8); 1583 SDValue NewMask = DAG.getConstant(0xff, DL, VT); 1584 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight); 1585 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask); 1586 SDValue ShlCount = DAG.getConstant(ScaleLog, DL, MVT::i8); 1587 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);