Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: src/deoptimizer.cc

Issue 2789073002: [inspector] store stack frame in struct instead of JSObject (Closed)
Patch Set: gcmole should be happy Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/types.cc ('k') | src/factory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/compiler/types.cc ('k') | src/factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698