Searched refs:rep_matcher (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/unittests/interpreter/ |
D | interpreter-assembler-unittest.h | 34 const Matcher<compiler::LoadRepresentation>& rep_matcher, 38 const Matcher<compiler::StoreRepresentation>& rep_matcher,
|
D | interpreter-assembler-unittest.cc | 78 const Matcher<LoadRepresentation>& rep_matcher, in IsLoad() argument 80 return ::i::compiler::IsLoad(rep_matcher, base_matcher, index_matcher, _, _); in IsLoad() 84 const Matcher<StoreRepresentation>& rep_matcher, in IsStore() argument 87 return ::i::compiler::IsStore(rep_matcher, base_matcher, index_matcher, in IsStore()
|
/external/v8/test/unittests/compiler/ |
D | node-test-utils.cc | 1200 IsLoadMatcher(const Matcher<LoadRepresentation>& rep_matcher, in IsLoadMatcher() argument 1206 rep_matcher_(rep_matcher), in IsLoadMatcher() 1260 IsStoreMatcher(const Matcher<StoreRepresentation>& rep_matcher, in IsStoreMatcher() argument 1267 rep_matcher_(rep_matcher), in IsStoreMatcher() 1326 explicit IsStackSlotMatcher(const Matcher<MachineRepresentation>& rep_matcher) in IsStackSlotMatcher() argument 1327 : NodeMatcher(IrOpcode::kStackSlot), rep_matcher_(rep_matcher) {} in IsStackSlotMatcher() 2162 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, in IsLoad() argument 2167 return MakeMatcher(new IsLoadMatcher(rep_matcher, base_matcher, index_matcher, in IsLoad() 2172 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, in IsStore() argument 2178 return MakeMatcher(new IsStoreMatcher(rep_matcher, base_matcher, in IsStore() [all …]
|
D | node-test-utils.h | 289 Matcher<Node*> IsLoad(const Matcher<LoadRepresentation>& rep_matcher, 294 Matcher<Node*> IsStore(const Matcher<StoreRepresentation>& rep_matcher, 300 Matcher<Node*> IsStackSlot(const Matcher<MachineRepresentation>& rep_matcher);
|