Lines Matching defs:Opcode
61 CheckOpcode, // Fail if not opcode.
62 SwitchOpcode, // Dispatch based on opcode.
478 /// specified opcode, if not it fails to match.
480 const SDNodeInfo &Opcode;
482 CheckOpcodeMatcher(const SDNodeInfo &opcode)
483 : Matcher(CheckOpcode), Opcode(opcode) {}
485 const SDNodeInfo &getOpcode() const { return Opcode; }
500 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
501 /// to one matcher per opcode. If the opcode doesn't match any of the cases,