Lines Matching defs:ExtendingLoadMatcher
164 struct ExtendingLoadMatcher { struct
165 ExtendingLoadMatcher(Node* node, InstructionSelector* selector) in ExtendingLoadMatcher() function
170 bool Matches() const { return matches_; } in Matches()
172 Node* base() const { in base()
176 int64_t immediate() const { in immediate()
180 ArchOpcode opcode() const { in opcode()
186 bool matches_;
187 InstructionSelector* selector_;
188 Node* base_;
189 int64_t immediate_;
190 ArchOpcode opcode_;
192 void Initialize(Node* node) { in Initialize()