Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Unified Diff: runtime/vm/simulator_mips.h

Issue 13502002: Support FrameLookup vm test on ARM, requiring among other things: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/simulator_mips.h
===================================================================
--- runtime/vm/simulator_mips.h (revision 20838)
+++ runtime/vm/simulator_mips.h (working copy)
@@ -55,6 +55,12 @@
// Accessor to the internal simulator stack top.
uword StackTop() const;
+ // The isolate's top_exit_frame_info refers to a Dart frame in the simulator
+ // stack. The simulator's top_exit_frame_info refers to a C++ frame in the
+ // native stack.
+ uword top_exit_frame_info() const { return top_exit_frame_info_; }
+ void set_top_exit_frame_info(uword value) { top_exit_frame_info_ = value; }
+
// Call on program start.
static void InitOnce();
@@ -95,6 +101,7 @@
int icount_;
bool delay_slot_;
SimulatorSetjmpBuffer* last_setjmp_buffer_;
+ uword top_exit_frame_info_;
// Registered breakpoints.
Instr* break_pc_;

Powered by Google App Engine
This is Rietveld 408576698