| 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 <iomanip> | 5 #include <iomanip> |
| 6 | 6 |
| 7 #include "src/types.h" | 7 #include "src/types.h" |
| 8 | 8 |
| 9 #include "src/ostreams.h" | 9 #include "src/ostreams.h" |
| 10 #include "src/types-inl.h" | 10 #include "src/types-inl.h" |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 return kNumber & kTaggedPointer; | 224 return kNumber & kTaggedPointer; |
| 225 case SIMD128_VALUE_TYPE: | 225 case SIMD128_VALUE_TYPE: |
| 226 return kSimd; | 226 return kSimd; |
| 227 case JS_VALUE_TYPE: | 227 case JS_VALUE_TYPE: |
| 228 case JS_MESSAGE_OBJECT_TYPE: | 228 case JS_MESSAGE_OBJECT_TYPE: |
| 229 case JS_DATE_TYPE: | 229 case JS_DATE_TYPE: |
| 230 case JS_OBJECT_TYPE: | 230 case JS_OBJECT_TYPE: |
| 231 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: | 231 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: |
| 232 case JS_GENERATOR_OBJECT_TYPE: | 232 case JS_GENERATOR_OBJECT_TYPE: |
| 233 case JS_MODULE_TYPE: | 233 case JS_MODULE_TYPE: |
| 234 case JS_BUILTINS_OBJECT_TYPE: | |
| 235 case JS_GLOBAL_OBJECT_TYPE: | 234 case JS_GLOBAL_OBJECT_TYPE: |
| 236 case JS_GLOBAL_PROXY_TYPE: | 235 case JS_GLOBAL_PROXY_TYPE: |
| 237 case JS_ARRAY_BUFFER_TYPE: | 236 case JS_ARRAY_BUFFER_TYPE: |
| 238 case JS_ARRAY_TYPE: | 237 case JS_ARRAY_TYPE: |
| 239 case JS_TYPED_ARRAY_TYPE: | 238 case JS_TYPED_ARRAY_TYPE: |
| 240 case JS_DATA_VIEW_TYPE: | 239 case JS_DATA_VIEW_TYPE: |
| 241 case JS_SET_TYPE: | 240 case JS_SET_TYPE: |
| 242 case JS_MAP_TYPE: | 241 case JS_MAP_TYPE: |
| 243 case JS_SET_ITERATOR_TYPE: | 242 case JS_SET_ITERATOR_TYPE: |
| 244 case JS_MAP_ITERATOR_TYPE: | 243 case JS_MAP_ITERATOR_TYPE: |
| (...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 | 1394 |
| 1396 template TypeImpl<ZoneTypeConfig>::TypeHandle | 1395 template TypeImpl<ZoneTypeConfig>::TypeHandle |
| 1397 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( | 1396 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( |
| 1398 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); | 1397 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); |
| 1399 template TypeImpl<HeapTypeConfig>::TypeHandle | 1398 template TypeImpl<HeapTypeConfig>::TypeHandle |
| 1400 TypeImpl<HeapTypeConfig>::Convert<Type>( | 1399 TypeImpl<HeapTypeConfig>::Convert<Type>( |
| 1401 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); | 1400 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); |
| 1402 | 1401 |
| 1403 } // namespace internal | 1402 } // namespace internal |
| 1404 } // namespace v8 | 1403 } // namespace v8 |
| OLD | NEW |