Change most remaining use of Addr64 in coregrind and the tools to Addr.
Tracking VEX r3056.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14846 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/include/pub_tool_tooliface.h b/include/pub_tool_tooliface.h
index 6f84ca4..3952f29 100644
--- a/include/pub_tool_tooliface.h
+++ b/include/pub_tool_tooliface.h
@@ -64,8 +64,8 @@
 */
 typedef 
    struct {
-      Addr64   nraddr; /* non-redirected guest address */
-      Addr64   readdr; /* redirected guest address */
+      Addr     nraddr; /* non-redirected guest address */
+      Addr     readdr; /* redirected guest address */
       ThreadId tid;    /* tid requesting translation */
    }
    VgCallbackClosure;
@@ -381,7 +381,7 @@
    //   translation, and so could be covered by the "extents" of more than
    //   one call to this function.
    // Doing it the first way (as eg. Cachegrind does) is probably easier.
-   void (*discard_superblock_info)(Addr64 orig_addr, VexGuestExtents extents)
+   void (*discard_superblock_info)(Addr orig_addr, VexGuestExtents extents)
 );
 
 /* Tool defines its own command line options? */