| 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/compiler/types.h" | 7 #include "src/compiler/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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 case INTERCEPTOR_INFO_TYPE: | 257 case INTERCEPTOR_INFO_TYPE: |
| 258 case CALL_HANDLER_INFO_TYPE: | 258 case CALL_HANDLER_INFO_TYPE: |
| 259 case FUNCTION_TEMPLATE_INFO_TYPE: | 259 case FUNCTION_TEMPLATE_INFO_TYPE: |
| 260 case OBJECT_TEMPLATE_INFO_TYPE: | 260 case OBJECT_TEMPLATE_INFO_TYPE: |
| 261 case SIGNATURE_INFO_TYPE: | 261 case SIGNATURE_INFO_TYPE: |
| 262 case TYPE_SWITCH_INFO_TYPE: | 262 case TYPE_SWITCH_INFO_TYPE: |
| 263 case ALLOCATION_MEMENTO_TYPE: | 263 case ALLOCATION_MEMENTO_TYPE: |
| 264 case TYPE_FEEDBACK_INFO_TYPE: | 264 case TYPE_FEEDBACK_INFO_TYPE: |
| 265 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 265 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
| 266 case BOX_TYPE: | 266 case BOX_TYPE: |
| 267 case PROMISE_CONTAINER_TYPE: |
| 267 case DEBUG_INFO_TYPE: | 268 case DEBUG_INFO_TYPE: |
| 268 case BREAK_POINT_INFO_TYPE: | 269 case BREAK_POINT_INFO_TYPE: |
| 269 case CELL_TYPE: | 270 case CELL_TYPE: |
| 270 case WEAK_CELL_TYPE: | 271 case WEAK_CELL_TYPE: |
| 271 case PROTOTYPE_INFO_TYPE: | 272 case PROTOTYPE_INFO_TYPE: |
| 272 case CONTEXT_EXTENSION_TYPE: | 273 case CONTEXT_EXTENSION_TYPE: |
| 273 UNREACHABLE(); | 274 UNREACHABLE(); |
| 274 return kNone; | 275 return kNone; |
| 275 } | 276 } |
| 276 UNREACHABLE(); | 277 UNREACHABLE(); |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 } | 1112 } |
| 1112 | 1113 |
| 1113 // ----------------------------------------------------------------------------- | 1114 // ----------------------------------------------------------------------------- |
| 1114 // Instantiations. | 1115 // Instantiations. |
| 1115 | 1116 |
| 1116 template class Type::Iterator<i::Object>; | 1117 template class Type::Iterator<i::Object>; |
| 1117 | 1118 |
| 1118 } // namespace compiler | 1119 } // namespace compiler |
| 1119 } // namespace internal | 1120 } // namespace internal |
| 1120 } // namespace v8 | 1121 } // namespace v8 |
| OLD | NEW |