Index: runtime/vm/object.h |
=================================================================== |
--- runtime/vm/object.h (revision 40735) |
+++ runtime/vm/object.h (working copy) |
@@ -1143,7 +1143,7 @@ |
} |
void set_allocation_stub(const Code& value) const; |
- void SwitchAllocationStub() const; |
+ void DisableAllocationStub() const; |
RawArray* constants() const; |
@@ -1276,10 +1276,6 @@ |
void set_canonical_types(const Object& value) const; |
RawObject* canonical_types() const; |
- RawCode* spare_allocation_stub() const { |
- return raw_ptr()->spare_allocation_stub_; |
- } |
- |
RawArray* invocation_dispatcher_cache() const; |
void set_invocation_dispatcher_cache(const Array& cache) const; |
RawFunction* CreateInvocationDispatcher(const String& target_name, |
@@ -3769,6 +3765,7 @@ |
RawCode* GetStaticCallTargetCodeAt(uword pc) const; |
// Aborts if there is no static call at 'pc'. |
void SetStaticCallTargetCodeAt(uword pc, const Code& code) const; |
+ void SetStubCallTargetCodeAt(uword pc, const Code& code) const; |
void Disassemble(DisassemblyFormatter* formatter = NULL) const; |