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

Side by Side Diff: src/deoptimizer.cc

Issue 2685163006: [inspector] migrate set/remove BreakPoint to debug-interface.h (Closed)
Patch Set: added comment about inlined jsframe index Created 3 years, 10 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/debug/debug-interface.h ('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/ast/prettyprinter.h" 10 #include "src/ast/prettyprinter.h"
(...skipping 3967 matching lines...) Expand 10 before | Expand all | Expand 10 after
3978 case INTERCEPTOR_INFO_TYPE: 3978 case INTERCEPTOR_INFO_TYPE:
3979 case CALL_HANDLER_INFO_TYPE: 3979 case CALL_HANDLER_INFO_TYPE:
3980 case OBJECT_TEMPLATE_INFO_TYPE: 3980 case OBJECT_TEMPLATE_INFO_TYPE:
3981 case ALLOCATION_MEMENTO_TYPE: 3981 case ALLOCATION_MEMENTO_TYPE:
3982 case TYPE_FEEDBACK_INFO_TYPE: 3982 case TYPE_FEEDBACK_INFO_TYPE:
3983 case ALIASED_ARGUMENTS_ENTRY_TYPE: 3983 case ALIASED_ARGUMENTS_ENTRY_TYPE:
3984 case BOX_TYPE: 3984 case BOX_TYPE:
3985 case PROMISE_RESOLVE_THENABLE_JOB_INFO_TYPE: 3985 case PROMISE_RESOLVE_THENABLE_JOB_INFO_TYPE:
3986 case PROMISE_REACTION_JOB_INFO_TYPE: 3986 case PROMISE_REACTION_JOB_INFO_TYPE:
3987 case DEBUG_INFO_TYPE: 3987 case DEBUG_INFO_TYPE:
3988 case BREAK_POINT_TYPE:
3988 case BREAK_POINT_INFO_TYPE: 3989 case BREAK_POINT_INFO_TYPE:
3989 case CELL_TYPE: 3990 case CELL_TYPE:
3990 case WEAK_CELL_TYPE: 3991 case WEAK_CELL_TYPE:
3991 case PROTOTYPE_INFO_TYPE: 3992 case PROTOTYPE_INFO_TYPE:
3992 case TUPLE2_TYPE: 3993 case TUPLE2_TYPE:
3993 case TUPLE3_TYPE: 3994 case TUPLE3_TYPE:
3994 case CONSTANT_ELEMENTS_PAIR_TYPE: 3995 case CONSTANT_ELEMENTS_PAIR_TYPE:
3995 OFStream os(stderr); 3996 OFStream os(stderr);
3996 os << "[couldn't handle instance type " << map->instance_type() << "]" 3997 os << "[couldn't handle instance type " << map->instance_type() << "]"
3997 << std::endl; 3998 << std::endl;
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
4228 CHECK(value_info->IsMaterializedObject()); 4229 CHECK(value_info->IsMaterializedObject());
4229 4230
4230 value_info->value_ = 4231 value_info->value_ =
4231 Handle<Object>(previously_materialized_objects->get(i), isolate_); 4232 Handle<Object>(previously_materialized_objects->get(i), isolate_);
4232 } 4233 }
4233 } 4234 }
4234 } 4235 }
4235 4236
4236 } // namespace internal 4237 } // namespace internal
4237 } // namespace v8 4238 } // namespace v8
OLDNEW
« no previous file with comments | « src/debug/debug-interface.h ('k') | src/factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698