[gdb/symtab] Fix more style issues in v9 .gdb_index section support
authorTom de Vries <tdevries@suse.de>
Fri, 20 Oct 2023 09:56:49 +0000 (11:56 +0200)
committerTom de Vries <tdevries@suse.de>
Fri, 20 Oct 2023 09:56:49 +0000 (11:56 +0200)
I noticed a few more style issues in commit 8b9c08eddac ("[gdb/symtab] Add
name_of_main and language_of_main to the DWARF index"), after checking it
with gcc's check_GNU_style.{sh,py}.

Fix these.

Build on x86_64-linux.

gdb/NEWS
gdb/dwarf2/index-write.c
gdb/dwarf2/read-gdb-index.c
gdb/dwarf2/read.c
gdb/dwarf2/read.h

index 08d779010f0e8ca87b855d8e641c2eed172c11ef..30b8cadf8254dff4cc5bcb7a5e87977426c79b3d 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -3,7 +3,7 @@
 
 *** Changes since GDB 14
 
-* GDB index now contains information about the main function. This speeds up
+* GDB index now contains information about the main function.  This speeds up
   startup when it is being used for some large binaries.
 
 * Python API
index 8c87f053da6ff9b905044df8be8f344a6935e521..9c1f4013760a0007884b499af64d0767bbbe0d74 100644 (file)
@@ -1193,7 +1193,7 @@ write_cooked_index (cooked_index *table,
     }
 }
 
-/* Write shortcut information. */
+/* Write shortcut information.  */
 
 static void
 write_shortcuts_table (cooked_index *table, data_buf &shortcuts,
index 34c5dfd5803eda21b70702b3d6171c8771642fb9..e789e9c26546d6ac2257df23a4e27c57f5d2d41e 100644 (file)
@@ -88,7 +88,7 @@ struct mapped_gdb_index final : public mapped_index_base
   /* A pointer to the constant pool.  */
   gdb::array_view<const gdb_byte> constant_pool;
 
-  /* The shortcut table data. */
+  /* The shortcut table data.  */
   gdb::array_view<const gdb_byte> shortcut_table;
 
   /* Return the index into the constant pool of the name of the IDXth
@@ -771,7 +771,7 @@ create_addrmap_from_gdb_index (dwarf2_per_objfile *per_objfile,
     = new (&per_bfd->obstack) addrmap_fixed (&per_bfd->obstack, &mutable_map);
 }
 
-/* Sets the name and language of the main function from the shortcut table. */
+/* Sets the name and language of the main function from the shortcut table.  */
 
 static void
 set_main_name_from_gdb_index (dwarf2_per_objfile *per_objfile,
@@ -780,7 +780,7 @@ set_main_name_from_gdb_index (dwarf2_per_objfile *per_objfile,
   const auto expected_size = 2 * sizeof (offset_type);
   if (index->shortcut_table.size () < expected_size)
     /* The data in the section is not present, is corrupted or is in a version
-       we don't know about. Regardless, we can't make use of it. */
+       we don't know about.  Regardless, we can't make use of it.  */
     return;
 
   auto ptr = index->shortcut_table.data ();
@@ -794,7 +794,7 @@ set_main_name_from_gdb_index (dwarf2_per_objfile *per_objfile,
   if (dw_lang == 0)
     {
       /* Don't bother if the language for the main symbol was not known or if
-        there was no main symbol at all when the index was built. */
+        there was no main symbol at all when the index was built.  */
       return;
     }
   ptr += 4;
index 36c1d9f4cd649f4ec54a57000377680646fa65a1..ea0b2328a3e43309b3aa265069c858f698981adf 100644 (file)
@@ -17819,7 +17819,7 @@ leb128_size (const gdb_byte *buf)
     }
 }
 
-/* Converts DWARF language names to GDB language names. */
+/* Converts DWARF language names to GDB language names.  */
 
 enum language
 dwarf_lang_to_enum_language (unsigned int lang)
index 62a40d17648b6b9d3600ad5b83ba26b8d0a7b906..96f38a9bbcb0956a6e3829b169c181e70d7bac65 100644 (file)
@@ -184,7 +184,7 @@ private:
   std::atomic<packed<language, LANGUAGE_BYTES>> m_lang {language_unknown};
 
   /* The original DW_LANG_* value of the CU, as provided to us by
-     DW_AT_language. It is interesting to keep this value around in cases where
+     DW_AT_language.  It is interesting to keep this value around in cases where
      we can't use the values from the language enum, as the mapping to them is
      lossy, and, while that is usually fine, things like the index have an
      understandable bias towards not exposing internal GDB structures to the
@@ -769,7 +769,7 @@ private:
                     std::unique_ptr<dwarf2_cu>> m_dwarf2_cus;
 };
 
-/* Converts DWARF language names to GDB language names. */
+/* Converts DWARF language names to GDB language names.  */
 
 enum language dwarf_lang_to_enum_language (unsigned int lang);