Add target_section constructor
authorTom Tromey <tom@tromey.com>
Thu, 29 Oct 2020 21:04:33 +0000 (15:04 -0600)
committerTom Tromey <tom@tromey.com>
Thu, 29 Oct 2020 21:04:33 +0000 (15:04 -0600)
This adds a constructor to target_section, simplifying the code that
creates instances of this.

gdb/ChangeLog
2020-10-29  Tom Tromey  <tom@tromey.com>

* target-section.h (struct target_section): Add constructor.
* exec.c (build_section_table, add_target_sections_of_objfile):
Update.
* corelow.c (core_target::build_file_mappings): Update.

gdb/ChangeLog
gdb/corelow.c
gdb/exec.c
gdb/target-section.h

index 3cef0093300cdb96a209ae636d9665371f1237b5..e282ea7f6042c55cacc8e5d8b61aed266da4f1d2 100644 (file)
@@ -1,3 +1,10 @@
+2020-10-29  Tom Tromey  <tom@tromey.com>
+
+       * target-section.h (struct target_section): Add constructor.
+       * exec.c (build_section_table, add_target_sections_of_objfile):
+       Update.
+       * corelow.c (core_target::build_file_mappings): Update.
+
 2020-10-29  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
 
        PR gdb/19318
index a54d81571aa69318eb38c81f7c731318d6303619..4f3c88020205133bf4ed2a7ffef878c0ca4e7539 100644 (file)
@@ -266,12 +266,7 @@ core_target::build_file_mappings ()
        bfd_set_section_alignment (sec, 2);
 
        /* Set target_section fields.  */
-       m_core_file_mappings.emplace_back ();
-       target_section &ts = m_core_file_mappings.back ();
-       ts.addr = start;
-       ts.endaddr = end;
-       ts.owner = nullptr;
-       ts.the_bfd_section = sec;
+       m_core_file_mappings.emplace_back (start, end, sec);
       });
 
   normalize_mem_ranges (&m_core_unavailable_mappings);
index f95fdce67f8ebe01a6219f63a98eafa15ec0fb92..9bdd87d0eaacefcf22ba40da7868dbbebbec350e 100644 (file)
@@ -598,12 +598,9 @@ build_section_table (struct bfd *some_bfd)
       if (!(aflag & SEC_ALLOC))
        continue;
 
-      table.emplace_back ();
-      target_section &sect = table.back ();
-      sect.owner = NULL;
-      sect.the_bfd_section = asect;
-      sect.addr = bfd_section_vma (asect);
-      sect.endaddr = sect.addr + bfd_section_size (asect);
+      table.emplace_back (bfd_section_vma (asect),
+                         bfd_section_vma (asect) + bfd_section_size (asect),
+                         asect);
     }
 
   return table;
@@ -662,12 +659,9 @@ add_target_sections_of_objfile (struct objfile *objfile)
       if (bfd_section_size (osect->the_bfd_section) == 0)
        continue;
 
-      table->emplace_back ();
-      target_section &ts = table->back ();
-      ts.addr = obj_section_addr (osect);
-      ts.endaddr = obj_section_endaddr (osect);
-      ts.the_bfd_section = osect->the_bfd_section;
-      ts.owner = (void *) objfile;
+      table->emplace_back (obj_section_addr (osect),
+                          obj_section_endaddr (osect),
+                          osect->the_bfd_section, (void *) objfile);
     }
 }
 
index ec6932da0a6b02b185abec1035b1fe717ffdc1d4..b19bcf9e99766774456c3adb87fffc7a1bebf98f 100644 (file)
 
 struct target_section
 {
+  target_section (CORE_ADDR addr_, CORE_ADDR end_, struct bfd_section *sect_,
+                 void *owner_ = nullptr)
+    : addr (addr_),
+      endaddr (end_),
+      the_bfd_section (sect_),
+      owner (owner_)
+  {
+  }
+
   /* Lowest address in section.  */
   CORE_ADDR addr;
   /* Highest address in section, plus 1.  */
This page took 0.03488 seconds and 4 git commands to generate.