| Index: runtime/vm/stub_code.h
|
| ===================================================================
|
| --- runtime/vm/stub_code.h (revision 34118)
|
| +++ runtime/vm/stub_code.h (working copy)
|
| @@ -22,6 +22,8 @@
|
| #define VM_STUB_CODE_LIST(V) \
|
| V(PrintStopMessage) \
|
| V(CallToRuntime) \
|
| + V(LazyCompile) \
|
| + V(LazyCompileClosure) \
|
| V(CallBootstrapCFunction) \
|
| V(CallNativeCFunction) \
|
| V(AllocateArray) \
|
| @@ -76,6 +78,7 @@
|
|
|
| const ExternalLabel& label() const { return label_; }
|
| uword EntryPoint() const { return entry_point_; }
|
| + RawCode* code() const { return code_; }
|
| intptr_t Size() const { return size_; }
|
|
|
| // Visit all object pointers.
|
|
|