1 /* SOM object file format.
2 Copyright (C) 1993-2024 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 3,
9 or (at your option) any later version.
11 GAS is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 Written by the Center for Software Science at the University of Utah
22 and by Cygnus Support. */
26 #include "aout/stab_gnu.h"
28 static int version_seen
= 0;
29 static int copyright_seen
= 0;
30 static int compiler_seen
= 0;
35 obj_read_begin_hook (void)
39 /* Handle a .compiler directive. This is intended to create the
40 compilation unit auxiliary header for MPE such that the linkeditor
41 can handle SOM extraction from archives. The format of the quoted
42 string is "sourcefile language version" and is delimited by blanks. */
45 obj_som_compiler (int unused ATTRIBUTE_UNUSED
)
56 as_bad (_("Only one .compiler pseudo-op per file!"));
57 ignore_rest_of_line ();
62 if (*input_line_pointer
== '\"')
64 buf
= input_line_pointer
;
66 while (is_a_char (next_char_of_string ()))
68 c
= *input_line_pointer
;
69 *input_line_pointer
= '\000';
73 as_bad (_("Expected quoted string"));
74 ignore_rest_of_line ();
78 /* Parse the quoted string into its component parts. Skip the
82 while (*p
!= ' ' && *p
!= '\000')
86 as_bad (_(".compiler directive missing language and version"));
92 while (*p
!= ' ' && *p
!= '\000')
96 as_bad (_(".compiler directive missing version"));
104 /* Remove the trailing quote. */
108 if (! bfd_som_attach_compilation_unit (stdoutput
, filename
, language_name
,
109 "GNU Tools", version_id
))
111 bfd_perror (stdoutput
->filename
);
112 as_fatal (_("FATAL: Attaching compiler header %s"), stdoutput
->filename
);
114 *input_line_pointer
= c
;
115 demand_empty_rest_of_line ();
118 /* Handle a .version directive. */
121 obj_som_version (int unused ATTRIBUTE_UNUSED
)
127 as_bad (_("Only one .version pseudo-op per file!"));
128 ignore_rest_of_line ();
133 if (*input_line_pointer
== '\"')
135 version
= input_line_pointer
;
136 ++input_line_pointer
;
137 while (is_a_char (next_char_of_string ()))
139 c
= *input_line_pointer
;
140 *input_line_pointer
= '\000';
144 as_bad (_("Expected quoted string"));
145 ignore_rest_of_line ();
150 if (!bfd_som_attach_aux_hdr (stdoutput
, VERSION_AUX_ID
, version
))
151 as_fatal (_("attaching version header %s: %s"),
152 stdoutput
->filename
, bfd_errmsg (bfd_get_error ()));
154 *input_line_pointer
= c
;
155 demand_empty_rest_of_line ();
158 /* Handle a .copyright directive. This probably isn't complete, but
159 it's of dubious value anyway and (IMHO) not worth the time to finish.
160 If you care about copyright strings that much, you fix it. */
163 obj_som_copyright (int unused ATTRIBUTE_UNUSED
)
169 as_bad (_("Only one .copyright pseudo-op per file!"));
170 ignore_rest_of_line ();
175 if (*input_line_pointer
== '\"')
177 copyright
= input_line_pointer
;
178 ++input_line_pointer
;
179 while (is_a_char (next_char_of_string ()))
181 c
= *input_line_pointer
;
182 *input_line_pointer
= '\000';
186 as_bad (_("Expected quoted string"));
187 ignore_rest_of_line ();
192 if (!bfd_som_attach_aux_hdr (stdoutput
, COPYRIGHT_AUX_ID
, copyright
))
193 as_fatal (_("attaching copyright header %s: %s"),
194 stdoutput
->filename
, bfd_errmsg (bfd_get_error ()));
196 *input_line_pointer
= c
;
197 demand_empty_rest_of_line ();
200 /* Perform any initialization necessary for stabs support.
202 For SOM we need to create the space which will contain the
203 two stabs subspaces. Additionally we need to set up the
204 space/subspace relationships and set space/subspace attributes
205 which BFD does not understand. */
208 obj_som_init_stab_section (segT stab
, segT stabstr
)
210 segT saved_seg
= now_seg
;
212 subsegT saved_subseg
= now_subseg
;
217 /* Nothing to do if the section has already been created. */
218 if (bfd_get_section_by_name (stdoutput
, "$GDB_DEBUG$"))
221 /* Make the space which will contain the debug subspaces. */
222 space
= bfd_make_section_old_way (stdoutput
, "$GDB_DEBUG$");
224 /* Set SOM specific attributes for the space. In particular we set
225 the space "defined", "private", "sort_key", and "spnum" values.
227 Due to a bug in pxdb (called by hpux linker), the sort keys
228 of the various stabs spaces/subspaces need to be "small". We
229 reserve range 72/73 which appear to work well. */
230 obj_set_section_attributes (space
, 1, 1, 72, 2);
231 bfd_set_section_alignment (space
, 2);
233 /* Set the containing space for both stab sections to be $GDB_DEBUG$
234 (just created above). Also set some attributes which BFD does
235 not understand. In particular, access bits, sort keys, and load
237 obj_set_subsection_attributes (stab
, space
, 0x1f, 73, 0, 0, 0, 0);
238 bfd_set_section_alignment (stab
, 2);
240 /* Make some space for the first special stab entry and zero the memory.
241 It contains information about the length of this file's
242 stab string and the like. Using it avoids the need to
243 relocate the stab strings.
245 The $GDB_STRINGS$ space will be created as a side effect of
246 the call to get_stab_string_offset. */
249 file
= as_where ((unsigned int *) NULL
);
250 stroff
= get_stab_string_offset (file
, stabstr
);
252 md_number_to_chars (p
, stroff
, 4);
253 seg_info (stab
)->stabu
.p
= p
;
255 /* Set the containing space for both stab sections to be $GDB_DEBUG$
256 (just created above). Also set some attributes which BFD does
257 not understand. In particular, access bits, sort keys, and load
259 obj_set_subsection_attributes (stabstr
, space
, 0x1f, 72, 0, 0, 0, 0);
260 bfd_set_section_alignment (stabstr
, 2);
262 subseg_set (saved_seg
, saved_subseg
);
265 /* Fill in the counts in the first entry in a .stabs section. */
268 adjust_stab_sections (bfd
*abfd
, asection
*sec
, void *xxx ATTRIBUTE_UNUSED
)
274 if (strcmp ("$GDB_SYMBOLS$", sec
->name
))
277 strsec
= bfd_get_section_by_name (abfd
, "$GDB_STRINGS$");
279 strsz
= bfd_section_size (strsec
);
282 nsyms
= bfd_section_size (sec
) / 12 - 1;
284 p
= seg_info (sec
)->stabu
.p
;
287 bfd_h_put_16 (abfd
, (bfd_vma
) nsyms
, (bfd_byte
*) p
+ 6);
288 bfd_h_put_32 (abfd
, (bfd_vma
) strsz
, (bfd_byte
*) p
+ 8);
291 /* Called late in the assembly phase to adjust the special
292 stab entry and to set the starting address for each code subspace. */
297 bfd_map_over_sections (stdoutput
, adjust_stab_sections
, (void *) 0);
301 obj_som_weak (int ignore ATTRIBUTE_UNUSED
)
309 c
= get_symbol_name (&name
);
310 symbolP
= symbol_find_or_make (name
);
311 *input_line_pointer
= c
;
312 SKIP_WHITESPACE_AFTER_NAME ();
313 S_SET_WEAK (symbolP
);
316 input_line_pointer
++;
318 if (*input_line_pointer
== '\n')
323 demand_empty_rest_of_line ();
326 const pseudo_typeS obj_pseudo_table
[] =
328 {"weak", obj_som_weak
, 0},