Lines Matching refs:Upper
116 // narrower (in which case the upper bits are don't care), or wider (in which
1070 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT);
1072 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper);
1075 // When we haven't passed in Op0, Upper will be a constant. In order to
1078 // we need to use a handle to keep track of Upper in case it gets CSE'd by
1082 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing
1087 HandleSDNode Handle(Upper);
1088 SelectCode(Upper.getNode());
1089 Upper = Handle.getValue();
1093 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower);