| 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 4185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4196 case INTERCEPTOR_INFO_TYPE: | 4196 case INTERCEPTOR_INFO_TYPE: |
| 4197 case CALL_HANDLER_INFO_TYPE: | 4197 case CALL_HANDLER_INFO_TYPE: |
| 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 CELL_TYPE: | 4207 case CELL_TYPE: |
| 4207 case WEAK_CELL_TYPE: | 4208 case WEAK_CELL_TYPE: |
| 4208 case PROTOTYPE_INFO_TYPE: | 4209 case PROTOTYPE_INFO_TYPE: |
| 4209 case TUPLE2_TYPE: | 4210 case TUPLE2_TYPE: |
| 4210 case TUPLE3_TYPE: | 4211 case TUPLE3_TYPE: |
| 4211 case CONSTANT_ELEMENTS_PAIR_TYPE: | 4212 case CONSTANT_ELEMENTS_PAIR_TYPE: |
| 4212 case ASYNC_GENERATOR_REQUEST_TYPE: | 4213 case ASYNC_GENERATOR_REQUEST_TYPE: |
| 4213 OFStream os(stderr); | 4214 OFStream os(stderr); |
| 4214 os << "[couldn't handle instance type " << map->instance_type() << "]" | 4215 os << "[couldn't handle instance type " << map->instance_type() << "]" |
| 4215 << std::endl; | 4216 << std::endl; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4446 CHECK(value_info->IsMaterializedObject()); | 4447 CHECK(value_info->IsMaterializedObject()); |
| 4447 | 4448 |
| 4448 value_info->value_ = | 4449 value_info->value_ = |
| 4449 Handle<Object>(previously_materialized_objects->get(i), isolate_); | 4450 Handle<Object>(previously_materialized_objects->get(i), isolate_); |
| 4450 } | 4451 } |
| 4451 } | 4452 } |
| 4452 } | 4453 } |
| 4453 | 4454 |
| 4454 } // namespace internal | 4455 } // namespace internal |
| 4455 } // namespace v8 | 4456 } // namespace v8 |
| OLD | NEW |