| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 IS_UNOP_MATCHER(ChangeFloat64ToInt32) | 942 IS_UNOP_MATCHER(ChangeFloat64ToInt32) |
| 943 IS_UNOP_MATCHER(ChangeFloat64ToUint32) | 943 IS_UNOP_MATCHER(ChangeFloat64ToUint32) |
| 944 IS_UNOP_MATCHER(ChangeInt32ToFloat64) | 944 IS_UNOP_MATCHER(ChangeInt32ToFloat64) |
| 945 IS_UNOP_MATCHER(ChangeInt32ToInt64) | 945 IS_UNOP_MATCHER(ChangeInt32ToInt64) |
| 946 IS_UNOP_MATCHER(ChangeUint32ToFloat64) | 946 IS_UNOP_MATCHER(ChangeUint32ToFloat64) |
| 947 IS_UNOP_MATCHER(ChangeUint32ToUint64) | 947 IS_UNOP_MATCHER(ChangeUint32ToUint64) |
| 948 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) | 948 IS_UNOP_MATCHER(TruncateFloat64ToFloat32) |
| 949 IS_UNOP_MATCHER(TruncateFloat64ToInt32) | 949 IS_UNOP_MATCHER(TruncateFloat64ToInt32) |
| 950 IS_UNOP_MATCHER(TruncateInt64ToInt32) | 950 IS_UNOP_MATCHER(TruncateInt64ToInt32) |
| 951 IS_UNOP_MATCHER(Float64Sqrt) | 951 IS_UNOP_MATCHER(Float64Sqrt) |
| 952 IS_UNOP_MATCHER(Float64Floor) |
| 953 IS_UNOP_MATCHER(Float64Ceil) |
| 954 IS_UNOP_MATCHER(Float64RoundTruncate) |
| 955 IS_UNOP_MATCHER(Float64RoundTiesAway) |
| 952 #undef IS_UNOP_MATCHER | 956 #undef IS_UNOP_MATCHER |
| 953 | 957 |
| 954 } // namespace compiler | 958 } // namespace compiler |
| 955 } // namespace internal | 959 } // namespace internal |
| 956 } // namespace v8 | 960 } // namespace v8 |
| OLD | NEW |