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/simplified-operator.h" | 9 #include "src/compiler/simplified-operator.h" |
10 #include "src/machine-type.h" | 10 #include "src/machine-type.h" |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 Matcher<Node*> IsInt32LessThan(const Matcher<Node*>& lhs_matcher, | 378 Matcher<Node*> IsInt32LessThan(const Matcher<Node*>& lhs_matcher, |
379 const Matcher<Node*>& rhs_matcher); | 379 const Matcher<Node*>& rhs_matcher); |
380 Matcher<Node*> IsUint32LessThan(const Matcher<Node*>& lhs_matcher, | 380 Matcher<Node*> IsUint32LessThan(const Matcher<Node*>& lhs_matcher, |
381 const Matcher<Node*>& rhs_matcher); | 381 const Matcher<Node*>& rhs_matcher); |
382 Matcher<Node*> IsUint32LessThanOrEqual(const Matcher<Node*>& lhs_matcher, | 382 Matcher<Node*> IsUint32LessThanOrEqual(const Matcher<Node*>& lhs_matcher, |
383 const Matcher<Node*>& rhs_matcher); | 383 const Matcher<Node*>& rhs_matcher); |
384 Matcher<Node*> IsInt64Add(const Matcher<Node*>& lhs_matcher, | 384 Matcher<Node*> IsInt64Add(const Matcher<Node*>& lhs_matcher, |
385 const Matcher<Node*>& rhs_matcher); | 385 const Matcher<Node*>& rhs_matcher); |
386 Matcher<Node*> IsInt64Sub(const Matcher<Node*>& lhs_matcher, | 386 Matcher<Node*> IsInt64Sub(const Matcher<Node*>& lhs_matcher, |
387 const Matcher<Node*>& rhs_matcher); | 387 const Matcher<Node*>& rhs_matcher); |
| 388 Matcher<Node*> IsInt64Mul(const Matcher<Node*>& lhs_matcher, |
| 389 const Matcher<Node*>& rhs_matcher); |
388 Matcher<Node*> IsJSAdd(const Matcher<Node*>& lhs_matcher, | 390 Matcher<Node*> IsJSAdd(const Matcher<Node*>& lhs_matcher, |
389 const Matcher<Node*>& rhs_matcher); | 391 const Matcher<Node*>& rhs_matcher); |
390 Matcher<Node*> IsBitcastTaggedToWord(const Matcher<Node*>& input_matcher); | 392 Matcher<Node*> IsBitcastTaggedToWord(const Matcher<Node*>& input_matcher); |
391 Matcher<Node*> IsBitcastWordToTagged(const Matcher<Node*>& input_matcher); | 393 Matcher<Node*> IsBitcastWordToTagged(const Matcher<Node*>& input_matcher); |
392 Matcher<Node*> IsBitcastWordToTaggedSigned(const Matcher<Node*>& input_matcher); | 394 Matcher<Node*> IsBitcastWordToTaggedSigned(const Matcher<Node*>& input_matcher); |
393 Matcher<Node*> IsTruncateFloat64ToWord32(const Matcher<Node*>& input_matcher); | 395 Matcher<Node*> IsTruncateFloat64ToWord32(const Matcher<Node*>& input_matcher); |
394 Matcher<Node*> IsChangeFloat64ToInt32(const Matcher<Node*>& input_matcher); | 396 Matcher<Node*> IsChangeFloat64ToInt32(const Matcher<Node*>& input_matcher); |
395 Matcher<Node*> IsChangeFloat64ToUint32(const Matcher<Node*>& input_matcher); | 397 Matcher<Node*> IsChangeFloat64ToUint32(const Matcher<Node*>& input_matcher); |
396 Matcher<Node*> IsChangeInt32ToFloat64(const Matcher<Node*>& input_matcher); | 398 Matcher<Node*> IsChangeInt32ToFloat64(const Matcher<Node*>& input_matcher); |
397 Matcher<Node*> IsChangeInt32ToInt64(const Matcher<Node*>& input_matcher); | 399 Matcher<Node*> IsChangeInt32ToInt64(const Matcher<Node*>& input_matcher); |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 const Matcher<Node*>& rhs_matcher); | 470 const Matcher<Node*>& rhs_matcher); |
469 Matcher<Node*> IsWord32ReverseBytes(const Matcher<Node*>& value_matcher); | 471 Matcher<Node*> IsWord32ReverseBytes(const Matcher<Node*>& value_matcher); |
470 | 472 |
471 Matcher<Node*> IsStackSlot(); | 473 Matcher<Node*> IsStackSlot(); |
472 | 474 |
473 } // namespace compiler | 475 } // namespace compiler |
474 } // namespace internal | 476 } // namespace internal |
475 } // namespace v8 | 477 } // namespace v8 |
476 | 478 |
477 #endif // V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ | 479 #endif // V8_UNITTESTS_COMPILER_NODE_TEST_UTILS_H_ |
OLD | NEW |