| Index: runtime/vm/assembler_arm64.h
|
| diff --git a/runtime/vm/assembler_arm64.h b/runtime/vm/assembler_arm64.h
|
| index 77d7fced6e667cb4b40f2d10f26093c99c1a15ec..6fa29c7e2daf00b65b22144028b3d6a684c27442 100644
|
| --- a/runtime/vm/assembler_arm64.h
|
| +++ b/runtime/vm/assembler_arm64.h
|
| @@ -467,6 +467,7 @@ class Assembler : public ValueObject {
|
| // Misc. functionality
|
| intptr_t CodeSize() const { return buffer_.Size(); }
|
| intptr_t prologue_offset() const { return prologue_offset_; }
|
| + bool has_single_entry_point() const { return has_single_entry_point_; }
|
|
|
| // Count the fixups that produce a pointer offset, without processing
|
| // the fixups. On ARM64 there are no pointers in code.
|
| @@ -1363,7 +1364,6 @@ class Assembler : public ValueObject {
|
| void EnterStubFrame();
|
| void LeaveStubFrame();
|
|
|
| - void NoMonomorphicCheckedEntry();
|
| void MonomorphicCheckedEntry();
|
|
|
| void UpdateAllocationStats(intptr_t cid,
|
| @@ -1410,11 +1410,9 @@ class Assembler : public ValueObject {
|
|
|
| private:
|
| AssemblerBuffer buffer_; // Contains position independent code.
|
| -
|
| ObjectPoolWrapper object_pool_wrapper_;
|
| -
|
| int32_t prologue_offset_;
|
| -
|
| + bool has_single_entry_point_;
|
| bool use_far_branches_;
|
|
|
| class CodeComment : public ZoneAllocated {
|
|
|