| Index: runtime/vm/stack_frame.h
|
| ===================================================================
|
| --- runtime/vm/stack_frame.h (revision 19272)
|
| +++ runtime/vm/stack_frame.h (working copy)
|
| @@ -34,7 +34,7 @@
|
|
|
| void SetEntrypointMarker(uword value) {
|
| ASSERT(!(IsStubFrame() || IsEntryFrame() || IsExitFrame()));
|
| - *reinterpret_cast<uword*>(fp_ - kWordSize) = value;
|
| + *reinterpret_cast<uword*>(fp_ + EntrypointMarkerOffetFromFp()) = value;
|
| }
|
|
|
| // Visit objects in the frame.
|
| @@ -73,6 +73,7 @@
|
|
|
| // Target specific implementations for locating pc and caller fp/sp values.
|
| static intptr_t PcAddressOffsetFromSp();
|
| + static intptr_t EntrypointMarkerOffetFromFp();
|
| uword GetCallerSp() const;
|
| uword GetCallerFp() const;
|
|
|
|
|