| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 case INTERCEPTOR_INFO_TYPE: | 266 case INTERCEPTOR_INFO_TYPE: |
| 267 case CALL_HANDLER_INFO_TYPE: | 267 case CALL_HANDLER_INFO_TYPE: |
| 268 case FUNCTION_TEMPLATE_INFO_TYPE: | 268 case FUNCTION_TEMPLATE_INFO_TYPE: |
| 269 case OBJECT_TEMPLATE_INFO_TYPE: | 269 case OBJECT_TEMPLATE_INFO_TYPE: |
| 270 case SIGNATURE_INFO_TYPE: | 270 case SIGNATURE_INFO_TYPE: |
| 271 case TYPE_SWITCH_INFO_TYPE: | 271 case TYPE_SWITCH_INFO_TYPE: |
| 272 case ALLOCATION_MEMENTO_TYPE: | 272 case ALLOCATION_MEMENTO_TYPE: |
| 273 case TYPE_FEEDBACK_INFO_TYPE: | 273 case TYPE_FEEDBACK_INFO_TYPE: |
| 274 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 274 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
| 275 case BOX_TYPE: | 275 case BOX_TYPE: |
| 276 case PROMISE_CONTAINER_TYPE: |
| 276 case DEBUG_INFO_TYPE: | 277 case DEBUG_INFO_TYPE: |
| 277 case BREAK_POINT_INFO_TYPE: | 278 case BREAK_POINT_INFO_TYPE: |
| 278 case CELL_TYPE: | 279 case CELL_TYPE: |
| 279 case WEAK_CELL_TYPE: | 280 case WEAK_CELL_TYPE: |
| 280 case PROTOTYPE_INFO_TYPE: | 281 case PROTOTYPE_INFO_TYPE: |
| 281 case SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE: | 282 case SLOPPY_BLOCK_WITH_EVAL_CONTEXT_EXTENSION_TYPE: |
| 282 UNREACHABLE(); | 283 UNREACHABLE(); |
| 283 return kNone; | 284 return kNone; |
| 284 } | 285 } |
| 285 UNREACHABLE(); | 286 UNREACHABLE(); |
| (...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1270 #undef CONSTRUCT_SIMD_TYPE | 1271 #undef CONSTRUCT_SIMD_TYPE |
| 1271 | 1272 |
| 1272 // ----------------------------------------------------------------------------- | 1273 // ----------------------------------------------------------------------------- |
| 1273 // Instantiations. | 1274 // Instantiations. |
| 1274 | 1275 |
| 1275 template class Type::Iterator<i::Map>; | 1276 template class Type::Iterator<i::Map>; |
| 1276 template class Type::Iterator<i::Object>; | 1277 template class Type::Iterator<i::Object>; |
| 1277 | 1278 |
| 1278 } // namespace internal | 1279 } // namespace internal |
| 1279 } // namespace v8 | 1280 } // namespace v8 |
| OLD | NEW |