1 /* HP PA-RISC SOM object file format: definitions internal to BFD.
2 Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
4 Contributed by the Center for Software Science at the
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #include "../bfd/sysdep.h"
34 #if defined(HOST_HPPABSD) || defined (HOST_HPPAOSF)
35 /* BSD uses a completely different scheme for object file identification.
36 so for now, define _PA_RISC_ID to accept any random value for a model
39 #define _PA_RISC_ID(__m_num) 1
40 #endif /* HOST_HPPABSD */
42 #define FILE_HDR_SIZE sizeof(struct header)
43 #define AUX_HDR_SIZE sizeof(struct som_exec_auxhdr)
45 typedef struct som_symbol
48 unsigned int som_type;
50 /* Structured like the ELF tc_data union. Allows more code sharing
54 unsigned int hppa_arg_reloc;
59 /* Index of this symbol in the symbol table. Only used when
60 building relocation streams for incomplete objects. */
63 /* How many times this symbol is used in a relocation. By sorting
64 the symbols from most used to least used we can significantly
65 reduce the size of the relocation stream for incomplete objects. */
68 /* During object file writing, the offset of the name of this symbol
69 in the SOM string table. */
74 /* A structure containing all the magic information stored in a BFD's
75 private data which needs to be copied during an objcopy/strip run. */
78 /* Sort-of a magic number. BSD uses it to distinguish between
79 native executables and hpux executables. */
82 /* Magic exec flags. These control things like whether or not
83 null pointer dereferencing is allowed and the like. */
86 /* Add more stuff here as needed. Good examples of information
87 we might want to pass would be presumed_dp, entry_* and maybe
88 others from the file header. */
93 /* All the magic information about an executable which lives
94 in the private BFD structure and needs to be copied from
95 the input bfd to the output bfd during a objcopy/strip. */
96 struct som_exec_data *exec_data;
98 /* These three fields are only used when writing files and are
99 generated from scratch. They need not be copied for objcopy
101 struct header *file_hdr;
102 struct copyright_aux_hdr *copyright_aux_hdr;
103 struct user_string_aux_hdr *version_aux_hdr;
104 struct som_exec_auxhdr *exec_hdr;
106 /* Pointers to a saved copy of the symbol and string tables. These
107 need not be copied for objcopy or strip to work. */
108 som_symbol_type *symtab;
111 /* We remember these offsets so that after check_file_format, we have
112 no dependencies on the particular format of the exec_hdr.
113 These offsets need not be copied for objcopy or strip to work. */
115 file_ptr sym_filepos;
116 file_ptr str_filepos;
117 file_ptr reloc_filepos;
118 unsigned stringtab_size;
121 struct som_data_struct
126 /* Substructure of som_section_data_struct used to hold information
127 which can't be represented by the generic BFD section structure,
128 but which must be copied during objcopy or strip. */
129 struct som_copyable_section_data_struct
131 /* Various fields in space and subspace headers that we need
133 unsigned int sort_key : 8;
134 unsigned int access_control_bits : 7;
135 unsigned int is_defined : 1;
136 unsigned int is_private : 1;
137 unsigned int quadrant : 2;
139 /* For subspaces, this points to the section which represents the
140 space in which the subspace is contained. For spaces it points
141 back to the section for this space. */
144 /* The user-specified space number. It is wrong to use this as
145 an index since duplicates and holes are allowed. */
148 /* Add more stuff here as needed. Good examples of information
149 we might want to pass would be initialization pointers,
150 and the many subspace flags we do not represent yet. */
153 /* Used to keep extra SOM specific information for a given section.
155 reloc_size holds the size of the relocation stream, note this
156 is very different from the number of relocations as SOM relocations
159 reloc_stream is the actual stream of relocation entries. */
161 struct som_section_data_struct
163 struct som_copyable_section_data_struct *copy_data;
164 unsigned int reloc_size;
166 struct space_dictionary_record *space_dict;
167 struct subspace_dictionary_record *subspace_dict;
170 #define somdata(bfd) ((bfd)->tdata.som_data->a)
171 #define obj_som_exec_data(bfd) (somdata(bfd).exec_data)
172 #define obj_som_file_hdr(bfd) (somdata(bfd).file_hdr)
173 #define obj_som_exec_hdr(bfd) (somdata(bfd).exec_hdr)
174 #define obj_som_copyright_hdr(bfd) (somdata(bfd).copyright_aux_hdr)
175 #define obj_som_version_hdr(bfd) (somdata(bfd).version_aux_hdr)
176 #define obj_som_symtab(bfd) (somdata(bfd).symtab)
177 #define obj_som_stringtab(bfd) (somdata(bfd).stringtab)
178 #define obj_som_sym_filepos(bfd) (somdata(bfd).sym_filepos)
179 #define obj_som_str_filepos(bfd) (somdata(bfd).str_filepos)
180 #define obj_som_stringtab_size(bfd) (somdata(bfd).stringtab_size)
181 #define obj_som_reloc_filepos(bfd) (somdata(bfd).reloc_filepos)
182 #define som_section_data(sec) \
183 ((struct som_section_data_struct *)sec->used_by_bfd)
184 #define som_symbol_data(symbol) ((som_symbol_type *) symbol)
187 /* Defines groups of basic relocations. FIXME: These should
188 be the only basic relocations created by GAS. The rest
189 should be internal to the BFD backend.
191 The idea is both SOM and ELF define these basic relocation
192 types so they map into a SOM or ELF specific reloation as
193 appropriate. This allows GAS to share much more code
194 between the two object formats. */
196 #define R_HPPA_NONE R_NO_RELOCATION
197 #define R_HPPA R_CODE_ONE_SYMBOL
198 #define R_HPPA_PCREL_CALL R_PCREL_CALL
199 #define R_HPPA_ABS_CALL R_ABS_CALL
200 #define R_HPPA_GOTOFF R_DP_RELATIVE
201 #define R_HPPA_ENTRY R_ENTRY
202 #define R_HPPA_EXIT R_EXIT
203 #define R_HPPA_COMPLEX R_COMP1
205 /* Exported functions, mostly for use by GAS. */
206 boolean bfd_som_set_section_attributes PARAMS ((asection *, int, int,
208 boolean bfd_som_set_subsection_attributes PARAMS ((asection *, asection *,
209 int, unsigned int, int));
210 void bfd_som_set_symbol_type PARAMS ((asymbol *, unsigned int));
211 boolean bfd_som_attach_aux_hdr PARAMS ((bfd *, int, char *));
212 int ** hppa_som_gen_reloc_type
213 PARAMS ((bfd *, int, int, enum hppa_reloc_field_selector_type_alt));