| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ | 5 #ifndef V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
| 6 #define V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ | 6 #define V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
| 7 | 7 |
| 8 #include "src/compiler/machine-operator.h" | 8 #include "src/compiler/machine-operator.h" |
| 9 #include "src/compiler/machine-type.h" | 9 #include "src/compiler/machine-type.h" |
| 10 #include "testing/gmock/include/gmock/gmock.h" | 10 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 const Matcher<Node*>& effect_matcher, | 94 const Matcher<Node*>& effect_matcher, |
| 95 const Matcher<Node*>& control_matcher); | 95 const Matcher<Node*>& control_matcher); |
| 96 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher, | 96 Matcher<Node*> IsCall(const Matcher<CallDescriptor*>& descriptor_matcher, |
| 97 const Matcher<Node*>& value0_matcher, | 97 const Matcher<Node*>& value0_matcher, |
| 98 const Matcher<Node*>& value1_matcher, | 98 const Matcher<Node*>& value1_matcher, |
| 99 const Matcher<Node*>& value2_matcher, | 99 const Matcher<Node*>& value2_matcher, |
| 100 const Matcher<Node*>& value3_matcher, | 100 const Matcher<Node*>& value3_matcher, |
| 101 const Matcher<Node*>& effect_matcher, | 101 const Matcher<Node*>& effect_matcher, |
| 102 const Matcher<Node*>& control_matcher); | 102 const Matcher<Node*>& control_matcher); |
| 103 | 103 |
| 104 Matcher<Node*> IsAnyToBoolean(const Matcher<Node*>& value_matcher); | |
| 105 Matcher<Node*> IsBooleanNot(const Matcher<Node*>& value_matcher); | 104 Matcher<Node*> IsBooleanNot(const Matcher<Node*>& value_matcher); |
| 106 Matcher<Node*> IsNumberEqual(const Matcher<Node*>& lhs_matcher, | 105 Matcher<Node*> IsNumberEqual(const Matcher<Node*>& lhs_matcher, |
| 107 const Matcher<Node*>& rhs_matcher); | 106 const Matcher<Node*>& rhs_matcher); |
| 108 Matcher<Node*> IsNumberLessThan(const Matcher<Node*>& lhs_matcher, | 107 Matcher<Node*> IsNumberLessThan(const Matcher<Node*>& lhs_matcher, |
| 109 const Matcher<Node*>& rhs_matcher); | 108 const Matcher<Node*>& rhs_matcher); |
| 110 Matcher<Node*> IsNumberSubtract(const Matcher<Node*>& lhs_matcher, | 109 Matcher<Node*> IsNumberSubtract(const Matcher<Node*>& lhs_matcher, |
| 111 const Matcher<Node*>& rhs_matcher); | 110 const Matcher<Node*>& rhs_matcher); |
| 112 Matcher<Node*> IsNumberMultiply(const Matcher<Node*>& lhs_matcher, | 111 Matcher<Node*> IsNumberMultiply(const Matcher<Node*>& lhs_matcher, |
| 113 const Matcher<Node*>& rhs_matcher); | 112 const Matcher<Node*>& rhs_matcher); |
| 114 Matcher<Node*> IsLoadField(const Matcher<FieldAccess>& access_matcher, | 113 Matcher<Node*> IsLoadField(const Matcher<FieldAccess>& access_matcher, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 const Matcher<Node*>& effect_matcher, | 223 const Matcher<Node*>& effect_matcher, |
| 225 const Matcher<Node*>& control_matcher); | 224 const Matcher<Node*>& control_matcher); |
| 226 Matcher<Node*> IsNumberToInt32(const Matcher<Node*>& input_matcher); | 225 Matcher<Node*> IsNumberToInt32(const Matcher<Node*>& input_matcher); |
| 227 Matcher<Node*> IsNumberToUint32(const Matcher<Node*>& input_matcher); | 226 Matcher<Node*> IsNumberToUint32(const Matcher<Node*>& input_matcher); |
| 228 | 227 |
| 229 } // namespace compiler | 228 } // namespace compiler |
| 230 } // namespace internal | 229 } // namespace internal |
| 231 } // namespace v8 | 230 } // namespace v8 |
| 232 | 231 |
| 233 #endif // V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ | 232 #endif // V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
| OLD | NEW |