Move "fullname" to tui_source_window
authorTom Tromey <tom@tromey.com>
Tue, 23 Jul 2019 21:37:18 +0000 (15:37 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 20 Sep 2019 19:49:05 +0000 (13:49 -0600)
The "fullname" field in tui_source_window_base is only used by one
subclass.  This patch moves the field to that subclass, and changes it
to be a unique_xmalloc_ptr.

gdb/ChangeLog
2019-09-20  Tom Tromey  <tom@tromey.com>

* tui/tui-winsource.h (struct tui_source_window_base)
<~tui_source_window_base>: Don't declare.
<fullname>: Remove.
* tui/tui-winsource.c (~tui_source_window_base): Remove.
* tui/tui-source.h (struct tui_source_window) <fullname>: New
member.
* tui/tui-source.c (tui_source_window::set_contents): Update.
(tui_source_window::location_matches_p)
(tui_source_window::maybe_update): Update.

gdb/ChangeLog
gdb/tui/tui-source.c
gdb/tui/tui-source.h
gdb/tui/tui-winsource.c
gdb/tui/tui-winsource.h

index 3d322877df732ebc30d8b2063f15dcb0ab3789c1..9f7accd2f6a32adcec65227fdb3d9e618ffc341c 100644 (file)
@@ -1,3 +1,15 @@
+2019-09-20  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-winsource.h (struct tui_source_window_base)
+       <~tui_source_window_base>: Don't declare.
+       <fullname>: Remove.
+       * tui/tui-winsource.c (~tui_source_window_base): Remove.
+       * tui/tui-source.h (struct tui_source_window) <fullname>: New
+       member.
+       * tui/tui-source.c (tui_source_window::set_contents): Update.
+       (tui_source_window::location_matches_p)
+       (tui_source_window::maybe_update): Update.
+
 2019-09-20  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-winsource.h (~tui_source_element): Remove.
index c379173018d725748e2eb0954aad70e8d3a8b694..f70e053bdb52d33eeb1bbf3c4225f08bfe406403 100644 (file)
@@ -155,8 +155,7 @@ tui_source_window::set_contents (struct gdbarch *arch,
 
          title = s_filename;
 
-         xfree (fullname);
-         fullname = xstrdup (symtab_to_fullname (s));
+         fullname = make_unique_xstrdup (symtab_to_fullname (s));
 
          cur_line = 0;
          gdbarch = get_objfile_arch (SYMTAB_OBJFILE (s));
@@ -276,7 +275,7 @@ tui_source_window::location_matches_p (struct bp_location *loc, int line_no)
   return (content[line_no].line_or_addr.loa == LOA_LINE
          && content[line_no].line_or_addr.u.line_no == loc->line_number
          && loc->symtab != NULL
-         && filename_cmp (fullname,
+         && filename_cmp (fullname.get (),
                           symtab_to_fullname (loc->symtab)) == 0);
 }
 
@@ -308,7 +307,7 @@ tui_source_window::maybe_update (struct frame_info *fi, symtab_and_line sal,
     start_line = 1;
 
   bool source_already_displayed = (sal.symtab != 0
-                                  && showing_source_p (fullname));
+                                  && showing_source_p (fullname.get ()));
 
   struct tui_line_or_address l;
 
index a7002123c97f3dacf6728d03b535f0380de17cbf..30728e4214e4794ec7002e77c5a26c0b6ce69281 100644 (file)
@@ -76,6 +76,9 @@ private:
      in the current source window.  */
   bool line_is_displayed (int line) const;
 
+  /* It is the resolved form as returned by symtab_to_fullname.  */
+  gdb::unique_xmalloc_ptr<char> fullname;
+
   /* A token used to register and unregister an observer.  */
   gdb::observers::token m_observable;
 };
index d5281193c0e7ddb825987bb00e91b9df0379eea4..8b507ed91264fcf7fd8ce567ebc168320bc0cfd9 100644 (file)
@@ -261,11 +261,6 @@ tui_source_window_base::tui_source_window_base (enum tui_win_type type)
 }
 
 
-tui_source_window_base::~tui_source_window_base ()
-{
-  xfree (fullname);
-}  
-
 /* See tui-data.h.  */
 
 void
index 64f0739e5363c094f7a7387a630067895959501d..eca0bde4bb8c13c5c78c74202879fe8f84e0bffc 100644 (file)
@@ -78,7 +78,7 @@ struct tui_source_window_base : public tui_win_info
 {
 protected:
   explicit tui_source_window_base (enum tui_win_type type);
-  ~tui_source_window_base () override;
+
   DISABLE_COPY_AND_ASSIGN (tui_source_window_base);
 
   void do_scroll_horizontal (int num_to_scroll) override;
@@ -137,9 +137,6 @@ public:
   int horizontal_offset = 0;
   struct tui_line_or_address start_line_or_addr;
 
-  /* It is the resolved form as returned by symtab_to_fullname.  */
-  char *fullname = nullptr;
-
   /* Architecture associated with code at this location.  */
   struct gdbarch *gdbarch = nullptr;
 
This page took 0.033129 seconds and 4 git commands to generate.