Lines Matching defs:Upper
1147 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT);
1149 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper);
1152 // When we haven't passed in Op0, Upper will be a constant. In order to
1155 // we need to use a handle to keep track of Upper in case it gets CSE'd by
1159 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing
1164 HandleSDNode Handle(Upper);
1165 SelectCode(Upper.getNode());
1166 Upper = Handle.getValue();
1170 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower);