Generate a couple more ARM specific offsets; also R1 on ppc32/64.


git-svn-id: svn://svn.valgrind.org/vex/trunk@1951 8f6e269a-dfd6-0310-a8e1-e2731360e62c
diff --git a/auxprogs/genoffsets.c b/auxprogs/genoffsets.c
index 1e96760..770b3a7 100644
--- a/auxprogs/genoffsets.c
+++ b/auxprogs/genoffsets.c
@@ -127,6 +127,7 @@
 
    // ppc32
    GENOFFSET(PPC32,ppc32,GPR0);
+   GENOFFSET(PPC32,ppc32,GPR1);
    GENOFFSET(PPC32,ppc32,GPR2);
    GENOFFSET(PPC32,ppc32,GPR3);
    GENOFFSET(PPC32,ppc32,GPR4);
@@ -141,6 +142,7 @@
 
    // ppc64
    GENOFFSET(PPC64,ppc64,GPR0);
+   GENOFFSET(PPC64,ppc64,GPR1);
    GENOFFSET(PPC64,ppc64,GPR2);
    GENOFFSET(PPC64,ppc64,GPR3);
    GENOFFSET(PPC64,ppc64,GPR4);
@@ -161,5 +163,7 @@
    GENOFFSET(ARM,arm,R4);
    GENOFFSET(ARM,arm,R5);
    GENOFFSET(ARM,arm,R7);
+   GENOFFSET(ARM,arm,R13);
+   GENOFFSET(ARM,arm,R14);
    GENOFFSET(ARM,arm,R15);
 }