]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Track renaming of guest_CIA_AT_SC to guest_IP_AT_SYSCALL (vex r1886).
authorJulian Seward <jseward@acm.org>
Fri, 20 Mar 2009 00:28:50 +0000 (00:28 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 20 Mar 2009 00:28:50 +0000 (00:28 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9468

exp-ptrcheck/h_main.c
memcheck/mc_machine.c

index f0343c1ff4619fcd3192f2bd0a02f7f9f085096d..4863640e191c129ce9db2a4272aec2a156ef61bf 100644 (file)
@@ -1533,7 +1533,7 @@ static void get_IntRegInfo ( /*OUT*/IntRegInfo* iii, Int offset, Int szB )
    if (o == GOF(LR)        && is4) goto exactly1;
    if (o == GOF(CTR)       && is4) goto exactly1;
    if (o == GOF(CIA)       && is4) goto none;
-   if (o == GOF(CIA_AT_SC) && is4) goto none;
+   if (o == GOF(IP_AT_SYSCALL) && is4) goto none;
    if (o == GOF(RESVN)     && is4) goto none;
    if (o == GOF(TISTART)   && is4) goto none;
    if (o == GOF(TILEN)     && is4) goto none;
@@ -1697,7 +1697,7 @@ static void get_IntRegInfo ( /*OUT*/IntRegInfo* iii, Int offset, Int szB )
    if (o == GOF(LR)        && is8) goto exactly1;
    if (o == GOF(CTR)       && is8) goto exactly1;
    if (o == GOF(CIA)       && is8) goto none;
-   if (o == GOF(CIA_AT_SC) && is8) goto none;
+   if (o == GOF(IP_AT_SYSCALL) && is8) goto none;
    if (o == GOF(RESVN)     && is8) goto none;
    if (o == GOF(TISTART)   && is8) goto none;
    if (o == GOF(TILEN)     && is8) goto none;
index 16c7675db7978ef6dd58d8bffbc694ebcda9d7f8..bb45c0a4fd445a80eb478d02ec67c4e3f6a40b00 100644 (file)
@@ -181,7 +181,7 @@ static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB )
    if (o == GOF(CTR) && sz == 8) return o;
 
    if (o == GOF(CIA)       && sz == 8) return -1;
-   if (o == GOF(CIA_AT_SC) && sz == 8) return -1;
+   if (o == GOF(IP_AT_SYSCALL) && sz == 8) return -1;
    if (o == GOF(RESVN)     && sz == 8) return -1;
    if (o == GOF(FPROUND)   && sz == 4) return -1;
    if (o == GOF(EMWARN)    && sz == 4) return -1;
@@ -340,7 +340,7 @@ static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB )
    if (o == GOF(CTR) && sz == 4) return o;
 
    if (o == GOF(CIA)       && sz == 4) return -1;
-   if (o == GOF(CIA_AT_SC) && sz == 4) return -1;
+   if (o == GOF(IP_AT_SYSCALL) && sz == 4) return -1;
    if (o == GOF(RESVN)     && sz == 4) return -1;
    if (o == GOF(FPROUND)   && sz == 4) return -1;
    if (o == GOF(VRSAVE)    && sz == 4) return -1;