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); 207 const Matcher<Node*>& lhs_matcher, const Matcher<Node*>& rhs_matcher, 212 const Matcher<Node*>& lhs_matcher, const Matcher<Node*>& rhs_matcher, 216 const Matcher<Node*>& rhs_matcher); 218 const Matcher<Node*>& rhs_matcher); 220 const Matcher<Node*>& rhs_matcher); 222 const Matcher<Node*>& rhs_matcher); [all …]
|
D | node-test-utils.cc | 782 const Matcher<Node*>& rhs_matcher) in IsReferenceEqualMatcher() argument 786 rhs_matcher_(rhs_matcher) {} in IsReferenceEqualMatcher() 808 const Matcher<Node*>& lhs_matcher, const Matcher<Node*>& rhs_matcher, in IsSpeculativeBinopMatcher() argument 813 rhs_matcher_(rhs_matcher), in IsSpeculativeBinopMatcher() 1495 const Matcher<Node*>& rhs_matcher) in IsTernopMatcher() argument 1499 rhs_matcher_(rhs_matcher) {} in IsTernopMatcher() 1531 const Matcher<Node*>& rhs_matcher) in IsBinopMatcher() argument 1534 rhs_matcher_(rhs_matcher) {} in IsBinopMatcher() 2061 const Matcher<Node*>& rhs_matcher) { in IsReferenceEqual() argument 2063 new IsReferenceEqualMatcher(type_matcher, lhs_matcher, rhs_matcher)); in IsReferenceEqual() [all …]
|
D | int64-lowering-unittest.cc | 95 const Matcher<Node*>& rhs_matcher), in TestComparison() argument 97 const Matcher<Node*>& rhs_matcher)) { in TestComparison()
|
/external/v8/test/unittests/interpreter/ |
D | interpreter-assembler-unittest.cc | 36 const Matcher<Node*>& rhs_matcher) { in IsIntPtrAdd() argument 37 return kPointerSize == 8 ? IsInt64Add(lhs_matcher, rhs_matcher) in IsIntPtrAdd() 38 : 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() 48 const Matcher<Node*>& rhs_matcher) { in IsWordShl() argument 49 return kPointerSize == 8 ? IsWord64Shl(lhs_matcher, rhs_matcher) in IsWordShl() 50 : IsWord32Shl(lhs_matcher, rhs_matcher); in IsWordShl() 54 const Matcher<Node*>& rhs_matcher) { in IsWordSar() argument [all …]
|