| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 "src/deoptimizer.h" | 5 #include "src/deoptimizer.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "src/accessors.h" | 9 #include "src/accessors.h" |
| 10 #include "src/assembler-inl.h" | 10 #include "src/assembler-inl.h" |
| (...skipping 4187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4198 case OBJECT_TEMPLATE_INFO_TYPE: | 4198 case OBJECT_TEMPLATE_INFO_TYPE: |
| 4199 case ALLOCATION_MEMENTO_TYPE: | 4199 case ALLOCATION_MEMENTO_TYPE: |
| 4200 case TYPE_FEEDBACK_INFO_TYPE: | 4200 case TYPE_FEEDBACK_INFO_TYPE: |
| 4201 case ALIASED_ARGUMENTS_ENTRY_TYPE: | 4201 case ALIASED_ARGUMENTS_ENTRY_TYPE: |
| 4202 case PROMISE_RESOLVE_THENABLE_JOB_INFO_TYPE: | 4202 case PROMISE_RESOLVE_THENABLE_JOB_INFO_TYPE: |
| 4203 case PROMISE_REACTION_JOB_INFO_TYPE: | 4203 case PROMISE_REACTION_JOB_INFO_TYPE: |
| 4204 case DEBUG_INFO_TYPE: | 4204 case DEBUG_INFO_TYPE: |
| 4205 case BREAK_POINT_INFO_TYPE: | 4205 case BREAK_POINT_INFO_TYPE: |
| 4206 case STACK_FRAME_INFO_TYPE: | 4206 case STACK_FRAME_INFO_TYPE: |
| 4207 case STACK_TRACE_INFO_TYPE: | 4207 case STACK_TRACE_INFO_TYPE: |
| 4208 case SOURCE_POSITION_TABLE_WITH_FRAME_CACHE_TYPE: |
| 4208 case CELL_TYPE: | 4209 case CELL_TYPE: |
| 4209 case WEAK_CELL_TYPE: | 4210 case WEAK_CELL_TYPE: |
| 4210 case PROTOTYPE_INFO_TYPE: | 4211 case PROTOTYPE_INFO_TYPE: |
| 4211 case TUPLE2_TYPE: | 4212 case TUPLE2_TYPE: |
| 4212 case TUPLE3_TYPE: | 4213 case TUPLE3_TYPE: |
| 4213 case CONSTANT_ELEMENTS_PAIR_TYPE: | 4214 case CONSTANT_ELEMENTS_PAIR_TYPE: |
| 4214 case ASYNC_GENERATOR_REQUEST_TYPE: | 4215 case ASYNC_GENERATOR_REQUEST_TYPE: |
| 4215 OFStream os(stderr); | 4216 OFStream os(stderr); |
| 4216 os << "[couldn't handle instance type " << map->instance_type() << "]" | 4217 os << "[couldn't handle instance type " << map->instance_type() << "]" |
| 4217 << std::endl; | 4218 << std::endl; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4448 CHECK(value_info->IsMaterializedObject()); | 4449 CHECK(value_info->IsMaterializedObject()); |
| 4449 | 4450 |
| 4450 value_info->value_ = | 4451 value_info->value_ = |
| 4451 Handle<Object>(previously_materialized_objects->get(i), isolate_); | 4452 Handle<Object>(previously_materialized_objects->get(i), isolate_); |
| 4452 } | 4453 } |
| 4453 } | 4454 } |
| 4454 } | 4455 } |
| 4455 | 4456 |
| 4456 } // namespace internal | 4457 } // namespace internal |
| 4457 } // namespace v8 | 4458 } // namespace v8 |
| OLD | NEW |