Changeset 609 for branches/GNU/src/binutils/bfd/libieee.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/libieee.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* IEEE-695 object file formats: definitions internal to BFD. 2 Copyright 1990, 1991, 1992, 1994, 1996 Free Software Foundation, Inc. 2 Copyright 1990, 1991, 1992, 1994, 1996, 2001, 2002 3 Free Software Foundation, Inc. 3 4 Written by Cygnus Support. Mostly Steve Chamberlain's fault. 4 5 … … 29 30 } bfd_chain_type; 30 31 31 typedef struct ieee_symbol 32 typedef struct ieee_symbol 32 33 { 33 34 asymbol symbol; … … 56 57 file_ptr current_pos; 57 58 unsigned int current_byte; 58 b oolean initialized;59 bfd_boolean initialized; 59 60 ieee_reloc_type **reloc_tail_ptr; 60 61 } ieee_per_section_type; 61 62 62 63 #define ieee_per_section(x) ((ieee_per_section_type *)((x)->used_by_bfd)) 63 64 64 65 typedef struct { 65 unsigned 66 unsigned char *input_p; 66 67 unsigned char *first_byte; 68 unsigned char *last_byte; 67 69 bfd *abfd; 68 70 } common_header_type ; … … 71 73 { 72 74 common_header_type h; 73 b oolean read_symbols;74 b oolean read_data;75 bfd_boolean read_symbols; 76 bfd_boolean read_data; 75 77 file_ptr output_cursor; 76 78 /* Map of section indexes to section ptrs */ … … 80 82 ieee_module_begin_type mb; 81 83 ieee_w_variable_type w; 82 84 83 85 unsigned int section_count; 84 86 85 87 unsigned int map_idx; 86 88 /* List of GLOBAL EXPORT symbols */ … … 88 90 /* List of UNDEFINED symbols */ 89 91 ieee_symbol_type *external_reference; 90 92 91 93 /* When the symbols have been canonicalized, they are in a 92 94 * special order, we remember various bases here.. */ … … 95 97 unsigned int external_symbol_count; 96 98 int external_symbol_base_offset; 97 99 98 100 unsigned int external_reference_max_index; 99 101 unsigned int external_reference_min_index; 100 102 unsigned int external_reference_count; 101 103 int external_reference_base_offset; 102 103 104 104 boolean symbol_table_full;105 105 106 107 boolean done_debug; 106 bfd_boolean symbol_table_full; 107 108 109 bfd_boolean done_debug; 108 110 109 111 … … 118 120 } ieee_ar_obstack_type; 119 121 120 typedef struct ieee_ar_data_struct 122 typedef struct ieee_ar_data_struct 121 123 { 122 124 common_header_type h; 123 125 ieee_ar_obstack_type *elements; 124 126 125 127 unsigned int element_index ; 126 128 unsigned int element_count; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.