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

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

Issue 2976723003: Eliminate dependencies on assemblers and code stubs in precompiled runtime. (Closed)
Patch Set: Eliminate precompiled runtime flag Created 3 years, 5 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.cc ('k') | runtime/vm/debugger.cc » ('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 #ifndef RUNTIME_VM_DEBUGGER_H_ 5 #ifndef RUNTIME_VM_DEBUGGER_H_
6 #define RUNTIME_VM_DEBUGGER_H_ 6 #define RUNTIME_VM_DEBUGGER_H_
7 7
8 #include "include/dart_tools_api.h" 8 #include "include/dart_tools_api.h"
9 9
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 672
673 ActivationFrame* TopDartFrame() const; 673 ActivationFrame* TopDartFrame() const;
674 static ActivationFrame* CollectDartFrame( 674 static ActivationFrame* CollectDartFrame(
675 Isolate* isolate, 675 Isolate* isolate,
676 uword pc, 676 uword pc,
677 StackFrame* frame, 677 StackFrame* frame,
678 const Code& code, 678 const Code& code,
679 const Array& deopt_frame, 679 const Array& deopt_frame,
680 intptr_t deopt_frame_offset, 680 intptr_t deopt_frame_offset,
681 ActivationFrame::Kind kind = ActivationFrame::kRegular); 681 ActivationFrame::Kind kind = ActivationFrame::kRegular);
682 #if !defined(DART_PRECOMPILED_RUNTIME)
682 static RawArray* DeoptimizeToArray(Thread* thread, 683 static RawArray* DeoptimizeToArray(Thread* thread,
683 StackFrame* frame, 684 StackFrame* frame,
684 const Code& code); 685 const Code& code);
686 #endif
685 // Appends at least one stack frame. Multiple frames will be appended 687 // Appends at least one stack frame. Multiple frames will be appended
686 // if |code| at the frame's pc contains inlined functions. 688 // if |code| at the frame's pc contains inlined functions.
687 static void AppendCodeFrames(Thread* thread, 689 static void AppendCodeFrames(Thread* thread,
688 Isolate* isolate, 690 Isolate* isolate,
689 Zone* zone, 691 Zone* zone,
690 DebuggerStackTrace* stack_trace, 692 DebuggerStackTrace* stack_trace,
691 StackFrame* frame, 693 StackFrame* frame,
692 Code* code, 694 Code* code,
693 Code* inlined_code, 695 Code* inlined_code,
694 Array* deopt_frame); 696 Array* deopt_frame);
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 797
796 friend class Isolate; 798 friend class Isolate;
797 friend class BreakpointLocation; 799 friend class BreakpointLocation;
798 DISALLOW_COPY_AND_ASSIGN(Debugger); 800 DISALLOW_COPY_AND_ASSIGN(Debugger);
799 }; 801 };
800 802
801 803
802 } // namespace dart 804 } // namespace dart
803 805
804 #endif // RUNTIME_VM_DEBUGGER_H_ 806 #endif // RUNTIME_VM_DEBUGGER_H_
OLDNEW
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698