OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [gold/] [object.cc] - Diff between revs 163 and 166

Show entire file | Details | Blame | View Log

Rev 163 Rev 166
Line 548... Line 548...
        }
        }
    }
    }
  return false;
  return false;
}
}
 
 
 
#ifdef ENABLE_THREADS
 
 
 
// Return TRUE if this is a section whose contents will be needed in the
 
// Add_symbols task.
 
 
 
static bool
 
need_decompressed_section(const char* name)
 
{
 
  // We will need .zdebug_str if this is not an incremental link
 
  // (i.e., we are processing string merge sections).
 
  if (!parameters->incremental() && strcmp(name, ".zdebug_str") == 0)
 
    return true;
 
 
 
  return false;
 
}
 
 
 
#endif
 
 
// Build a table for any compressed debug sections, mapping each section index
// Build a table for any compressed debug sections, mapping each section index
// to the uncompressed size.
// to the uncompressed size and (if needed) the decompressed contents.
 
 
template<int size, bool big_endian>
template<int size, bool big_endian>
Compressed_section_map*
Compressed_section_map*
build_compressed_section_map(
build_compressed_section_map(
    const unsigned char* pshdrs,
    const unsigned char* pshdrs,
    unsigned int shnum,
    unsigned int shnum,
    const char* names,
    const char* names,
    section_size_type names_size,
    section_size_type names_size,
    Sized_relobj_file<size, big_endian>* obj)
    Sized_relobj_file<size, big_endian>* obj)
{
{
  Compressed_section_map* uncompressed_sizes = new Compressed_section_map();
  Compressed_section_map* uncompressed_map = new Compressed_section_map();
  const unsigned int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
  const unsigned int shdr_size = elfcpp::Elf_sizes<size>::shdr_size;
  const unsigned char* p = pshdrs + shdr_size;
  const unsigned char* p = pshdrs + shdr_size;
 
 
  for (unsigned int i = 1; i < shnum; ++i, p += shdr_size)
  for (unsigned int i = 1; i < shnum; ++i, p += shdr_size)
    {
    {
      typename elfcpp::Shdr<size, big_endian> shdr(p);
      typename elfcpp::Shdr<size, big_endian> shdr(p);
      if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
      if (shdr.get_sh_type() == elfcpp::SHT_PROGBITS
          && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
          && (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
Line 584... Line 603...
              section_size_type len;
              section_size_type len;
              const unsigned char* contents =
              const unsigned char* contents =
                  obj->section_contents(i, &len, false);
                  obj->section_contents(i, &len, false);
              uint64_t uncompressed_size = get_uncompressed_size(contents, len);
              uint64_t uncompressed_size = get_uncompressed_size(contents, len);
              if (uncompressed_size != -1ULL)
              if (uncompressed_size != -1ULL)
                (*uncompressed_sizes)[i] =
                {
                    convert_to_section_size_type(uncompressed_size);
                  Compressed_section_info info;
 
                  info.size = convert_to_section_size_type(uncompressed_size);
 
                  info.contents = NULL;
 
 
 
#ifdef ENABLE_THREADS
 
                  // If we're multi-threaded, it will help to decompress
 
                  // any sections that will be needed during the Add_symbols
 
                  // task, so that several decompressions can run in
 
                  // parallel.
 
                  if (parameters->options().threads())
 
                    {
 
                      unsigned char* uncompressed_data = NULL;
 
                      if (need_decompressed_section(name))
 
                        {
 
                          uncompressed_data = new unsigned char[uncompressed_size];
 
                          if (decompress_input_section(contents, len,
 
                                                       uncompressed_data,
 
                                                       uncompressed_size))
 
                            info.contents = uncompressed_data;
 
                          else
 
                            delete[] uncompressed_data;
 
                        }
 
                    }
 
#endif
 
 
 
                  (*uncompressed_map)[i] = info;
            }
            }
        }
        }
    }
    }
  return uncompressed_sizes;
    }
 
  return uncompressed_map;
}
}
 
 
// Read the sections and symbols from an object file.
// Read the sections and symbols from an object file.
 
 
template<int size, bool big_endian>
template<int size, bool big_endian>
Line 1817... Line 1862...
 
 
// Get the PLT offset of a local symbol.
// Get the PLT offset of a local symbol.
 
 
template<int size, bool big_endian>
template<int size, bool big_endian>
unsigned int
unsigned int
Sized_relobj_file<size, big_endian>::local_plt_offset(unsigned int symndx) const
Sized_relobj_file<size, big_endian>::do_local_plt_offset(
 
    unsigned int symndx) const
{
{
  typename Local_plt_offsets::const_iterator p =
  typename Local_plt_offsets::const_iterator p =
    this->local_plt_offsets_.find(symndx);
    this->local_plt_offsets_.find(symndx);
  gold_assert(p != this->local_plt_offsets_.end());
  gold_assert(p != this->local_plt_offsets_.end());
  return p->second;
  return p->second;
Line 2554... Line 2600...
        && (*p)->is_defined())
        && (*p)->is_defined())
      ++count;
      ++count;
  *used = count;
  *used = count;
}
}
 
 
 
// Return a view of the decompressed contents of a section.  Set *PLEN
 
// to the size.  Set *IS_NEW to true if the contents need to be freed
 
// by the caller.
 
 
 
template<int size, bool big_endian>
 
const unsigned char*
 
Sized_relobj_file<size, big_endian>::do_decompressed_section_contents(
 
    unsigned int shndx,
 
    section_size_type* plen,
 
    bool* is_new)
 
{
 
  section_size_type buffer_size;
 
  const unsigned char* buffer = this->section_contents(shndx, &buffer_size,
 
                                                       false);
 
 
 
  if (this->compressed_sections_ == NULL)
 
    {
 
      *plen = buffer_size;
 
      *is_new = false;
 
      return buffer;
 
    }
 
 
 
  Compressed_section_map::const_iterator p =
 
      this->compressed_sections_->find(shndx);
 
  if (p == this->compressed_sections_->end())
 
    {
 
      *plen = buffer_size;
 
      *is_new = false;
 
      return buffer;
 
    }
 
 
 
  section_size_type uncompressed_size = p->second.size;
 
  if (p->second.contents != NULL)
 
    {
 
      *plen = uncompressed_size;
 
      *is_new = false;
 
      return p->second.contents;
 
    }
 
 
 
  unsigned char* uncompressed_data = new unsigned char[uncompressed_size];
 
  if (!decompress_input_section(buffer,
 
                                buffer_size,
 
                                uncompressed_data,
 
                                uncompressed_size))
 
    this->error(_("could not decompress section %s"),
 
                this->do_section_name(shndx).c_str());
 
 
 
  // We could cache the results in p->second.contents and store
 
  // false in *IS_NEW, but build_compressed_section_map() would
 
  // have done so if it had expected it to be profitable.  If
 
  // we reach this point, we expect to need the contents only
 
  // once in this pass.
 
  *plen = uncompressed_size;
 
  *is_new = true;
 
  return uncompressed_data;
 
}
 
 
 
// Discard any buffers of uncompressed sections.  This is done
 
// at the end of the Add_symbols task.
 
 
 
template<int size, bool big_endian>
 
void
 
Sized_relobj_file<size, big_endian>::do_discard_decompressed_sections()
 
{
 
  if (this->compressed_sections_ == NULL)
 
    return;
 
 
 
  for (Compressed_section_map::iterator p = this->compressed_sections_->begin();
 
       p != this->compressed_sections_->end();
 
       ++p)
 
    {
 
      if (p->second.contents != NULL)
 
        {
 
          delete[] p->second.contents;
 
          p->second.contents = NULL;
 
        }
 
    }
 
}
 
 
// Input_objects methods.
// Input_objects methods.
 
 
// Add a regular relocatable object to the list.  Return false if this
// Add a regular relocatable object to the list.  Return false if this
// object should be ignored.
// object should be ignored.
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.