This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] dwarf2read.c (process_queue): Add type signature to debug output.


Hi.
A small patch to make the debug output more usable.
Committed.

2013-07-30  Doug Evans  <dje@google.com>

	* dwarf2read.c (process_queue): Add type signature to debug output.

diff -u -p -r1.818 dwarf2read.c
--- dwarf2read.c	30 Jul 2013 08:36:13 -0000	1.818
+++ dwarf2read.c	31 Jul 2013 00:25:10 -0000
@@ -7028,14 +7028,21 @@ process_queue (void)
 	  : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
 	{
 	  struct dwarf2_per_cu_data *per_cu = item->per_cu;
+	  char buf[100];
 
-	  if (dwarf2_read_debug)
+	  if (per_cu->is_debug_types)
 	    {
-	      fprintf_unfiltered (gdb_stdlog,
-				  "Expanding symtab of %s at offset 0x%x\n",
-				  per_cu->is_debug_types ? "TU" : "CU",
-				  per_cu->offset.sect_off);
+	      struct signatured_type *sig_type =
+		(struct signatured_type *) per_cu;
+
+	      sprintf (buf, "TU %s at offset 0x%x",
+		       hex_string (sig_type->signature), per_cu->offset.sect_off);
 	    }
+	  else
+	    sprintf (buf, "CU at offset 0x%x", per_cu->offset.sect_off);
+
+	  if (dwarf2_read_debug)
+	    fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
 
 	  if (per_cu->is_debug_types)
 	    process_full_type_unit (per_cu, item->pretend_language);
@@ -7043,12 +7050,7 @@ process_queue (void)
 	    process_full_comp_unit (per_cu, item->pretend_language);
 
 	  if (dwarf2_read_debug)
-	    {
-	      fprintf_unfiltered (gdb_stdlog,
-				  "Done expanding %s at offset 0x%x\n",
-				  per_cu->is_debug_types ? "TU" : "CU",
-				  per_cu->offset.sect_off);
-	    }
+	    fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
 	}
 
       item->per_cu->queued = 0;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]