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

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
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code.h
===================================================================
--- runtime/vm/stub_code.h (revision 1927)
+++ runtime/vm/stub_code.h (working copy)
@@ -32,7 +32,9 @@
V(OptimizeInvokedFunction) \
V(FixCallersTarget) \
V(Deoptimize) \
+ V(BreakpointStatic) \
+
// Is it permitted for the stubs above to refer to Object::null(), which is
// allocated in the VM isolate and shared across all isolates.
// However, in cases where a simple GC-safe placeholder is needed on the stack,
@@ -45,6 +47,7 @@
V(InvokeDartCode) \
V(AllocateContext) \
V(InlineCache) \
+ V(BreakpointDynamic) \
// class StubEntry is used to describe stub methods generated in dart to
@@ -125,6 +128,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(); \
} \
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698