Home | History | Annotate | Download | only in PTX

Lines Matching full:operand

56     bool isImm(const SDValue &operand);
57 bool SelectImm(const SDValue &operand, SDValue &imm);
197 // Match memory operand of the form [reg+reg]
211 // Match memory operand of the form [reg], [imm+reg], and [reg+imm]
286 // Match memory operand of the form [imm+imm] and [imm]
307 // Match memory operand of the form [reg], [imm+reg], and [reg+imm]
337 bool PTXDAGToDAGISel::isImm(const SDValue &operand) {
338 return ConstantSDNode::classof(operand.getNode());
341 bool PTXDAGToDAGISel::SelectImm(const SDValue &operand, SDValue &imm) {
342 SDNode *node = operand.getNode();
348 operand.getValueType());