|
From: <sv...@va...> - 2008-04-29 21:54:14
|
Author: sewardj
Date: 2008-04-29 22:54:07 +0100 (Tue, 29 Apr 2008)
New Revision: 1827
Log:
Handle rotating register sections on ppc64 in the second shadow area
(needed by memcheck --track-origins=yes)
Modified:
branches/OTRACK_BY_INSTRUMENTATION/priv/host-ppc/isel.c
Modified: branches/OTRACK_BY_INSTRUMENTATION/priv/host-ppc/isel.c
===================================================================
--- branches/OTRACK_BY_INSTRUMENTATION/priv/host-ppc/isel.c 2008-04-28 21:05:33 UTC (rev 1826)
+++ branches/OTRACK_BY_INSTRUMENTATION/priv/host-ppc/isel.c 2008-04-29 21:54:07 UTC (rev 1827)
@@ -570,8 +570,8 @@
if (bias < -100 || bias > 100) /* somewhat arbitrarily */
vpanic("genGuestArrayOffset(ppc host)(3)");
- if (descr->base < 0 || descr->base > 2000) /* somewhat arbitrarily */
- vpanic("genGuestArrayOffset(ppc host)(4)");
+ if (descr->base < 0 || descr->base > 4000) /* somewhat arbitrarily */
+ vpanic("genGuestArrayOffset(ppc host)(4)");
/* Compute off into a reg, %off. Then return:
|