| 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 "types.h" | 5 #include "src/types.h" |
| 6 | 6 |
| 7 #include "string-stream.h" | 7 #include "src/string-stream.h" |
| 8 #include "types-inl.h" | 8 #include "src/types-inl.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| 11 namespace internal { | 11 namespace internal { |
| 12 | 12 |
| 13 // ----------------------------------------------------------------------------- | 13 // ----------------------------------------------------------------------------- |
| 14 // Glb and lub computation. | 14 // Glb and lub computation. |
| 15 | 15 |
| 16 // The largest bitset subsumed by this type. | 16 // The largest bitset subsumed by this type. |
| 17 template<class Config> | 17 template<class Config> |
| 18 int TypeImpl<Config>::BitsetType::Glb(TypeImpl* type) { | 18 int TypeImpl<Config>::BitsetType::Glb(TypeImpl* type) { |
| (...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; | 983 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; |
| 984 | 984 |
| 985 template TypeImpl<ZoneTypeConfig>::TypeHandle | 985 template TypeImpl<ZoneTypeConfig>::TypeHandle |
| 986 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( | 986 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( |
| 987 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); | 987 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); |
| 988 template TypeImpl<HeapTypeConfig>::TypeHandle | 988 template TypeImpl<HeapTypeConfig>::TypeHandle |
| 989 TypeImpl<HeapTypeConfig>::Convert<Type>( | 989 TypeImpl<HeapTypeConfig>::Convert<Type>( |
| 990 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); | 990 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); |
| 991 | 991 |
| 992 } } // namespace v8::internal | 992 } } // namespace v8::internal |
| OLD | NEW |