diff mbox

[v2,06/10] linux-user/main.c: __kernel_cmpxchg set env->CF directly

Message ID 1405007407-23549-7-git-send-email-alex.bennee@linaro.org
State New
Headers show

Commit Message

Alex Bennée July 10, 2014, 3:50 p.m. UTC
As we only need to manipulate the single flag do it directly though env.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---

v2:
  - remove unused cpsr
  - the direct flag setting seems a little hacky?

Comments

Riku Voipio July 15, 2014, 1:39 p.m. UTC | #1
On Thu, Jul 10, 2014 at 04:50:03PM +0100, Alex Bennée wrote:
> As we only need to manipulate the single flag do it directly though env.

Acked-by: Riku Voipio <riku.voipio@linaro.org>

> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> 
> v2:
>   - remove unused cpsr
>   - the direct flag setting seems a little hacky?
> 
> diff --git a/linux-user/main.c b/linux-user/main.c
> index 8848e15..9101541 100644
> --- a/linux-user/main.c
> +++ b/linux-user/main.c
> @@ -468,7 +468,7 @@ void cpu_loop(CPUX86State *env)
>  static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
>  {
>      uint64_t oldval, newval, val;
> -    uint32_t addr, cpsr;
> +    uint32_t addr;
>      target_siginfo_t info;
>  
>      /* Based on the 32 bit code in do_kernel_trap */
> @@ -478,7 +478,6 @@ static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
>         operations. However things like ldrex/strex are much harder so
>         there's not much point trying.  */
>      start_exclusive();
> -    cpsr = cpsr_read(env);
>      addr = env->regs[2];
>  
>      if (get_user_u64(oldval, env->regs[0])) {
> @@ -505,12 +504,11 @@ static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
>          };
>  
>          env->regs[0] = 0;
> -        cpsr |= CPSR_C;
> +        env->CF = 1;
>      } else {
>          env->regs[0] = -1;
> -        cpsr &= ~CPSR_C;
> +        env->CF = 0;
>      }
> -    cpsr_write(env, cpsr, CPSR_C);
>      end_exclusive();
>      return;
>  
> @@ -533,7 +531,6 @@ static int
>  do_kernel_trap(CPUARMState *env)
>  {
>      uint32_t addr;
> -    uint32_t cpsr;
>      uint32_t val;
>  
>      switch (env->regs[15]) {
> @@ -546,7 +543,6 @@ do_kernel_trap(CPUARMState *env)
>              operations. However things like ldrex/strex are much harder so
>              there's not much point trying.  */
>          start_exclusive();
> -        cpsr = save_state_to_spsr(env);
>          addr = env->regs[2];
>          /* FIXME: This should SEGV if the access fails.  */
>          if (get_user_u32(val, addr))
> @@ -556,12 +552,11 @@ do_kernel_trap(CPUARMState *env)
>              /* FIXME: Check for segfaults.  */
>              put_user_u32(val, addr);
>              env->regs[0] = 0;
> -            cpsr |= CPSR_C;
> +            env->CF = 1;
>          } else {
>              env->regs[0] = -1;
> -            cpsr &= ~CPSR_C;
> +            env->CF = 0;
>          }
> -        cpsr_write(env, cpsr, CPSR_C);
>          end_exclusive();
>          break;
>      case 0xffff0fe0: /* __kernel_get_tls */
> -- 
> 2.0.1
>
diff mbox

Patch

diff --git a/linux-user/main.c b/linux-user/main.c
index 8848e15..9101541 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -468,7 +468,7 @@  void cpu_loop(CPUX86State *env)
 static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
 {
     uint64_t oldval, newval, val;
-    uint32_t addr, cpsr;
+    uint32_t addr;
     target_siginfo_t info;
 
     /* Based on the 32 bit code in do_kernel_trap */
@@ -478,7 +478,6 @@  static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
        operations. However things like ldrex/strex are much harder so
        there's not much point trying.  */
     start_exclusive();
-    cpsr = cpsr_read(env);
     addr = env->regs[2];
 
     if (get_user_u64(oldval, env->regs[0])) {
@@ -505,12 +504,11 @@  static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
         };
 
         env->regs[0] = 0;
-        cpsr |= CPSR_C;
+        env->CF = 1;
     } else {
         env->regs[0] = -1;
-        cpsr &= ~CPSR_C;
+        env->CF = 0;
     }
-    cpsr_write(env, cpsr, CPSR_C);
     end_exclusive();
     return;
 
@@ -533,7 +531,6 @@  static int
 do_kernel_trap(CPUARMState *env)
 {
     uint32_t addr;
-    uint32_t cpsr;
     uint32_t val;
 
     switch (env->regs[15]) {
@@ -546,7 +543,6 @@  do_kernel_trap(CPUARMState *env)
             operations. However things like ldrex/strex are much harder so
             there's not much point trying.  */
         start_exclusive();
-        cpsr = save_state_to_spsr(env);
         addr = env->regs[2];
         /* FIXME: This should SEGV if the access fails.  */
         if (get_user_u32(val, addr))
@@ -556,12 +552,11 @@  do_kernel_trap(CPUARMState *env)
             /* FIXME: Check for segfaults.  */
             put_user_u32(val, addr);
             env->regs[0] = 0;
-            cpsr |= CPSR_C;
+            env->CF = 1;
         } else {
             env->regs[0] = -1;
-            cpsr &= ~CPSR_C;
+            env->CF = 0;
         }
-        cpsr_write(env, cpsr, CPSR_C);
         end_exclusive();
         break;
     case 0xffff0fe0: /* __kernel_get_tls */