Change tui_source_element::line to have type std::string
authorTom Tromey <tom@tromey.com>
Mon, 21 Oct 2019 16:58:08 +0000 (10:58 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 5 Nov 2019 22:23:36 +0000 (15:23 -0700)
This changes tui_source_element::line to be of type std::string.  This
reduces the number of copies made.

gdb/ChangeLog
2019-11-05  Tom Tromey  <tom@tromey.com>

* tui/tui-winsource.h (struct tui_source_element) <line>: Now a
std::string.
* tui/tui-winsource.c (tui_show_source_line): Update.
* tui/tui-source.c (tui_source_window::set_contents): Update.
* tui/tui-disasm.c (tui_disasm_window::set_contents): Update.

Change-Id: Id600f3e1d386a2911f187366e05e2ec599068dd2

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

index efa66ee77df8520f50e18ec103d1e41a7accf702..0c05afeb13c1df4f687ef8cded81b5122358f360 100644 (file)
@@ -1,3 +1,11 @@
+2019-11-05  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
+       std::string.
+       * tui/tui-winsource.c (tui_show_source_line): Update.
+       * tui/tui-source.c (tui_source_window::set_contents): Update.
+       * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
+
 2019-11-05  Christian Biesinger  <cbiesinger@google.com>
 
        * symtab.h (gdb_static_assert): Put && operator at the beginning
index 33a3ba12d470e83c055ac957168236a5080a174d..91c9845f5dc5663f9cbcd89b7ed2577ce38492c8 100644 (file)
@@ -216,10 +216,10 @@ tui_disasm_window::set_contents (struct gdbarch *arch,
           + asm_lines[i].insn);
 
       /* Now copy the line taking the offset into account.  */
-      if (line.size() > offset)
-       src->line.reset (xstrndup (&line[offset], line_width));
+      if (line.size () > offset)
+       src->line = line.substr (offset, line_width);
       else
-       src->line = make_unique_xstrdup ("");
+       src->line.clear ();
 
       src->line_or_addr.loa = LOA_ADDRESS;
       src->line_or_addr.u.addr = asm_lines[i].addr;
index bb1013bb8694f974540a7d2343f813a6fff625b0..f956645d89893c7531da0fcf37235e2a9d21b840 100644 (file)
@@ -183,7 +183,7 @@ tui_source_window::set_contents (struct gdbarch *arch,
                                 symtab_to_fullname (s)) == 0
                   && cur_line_no == locator->line_no);
 
-             content[cur_line].line = make_unique_xstrdup (text.c_str ());
+             content[cur_line].line = std::move (text);
 
              cur_line++;
              cur_line_no++;
index 3fbc49fd77a4eca1e63bc2fa893e4148222210de..5d0bcb47b111ec50e28750740509cc9849c0ad4a 100644 (file)
@@ -222,7 +222,7 @@ tui_show_source_line (struct tui_source_window_base *win_info, int lineno)
     tui_set_reverse_mode (win_info->handle.get (), true);
 
   wmove (win_info->handle.get (), lineno, TUI_EXECINFO_SIZE);
-  tui_puts (line->line.get (), win_info->handle.get ());
+  tui_puts (line->line.c_str (), win_info->handle.get ());
   if (line->is_exec_point)
     tui_set_reverse_mode (win_info->handle.get (), false);
 
index 9417b282d62d2b9282ad446c35a7ca3010839bc0..185d3dd5e0acea364cf8c69cf72564241a22c3af 100644 (file)
@@ -62,7 +62,7 @@ struct tui_source_element
   {
   }
 
-  gdb::unique_xmalloc_ptr<char> line;
+  std::string line;
   struct tui_line_or_address line_or_addr;
   bool is_exec_point = false;
   tui_bp_flags break_mode = 0;
This page took 0.034253 seconds and 4 git commands to generate.