Lines Matching full:opcode
60 CheckOpcode, // Fail if not opcode.
61 SwitchOpcode, // Dispatch based on opcode.
446 /// specified opcode, if not it fails to match.
448 const SDNodeInfo &Opcode;
450 CheckOpcodeMatcher(const SDNodeInfo &opcode)
451 : Matcher(CheckOpcode), Opcode(opcode) {}
453 const SDNodeInfo &getOpcode() const { return Opcode; }
468 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
469 /// to one matcher per opcode. If the opcode doesn't match any of the cases,