| 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 #include "test/unittests/compiler/node-test-utils.h" | 5 #include "test/unittests/compiler/node-test-utils.h" |
| 6 | 6 |
| 7 #include "src/compiler/node-properties-inl.h" | 7 #include "src/compiler/node-properties-inl.h" |
| 8 #include "src/compiler/simplified-operator.h" | 8 #include "src/compiler/simplified-operator.h" |
| 9 | 9 |
| 10 using testing::_; | 10 using testing::_; |
| (...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 IS_UNOP_MATCHER(ChangeFloat64ToInt32) | 884 IS_UNOP_MATCHER(ChangeFloat64ToInt32) |
| 885 IS_UNOP_MATCHER(ChangeFloat64ToUint32) | 885 IS_UNOP_MATCHER(ChangeFloat64ToUint32) |
| 886 IS_UNOP_MATCHER(ChangeInt32ToFloat64) | 886 IS_UNOP_MATCHER(ChangeInt32ToFloat64) |
| 887 IS_UNOP_MATCHER(ChangeInt32ToInt64) | 887 IS_UNOP_MATCHER(ChangeInt32ToInt64) |
| 888 IS_UNOP_MATCHER(ChangeUint32ToFloat64) | 888 IS_UNOP_MATCHER(ChangeUint32ToFloat64) |
| 889 IS_UNOP_MATCHER(ChangeUint32ToUint64) | 889 IS_UNOP_MATCHER(ChangeUint32ToUint64) |
| 890 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) | 890 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) |
| 891 IS_UNOP_MATCHER(TruncateFloat64ToInt32) | 891 IS_UNOP_MATCHER(TruncateFloat64ToInt32) |
| 892 IS_UNOP_MATCHER(TruncateInt64ToInt32) | 892 IS_UNOP_MATCHER(TruncateInt64ToInt32) |
| 893 IS_UNOP_MATCHER(Float64Sqrt) | 893 IS_UNOP_MATCHER(Float64Sqrt) |
| 894 IS_UNOP_MATCHER(Float64Floor) |
| 895 IS_UNOP_MATCHER(Float64Ceil) |
| 896 IS_UNOP_MATCHER(Float64RoundTruncate) |
| 897 IS_UNOP_MATCHER(Float64RoundTiesAway) |
| 894 #undef IS_UNOP_MATCHER | 898 #undef IS_UNOP_MATCHER |
| 895 | 899 |
| 896 } // namespace compiler | 900 } // namespace compiler |
| 897 } // namespace internal | 901 } // namespace internal |
| 898 } // namespace v8 | 902 } // namespace v8 |
| OLD | NEW |