Index: runtime/vm/constants_mips.h |
=================================================================== |
--- runtime/vm/constants_mips.h (revision 21676) |
+++ runtime/vm/constants_mips.h (working copy) |
@@ -150,6 +150,15 @@ |
// CMPRES is used for the result of the comparison. |
const Register CMPRES = T8; |
+// Exception object is passed in this register to the catch handlers when an |
+// exception is thrown. |
+const Register kExceptionObjectReg = A0; |
+ |
+// Stack trace object is passed in this register to the catch handlers when |
+// an exception is thrown. |
+const Register kStackTraceObjectReg = A1; |
+ |
+ |
typedef uint32_t RegList; |
const RegList kAllCpuRegistersList = 0xFFFFFFFF; |