Lines Matching defs:ExtendingLoadMatcher
136 struct ExtendingLoadMatcher { struct
137 ExtendingLoadMatcher(Node* node, InstructionSelector* selector) in ExtendingLoadMatcher() function
142 bool Matches() const { return matches_; } in Matches()
144 Node* base() const { in base()
148 int64_t immediate() const { in immediate()
152 ArchOpcode opcode() const { in opcode()
158 bool matches_;
159 InstructionSelector* selector_;
160 Node* base_;
161 int64_t immediate_;
162 ArchOpcode opcode_;
164 void Initialize(Node* node) { in Initialize()