Lines Matching defs:Opcode
62 CheckOpcode, // Fail if not opcode.
63 SwitchOpcode, // Dispatch based on opcode.
435 /// specified opcode, if not it fails to match.
437 const SDNodeInfo &Opcode;
439 CheckOpcodeMatcher(const SDNodeInfo &opcode)
440 : Matcher(CheckOpcode), Opcode(opcode) {}
442 const SDNodeInfo &getOpcode() const { return Opcode; }
454 /// SwitchOpcodeMatcher - Switch based on the current node's opcode, dispatching
455 /// to one matcher per opcode. If the opcode doesn't match any of the cases,