Use a const dwarf2_section_info in macro reader
authorTom Tromey <tom@tromey.com>
Thu, 26 Mar 2020 15:28:08 +0000 (09:28 -0600)
committerTom Tromey <tom@tromey.com>
Thu, 26 Mar 2020 15:28:17 +0000 (09:28 -0600)
This changes the DWARF macro reader to use a const dwarf2_section_info.

gdb/ChangeLog
2020-03-26  Tom Tromey  <tom@tromey.com>

* dwarf2/macro.h (dwarf_decode_macros): Make section parameter
const.
* dwarf2/macro.c (skip_form_bytes, skip_unknown_opcode)
(dwarf_decode_macro_bytes, dwarf_decode_macros): Make section
parameter const.

gdb/ChangeLog
gdb/dwarf2/macro.c
gdb/dwarf2/macro.h

index 8723ff9b9feaa8f48a3c6543048b9fe6a0b12e01..c945936517357fc4bc8d864fc29ff6955c2fb5fb 100644 (file)
@@ -1,3 +1,11 @@
+2020-03-26  Tom Tromey  <tom@tromey.com>
+
+       * dwarf2/macro.h (dwarf_decode_macros): Make section parameter
+       const.
+       * dwarf2/macro.c (skip_form_bytes, skip_unknown_opcode)
+       (dwarf_decode_macro_bytes, dwarf_decode_macros): Make section
+       parameter const.
+
 2020-03-26  Tom Tromey  <tom@tromey.com>
 
        * dwarf2/read.c (dwarf_decode_macros): Make "lh" const.
index 01af58de29f5a05bc9530cdf265b3038dd6e2ba7..49586399673fa0a24a845c7a8e0577a81fb52a5c 100644 (file)
@@ -231,7 +231,7 @@ static const gdb_byte *
 skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
                 enum dwarf_form form,
                 unsigned int offset_size,
-                struct dwarf2_section_info *section)
+                const struct dwarf2_section_info *section)
 {
   unsigned int bytes_read;
 
@@ -322,7 +322,7 @@ skip_unknown_opcode (unsigned int opcode,
                     const gdb_byte *mac_ptr, const gdb_byte *mac_end,
                     bfd *abfd,
                     unsigned int offset_size,
-                    struct dwarf2_section_info *section)
+                    const struct dwarf2_section_info *section)
 {
   unsigned int bytes_read, i;
   unsigned long arg;
@@ -424,7 +424,7 @@ dwarf_decode_macro_bytes (struct dwarf2_per_objfile *dwarf2_per_objfile,
                          const gdb_byte *mac_ptr, const gdb_byte *mac_end,
                          struct macro_source_file *current_file,
                          const struct line_header *lh,
-                         struct dwarf2_section_info *section,
+                         const struct dwarf2_section_info *section,
                          int section_is_gnu, int section_is_dwz,
                          unsigned int offset_size,
                          htab_t include_hash)
@@ -634,7 +634,7 @@ dwarf_decode_macro_bytes (struct dwarf2_per_objfile *dwarf2_per_objfile,
            LONGEST offset;
            void **slot;
            bfd *include_bfd = abfd;
-           struct dwarf2_section_info *include_section = section;
+           const struct dwarf2_section_info *include_section = section;
            const gdb_byte *include_mac_end = mac_end;
            int is_dwz = section_is_dwz;
            const gdb_byte *new_mac_ptr;
@@ -710,7 +710,8 @@ dwarf_decode_macro_bytes (struct dwarf2_per_objfile *dwarf2_per_objfile,
 
 void
 dwarf_decode_macros (struct dwarf2_per_objfile *dwarf2_per_objfile,
-                    buildsym_compunit *builder, dwarf2_section_info *section,
+                    buildsym_compunit *builder,
+                    const dwarf2_section_info *section,
                     const struct line_header *lh, unsigned int offset_size,
                     unsigned int offset, int section_is_gnu)
 {
index b92987cf0d150bba6b62f8ae28f4a72afdcbe244..cb66a6f50cd066e7ade1f14a9fde1eb3ee5cb1c1 100644 (file)
@@ -24,7 +24,7 @@ struct buildsym_compunit;
 
 extern void dwarf_decode_macros (struct dwarf2_per_objfile *dwarf2_per_objfile,
                                 buildsym_compunit *builder,
-                                dwarf2_section_info *section,
+                                const dwarf2_section_info *section,
                                 const struct line_header *lh,
                                 unsigned int offset_size,
                                 unsigned int offset,
This page took 0.029684 seconds and 4 git commands to generate.