]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/i386-darwin-nat.c
gdb, gdbserver, gdbsupport: fix leading space vs tabs issues
[thirdparty/binutils-gdb.git] / gdb / i386-darwin-nat.c
index 55a1f7ce9a24f2d3b07a8caca9902902ed3608bb..20ac4dbcd60c8e7ce512647673f9615ebfa3e2a8 100644 (file)
@@ -67,14 +67,14 @@ i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
   if (gdbarch_ptr_bit (gdbarch) == 64)
     {
       if (regno == -1 || amd64_native_gregset_supplies_p (gdbarch, regno))
-        {
-          x86_thread_state_t gp_regs;
-          unsigned int gp_count = x86_THREAD_STATE_COUNT;
-          kern_return_t ret;
+       {
+         x86_thread_state_t gp_regs;
+         unsigned int gp_count = x86_THREAD_STATE_COUNT;
+         kern_return_t ret;
 
          ret = thread_get_state
-            (current_thread, x86_THREAD_STATE, (thread_state_t) & gp_regs,
-             &gp_count);
+           (current_thread, x86_THREAD_STATE, (thread_state_t) & gp_regs,
+            &gp_count);
          if (ret != KERN_SUCCESS)
            {
              printf_unfiltered (_("Error calling thread_get_state for "
@@ -88,18 +88,18 @@ i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
          gp_regs.uts.ts64.__gs &= 0xffff;
 
          amd64_supply_native_gregset (regcache, &gp_regs.uts, -1);
-          fetched++;
-        }
+         fetched++;
+       }
 
       if (regno == -1 || !amd64_native_gregset_supplies_p (gdbarch, regno))
-        {
-          x86_float_state_t fp_regs;
-          unsigned int fp_count = x86_FLOAT_STATE_COUNT;
-          kern_return_t ret;
+       {
+         x86_float_state_t fp_regs;
+         unsigned int fp_count = x86_FLOAT_STATE_COUNT;
+         kern_return_t ret;
 
          ret = thread_get_state
-            (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
-             &fp_count);
+           (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
+            &fp_count);
          if (ret != KERN_SUCCESS)
            {
              printf_unfiltered (_("Error calling thread_get_state for "
@@ -107,23 +107,23 @@ i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
                                 (unsigned long) current_thread);
              MACH_CHECK_ERROR (ret);
            }
-          amd64_supply_fxsave (regcache, -1, &fp_regs.ufs.fs64.__fpu_fcw);
-          fetched++;
-        }
+         amd64_supply_fxsave (regcache, -1, &fp_regs.ufs.fs64.__fpu_fcw);
+         fetched++;
+       }
     }
   else
 #endif
     {
       if (regno == -1 || regno < I386_NUM_GREGS)
-        {
-          x86_thread_state32_t gp_regs;
-          unsigned int gp_count = x86_THREAD_STATE32_COUNT;
-          kern_return_t ret;
+       {
+         x86_thread_state32_t gp_regs;
+         unsigned int gp_count = x86_THREAD_STATE32_COUNT;
+         kern_return_t ret;
          int i;
 
          ret = thread_get_state
-            (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
-             &gp_count);
+           (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
+            &gp_count);
          if (ret != KERN_SUCCESS)
            {
              printf_unfiltered (_("Error calling thread_get_state for "
@@ -135,19 +135,19 @@ i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
            regcache->raw_supply
              (i, (char *) &gp_regs + i386_darwin_thread_state_reg_offset[i]);
 
-          fetched++;
-        }
+         fetched++;
+       }
 
       if (regno == -1
          || (regno >= I386_ST0_REGNUM && regno < I386_SSE_NUM_REGS))
-        {
-          x86_float_state32_t fp_regs;
-          unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
-          kern_return_t ret;
+       {
+         x86_float_state32_t fp_regs;
+         unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
+         kern_return_t ret;
 
          ret = thread_get_state
-            (current_thread, x86_FLOAT_STATE32, (thread_state_t) &fp_regs,
-             &fp_count);
+           (current_thread, x86_FLOAT_STATE32, (thread_state_t) &fp_regs,
+            &fp_count);
          if (ret != KERN_SUCCESS)
            {
              printf_unfiltered (_("Error calling thread_get_state for "
@@ -155,9 +155,9 @@ i386_darwin_nat_target::fetch_registers (struct regcache *regcache, int regno)
                                 (unsigned long) current_thread);
              MACH_CHECK_ERROR (ret);
            }
-          i387_supply_fxsave (regcache, -1, &fp_regs.__fpu_fcw);
-          fetched++;
-        }
+         i387_supply_fxsave (regcache, -1, &fp_regs.__fpu_fcw);
+         fetched++;
+       }
     }
 
   if (! fetched)
@@ -182,17 +182,17 @@ i386_darwin_nat_target::store_registers (struct regcache *regcache,
   if (gdbarch_ptr_bit (gdbarch) == 64)
     {
       if (regno == -1 || amd64_native_gregset_supplies_p (gdbarch, regno))
-        {
-          x86_thread_state_t gp_regs;
-          kern_return_t ret;
+       {
+         x86_thread_state_t gp_regs;
+         kern_return_t ret;
          unsigned int gp_count = x86_THREAD_STATE_COUNT;
 
          ret = thread_get_state
            (current_thread, x86_THREAD_STATE, (thread_state_t) &gp_regs,
             &gp_count);
-          MACH_CHECK_ERROR (ret);
+         MACH_CHECK_ERROR (ret);
          gdb_assert (gp_regs.tsh.flavor == x86_THREAD_STATE64);
-          gdb_assert (gp_regs.tsh.count == x86_THREAD_STATE64_COUNT);
+         gdb_assert (gp_regs.tsh.count == x86_THREAD_STATE64_COUNT);
 
          amd64_collect_native_gregset (regcache, &gp_regs.uts, regno);
 
@@ -200,24 +200,24 @@ i386_darwin_nat_target::store_registers (struct regcache *regcache,
          gp_regs.uts.ts64.__fs &= 0xffff;
          gp_regs.uts.ts64.__gs &= 0xffff;
 
-          ret = thread_set_state (current_thread, x86_THREAD_STATE,
-                                  (thread_state_t) &gp_regs,
-                                  x86_THREAD_STATE_COUNT);
-          MACH_CHECK_ERROR (ret);
-        }
+         ret = thread_set_state (current_thread, x86_THREAD_STATE,
+                                 (thread_state_t) &gp_regs,
+                                 x86_THREAD_STATE_COUNT);
+         MACH_CHECK_ERROR (ret);
+       }
 
       if (regno == -1 || !amd64_native_gregset_supplies_p (gdbarch, regno))
-        {
-          x86_float_state_t fp_regs;
-          kern_return_t ret;
+       {
+         x86_float_state_t fp_regs;
+         kern_return_t ret;
          unsigned int fp_count = x86_FLOAT_STATE_COUNT;
 
          ret = thread_get_state
            (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
             &fp_count);
-          MACH_CHECK_ERROR (ret);
-          gdb_assert (fp_regs.fsh.flavor == x86_FLOAT_STATE64);
-          gdb_assert (fp_regs.fsh.count == x86_FLOAT_STATE64_COUNT);
+         MACH_CHECK_ERROR (ret);
+         gdb_assert (fp_regs.fsh.flavor == x86_FLOAT_STATE64);
+         gdb_assert (fp_regs.fsh.count == x86_FLOAT_STATE64_COUNT);
 
          amd64_collect_fxsave (regcache, regno, &fp_regs.ufs.fs64.__fpu_fcw);
 
@@ -225,21 +225,21 @@ i386_darwin_nat_target::store_registers (struct regcache *regcache,
                                  (thread_state_t) & fp_regs,
                                  x86_FLOAT_STATE_COUNT);
          MACH_CHECK_ERROR (ret);
-        }
+       }
     }
   else
 #endif
     {
       if (regno == -1 || regno < I386_NUM_GREGS)
-        {
-          x86_thread_state32_t gp_regs;
-          kern_return_t ret;
-          unsigned int gp_count = x86_THREAD_STATE32_COUNT;
+       {
+         x86_thread_state32_t gp_regs;
+         kern_return_t ret;
+         unsigned int gp_count = x86_THREAD_STATE32_COUNT;
          int i;
 
-          ret = thread_get_state
-            (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
-             &gp_count);
+         ret = thread_get_state
+           (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
+            &gp_count);
          MACH_CHECK_ERROR (ret);
 
          for (i = 0; i < I386_NUM_GREGS; i++)
@@ -247,22 +247,22 @@ i386_darwin_nat_target::store_registers (struct regcache *regcache,
              regcache->raw_collect
                (i, (char *) &gp_regs + i386_darwin_thread_state_reg_offset[i]);
 
-          ret = thread_set_state (current_thread, x86_THREAD_STATE32,
-                                  (thread_state_t) &gp_regs,
-                                  x86_THREAD_STATE32_COUNT);
-          MACH_CHECK_ERROR (ret);
-        }
+         ret = thread_set_state (current_thread, x86_THREAD_STATE32,
+                                 (thread_state_t) &gp_regs,
+                                 x86_THREAD_STATE32_COUNT);
+         MACH_CHECK_ERROR (ret);
+       }
 
       if (regno == -1
          || (regno >= I386_ST0_REGNUM && regno < I386_SSE_NUM_REGS))
-        {
-          x86_float_state32_t fp_regs;
-          unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
-          kern_return_t ret;
+       {
+         x86_float_state32_t fp_regs;
+         unsigned int fp_count = x86_FLOAT_STATE32_COUNT;
+         kern_return_t ret;
 
          ret = thread_get_state
-            (current_thread, x86_FLOAT_STATE32, (thread_state_t) & fp_regs,
-             &fp_count);
+           (current_thread, x86_FLOAT_STATE32, (thread_state_t) & fp_regs,
+            &fp_count);
          MACH_CHECK_ERROR (ret);
 
          i387_collect_fxsave (regcache, regno, &fp_regs.__fpu_fcw);
@@ -271,7 +271,7 @@ i386_darwin_nat_target::store_registers (struct regcache *regcache,
                                  (thread_state_t) &fp_regs,
                                  x86_FLOAT_STATE32_COUNT);
          MACH_CHECK_ERROR (ret);
-        }
+       }
     }
 }
 
@@ -293,7 +293,7 @@ i386_darwin_dr_set (int regnum, CORE_ADDR value)
   dr_regs.dsh.count = x86_DEBUG_STATE_COUNT;
   dr_count = x86_DEBUG_STATE_COUNT;
   ret = thread_get_state (current_thread, x86_DEBUG_STATE,
-                          (thread_state_t) &dr_regs, &dr_count);
+                         (thread_state_t) &dr_regs, &dr_count);
   MACH_CHECK_ERROR (ret);
 
   switch (dr_regs.dsh.flavor)
@@ -361,7 +361,7 @@ i386_darwin_dr_set (int regnum, CORE_ADDR value)
     }
 
   ret = thread_set_state (current_thread, dr_regs.dsh.flavor,
-                          (thread_state_t) &dr_regs.uds, dr_count);
+                         (thread_state_t) &dr_regs.uds, dr_count);
 
   MACH_CHECK_ERROR (ret);
 }
@@ -382,7 +382,7 @@ i386_darwin_dr_get (int regnum)
   dr_regs.dsh.count = x86_DEBUG_STATE_COUNT;
   dr_count = x86_DEBUG_STATE_COUNT;
   ret = thread_get_state (current_thread, x86_DEBUG_STATE,
-                          (thread_state_t) &dr_regs, &dr_count);
+                         (thread_state_t) &dr_regs, &dr_count);
   MACH_CHECK_ERROR (ret);
 
   switch (dr_regs.dsh.flavor)