aboutsummaryrefslogtreecommitdiff
path: root/bfd/libnlm.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-08-04 20:25:53 +0000
committerIan Lance Taylor <ian@airs.com>1993-08-04 20:25:53 +0000
commit7389debf1cce959d9b36469d9cbff11e0f29587a (patch)
tree6e52fcf70d2adb5dd7f5f766f3e2ebd251fc43da /bfd/libnlm.h
parentcdbcb08c10e21e6ff19510233dd47b0552fc16cf (diff)
downloadgdb-7389debf1cce959d9b36469d9cbff11e0f29587a.zip
gdb-7389debf1cce959d9b36469d9cbff11e0f29587a.tar.gz
gdb-7389debf1cce959d9b36469d9cbff11e0f29587a.tar.bz2
* libnlm.h (nlm_backend_data): Added nlm_mangle_relocs.
(nlm_mangle_relocs_func): New macro. * nlm32-i386.c (nlm_i386_write_reloc): Rewrote correctly. (nlm_i386_mangle_relocs): New function. * nlmcode.h (nlm_compute_section_file_positions): Move all common symbols into the .bss section. (nlm_set_section_contents): Call the mangle_relocs function. (nlm_write_object_contents): Treat a reloc against any defined symbol as an internal reloc. Fix bug in external reloc counting. Get the offset and debugging type right for .bss symbols. Only output debugging symbols for defined symbols.
Diffstat (limited to 'bfd/libnlm.h')
-rw-r--r--bfd/libnlm.h136
1 files changed, 100 insertions, 36 deletions
diff --git a/bfd/libnlm.h b/bfd/libnlm.h
index eb8d8f5..53199bc 100644
--- a/bfd/libnlm.h
+++ b/bfd/libnlm.h
@@ -21,52 +21,63 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef _LIBNLM_H_
#define _LIBNLM_H_ 1
+#ifdef ARCH_SIZE
+# define NLM_ARCH_SIZE ARCH_SIZE
+#endif
#include "nlm/common.h"
#include "nlm/internal.h"
#include "nlm/external.h"
-/* If size isn't specified as 64 or 32, NAME macro should fail. */
-#ifndef NAME
-# if ARCH_SIZE==64
-# define NAME(x,y) CAT4(x,64,_,y)
-# endif
-# if ARCH_SIZE==32
-# define NAME(x,y) CAT4(x,32,_,y)
-# endif
-#endif
-
-#define NlmNAME(X) NAME(Nlm,X)
-#define nlmNAME(X) NAME(nlm,X)
+/* A reloc for an imported NLM symbol. Normal relocs are associated
+ with sections, and include a symbol. These relocs are associated
+ with (undefined) symbols, and include a section. */
-typedef struct
+struct nlm_relent
{
- asymbol symbol;
-} nlm32_symbol_type;
+ /* Section of reloc. */
+ asection *section;
+ /* Reloc info (sym_ptr_ptr field set only when canonicalized). */
+ arelent reloc;
+};
+
+/* Information we keep for an NLM symbol. */
typedef struct
{
+ /* BFD symbol. */
asymbol symbol;
-} nlm64_symbol_type;
-
-#define bfd_nlm32_mkobject bfd_nlm_mkobject
-#define bfd_nlm64_mkobject bfd_nlm_mkobject
-#define nlm_mkobject bfd_nlm_mkobject
-extern boolean bfd_nlm_mkobject PARAMS ((bfd *));
-
-extern void bfd_nlm32_get_symbol_info
- PARAMS ((bfd *, asymbol *, symbol_info *));
-extern unsigned int bfd_nlm32_get_symtab_upper_bound PARAMS ((bfd *));
-extern unsigned int bfd_nlm64_get_symtab_upper_bound PARAMS ((bfd *));
-extern unsigned int bfd_nlm32_get_symtab PARAMS ((bfd *, asymbol **));
-extern unsigned int bfd_nlm64_get_symtab PARAMS ((bfd *, asymbol **));
-extern asymbol *bfd_nlm32_make_empty_symbol PARAMS ((bfd *));
-extern asymbol *bfd_nlm64_make_empty_symbol PARAMS ((bfd *));
-extern bfd_target *bfd_nlm32_object_p PARAMS ((bfd *));
-extern bfd_target *bfd_nlm64_object_p PARAMS ((bfd *));
-extern boolean bfd_nlm32_set_arch_mach
- PARAMS ((bfd *, enum bfd_architecture, unsigned long));
-extern boolean bfd_nlm64_set_arch_mach
- PARAMS ((bfd *, enum bfd_architecture, unsigned long));
+ /* Number of reloc entries for imported symbol. */
+ bfd_size_type rcnt;
+ /* Array of reloc information for imported symbol. */
+ struct nlm_relent *relocs;
+} nlmNAME(symbol_type);
+
+extern boolean nlm_mkobject PARAMS ((bfd *));
+extern boolean nlm_set_arch_mach PARAMS ((bfd *, enum bfd_architecture,
+ unsigned long));
+
+extern void nlmNAME(get_symbol_info)
+ PARAMS ((bfd *, asymbol *, symbol_info *));
+extern unsigned int nlmNAME(get_symtab_upper_bound)
+ PARAMS ((bfd *));
+extern unsigned int nlmNAME(get_symtab)
+ PARAMS ((bfd *, asymbol **));
+extern asymbol *nlmNAME(make_empty_symbol)
+ PARAMS ((bfd *));
+extern void nlmNAME(print_symbol)
+ PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type));
+extern unsigned int nlmNAME(get_reloc_upper_bound)
+ PARAMS ((bfd *, asection *));
+extern unsigned int nlmNAME(canonicalize_reloc)
+ PARAMS ((bfd *, asection *, arelent **, asymbol **));
+extern bfd_target *nlmNAME(object_p)
+ PARAMS ((bfd *));
+extern boolean nlmNAME(set_arch_mach)
+ PARAMS ((bfd *, enum bfd_architecture, unsigned long));
+extern boolean nlmNAME(set_section_contents)
+ PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
+extern boolean nlmNAME(write_object_contents)
+ PARAMS ((bfd *));
/* Some private data is stashed away for future use using the tdata pointer
in the bfd structure. */
@@ -80,6 +91,14 @@ struct nlm_obj_tdata
Nlm_Internal_Copyright_Header nlm_copyright_hdr[1];
Nlm_Internal_Extended_Header nlm_extended_hdr[1];
Nlm_Internal_Custom_Header nlm_custom_hdr[1];
+ /* BFD NLM symbols. */
+ nlmNAME(symbol_type) *nlm_symbols;
+ /* Lowest text and data VMA values. */
+ bfd_vma nlm_text_low;
+ bfd_vma nlm_data_low;
+ /* Caches for data read from object file. */
+ arelent * nlm_reloc_fixups;
+ asection ** nlm_reloc_fixup_secs;
};
#define nlm_tdata(bfd) ((bfd) -> tdata.nlm_obj_data)
@@ -89,6 +108,51 @@ struct nlm_obj_tdata
#define nlm_copyright_header(bfd) (nlm_tdata(bfd) -> nlm_copyright_hdr)
#define nlm_extended_header(bfd) (nlm_tdata(bfd) -> nlm_extended_hdr)
#define nlm_custom_header(bfd) (nlm_tdata(bfd) -> nlm_custom_hdr)
+#define nlm_get_symbols(bfd) (nlm_tdata(bfd) -> nlm_symbols)
+#define nlm_set_symbols(bfd, p) (nlm_tdata(bfd) -> nlm_symbols = (p))
+#define nlm_set_text_low(bfd, i) (nlm_tdata(bfd) -> nlm_text_low = (i))
+#define nlm_get_text_low(bfd) (nlm_tdata(bfd) -> nlm_text_low)
+#define nlm_set_data_low(bfd, i) (nlm_tdata(bfd) -> nlm_data_low = (i))
+#define nlm_get_data_low(bfd) (nlm_tdata(bfd) -> nlm_data_low)
+#define nlm_relocation_fixups(bfd) (nlm_tdata(bfd) -> nlm_reloc_fixups)
+#define nlm_relocation_fixup_secs(bfd) (nlm_tdata(bfd)->nlm_reloc_fixup_secs)
+
+/* We store some function pointer in the backend structure. This lets
+ different NLM targets share most of the same code, while providing
+ slightly different code where necessary. */
+
+struct nlm_backend_data
+{
+ /* Machine architecture. */
+ enum bfd_architecture arch;
+ /* Read a relocation fixup from abfd. The reloc information is
+ machine specific. The second argument is the symbol if this is
+ an import, or NULL if this is a reloc fixup. This function
+ should set the third argument to the section which the reloc
+ belongs in, and the fourth argument to the reloc itself; it does
+ not need to fill in the sym_ptr_ptr field for a reloc against an
+ import symbol. */
+ boolean (*nlm_read_reloc) PARAMS ((bfd *, nlmNAME(symbol_type) *,
+ asection **, arelent *));
+ /* Write a relocation fixup to abfd. */
+ boolean (*nlm_write_reloc) PARAMS ((bfd *, asection *, arelent *));
+ /* To make objcopy to an i386 NLM work, the i386 backend needs a
+ chance to work over the relocs. This is a bit icky. */
+ boolean (*nlm_mangle_relocs) PARAMS ((bfd *, asection *, PTR data,
+ bfd_vma offset,
+ bfd_size_type count));
+};
+
+#define nlm_backend(bfd) \
+ ((struct nlm_backend_data *)((bfd) -> xvec -> backend_data))
+#define nlm_architecture(bfd) \
+ (nlm_backend(bfd) ? nlm_backend(bfd) -> arch : bfd_arch_unknown)
+#define nlm_read_reloc_func(bfd) \
+ (nlm_backend(bfd) ? nlm_backend(bfd) -> nlm_read_reloc : 0)
+#define nlm_write_reloc_func(bfd) \
+ (nlm_backend(bfd) ? nlm_backend(bfd) -> nlm_write_reloc : 0)
+#define nlm_mangle_relocs_func(bfd) \
+ (nlm_backend(bfd) ? nlm_backend(bfd) -> nlm_mangle_relocs : 0)
/* The NLM code, data, and uninitialized sections have no names defined
in the NLM, but bfd wants to give them names, so use the traditional