Stringpool stats. Also make Symbol_table support functions inline.
[deliverable/binutils-gdb.git] / gold / reloc.cc
index 7647edf511038ebd842830ebcbcb45f0c3cacf16..2763be5ba4b64eca4e811318bce653f4aef66a6a 100644 (file)
@@ -63,6 +63,14 @@ Read_relocs::run(Workqueue* workqueue)
                                         this->symtab_lock_, this->blocker_));
 }
 
+// Return a debugging name for the task.
+
+std::string
+Read_relocs::get_name() const
+{
+  return "Read_relocs " + this->object_->name();
+}
+
 // Scan_relocs methods.
 
 // These tasks scan the relocations read by Read_relocs and mark up
@@ -114,36 +122,57 @@ Scan_relocs::run(Workqueue*)
   this->rd_ = NULL;
 }
 
+// Return a debugging name for the task.
+
+std::string
+Scan_relocs::get_name() const
+{
+  return "Scan_relocs " + this->object_->name();
+}
+
 // Relocate_task methods.
 
-// These tasks are always runnable.
+// We may have to wait for the output sections to be written.
 
 Task::Is_runnable_type
 Relocate_task::is_runnable(Workqueue*)
 {
+  if (this->object_->relocs_must_follow_section_writes()
+      && this->output_sections_blocker_->is_blocked())
+    return IS_BLOCKED;
+
+  if (this->object_->is_locked())
+    return IS_LOCKED;
+
   return IS_RUNNABLE;
 }
 
 // We want to lock the file while we run.  We want to unblock
-// FINAL_BLOCKER when we are done.
+// INPUT_SECTIONS_BLOCKER and FINAL_BLOCKER when we are done.
 
 class Relocate_task::Relocate_locker : public Task_locker
 {
  public:
-  Relocate_locker(Task_token& token, Workqueue* workqueue,
+  Relocate_locker(Task_token& input_sections_blocker,
+                 Task_token& final_blocker, Workqueue* workqueue,
                  Object* object)
-    : blocker_(token, workqueue), objlock_(*object)
+    : input_sections_blocker_(input_sections_blocker, workqueue),
+      final_blocker_(final_blocker, workqueue),
+      objlock_(*object)
   { }
 
  private:
-  Task_locker_block blocker_;
+  Task_block_token input_sections_blocker_;
+  Task_block_token final_blocker_;
   Task_locker_obj<Object> objlock_;
 };
 
 Task_locker*
 Relocate_task::locks(Workqueue* workqueue)
 {
-  return new Relocate_locker(*this->final_blocker_, workqueue,
+  return new Relocate_locker(*this->input_sections_blocker_,
+                            *this->final_blocker_,
+                            workqueue,
                             this->object_);
 }
 
@@ -156,6 +185,14 @@ Relocate_task::run(Workqueue*)
                          this->of_);
 }
 
+// Return a debugging name for the task.
+
+std::string
+Relocate_task::get_name() const
+{
+  return "Relocate_task " + this->object_->name();
+}
+
 // Read the relocs and local symbols from the object file and store
 // the information in RD.
 
@@ -171,6 +208,8 @@ Sized_relobj<size, big_endian>::do_read_relocs(Read_relocs_data* rd)
 
   rd->relocs.reserve(shnum / 2);
 
+  std::vector<Map_to_output>& map_sections(this->map_to_output());
+
   const unsigned char *pshdrs = this->get_view(this->elf_file_.shoff(),
                                               shnum * This::shdr_size,
                                               true);
@@ -192,7 +231,8 @@ Sized_relobj<size, big_endian>::do_read_relocs(Read_relocs_data* rd)
          continue;
        }
 
-      if (!this->is_section_included(shndx))
+      Output_section* os = map_sections[shndx].output_section;
+      if (os == NULL)
        continue;
 
       // We are scanning relocations in order to fill out the GOT and
@@ -242,6 +282,8 @@ Sized_relobj<size, big_endian>::do_read_relocs(Read_relocs_data* rd)
                                           true);
       sr.sh_type = sh_type;
       sr.reloc_count = reloc_count;
+      sr.output_section = os;
+      sr.needs_special_offset_handling = map_sections[shndx].offset == -1;
     }
 
   // Read the local symbols.
@@ -286,9 +328,9 @@ Sized_relobj<size, big_endian>::do_scan_relocs(const General_options& options,
     {
       target->scan_relocs(options, symtab, layout, this, p->data_shndx,
                          p->sh_type, p->contents->data(), p->reloc_count,
+                         p->output_section, p->needs_special_offset_handling,
                          this->local_symbol_count_,
-                         local_symbols,
-                         this->symbols_);
+                         local_symbols);
       delete p->contents;
       p->contents = NULL;
     }
@@ -333,8 +375,18 @@ Sized_relobj<size, big_endian>::do_relocate(const General_options& options,
   for (unsigned int i = 1; i < shnum; ++i)
     {
       if (views[i].view != NULL)
-       of->write_output_view(views[i].offset, views[i].view_size,
-                             views[i].view);
+       {
+         if (!views[i].is_postprocessing_view)
+           {
+             if (views[i].is_input_output_view)
+               of->write_input_output_view(views[i].offset,
+                                           views[i].view_size,
+                                           views[i].view);
+             else
+               of->write_output_view(views[i].offset, views[i].view_size,
+                                     views[i].view);
+           }
+       }
     }
 
   // Write out the local symbols.
@@ -361,34 +413,96 @@ Sized_relobj<size, big_endian>::write_sections(const unsigned char* pshdrs,
 
       pvs->view = NULL;
 
-      if (map_sections[i].offset == -1)
-       continue;
-
       const Output_section* os = map_sections[i].output_section;
       if (os == NULL)
        continue;
+      off_t output_offset = map_sections[i].offset;
 
       typename This::Shdr shdr(p);
 
       if (shdr.get_sh_type() == elfcpp::SHT_NOBITS)
        continue;
 
-      off_t start = os->offset() + map_sections[i].offset;
-      off_t sh_size = shdr.get_sh_size();
+      // In the normal case, this input section is simply mapped to
+      // the output section at offset OUTPUT_OFFSET.
+
+      // However, if OUTPUT_OFFSET == -1, then input data is handled
+      // specially--e.g., a .eh_frame section.  The relocation
+      // routines need to check for each reloc where it should be
+      // applied.  For this case, we need an input/output view for the
+      // entire contents of the section in the output file.  We don't
+      // want to copy the contents of the input section to the output
+      // section; the output section contents were already written,
+      // and we waited for them in Relocate_task::is_runnable because
+      // relocs_must_follow_section_writes is set for the object.
+
+      // Regardless of which of the above cases is true, we have to
+      // check requires_postprocessing of the output section.  If that
+      // is false, then we work with views of the output file
+      // directly.  If it is true, then we work with a separate
+      // buffer, and the output section is responsible for writing the
+      // final data to the output file.
+
+      off_t output_section_offset;
+      off_t output_section_size;
+      if (!os->requires_postprocessing())
+       {
+         output_section_offset = os->offset();
+         output_section_size = os->data_size();
+       }
+      else
+       {
+         output_section_offset = 0;
+         output_section_size = os->postprocessing_buffer_size();
+       }
+
+      off_t view_start;
+      off_t view_size;
+      if (output_offset != -1)
+       {
+         view_start = output_section_offset + output_offset;
+         view_size = shdr.get_sh_size();
+       }
+      else
+       {
+         view_start = output_section_offset;
+         view_size = output_section_size;
+       }
 
-      if (sh_size == 0)
+      if (view_size == 0)
        continue;
 
-      gold_assert(map_sections[i].offset >= 0
-                 && map_sections[i].offset + sh_size <= os->data_size());
+      gold_assert(output_offset == -1
+                 || (output_offset >= 0
+                     && output_offset + view_size <= output_section_size));
 
-      unsigned char* view = of->get_output_view(start, sh_size);
-      this->read(shdr.get_sh_offset(), sh_size, view);
+      unsigned char* view;
+      if (os->requires_postprocessing())
+       {
+         unsigned char* buffer = os->postprocessing_buffer();
+         view = buffer + view_start;
+         if (output_offset != -1)
+           this->read(shdr.get_sh_offset(), view_size, view);
+       }
+      else
+       {
+         if (output_offset == -1)
+           view = of->get_input_output_view(view_start, view_size);
+         else
+           {
+             view = of->get_output_view(view_start, view_size);
+             this->read(shdr.get_sh_offset(), view_size, view);
+           }
+       }
 
       pvs->view = view;
-      pvs->address = os->address() + map_sections[i].offset;
-      pvs->offset = start;
-      pvs->view_size = sh_size;
+      pvs->address = os->address();
+      if (output_offset != -1)
+       pvs->address += output_offset;
+      pvs->offset = view_start;
+      pvs->view_size = view_size;
+      pvs->is_input_output_view = output_offset == -1;
+      pvs->is_postprocessing_view = os->requires_postprocessing();
     }
 }
 
@@ -407,14 +521,13 @@ Sized_relobj<size, big_endian>::relocate_sections(
   unsigned int shnum = this->shnum();
   Sized_target<size, big_endian>* target = this->sized_target();
 
+  std::vector<Map_to_output>& map_sections(this->map_to_output());
+
   Relocate_info<size, big_endian> relinfo;
   relinfo.options = &options;
   relinfo.symtab = symtab;
   relinfo.layout = layout;
   relinfo.object = this;
-  relinfo.local_symbol_count = this->local_symbol_count_;
-  relinfo.local_values = &this->local_values_;
-  relinfo.symbols = this->symbols_;
 
   const unsigned char* p = pshdrs + This::shdr_size;
   for (unsigned int i = 1; i < shnum; ++i, p += This::shdr_size)
@@ -433,12 +546,14 @@ Sized_relobj<size, big_endian>::relocate_sections(
          continue;
        }
 
-      if (!this->is_section_included(index))
+      Output_section* os = map_sections[index].output_section;
+      if (os == NULL)
        {
          // This relocation section is against a section which we
          // discarded.
          continue;
        }
+      off_t output_offset = map_sections[index].offset;
 
       gold_assert((*pviews)[index].view != NULL);
 
@@ -464,7 +579,7 @@ Sized_relobj<size, big_endian>::relocate_sections(
        {
          gold_error(_("unexpected entsize for reloc section %u: %lu != %u"),
                     i, static_cast<unsigned long>(shdr.get_sh_entsize()),
-                 reloc_size);
+                    reloc_size);
          continue;
        }
 
@@ -476,12 +591,17 @@ Sized_relobj<size, big_endian>::relocate_sections(
          continue;
        }
 
+      gold_assert(output_offset != -1
+                 || this->relocs_must_follow_section_writes());
+
       relinfo.reloc_shndx = i;
       relinfo.data_shndx = index;
       target->relocate_section(&relinfo,
                               sh_type,
                               prelocs,
                               reloc_count,
+                              os,
+                              output_offset == -1,
                               (*pviews)[index].view,
                               (*pviews)[index].address,
                               (*pviews)[index].view_size);
@@ -514,8 +634,8 @@ Copy_relocs<size, big_endian>::Copy_reloc_entry::emit(
     Output_data_reloc<elfcpp::SHT_REL, true, size, big_endian>* reloc_data)
 {
   this->sym_->set_needs_dynsym_entry();
-  reloc_data->add_global(this->sym_, this->reloc_type_, this->relobj_,
-                        this->shndx_, this->address_);
+  reloc_data->add_global(this->sym_, this->reloc_type_, this->output_section_,
+                         this->relobj_, this->shndx_, this->address_);
 }
 
 // Emit a reloc into a SHT_RELA section.
@@ -526,8 +646,9 @@ Copy_relocs<size, big_endian>::Copy_reloc_entry::emit(
     Output_data_reloc<elfcpp::SHT_RELA, true, size, big_endian>* reloc_data)
 {
   this->sym_->set_needs_dynsym_entry();
-  reloc_data->add_global(this->sym_, this->reloc_type_, this->relobj_,
-                        this->shndx_, this->address_, this->addend_);
+  reloc_data->add_global(this->sym_, this->reloc_type_, this->output_section_,
+                         this->relobj_, this->shndx_, this->address_,
+                        this->addend_);
 }
 
 // Copy_relocs methods.
@@ -564,11 +685,13 @@ Copy_relocs<size, big_endian>::save(
     Symbol* sym,
     Relobj* relobj,
     unsigned int shndx,
+    Output_section* output_section,
     const elfcpp::Rel<size, big_endian>& rel)
 {
   unsigned int reloc_type = elfcpp::elf_r_type<size>(rel.get_r_info());
   this->entries_.push_back(Copy_reloc_entry(sym, reloc_type, relobj, shndx,
-                                           rel.get_r_offset(), 0));
+                                            output_section,
+                                            rel.get_r_offset(), 0));
 }
 
 // Save a Rela reloc.
@@ -579,10 +702,12 @@ Copy_relocs<size, big_endian>::save(
     Symbol* sym,
     Relobj* relobj,
     unsigned int shndx,
+    Output_section* output_section,
     const elfcpp::Rela<size, big_endian>& rela)
 {
   unsigned int reloc_type = elfcpp::elf_r_type<size>(rela.get_r_info());
   this->entries_.push_back(Copy_reloc_entry(sym, reloc_type, relobj, shndx,
+                                            output_section,
                                            rela.get_r_offset(),
                                            rela.get_r_addend()));
 }
@@ -621,6 +746,102 @@ Copy_relocs<size, big_endian>::emit(
     }
 }
 
+// Track_relocs methods.
+
+// Initialize the class to track the relocs.  This gets the object,
+// the reloc section index, and the type of the relocs.  This returns
+// false if something goes wrong.
+
+template<int size, bool big_endian>
+bool
+Track_relocs<size, big_endian>::initialize(
+    Object* object,
+    unsigned int reloc_shndx,
+    unsigned int reloc_type)
+{
+  // If RELOC_SHNDX is -1U, it means there is more than one reloc
+  // section for the .eh_frame section.  We can't handle that case.
+  if (reloc_shndx == -1U)
+    return false;
+
+  // If RELOC_SHNDX is 0, there is no reloc section.
+  if (reloc_shndx == 0)
+    return true;
+
+  // Get the contents of the reloc section.
+  this->prelocs_ = object->section_contents(reloc_shndx, &this->len_, false);
+
+  if (reloc_type == elfcpp::SHT_REL)
+    this->reloc_size_ = elfcpp::Elf_sizes<size>::rel_size;
+  else if (reloc_type == elfcpp::SHT_RELA)
+    this->reloc_size_ = elfcpp::Elf_sizes<size>::rela_size;
+  else
+    gold_unreachable();
+
+  if (this->len_ % this->reloc_size_ != 0)
+    {
+      object->error(_("reloc section size %zu is not a multiple of "
+                     "reloc size %d\n"),
+                   static_cast<size_t>(this->len_),
+                   this->reloc_size_);
+      return false;
+    }
+
+  return true;
+}
+
+// Return the offset of the next reloc, or -1 if there isn't one.
+
+template<int size, bool big_endian>
+off_t
+Track_relocs<size, big_endian>::next_offset() const
+{
+  if (this->pos_ >= this->len_)
+    return -1;
+
+  // Rel and Rela start out the same, so we can always use Rel to find
+  // the r_offset value.
+  elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_);
+  return rel.get_r_offset();
+}
+
+// Return the index of the symbol referenced by the next reloc, or -1U
+// if there aren't any more relocs.
+
+template<int size, bool big_endian>
+unsigned int
+Track_relocs<size, big_endian>::next_symndx() const
+{
+  if (this->pos_ >= this->len_)
+    return -1U;
+
+  // Rel and Rela start out the same, so we can use Rel to find the
+  // symbol index.
+  elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_);
+  return elfcpp::elf_r_sym<size>(rel.get_r_info());
+}
+
+// Advance to the next reloc whose r_offset is greater than or equal
+// to OFFSET.  Return the number of relocs we skip.
+
+template<int size, bool big_endian>
+int
+Track_relocs<size, big_endian>::advance(off_t offset)
+{
+  int ret = 0;
+  while (this->pos_ < this->len_)
+    {
+      // Rel and Rela start out the same, so we can always use Rel to
+      // find the r_offset value.
+      elfcpp::Rel<size, big_endian> rel(this->prelocs_ + this->pos_);
+      if (static_cast<off_t>(rel.get_r_offset()) >= offset)
+       break;
+      ++ret;
+      this->pos_ += this->reloc_size_;
+    }
+  return ret;
+}
+
 // Instantiate the templates we need.  We could use the configure
 // script to restrict this to only the ones for implemented targets.
 
@@ -796,4 +1017,24 @@ Copy_relocs<64, true>::emit<elfcpp::SHT_RELA>(
     Output_data_reloc<elfcpp::SHT_RELA, true, 64, true>*);
 #endif
 
+#ifdef HAVE_TARGET_32_LITTLE
+template
+class Track_relocs<32, false>;
+#endif
+
+#ifdef HAVE_TARGET_32_BIG
+template
+class Track_relocs<32, true>;
+#endif
+
+#ifdef HAVE_TARGET_64_LITTLE
+template
+class Track_relocs<64, false>;
+#endif
+
+#ifdef HAVE_TARGET_64_BIG
+template
+class Track_relocs<64, true>;
+#endif
+
 } // End namespace gold.
This page took 0.028153 seconds and 4 git commands to generate.