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

Unified Diff: runtime/vm/stub_code.h

Issue 8687037: Very first steps for a debugger (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/stub_code.h
===================================================================
--- runtime/vm/stub_code.h (revision 1899)
+++ runtime/vm/stub_code.h (working copy)
@@ -45,6 +45,8 @@
V(InvokeDartCode) \
V(AllocateContext) \
V(InlineCache) \
+ V(BreakpointStatic) \
siva 2011/11/30 00:00:47 Does breakpoint static stub need to be generated o
hausner 2011/11/30 01:17:05 Done.
+ V(BreakpointDynamic) \
// class StubEntry is used to describe stub methods generated in dart to
@@ -125,6 +127,9 @@
static StubEntry* name##_entry() { \
return Isolate::Current()->stub_code()->name##_entry_; \
} \
+ static const ExternalLabel& name##Label() { \
+ return name##_entry()->label(); \
+ } \
static uword name##EntryPoint() { \
return name##_entry()->EntryPoint(); \
} \

Powered by Google App Engine
This is Rietveld 408576698