New changes to enable self verification mode.
diff --git a/vm/Thread.h b/vm/Thread.h
index 45018b4..bff7316 100644
--- a/vm/Thread.h
+++ b/vm/Thread.h
@@ -209,6 +209,11 @@
/* PC, saved on every instruction; redundant with StackSaveArea */
const u2* currentPc2;
#endif
+
+#if defined(WITH_SELF_VERIFICATION)
+ /* Buffer for register state during self verification */
+ struct ShadowSpace* shadowSpace;
+#endif
} Thread;
/* start point for an internal thread; mimics pthread args */
@@ -398,7 +403,7 @@
* thread is part of the GC's root set.
*/
bool dvmIsOnThreadList(const Thread* thread);
-
+
/*
* Get/set the JNIEnv field.
*/