Searched refs:rhs_matcher (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/unittests/compiler/ |
D | node-test-utils.h | 198 const Matcher<Node*>& rhs_matcher); 200 const Matcher<Node*>& rhs_matcher); 202 const Matcher<Node*>& rhs_matcher); 204 const Matcher<Node*>& rhs_matcher); 206 const Matcher<Node*>& rhs_matcher); 208 const Matcher<Node*>& rhs_matcher); 210 const Matcher<Node*>& rhs_matcher); 212 const Matcher<Node*>& rhs_matcher); 263 const Matcher<Node*>& rhs_matcher); 265 const Matcher<Node*>& rhs_matcher); [all …]
|
D | interpreter-assembler-unittest.cc | 35 const Matcher<Node*>& rhs_matcher) { in IsIntPtrAdd() argument 36 return kPointerSize == 8 ? IsInt64Add(lhs_matcher, rhs_matcher) in IsIntPtrAdd() 37 : IsInt32Add(lhs_matcher, rhs_matcher); in IsIntPtrAdd() 42 const Matcher<Node*>& rhs_matcher) { in IsIntPtrSub() argument 43 return kPointerSize == 8 ? IsInt64Sub(lhs_matcher, rhs_matcher) in IsIntPtrSub() 44 : IsInt32Sub(lhs_matcher, rhs_matcher); in IsIntPtrSub() 49 const Matcher<Node*>& rhs_matcher) { in IsWordShl() argument 50 return kPointerSize == 8 ? IsWord64Shl(lhs_matcher, rhs_matcher) in IsWordShl() 51 : IsWord32Shl(lhs_matcher, rhs_matcher); in IsWordShl() 56 const Matcher<Node*>& rhs_matcher) { in IsWordSar() argument [all …]
|
D | node-test-utils.cc | 803 const Matcher<Node*>& rhs_matcher) in IsReferenceEqualMatcher() argument 807 rhs_matcher_(rhs_matcher) {} in IsReferenceEqualMatcher() 1391 const Matcher<Node*>& rhs_matcher) in IsBinopMatcher() argument 1394 rhs_matcher_(rhs_matcher) {} in IsBinopMatcher() 1907 const Matcher<Node*>& rhs_matcher) { in IsReferenceEqual() argument 1909 new IsReferenceEqualMatcher(type_matcher, lhs_matcher, rhs_matcher)); in IsReferenceEqual() 2038 const Matcher<Node*>& rhs_matcher) { \ 2040 new IsBinopMatcher(IrOpcode::k##Name, lhs_matcher, rhs_matcher)); \
|
D | change-lowering-unittest.cc | 85 const Matcher<Node*>& rhs_matcher) { in IsWordEqual() argument 86 return Is32() ? IsWord32Equal(lhs_matcher, rhs_matcher) in IsWordEqual() 87 : IsWord64Equal(lhs_matcher, rhs_matcher); in IsWordEqual()
|