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

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

Issue 3001463002: [gardening] Revert "Eliminate dependencies on assemblers and code stubs in precompiled runtime." (Closed)
Patch Set: Created 3 years, 4 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 666
667 ActivationFrame* TopDartFrame() const; 667 ActivationFrame* TopDartFrame() const;
668 static ActivationFrame* CollectDartFrame( 668 static ActivationFrame* CollectDartFrame(
669 Isolate* isolate, 669 Isolate* isolate,
670 uword pc, 670 uword pc,
671 StackFrame* frame, 671 StackFrame* frame,
672 const Code& code, 672 const Code& code,
673 const Array& deopt_frame, 673 const Array& deopt_frame,
674 intptr_t deopt_frame_offset, 674 intptr_t deopt_frame_offset,
675 ActivationFrame::Kind kind = ActivationFrame::kRegular); 675 ActivationFrame::Kind kind = ActivationFrame::kRegular);
676 #if !defined(DART_PRECOMPILED_RUNTIME)
677 static RawArray* DeoptimizeToArray(Thread* thread, 676 static RawArray* DeoptimizeToArray(Thread* thread,
678 StackFrame* frame, 677 StackFrame* frame,
679 const Code& code); 678 const Code& code);
680 #endif
681 // Appends at least one stack frame. Multiple frames will be appended 679 // Appends at least one stack frame. Multiple frames will be appended
682 // if |code| at the frame's pc contains inlined functions. 680 // if |code| at the frame's pc contains inlined functions.
683 static void AppendCodeFrames(Thread* thread, 681 static void AppendCodeFrames(Thread* thread,
684 Isolate* isolate, 682 Isolate* isolate,
685 Zone* zone, 683 Zone* zone,
686 DebuggerStackTrace* stack_trace, 684 DebuggerStackTrace* stack_trace,
687 StackFrame* frame, 685 StackFrame* frame,
688 Code* code, 686 Code* code,
689 Code* inlined_code, 687 Code* inlined_code,
690 Array* deopt_frame); 688 Array* deopt_frame);
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 static EventHandler* event_handler_; 787 static EventHandler* event_handler_;
790 788
791 friend class Isolate; 789 friend class Isolate;
792 friend class BreakpointLocation; 790 friend class BreakpointLocation;
793 DISALLOW_COPY_AND_ASSIGN(Debugger); 791 DISALLOW_COPY_AND_ASSIGN(Debugger);
794 }; 792 };
795 793
796 } // namespace dart 794 } // namespace dart
797 795
798 #endif // RUNTIME_VM_DEBUGGER_H_ 796 #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