Remove regcache_save and regcache_cpy
authorYao Qi <yao.qi@linaro.org>
Wed, 21 Feb 2018 11:20:03 +0000 (11:20 +0000)
committerYao Qi <yao.qi@linaro.org>
Wed, 21 Feb 2018 11:20:03 +0000 (11:20 +0000)
... instead we start to use regcache methods save and restore.  It is
quite straightforward to replace regcache_save with regcache->save.

regcache_cpy has some asserts, some of them not necessary, like

 gdb_assert (src != dst);

because we already assert !m_readonly_p and src->m_readonly_p, so
src isn't dst.  Some of the asserts are moved to ::restore.

gdb:

2018-02-21  Yao Qi  <yao.qi@linaro.org>

* frame.c (frame_save_as_regcache): Use regcache method save.
(frame_pop): Use regcache method restore.
* infrun.c (restore_infcall_suspend_state): Likewise.
* linux-fork.c (fork_load_infrun_state): Likewise.
* ppc-linux-tdep.c (ppu2spu_sniffer): User regcache method
save.
* regcache.c (regcache_save): Remove.
(regcache::restore): More asserts.
(regcache_cpy): Remove.
* regcache.h (regcache_save): Remove the declaration.
(regcache::restore): Move from private to public.
Remove the friend declaration of regcache_cpy.
(regcache_cpy): Remove declaration.

gdb/ChangeLog
gdb/frame.c
gdb/infrun.c
gdb/linux-fork.c
gdb/ppc-linux-tdep.c
gdb/regcache.c
gdb/regcache.h

index 567a0dd4af5f9a12ba0c095463349081101d30ad..a7da794070b692529a9776cfc72e230fb47f643d 100644 (file)
@@ -1,3 +1,19 @@
+2018-02-21  Yao Qi  <yao.qi@linaro.org>
+
+       * frame.c (frame_save_as_regcache): Use regcache method save.
+       (frame_pop): Use regcache method restore.
+       * infrun.c (restore_infcall_suspend_state): Likewise.
+       * linux-fork.c (fork_load_infrun_state): Likewise.
+       * ppc-linux-tdep.c (ppu2spu_sniffer): User regcache method
+       save.
+       * regcache.c (regcache_save): Remove.
+       (regcache::restore): More asserts.
+       (regcache_cpy): Remove.
+       * regcache.h (regcache_save): Remove the declaration.
+       (regcache::restore): Move from private to public.
+       Remove the friend declaration of regcache_cpy.
+       (regcache_cpy): Remove declaration.
+
 2018-02-21  Yao Qi  <yao.qi@linaro.org>
 
        * aarch64-tdep.c (aarch64_pseudo_register_read_value): Change
index 1384ecca4f539adda5c7b522244c99552357301d..773fd0449d3fde2bcbafcfeb2179713a79eb4ad5 100644 (file)
@@ -1023,7 +1023,7 @@ frame_save_as_regcache (struct frame_info *this_frame)
   std::unique_ptr<struct regcache> regcache
     (new struct regcache (get_frame_arch (this_frame)));
 
-  regcache_save (regcache.get (), do_frame_register_read, this_frame);
+  regcache->save (do_frame_register_read, this_frame);
   return regcache;
 }
 
@@ -1068,9 +1068,8 @@ frame_pop (struct frame_info *this_frame)
      Unfortunately, they don't implement it.  Their lack of a formal
      definition can lead to targets writing back bogus values
      (arguably a bug in the target code mind).  */
-  /* Now copy those saved registers into the current regcache.
-     Here, regcache_cpy() calls regcache_restore().  */
-  regcache_cpy (get_current_regcache (), scratch.get ());
+  /* Now copy those saved registers into the current regcache.  */
+  get_current_regcache ()->restore (scratch.get ());
 
   /* We've made right mess of GDB's local state, just discard
      everything.  */
index 1bc860b6f3b3771f5461d13b9430daedea1a0135..b4e6c6b6916eaba2cab220efdb0e46fec1322984 100644 (file)
@@ -8892,7 +8892,7 @@ restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
      (and perhaps other times).  */
   if (target_has_execution)
     /* NB: The register write goes through to the target.  */
-    regcache_cpy (regcache, inf_state->registers);
+    regcache->restore (inf_state->registers);
 
   discard_infcall_suspend_state (inf_state);
 }
index 8561157d3d9347f3f961a13ade475425437ea204..df7ea4e17104e004010d508500e8ed996c4bffe0 100644 (file)
@@ -261,7 +261,7 @@ fork_load_infrun_state (struct fork_info *fp)
   linux_nat_switch_fork (fp->ptid);
 
   if (fp->savedregs && fp->clobber_regs)
-    regcache_cpy (get_current_regcache (), fp->savedregs);
+    get_current_regcache ()->restore (fp->savedregs);
 
   registers_changed ();
   reinit_frame_cache ();
index ed0ea134610dede8387ba2094d91e72936ff265b..13a50d6756308724b2de93929d81ce01f924d681 100644 (file)
@@ -1372,7 +1372,7 @@ ppu2spu_sniffer (const struct frame_unwind *self,
          std::unique_ptr<struct regcache> regcache
            (new struct regcache (data.gdbarch));
 
-         regcache_save (regcache.get (), ppu2spu_unwind_register, &data);
+         regcache->save (ppu2spu_unwind_register, &data);
 
          cache->frame_id = frame_id_build (base, func);
          cache->regcache = regcache.release ();
index ad5e0a24709bb5d6cdea901f575febb01ffbe7de..0df6a88ada6dbd8b0d6ce88bf1b327987cb1e3fe 100644 (file)
@@ -281,13 +281,6 @@ reg_buffer::register_buffer (int regnum) const
   return m_registers + m_descr->register_offset[regnum];
 }
 
-void
-regcache_save (struct regcache *regcache,
-              regcache_cooked_read_ftype *cooked_read, void *src)
-{
-  regcache->save (cooked_read, src);
-}
-
 void
 regcache::save (regcache_cooked_read_ftype *cooked_read,
                void *src)
@@ -329,10 +322,14 @@ regcache::restore (struct regcache *src)
   struct gdbarch *gdbarch = m_descr->gdbarch;
   int regnum;
 
+  gdb_assert (src != NULL);
   /* The dst had better not be read-only.  If it is, the `restore'
      doesn't make much sense.  */
   gdb_assert (!m_readonly_p);
   gdb_assert (src->m_readonly_p);
+
+  gdb_assert (gdbarch == src->arch ());
+
   /* Copy over any registers, being careful to only restore those that
      were both saved and need to be restored.  The full [0 .. gdbarch_num_regs
      + gdbarch_num_pseudo_regs) range is checked since some architectures need
@@ -347,17 +344,6 @@ regcache::restore (struct regcache *src)
     }
 }
 
-void
-regcache_cpy (struct regcache *dst, struct regcache *src)
-{
-  gdb_assert (src != NULL && dst != NULL);
-  gdb_assert (src->m_descr->gdbarch == dst->m_descr->gdbarch);
-  gdb_assert (src != dst);
-  gdb_assert (src->m_readonly_p && !dst->m_readonly_p);
-
-  dst->restore (src);
-}
-
 struct regcache *
 regcache_dup (struct regcache *src)
 {
index 1c7ee8cdc336da17ebe7037fe9f647878e50ba03..a4ca2ecf7a3089ff63cfb17a3fccf12a0b6137aa 100644 (file)
@@ -198,20 +198,10 @@ extern struct type *register_type (struct gdbarch *gdbarch, int regnum);
    
 extern int register_size (struct gdbarch *gdbarch, int regnum);
 
-
-/* Save/restore a register cache.  The set of registers saved /
-   restored into the DST regcache determined by the save_reggroup /
-   restore_reggroup respectively.  COOKED_READ returns zero iff the
-   register's value can't be returned.  */
-
 typedef enum register_status (regcache_cooked_read_ftype) (void *src,
                                                           int regnum,
                                                           gdb_byte *buf);
 
-extern void regcache_save (struct regcache *dst,
-                          regcache_cooked_read_ftype *cooked_read,
-                          void *cooked_read_context);
-
 enum regcache_dump_what
 {
   regcache_dump_none, regcache_dump_raw,
@@ -317,8 +307,16 @@ public:
     return m_aspace;
   }
 
+/* Save/restore 'this' regcache.  The set of registers saved /
+   restored into the regcache determined by the save_reggroup /
+   restore_reggroup respectively.  COOKED_READ returns zero iff the
+   register's value can't be returned.  */
   void save (regcache_cooked_read_ftype *cooked_read, void *src);
 
+  /* Writes to regcache will go through to the target.  SRC is a
+     read-only register cache.  */
+  void restore (struct regcache *src);
+
   void cooked_write (int regnum, const gdb_byte *buf);
 
   void raw_write (int regnum, const gdb_byte *buf);
@@ -383,7 +381,6 @@ protected:
   static std::forward_list<regcache *> current_regcache;
 
 private:
-  void restore (struct regcache *src);
 
   void transfer_regset (const struct regset *regset,
                        struct regcache *out_regcache,
@@ -401,9 +398,8 @@ private:
   /* Is this a read-only cache?  A read-only cache is used for saving
      the target's register state (e.g, across an inferior function
      call or just before forcing a function return).  A read-only
-     cache can only be updated via the methods regcache_dup() and
-     regcache_cpy().  The actual contents are determined by the
-     reggroup_save and reggroup_restore methods.  */
+     cache can only be created via a constructor.  The actual contents
+     are determined by the save and restore methods.  */
   const bool m_readonly_p;
   /* If this is a read-write cache, which thread's registers is
      it connected to?  */
@@ -415,19 +411,12 @@ private:
 
   friend void
   registers_changed_ptid (ptid_t ptid);
-
-  friend void
-  regcache_cpy (struct regcache *dst, struct regcache *src);
 };
 
 /* Duplicate the contents of a register cache to a read-only register
    cache.  The operation is pass-through.  */
 extern struct regcache *regcache_dup (struct regcache *regcache);
 
-/* Writes to DEST will go through to the target.  SRC is a read-only
-   register cache.  */
-extern void regcache_cpy (struct regcache *dest, struct regcache *src);
-
 extern void registers_changed (void);
 extern void registers_changed_ptid (ptid_t);