| 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/handles-inl.h" | 9 #include "src/handles-inl.h" |
| 10 #include "src/ostreams.h" | 10 #include "src/ostreams.h" |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 #undef FIXED_TYPED_ARRAY_CASE | 259 #undef FIXED_TYPED_ARRAY_CASE |
| 260 case FILLER_TYPE: | 260 case FILLER_TYPE: |
| 261 case ACCESS_CHECK_INFO_TYPE: | 261 case ACCESS_CHECK_INFO_TYPE: |
| 262 case INTERCEPTOR_INFO_TYPE: | 262 case INTERCEPTOR_INFO_TYPE: |
| 263 case CALL_HANDLER_INFO_TYPE: | 263 case CALL_HANDLER_INFO_TYPE: |
| 264 case FUNCTION_TEMPLATE_INFO_TYPE: | 264 case FUNCTION_TEMPLATE_INFO_TYPE: |
| 265 case OBJECT_TEMPLATE_INFO_TYPE: | 265 case OBJECT_TEMPLATE_INFO_TYPE: |
| 266 case SIGNATURE_INFO_TYPE: | 266 case SIGNATURE_INFO_TYPE: |
| 267 case TYPE_SWITCH_INFO_TYPE: | 267 case TYPE_SWITCH_INFO_TYPE: |
| 268 case ALLOCATION_MEMENTO_TYPE: | 268 case ALLOCATION_MEMENTO_TYPE: |
| 269 case CODE_CACHE_TYPE: | |
| 270 case POLYMORPHIC_CODE_CACHE_TYPE: | |
| 271 case TYPE_FEEDBACK_INFO_TYPE: | 269 case TYPE_FEEDBACK_INFO_TYPE: |
| 272 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 270 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
| 273 case BOX_TYPE: | 271 case BOX_TYPE: |
| 274 case DEBUG_INFO_TYPE: | 272 case DEBUG_INFO_TYPE: |
| 275 case BREAK_POINT_INFO_TYPE: | 273 case BREAK_POINT_INFO_TYPE: |
| 276 case CELL_TYPE: | 274 case CELL_TYPE: |
| 277 case WEAK_CELL_TYPE: | 275 case WEAK_CELL_TYPE: |
| 278 case PROTOTYPE_INFO_TYPE: | 276 case PROTOTYPE_INFO_TYPE: |
| 279 case SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE: | 277 case SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE: |
| 280 UNREACHABLE(); | 278 UNREACHABLE(); |
| (...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1268 #undef CONSTRUCT_SIMD_TYPE | 1266 #undef CONSTRUCT_SIMD_TYPE |
| 1269 | 1267 |
| 1270 // ----------------------------------------------------------------------------- | 1268 // ----------------------------------------------------------------------------- |
| 1271 // Instantiations. | 1269 // Instantiations. |
| 1272 | 1270 |
| 1273 template class Type::Iterator<i::Map>; | 1271 template class Type::Iterator<i::Map>; |
| 1274 template class Type::Iterator<i::Object>; | 1272 template class Type::Iterator<i::Object>; |
| 1275 | 1273 |
| 1276 } // namespace internal | 1274 } // namespace internal |
| 1277 } // namespace v8 | 1275 } // namespace v8 |
| OLD | NEW |