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(); \ |
} \ |