| 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 <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
| 10 #include "src/compiler/common-operator.h" | 10 #include "src/compiler/common-operator.h" |
| (...skipping 2057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2068 IS_UNOP_MATCHER(Float64Sqrt) | 2068 IS_UNOP_MATCHER(Float64Sqrt) |
| 2069 IS_UNOP_MATCHER(Float64RoundDown) | 2069 IS_UNOP_MATCHER(Float64RoundDown) |
| 2070 IS_UNOP_MATCHER(Float64RoundTruncate) | 2070 IS_UNOP_MATCHER(Float64RoundTruncate) |
| 2071 IS_UNOP_MATCHER(Float64RoundTiesAway) | 2071 IS_UNOP_MATCHER(Float64RoundTiesAway) |
| 2072 IS_UNOP_MATCHER(Float64ExtractLowWord32) | 2072 IS_UNOP_MATCHER(Float64ExtractLowWord32) |
| 2073 IS_UNOP_MATCHER(Float64ExtractHighWord32) | 2073 IS_UNOP_MATCHER(Float64ExtractHighWord32) |
| 2074 IS_UNOP_MATCHER(NumberToInt32) | 2074 IS_UNOP_MATCHER(NumberToInt32) |
| 2075 IS_UNOP_MATCHER(NumberToUint32) | 2075 IS_UNOP_MATCHER(NumberToUint32) |
| 2076 IS_UNOP_MATCHER(ObjectIsSmi) | 2076 IS_UNOP_MATCHER(ObjectIsSmi) |
| 2077 IS_UNOP_MATCHER(Word32Clz) | 2077 IS_UNOP_MATCHER(Word32Clz) |
| 2078 IS_UNOP_MATCHER(JSUnaryNot) | |
| 2079 IS_UNOP_MATCHER(JSTypeOf) | |
| 2080 #undef IS_UNOP_MATCHER | 2078 #undef IS_UNOP_MATCHER |
| 2081 | 2079 |
| 2082 } // namespace compiler | 2080 } // namespace compiler |
| 2083 } // namespace internal | 2081 } // namespace internal |
| 2084 } // namespace v8 | 2082 } // namespace v8 |
| OLD | NEW |