* gold.cc (queue_middle_tasks): Move detect_odr_violations..

* layout.cc (Layout_task_runner::run): ..to here.
	* symtab.h (struct Symbol_location): Extract from..
	(class Symbol_table): ..here.
	* symtab.cc (Symbol_table::linenos_from_loc): Invoke function_location.
	* target.h (class Target): Add function_location and
	do_function_location functions.
	(class Sized_target): Add do_function_location.
	* object.h (class Sized_relobj_file): Move find_shdr..
	(class Object): ..to here.
	* object.cc: Likewise.  Update to suit.  Instantiate.
	(Sized_relobj_file::find_eh_frame): Update find_shdr call.
	* powerpc.cc (class Powerpc_dynobj): New.
	(Target_powerpc::do_function_location): New function.
	(Powerpc_relobj::do_find_special_sections): Update find_shdr call.
	(Powerpc_dynobj::do_read_symbols): New function.
	(Target_powerpc::do_make_elf_object): Make a Powerpc_dynobj.
This commit is contained in:
Alan Modra
2013-03-10 23:08:18 +00:00
parent 3bcc542289
commit dc3714f31f
9 changed files with 342 additions and 38 deletions

View File

@@ -881,6 +881,16 @@ class Object
read_section_data(elfcpp::Elf_file<size, big_endian, Object>*,
Read_symbols_data*);
// Find the section header with the given NAME. If HDR is non-NULL
// then it is a section header returned from a previous call to this
// function and the next section header with the same name will be
// returned.
template<int size, bool big_endian>
const unsigned char*
find_shdr(const unsigned char* pshdrs, const char* name,
const char* names, section_size_type names_size,
const unsigned char* hdr) const;
// Let the child class initialize the xindex object directly.
void
set_xindex(Xindex* xindex)
@@ -2161,15 +2171,6 @@ class Sized_relobj_file : public Sized_relobj<size, big_endian>
Address
map_to_kept_section(unsigned int shndx, bool* found) const;
// Find the section header with the given NAME. If HDR is non-NULL
// then it is a section header returned from a previous call to this
// function and the next section header with the same name will be
// returned.
const unsigned char*
find_shdr(const unsigned char* pshdrs, const char* name,
const char* names, section_size_type names_size,
const unsigned char* hdr) const;
// Compute final local symbol value. R_SYM is the local symbol index.
// LV_IN points to a local symbol value containing the input value.
// LV_OUT points to a local symbol value storing the final output value,