home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gdb-4.12.tar.gz / gdb-4.12.tar / gdb-4.12 / bfd / nlm-target.h < prev    next >
C/C++ Source or Header  |  1994-02-03  |  9KB  |  261 lines

  1. /* Target definitions for 32/64-bit NLM (NetWare Loadable Module)
  2.    Copyright (C) 1993 Free Software Foundation, Inc.
  3.  
  4. This file is part of BFD, the Binary File Descriptor library.
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #define nlm_core_file_p \
  21.   ((bfd_target *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
  22.  
  23. /* The JUMP_TABLE macro is used in the target structure to get names
  24.    for all the functions.  We use JUMP_TABLE(nlm) to get a prefix of
  25.    nlm for all the functions.  Here we redefine those names.  Many of
  26.    the functions are the same for any NLM target.  The others are
  27.    defined in terms of the nlmNAME macro.  */
  28.  
  29. #define    nlm_core_file_failing_command \
  30.                 _bfd_dummy_core_file_failing_command
  31. #define    nlm_core_file_failing_signal \
  32.                 _bfd_dummy_core_file_failing_signal
  33. #define    nlm_core_file_matches_executable_p \
  34.                 _bfd_dummy_core_file_matches_executable_p
  35. #define nlm_slurp_armap        bfd_slurp_coff_armap
  36. #define nlm_slurp_extended_name_table \
  37.                 _bfd_slurp_extended_name_table
  38. #define nlm_truncate_arname    bfd_dont_truncate_arname
  39. #define    nlm_write_armap        coff_write_armap
  40. #define    nlm_close_and_cleanup    bfd_generic_close_and_cleanup
  41. #define nlm_set_section_contents \
  42.                 nlmNAME(set_section_contents)
  43. #define nlm_get_section_contents \
  44.                 bfd_generic_get_section_contents
  45. #define nlm_new_section_hook    _bfd_dummy_new_section_hook
  46. #define nlm_get_symtab_upper_bound \
  47.                 nlmNAME(get_symtab_upper_bound)
  48. #define nlm_get_symtab        nlmNAME(get_symtab)
  49. #define nlm_get_reloc_upper_bound \
  50.                 nlmNAME(get_reloc_upper_bound)
  51. #define nlm_canonicalize_reloc    nlmNAME(canonicalize_reloc)
  52. #define nlm_make_empty_symbol    nlmNAME(make_empty_symbol)
  53. #define nlm_print_symbol    nlmNAME(print_symbol)
  54. #define nlm_get_symbol_info    nlmNAME(get_symbol_info)
  55. #define nlm_get_lineno        ((alent * (*) PARAMS ((bfd *, asymbol *))) \
  56.                  bfd_false)
  57. /* We use the generic function nlm_set_arch_mach.  */
  58. #define nlm_openr_next_archived_file \
  59.                 bfd_generic_openr_next_archived_file
  60. #define nlm_find_nearest_line \
  61.                 ((boolean (*) PARAMS ((bfd *, asection *, \
  62.                                asymbol **, bfd_vma, \
  63.                                CONST char **, \
  64.                                CONST char **, \
  65.                                unsigned int *))) \
  66.                  bfd_false)
  67. #define nlm_generic_stat_arch_elt \
  68.                 bfd_generic_stat_arch_elt
  69. #define nlm_sizeof_headers    ((int (*) PARAMS ((bfd *, boolean))) bfd_0u)
  70. #define nlm_bfd_debug_info_start \
  71.                 bfd_void
  72. #define nlm_bfd_debug_info_end    bfd_void
  73. #define nlm_bfd_debug_info_accumulate \
  74.                 ((void (*) PARAMS ((bfd*, struct sec *))) \
  75.                  bfd_void)
  76. #define nlm_bfd_get_relocated_section_contents \
  77.                 bfd_generic_get_relocated_section_contents
  78. #define nlm_bfd_relax_section    bfd_generic_relax_section
  79. #define nlm_bfd_reloc_type_lookup \
  80.                 bfd_default_reloc_type_lookup
  81. #define nlm_bfd_make_debug_symbol \
  82.                 ((asymbol *(*) PARAMS ((bfd *, void *, \
  83.                             unsigned long))) \
  84.                  bfd_nullvoidptr)
  85. #define nlm_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
  86. #define nlm_bfd_link_add_symbols _bfd_generic_link_add_symbols
  87. #define nlm_bfd_final_link _bfd_generic_final_link
  88.  
  89. /* This structure contains everything that BFD knows about a target.
  90.    It includes things like its byte order, name, what routines to call
  91.    to do various operations, etc.  Every BFD points to a target structure
  92.    with its "xvec" member.
  93.  
  94.    There are two such structures here:  one for big-endian machines and
  95.    one for little-endian machines.   */
  96.  
  97.  
  98. #ifdef TARGET_BIG_SYM
  99. bfd_target TARGET_BIG_SYM =
  100. {
  101.   /* name: identify kind of target */
  102.   TARGET_BIG_NAME,
  103.  
  104.   /* flavour: general indication about file */
  105.   bfd_target_nlm_flavour,
  106.  
  107.   /* byteorder_big_p: data is big endian */
  108.   true,
  109.  
  110.   /* header_byteorder_big_p: header is also big endian */
  111.   true,
  112.  
  113.   /* object_flags: mask of all file flags */
  114.   (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS
  115.    | WP_TEXT),
  116.   
  117.   /* section_flags: mask of all section flags */
  118.   (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
  119.    SEC_CODE | SEC_DATA), 
  120.  
  121.    /* leading_symbol_char: is the first char of a user symbol
  122.       predictable, and if so what is it */
  123.    0,
  124.  
  125.   /* ar_pad_char: pad character for filenames within an archive header
  126.      FIXME:  this really has nothing to do with NLM, this is a characteristic
  127.      of the archiver and/or os and should be independently tunable */
  128.   '/',
  129.  
  130.   /* ar_max_namelen: maximum number of characters in an archive header
  131.      FIXME:  this really has nothing to do with NLM, this is a characteristic
  132.      of the archiver and should be independently tunable.  This value is
  133.      a WAG (wild a** guess) */
  134.   15,
  135.  
  136.   /* align_power_min: minimum alignment restriction for any section
  137.      FIXME:  this value may be target machine dependent */
  138.   3,
  139.  
  140.   /* Routines to byte-swap various sized integers from the data sections */
  141.   bfd_getb64, bfd_getb_signed_64, bfd_putb64,
  142.     bfd_getb32, bfd_getb_signed_32, bfd_putb32,
  143.     bfd_getb16, bfd_getb_signed_16, bfd_putb16,
  144.  
  145.   /* Routines to byte-swap various sized integers from the file headers */
  146.   bfd_getb64, bfd_getb_signed_64, bfd_putb64,
  147.     bfd_getb32, bfd_getb_signed_32, bfd_putb32,
  148.     bfd_getb16, bfd_getb_signed_16, bfd_putb16,
  149.  
  150.   /* bfd_check_format: check the format of a file being read */
  151.   { _bfd_dummy_target,        /* unknown format */
  152.     nlmNAME(object_p),        /* assembler/linker output (object file) */
  153.     bfd_generic_archive_p,    /* an archive */
  154.     nlm_core_file_p        /* a core file */
  155.   },
  156.  
  157.   /* bfd_set_format: set the format of a file being written */
  158.   { bfd_false,
  159.     nlm_mkobject,
  160.     _bfd_generic_mkarchive,
  161.     bfd_false
  162.   },
  163.  
  164.   /* bfd_write_contents: write cached information into a file being written */
  165.   { bfd_false,
  166.     nlmNAME(write_object_contents),
  167.     _bfd_write_archive_contents,
  168.     bfd_false
  169.   },
  170.  
  171.   /* Initialize a jump table with the standard macro.  All names start with
  172.      "nlm" */
  173.   JUMP_TABLE(nlm),
  174.  
  175.   /* backend_data: */
  176.   (PTR) TARGET_BACKEND_DATA
  177. };
  178. #endif
  179.  
  180. #ifdef TARGET_LITTLE_SYM
  181. bfd_target TARGET_LITTLE_SYM =
  182. {
  183.   /* name: identify kind of target */
  184.   TARGET_LITTLE_NAME,
  185.  
  186.   /* flavour: general indication about file */
  187.   bfd_target_nlm_flavour,
  188.  
  189.   /* byteorder_big_p: data is big endian */
  190.   false,        /* Nope -- this one's little endian */
  191.  
  192.   /* header_byteorder_big_p: header is also big endian */
  193.   false,        /* Nope -- this one's little endian */
  194.  
  195.   /* object_flags: mask of all file flags */
  196.   (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS
  197.    | WP_TEXT),
  198.   
  199.   /* section_flags: mask of all section flags */
  200.   (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY |
  201.    SEC_DATA), 
  202.  
  203.    /* leading_symbol_char: is the first char of a user symbol
  204.       predictable, and if so what is it */
  205.    0,
  206.  
  207.   /* ar_pad_char: pad character for filenames within an archive header
  208.      FIXME:  this really has nothing to do with NLM, this is a characteristic
  209.      of the archiver and/or os and should be independently tunable */
  210.   '/',
  211.  
  212.   /* ar_max_namelen: maximum number of characters in an archive header
  213.      FIXME:  this really has nothing to do with NLM, this is a characteristic
  214.      of the archiver and should be independently tunable.  This value is
  215.      a WAG (wild a** guess) */
  216.   15,
  217.  
  218.   /* align_power_min: minimum alignment restriction for any section
  219.      FIXME:  this value may be target machine dependent */
  220.   3,
  221.  
  222.   /* Routines to byte-swap various sized integers from the data sections */
  223.   bfd_getl64, bfd_getl_signed_64, bfd_putl64,
  224.     bfd_getl32, bfd_getl_signed_32, bfd_putl32,
  225.     bfd_getl16, bfd_getl_signed_16, bfd_putl16,
  226.  
  227.   /* Routines to byte-swap various sized integers from the file headers */
  228.   bfd_getl64, bfd_getl_signed_64, bfd_putl64,
  229.     bfd_getl32, bfd_getl_signed_32, bfd_putl32,
  230.     bfd_getl16, bfd_getl_signed_16, bfd_putl16,
  231.  
  232.   /* bfd_check_format: check the format of a file being read */
  233.   { _bfd_dummy_target,        /* unknown format */
  234.     nlmNAME(object_p),        /* assembler/linker output (object file) */
  235.     bfd_generic_archive_p,    /* an archive */
  236.     nlm_core_file_p        /* a core file */
  237.   },
  238.  
  239.   /* bfd_set_format: set the format of a file being written */
  240.   { bfd_false,
  241.     nlm_mkobject,
  242.     _bfd_generic_mkarchive,
  243.     bfd_false
  244.   },
  245.  
  246.   /* bfd_write_contents: write cached information into a file being written */
  247.   { bfd_false,
  248.     nlmNAME(write_object_contents),
  249.     _bfd_write_archive_contents,
  250.     bfd_false
  251.   },
  252.  
  253.   /* Initialize a jump table with the standard macro.  All names start with
  254.      "nlm" */
  255.   JUMP_TABLE(nlm),
  256.  
  257.   /* backend_data: */
  258.   (PTR) TARGET_BACKEND_DATA
  259. };
  260. #endif
  261.