| Index: test/unittests/compiler/node-test-utils.h
|
| diff --git a/test/unittests/compiler/node-test-utils.h b/test/unittests/compiler/node-test-utils.h
|
| index c98a504cebbe0f19f481cbc3c9f46d240492115f..5e688146a44b0081c7ad45af74028174d52cb746 100644
|
| --- a/test/unittests/compiler/node-test-utils.h
|
| +++ b/test/unittests/compiler/node-test-utils.h
|
| @@ -134,6 +134,11 @@ Matcher<Node*> IsTailCall(
|
| const Matcher<Node*>& value0_matcher, const Matcher<Node*>& value1_matcher,
|
| const Matcher<Node*>& effect_matcher,
|
| const Matcher<Node*>& control_matcher);
|
| +Matcher<Node*> IsTailCall(
|
| + const Matcher<CallDescriptor const*>& descriptor_matcher,
|
| + const Matcher<Node*>& value0_matcher, const Matcher<Node*>& value1_matcher,
|
| + const Matcher<Node*>& value2_matcher, const Matcher<Node*>& effect_matcher,
|
| + const Matcher<Node*>& control_matcher);
|
|
|
| Matcher<Node*> IsBooleanNot(const Matcher<Node*>& value_matcher);
|
| Matcher<Node*> IsReferenceEqual(const Matcher<Type*>& type_matcher,
|
| @@ -224,6 +229,8 @@ Matcher<Node*> IsWord64Sar(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| Matcher<Node*> IsWord64Equal(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| +Matcher<Node*> IsIntPtrAdd(const Matcher<Node*>& lhs_matcher,
|
| + const Matcher<Node*>& rhs_matcher);
|
| Matcher<Node*> IsInt32AddWithOverflow(const Matcher<Node*>& lhs_matcher,
|
| const Matcher<Node*>& rhs_matcher);
|
| Matcher<Node*> IsInt32Add(const Matcher<Node*>& lhs_matcher,
|
| @@ -285,6 +292,8 @@ Matcher<Node*> IsLoadContext(const Matcher<ContextAccess>& access_matcher,
|
| const Matcher<Node*>& context_matcher);
|
| Matcher<Node*> IsNumberToInt32(const Matcher<Node*>& input_matcher);
|
| Matcher<Node*> IsNumberToUint32(const Matcher<Node*>& input_matcher);
|
| +Matcher<Node*> IsParameter(const Matcher<int> index_matcher);
|
| +Matcher<Node*> IsLoadFramePointer();
|
|
|
| } // namespace compiler
|
| } // namespace internal
|
|
|