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

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

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