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

Unified Diff: runtime/vm/simulator_arm.h

Issue 14309004: Implement long jump in ARM and MIPS simulators. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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_arm.h
===================================================================
--- runtime/vm/simulator_arm.h (revision 21660)
+++ runtime/vm/simulator_arm.h (working copy)
@@ -86,7 +86,11 @@
};
static uword RedirectExternalReference(uword function, CallKind call_kind);
- void Longjmp(int32_t pc, int32_t sp, int32_t fp, const Instance& object);
+ void Longjmp(uword pc,
+ uword sp,
+ uword fp,
+ RawObject* raw_exception,
+ RawObject* raw_stacktrace);
private:
// Known bad pc value to ensure that the simulator does not execute

Powered by Google App Engine
This is Rietveld 408576698