| Index: runtime/vm/assembler_x64.h
|
| diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
|
| index 82094d2882352beb3e90d851b58ab011444815e4..b6db263db29e88963ecf19b9ea8ae098d76407a9 100644
|
| --- a/runtime/vm/assembler_x64.h
|
| +++ b/runtime/vm/assembler_x64.h
|
| @@ -882,6 +882,7 @@ class Assembler : public ValueObject {
|
|
|
| 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.
|
| @@ -949,8 +950,6 @@ class Assembler : public ValueObject {
|
| void EnterStubFrame();
|
| void LeaveStubFrame();
|
|
|
| - void RawEntry() { buffer_.Reset(); }
|
| - void NoMonomorphicCheckedEntry();
|
| void MonomorphicCheckedEntry();
|
|
|
| void UpdateAllocationStats(intptr_t cid,
|
| @@ -1025,6 +1024,7 @@ class Assembler : public ValueObject {
|
| ObjectPoolWrapper object_pool_wrapper_;
|
|
|
| intptr_t prologue_offset_;
|
| + bool has_single_entry_point_;
|
|
|
| class CodeComment : public ZoneAllocated {
|
| public:
|
|
|