| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "src/hydrogen-types.h" | 7 #include "src/hydrogen-types.h" |
| 8 #include "src/isolate-inl.h" | 8 #include "src/isolate-inl.h" |
| 9 #include "src/types.h" | 9 #include "src/types.h" |
| 10 #include "test/cctest/cctest.h" | 10 #include "test/cctest/cctest.h" |
| (...skipping 1895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1906 } | 1906 } |
| 1907 | 1907 |
| 1908 | 1908 |
| 1909 TEST(Maybe) { | 1909 TEST(Maybe) { |
| 1910 CcTest::InitializeVM(); | 1910 CcTest::InitializeVM(); |
| 1911 ZoneTests().Maybe(); | 1911 ZoneTests().Maybe(); |
| 1912 HeapTests().Maybe(); | 1912 HeapTests().Maybe(); |
| 1913 } | 1913 } |
| 1914 | 1914 |
| 1915 | 1915 |
| 1916 // TODO(rossberg): make me faster! |
| 1917 #if 0 |
| 1916 TEST(Union1) { | 1918 TEST(Union1) { |
| 1917 CcTest::InitializeVM(); | 1919 CcTest::InitializeVM(); |
| 1918 ZoneTests().Union1(); | 1920 ZoneTests().Union1(); |
| 1919 HeapTests().Union1(); | 1921 HeapTests().Union1(); |
| 1920 } | 1922 } |
| 1921 | 1923 |
| 1922 | 1924 |
| 1923 TEST(Union2) { | 1925 TEST(Union2) { |
| 1924 CcTest::InitializeVM(); | 1926 CcTest::InitializeVM(); |
| 1925 ZoneTests().Union2(); | 1927 ZoneTests().Union2(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1946 ZoneTests().Distributivity1(); | 1948 ZoneTests().Distributivity1(); |
| 1947 HeapTests().Distributivity1(); | 1949 HeapTests().Distributivity1(); |
| 1948 } | 1950 } |
| 1949 | 1951 |
| 1950 | 1952 |
| 1951 TEST(Distributivity2) { | 1953 TEST(Distributivity2) { |
| 1952 CcTest::InitializeVM(); | 1954 CcTest::InitializeVM(); |
| 1953 ZoneTests().Distributivity2(); | 1955 ZoneTests().Distributivity2(); |
| 1954 HeapTests().Distributivity2(); | 1956 HeapTests().Distributivity2(); |
| 1955 } | 1957 } |
| 1956 | 1958 #endif // TODO(rossberg): make me faster |
| 1957 | 1959 |
| 1958 TEST(Convert) { | 1960 TEST(Convert) { |
| 1959 CcTest::InitializeVM(); | 1961 CcTest::InitializeVM(); |
| 1960 ZoneTests().Convert<HeapType, Handle<HeapType>, Isolate, HeapRep>(); | 1962 ZoneTests().Convert<HeapType, Handle<HeapType>, Isolate, HeapRep>(); |
| 1961 HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); | 1963 HeapTests().Convert<Type, Type*, Zone, ZoneRep>(); |
| 1962 } | 1964 } |
| 1963 | 1965 |
| 1964 | 1966 |
| 1965 TEST(HTypeFromType) { | 1967 TEST(HTypeFromType) { |
| 1966 CcTest::InitializeVM(); | 1968 CcTest::InitializeVM(); |
| 1967 ZoneTests().HTypeFromType(); | 1969 ZoneTests().HTypeFromType(); |
| 1968 HeapTests().HTypeFromType(); | 1970 HeapTests().HTypeFromType(); |
| 1969 } | 1971 } |
| OLD | NEW |