|
From: <sv...@va...> - 2007-11-09 23:06:35
|
Author: sewardj
Date: 2007-11-09 23:06:35 +0000 (Fri, 09 Nov 2007)
New Revision: 7119
Log:
Track vex r1793: make all tools able to handle the new IR memory bus
event statement (Ist_MBE).
Modified:
trunk/cachegrind/cg_main.c
trunk/callgrind/main.c
trunk/lackey/lk_main.c
trunk/memcheck/mc_translate.c
Modified: trunk/cachegrind/cg_main.c
===================================================================
--- trunk/cachegrind/cg_main.c 2007-11-09 23:02:28 UTC (rev 7118)
+++ trunk/cachegrind/cg_main.c 2007-11-09 23:06:35 UTC (rev 7119)
@@ -963,7 +963,7 @@
case Ist_AbiHint:
case Ist_Put:
case Ist_PutI:
- case Ist_MFence:
+ case Ist_MBE:
break;
case Ist_IMark:
Modified: trunk/callgrind/main.c
===================================================================
--- trunk/callgrind/main.c 2007-11-09 23:02:28 UTC (rev 7118)
+++ trunk/callgrind/main.c 2007-11-09 23:06:35 UTC (rev 7119)
@@ -468,7 +468,7 @@
case Ist_Put:
case Ist_PutI:
- case Ist_MFence:
+ case Ist_MBE:
case Ist_Exit:
break;
Modified: trunk/lackey/lk_main.c
===================================================================
--- trunk/lackey/lk_main.c 2007-11-09 23:02:28 UTC (rev 7118)
+++ trunk/lackey/lk_main.c 2007-11-09 23:06:35 UTC (rev 7119)
@@ -670,7 +670,7 @@
case Ist_AbiHint:
case Ist_Put:
case Ist_PutI:
- case Ist_MFence:
+ case Ist_MBE:
addStmtToIRSB( sbOut, st );
break;
Modified: trunk/memcheck/mc_translate.c
===================================================================
--- trunk/memcheck/mc_translate.c 2007-11-09 23:02:28 UTC (rev 7118)
+++ trunk/memcheck/mc_translate.c 2007-11-09 23:06:35 UTC (rev 7119)
@@ -3290,7 +3290,7 @@
return isBogusAtom(st->Ist.AbiHint.base);
case Ist_NoOp:
case Ist_IMark:
- case Ist_MFence:
+ case Ist_MBE:
return False;
default:
unhandled:
@@ -3470,7 +3470,7 @@
case Ist_NoOp:
case Ist_IMark:
- case Ist_MFence:
+ case Ist_MBE:
break;
case Ist_Dirty:
|