| Index: runtime/vm/assembler_ia32.h
|
| diff --git a/runtime/vm/assembler_ia32.h b/runtime/vm/assembler_ia32.h
|
| index 04902abe3314dda05ad959c6cc4b9ce9d201e596..de93311ebfc3afec019f3ba8e83ab0fec50c02a1 100644
|
| --- a/runtime/vm/assembler_ia32.h
|
| +++ b/runtime/vm/assembler_ia32.h
|
| @@ -708,6 +708,12 @@ class Assembler : public ValueObject {
|
|
|
| intptr_t CodeSize() const { return buffer_.Size(); }
|
| intptr_t prologue_offset() const { return prologue_offset_; }
|
| +
|
| + // Count the fixups that produce a pointer offset, without processing
|
| + // the fixups.
|
| + intptr_t CountPointerOffsets() const {
|
| + return buffer_.CountPointerOffsets();
|
| + }
|
| const ZoneGrowableArray<intptr_t>& GetPointerOffsets() const {
|
| return buffer_.pointer_offsets();
|
| }
|
|
|