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

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

Issue 2664143002: Revert "Debugging in kernel shaping up." (Closed)
Patch Set: Revert "Debugging in kernel shaping up." 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 | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/kernel.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 (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 "include/dart_api.h" 7 #include "include/dart_api.h"
8 8
9 #include "platform/address_sanitizer.h" 9 #include "platform/address_sanitizer.h"
10 10
(...skipping 2911 matching lines...) Expand 10 before | Expand all | Expand 10 after
2922 2922
2923 bool Debugger::IsAtAsyncJump(ActivationFrame* top_frame) { 2923 bool Debugger::IsAtAsyncJump(ActivationFrame* top_frame) {
2924 Zone* zone = Thread::Current()->zone(); 2924 Zone* zone = Thread::Current()->zone();
2925 Object& closure_or_null = 2925 Object& closure_or_null =
2926 Object::Handle(zone, top_frame->GetAsyncOperation()); 2926 Object::Handle(zone, top_frame->GetAsyncOperation());
2927 if (!closure_or_null.IsNull()) { 2927 if (!closure_or_null.IsNull()) {
2928 ASSERT(closure_or_null.IsInstance()); 2928 ASSERT(closure_or_null.IsInstance());
2929 ASSERT(Instance::Cast(closure_or_null).IsClosure()); 2929 ASSERT(Instance::Cast(closure_or_null).IsClosure());
2930 const Script& script = Script::Handle(zone, top_frame->SourceScript()); 2930 const Script& script = Script::Handle(zone, top_frame->SourceScript());
2931 if (script.kind() == RawScript::kKernelTag) { 2931 if (script.kind() == RawScript::kKernelTag) {
2932 // Are we at a yield point (previous await)?
2933 const Array& yields = Array::Handle(script.yield_positions());
2934 intptr_t looking_for = top_frame->TokenPos().value();
2935 Smi& value = Smi::Handle(zone);
2936 for (int i = 0; i < yields.Length(); i++) {
2937 value ^= yields.At(i);
2938 if (value.Value() == looking_for) return true;
2939 }
2940 return false; 2932 return false;
2941 } 2933 }
2942 const TokenStream& tokens = TokenStream::Handle(zone, script.tokens()); 2934 const TokenStream& tokens = TokenStream::Handle(zone, script.tokens());
2943 TokenStream::Iterator iter(zone, tokens, top_frame->TokenPos()); 2935 TokenStream::Iterator iter(zone, tokens, top_frame->TokenPos());
2944 if ((iter.CurrentTokenKind() == Token::kIDENT) && 2936 if ((iter.CurrentTokenKind() == Token::kIDENT) &&
2945 ((iter.CurrentLiteral() == Symbols::Await().raw()) || 2937 ((iter.CurrentLiteral() == Symbols::Await().raw()) ||
2946 (iter.CurrentLiteral() == Symbols::YieldKw().raw()))) { 2938 (iter.CurrentLiteral() == Symbols::YieldKw().raw()))) {
2947 return true; 2939 return true;
2948 } 2940 }
2949 } 2941 }
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
3607 3599
3608 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) { 3600 void Debugger::RegisterCodeBreakpoint(CodeBreakpoint* bpt) {
3609 ASSERT(bpt->next() == NULL); 3601 ASSERT(bpt->next() == NULL);
3610 bpt->set_next(code_breakpoints_); 3602 bpt->set_next(code_breakpoints_);
3611 code_breakpoints_ = bpt; 3603 code_breakpoints_ = bpt;
3612 } 3604 }
3613 3605
3614 #endif // !PRODUCT 3606 #endif // !PRODUCT
3615 3607
3616 } // namespace dart 3608 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/kernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698