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

Side by Side Diff: runtime/vm/debugger.cc

Issue 9716004: Properly recognize closures when setting breakpoints (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/debugger.h" 5 #include "vm/debugger.h"
6 6
7 #include "vm/code_index_table.h" 7 #include "vm/code_index_table.h"
8 #include "vm/code_generator.h" 8 #include "vm/code_generator.h"
9 #include "vm/code_patcher.h" 9 #include "vm/code_patcher.h"
10 #include "vm/compiler.h" 10 #include "vm/compiler.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // Compute line number lazily since it causes scanning of the script. 66 // Compute line number lazily since it causes scanning of the script.
67 if (line_number_ < 0) { 67 if (line_number_ < 0) {
68 const Script& script = Script::Handle(SourceCode()); 68 const Script& script = Script::Handle(SourceCode());
69 intptr_t ignore_column; 69 intptr_t ignore_column;
70 script.GetTokenLocation(token_index_, &line_number_, &ignore_column); 70 script.GetTokenLocation(token_index_, &line_number_, &ignore_column);
71 } 71 }
72 return line_number_; 72 return line_number_;
73 } 73 }
74 74
75 75
76 void SourceBreakpoint::set_function(const Function& func) {
77 function_ = func.raw();
78 }
79
80
76 void SourceBreakpoint::VisitObjectPointers(ObjectPointerVisitor* visitor) { 81 void SourceBreakpoint::VisitObjectPointers(ObjectPointerVisitor* visitor) {
77 visitor->VisitPointer(reinterpret_cast<RawObject**>(&function_)); 82 visitor->VisitPointer(reinterpret_cast<RawObject**>(&function_));
78 } 83 }
79 84
80 85
81 86
82 void CodeBreakpoint::VisitObjectPointers(ObjectPointerVisitor* visitor) { 87 void CodeBreakpoint::VisitObjectPointers(ObjectPointerVisitor* visitor) {
83 visitor->VisitPointer(reinterpret_cast<RawObject**>(&function_)); 88 visitor->VisitPointer(reinterpret_cast<RawObject**>(&function_));
84 } 89 }
85 90
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
929 SetBreakpointHandler(DefaultBreakpointHandler); 934 SetBreakpointHandler(DefaultBreakpointHandler);
930 } 935 }
931 936
932 937
933 void Debugger::NotifyCompilation(const Function& func) { 938 void Debugger::NotifyCompilation(const Function& func) {
934 if (src_breakpoints_ == NULL) { 939 if (src_breakpoints_ == NULL) {
935 // Return with minimal overhead if there are no breakpoints. 940 // Return with minimal overhead if there are no breakpoints.
936 return; 941 return;
937 } 942 }
938 Function& lookup_function = Function::Handle(func.raw()); 943 Function& lookup_function = Function::Handle(func.raw());
939 if (func.IsClosureFunction()) { 944 if (func.IsImplicitClosureFunction()) {
regis 2012/03/16 22:04:01 I do not understand why you changed this test. The
hausner 2012/03/16 22:20:58 Updated the comment.
940 // If the newly compiled function is a closure, we need to use 945 // If the newly compiled function is a closure, we need to use
941 // the closure's parent function to see whether there are any 946 // the closure's parent function to see whether there are any
942 // breakpoints. 947 // breakpoints.
943 lookup_function = func.parent_function(); 948 lookup_function = func.parent_function();
regis 2012/03/16 22:04:01 ASSERT(!lookup_function.IsNull());?
hausner 2012/03/16 22:20:58 Done.
944 } 949 }
945 SourceBreakpoint* bpt = src_breakpoints_; 950 SourceBreakpoint* bpt = src_breakpoints_;
946 while (bpt != NULL) { 951 while (bpt != NULL) {
947 if (lookup_function.raw() == bpt->function()) { 952 if (lookup_function.raw() == bpt->function()) {
948 if (verbose) { 953 // Check if the breakpoint is inside a closure or local function
regis 2012/03/16 22:04:01 Indentation
hausner 2012/03/16 22:20:58 Done.
949 OS::Print("Enable latent breakpoint for function '%s'\n", 954 // within the newly compiled function.
950 String::Handle(lookup_function.name()).ToCString()); 955 Class& owner = Class::Handle(lookup_function.owner());
951 } 956 Function& closure =
952 // Set breakpoint in newly compiled code of function func. 957 Function::Handle(owner.LookupClosureFunction(bpt->token_index()));
953 CodeBreakpoint* cbpt = MakeCodeBreakpoint(func, bpt->token_index()); 958 if (!closure.IsNull() && (closure.raw() != lookup_function.raw())) {
954 if (cbpt != NULL) { 959 if (verbose) {
955 cbpt->set_src_bpt(bpt); 960 OS::Print("Resetting pending breakpoint to function %s\n",
961 String::Handle(closure.name()).ToCString());
962 }
963 bpt->set_function(closure);
964 } else {
965 if (verbose) {
966 OS::Print("Enable pending breakpoint for function '%s'\n",
967 String::Handle(lookup_function.name()).ToCString());
968 }
969 // Set breakpoint in newly compiled code of function func.
970 CodeBreakpoint* cbpt = MakeCodeBreakpoint(func, bpt->token_index());
971 if (cbpt != NULL) {
972 cbpt->set_src_bpt(bpt);
973 }
956 } 974 }
957 bpt->Enable(); // Enables the code breakpoint as well. 975 bpt->Enable(); // Enables the code breakpoint as well.
958 } 976 }
959 bpt = bpt->next(); 977 bpt = bpt->next();
960 } 978 }
961 } 979 }
962 980
963 981
964 CodeBreakpoint* Debugger::GetCodeBreakpoint(uword breakpoint_address) { 982 CodeBreakpoint* Debugger::GetCodeBreakpoint(uword breakpoint_address) {
965 CodeBreakpoint* bpt = code_breakpoints_; 983 CodeBreakpoint* bpt = code_breakpoints_;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 } 1068 }
1051 1069
1052 1070
1053 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) { 1071 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) {
1054 ASSERT(bpt->next() == NULL); 1072 ASSERT(bpt->next() == NULL);
1055 bpt->set_next(code_breakpoints_); 1073 bpt->set_next(code_breakpoints_);
1056 code_breakpoints_ = bpt; 1074 code_breakpoints_ = bpt;
1057 } 1075 }
1058 1076
1059 } // namespace dart 1077 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698