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/js-operator.h" | 10 #include "src/compiler/js-operator.h" |
(...skipping 1814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1825 IS_BINOP_MATCHER(Int32AddWithOverflow) | 1825 IS_BINOP_MATCHER(Int32AddWithOverflow) |
1826 IS_BINOP_MATCHER(Int32Add) | 1826 IS_BINOP_MATCHER(Int32Add) |
1827 IS_BINOP_MATCHER(Int32Sub) | 1827 IS_BINOP_MATCHER(Int32Sub) |
1828 IS_BINOP_MATCHER(Int32Mul) | 1828 IS_BINOP_MATCHER(Int32Mul) |
1829 IS_BINOP_MATCHER(Int32MulHigh) | 1829 IS_BINOP_MATCHER(Int32MulHigh) |
1830 IS_BINOP_MATCHER(Int32LessThan) | 1830 IS_BINOP_MATCHER(Int32LessThan) |
1831 IS_BINOP_MATCHER(Uint32LessThan) | 1831 IS_BINOP_MATCHER(Uint32LessThan) |
1832 IS_BINOP_MATCHER(Uint32LessThanOrEqual) | 1832 IS_BINOP_MATCHER(Uint32LessThanOrEqual) |
1833 IS_BINOP_MATCHER(Float32Max) | 1833 IS_BINOP_MATCHER(Float32Max) |
1834 IS_BINOP_MATCHER(Float32Min) | 1834 IS_BINOP_MATCHER(Float32Min) |
| 1835 IS_BINOP_MATCHER(Float32Equal) |
| 1836 IS_BINOP_MATCHER(Float32LessThan) |
| 1837 IS_BINOP_MATCHER(Float32LessThanOrEqual) |
1835 IS_BINOP_MATCHER(Float64Max) | 1838 IS_BINOP_MATCHER(Float64Max) |
1836 IS_BINOP_MATCHER(Float64Min) | 1839 IS_BINOP_MATCHER(Float64Min) |
1837 IS_BINOP_MATCHER(Float64Sub) | 1840 IS_BINOP_MATCHER(Float64Sub) |
1838 IS_BINOP_MATCHER(Float64InsertLowWord32) | 1841 IS_BINOP_MATCHER(Float64InsertLowWord32) |
1839 IS_BINOP_MATCHER(Float64InsertHighWord32) | 1842 IS_BINOP_MATCHER(Float64InsertHighWord32) |
1840 #undef IS_BINOP_MATCHER | 1843 #undef IS_BINOP_MATCHER |
1841 | 1844 |
1842 | 1845 |
1843 #define IS_UNOP_MATCHER(Name) \ | 1846 #define IS_UNOP_MATCHER(Name) \ |
1844 Matcher<Node*> Is##Name(const Matcher<Node*>& input_matcher) { \ | 1847 Matcher<Node*> Is##Name(const Matcher<Node*>& input_matcher) { \ |
(...skipping 20 matching lines...) Expand all Loading... |
1865 IS_UNOP_MATCHER(NumberToInt32) | 1868 IS_UNOP_MATCHER(NumberToInt32) |
1866 IS_UNOP_MATCHER(NumberToUint32) | 1869 IS_UNOP_MATCHER(NumberToUint32) |
1867 IS_UNOP_MATCHER(ObjectIsSmi) | 1870 IS_UNOP_MATCHER(ObjectIsSmi) |
1868 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi) | 1871 IS_UNOP_MATCHER(ObjectIsNonNegativeSmi) |
1869 IS_UNOP_MATCHER(Word32Clz) | 1872 IS_UNOP_MATCHER(Word32Clz) |
1870 #undef IS_UNOP_MATCHER | 1873 #undef IS_UNOP_MATCHER |
1871 | 1874 |
1872 } // namespace compiler | 1875 } // namespace compiler |
1873 } // namespace internal | 1876 } // namespace internal |
1874 } // namespace v8 | 1877 } // namespace v8 |
OLD | NEW |