gdbarch software_single_step frame_info to regcache: sparc
authorYao Qi <yao.qi@linaro.org>
Tue, 22 Nov 2016 14:05:05 +0000 (14:05 +0000)
committerYao Qi <yao.qi@linaro.org>
Tue, 22 Nov 2016 14:05:05 +0000 (14:05 +0000)
gdb:

2016-11-22  Yao Qi  <yao.qi@linaro.org>

* sparc-tdep.c (sparc_analyze_control_transfer): Replace parameter
frame with regcache.  Call get_current_frame.
(sparc_software_single_step): Call get_regcache_arch instead of
get_frame_arch.  Call regcache_raw_get_unsigned instead of
get_frame_register_unsigned.

gdb/ChangeLog
gdb/sparc-tdep.c

index 6663d4c3c15e6236adb795f60151f24623b5e677..b3931c3b321b2535ef44fd0fcd087a7658646cc6 100644 (file)
@@ -1,3 +1,11 @@
+2016-11-22  Yao Qi  <yao.qi@linaro.org>
+
+       * sparc-tdep.c (sparc_analyze_control_transfer): Replace parameter
+       frame with regcache.  Call get_current_frame.
+       (sparc_software_single_step): Call get_regcache_arch instead of
+       get_frame_arch.  Call regcache_raw_get_unsigned instead of
+       get_frame_register_unsigned.
+
 2016-11-22  Yao Qi  <yao.qi@linaro.org>
 
        * nios2-tdep.c (nios2_get_next_pc): Replace parameter frame
index ea2435e666f56f89da24dac34fb44d4ad540bc44..18b627d3af7e822fb827160c37a08ce84e77f2bf 100644 (file)
@@ -1501,7 +1501,7 @@ sparc32_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
    software single-step mechanism.  */
 
 static CORE_ADDR
-sparc_analyze_control_transfer (struct frame_info *frame,
+sparc_analyze_control_transfer (struct regcache *regcache,
                                CORE_ADDR pc, CORE_ADDR *npc)
 {
   unsigned long insn = sparc_fetch_instruction (pc);
@@ -1552,8 +1552,11 @@ sparc_analyze_control_transfer (struct frame_info *frame,
     }
   else if (X_OP (insn) == 2 && X_OP3 (insn) == 0x3a)
     {
+      struct frame_info *frame = get_current_frame ();
+
       /* Trap instruction (TRAP).  */
-      return gdbarch_tdep (get_frame_arch (frame))->step_trap (frame, insn);
+      return gdbarch_tdep (get_regcache_arch (regcache))->step_trap (frame,
+                                                                    insn);
     }
 
   /* FIXME: Handle DONE and RETRY instructions.  */
@@ -1602,19 +1605,19 @@ sparc_step_trap (struct frame_info *frame, unsigned long insn)
 static VEC (CORE_ADDR) *
 sparc_software_single_step (struct frame_info *frame)
 {
-  struct gdbarch *arch = get_frame_arch (frame);
+  struct regcache *regcache = get_current_regcache ();
+  struct gdbarch *arch = get_regcache_arch (regcache);
   struct gdbarch_tdep *tdep = gdbarch_tdep (arch);
-  struct address_space *aspace = get_frame_address_space (frame);
   CORE_ADDR npc, nnpc;
 
   CORE_ADDR pc, orig_npc;
   VEC (CORE_ADDR) *next_pcs = NULL;
 
-  pc = get_frame_register_unsigned (frame, tdep->pc_regnum);
-  orig_npc = npc = get_frame_register_unsigned (frame, tdep->npc_regnum);
+  pc = regcache_raw_get_unsigned (regcache, tdep->pc_regnum);
+  orig_npc = npc = regcache_raw_get_unsigned (regcache, tdep->npc_regnum);
 
   /* Analyze the instruction at PC.  */
-  nnpc = sparc_analyze_control_transfer (frame, pc, &npc);
+  nnpc = sparc_analyze_control_transfer (regcache, pc, &npc);
   if (npc != 0)
     VEC_safe_push (CORE_ADDR, next_pcs, npc);
 
This page took 0.033003 seconds and 4 git commands to generate.