]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Track vex r1793: make all tools able to handle the new IR memory bus
authorJulian Seward <jseward@acm.org>
Fri, 9 Nov 2007 23:06:35 +0000 (23:06 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 9 Nov 2007 23:06:35 +0000 (23:06 +0000)
event statement (Ist_MBE).

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7119

cachegrind/cg_main.c
callgrind/main.c
lackey/lk_main.c
memcheck/mc_translate.c

index e2b8661cb44183ebc760e2f67b5f5b48c63fb86e..d8627fb860e97edb19e5a155bc183bc460ff3f6c 100644 (file)
@@ -963,7 +963,7 @@ IRSB* cg_instrument ( VgCallbackClosure* closure,
          case Ist_AbiHint:
          case Ist_Put:
          case Ist_PutI:
-         case Ist_MFence:
+         case Ist_MBE:
             break;
 
          case Ist_IMark:
index 7f2abdf4f3481e6fc87b1e3368235d750076182c..f55c263c6fea1cc25b07ea527a9d4e5233a5d5bf 100644 (file)
@@ -468,7 +468,7 @@ void collectStatementInfo(IRTypeEnv* tyenv, IRSB* bbOut, IRStmt* st,
 
    case Ist_Put:
    case Ist_PutI:
-   case Ist_MFence:
+   case Ist_MBE:
    case Ist_Exit:
        break;
 
index 8f9cf95e997ea9551b0264f8b535a22caacf6f82..2c2f59698227e9a20f68f3128aa120b42ffcedf1 100644 (file)
@@ -670,7 +670,7 @@ IRSB* lk_instrument ( VgCallbackClosure* closure,
          case Ist_AbiHint:
          case Ist_Put:
          case Ist_PutI:
-         case Ist_MFence:
+         case Ist_MBE:
             addStmtToIRSB( sbOut, st );
             break;
 
index 0cb5a95c18add4bb789fd96df9842298d1988bc0..35fc818130f6a960edda5ae2b7495037e8e01067 100644 (file)
@@ -3290,7 +3290,7 @@ static Bool checkForBogusLiterals ( /*FLAT*/ IRStmt* st )
          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 @@ IRSB* MC_(instrument) ( VgCallbackClosure* closure,
 
          case Ist_NoOp:
          case Ist_IMark:
-         case Ist_MFence:
+         case Ist_MBE:
             break;
 
          case Ist_Dirty: