* config/tc-mips.c: Check ECOFF_DEBUGGING rather than
[deliverable/binutils-gdb.git] / gas / config / obj-bout.c
CommitLineData
fecd2382 1/* b.out object file format
01170860 2 Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
355afbcd 3
a39116f1 4 This file is part of GAS, the GNU Assembler.
355afbcd 5
a39116f1
RP
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 2,
9 or (at your option) any later version.
355afbcd 10
a39116f1
RP
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.
355afbcd 15
a39116f1
RP
16 You should have received a copy of the GNU General Public
17 License along with GAS; see the file COPYING. If not, write
18 to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
fecd2382 19
fecd2382
RP
20#include "as.h"
21#include "obstack.h"
355afbcd
KR
22const short /* in: segT out: N_TYPE bits */
23 seg_N_TYPE[] =
24{
25 N_ABS,
26 N_TEXT,
27 N_DATA,
28 N_BSS,
29 N_UNDF, /* unknown */
355afbcd 30 N_UNDF, /* error */
5ac34ac3
ILT
31 N_UNDF, /* expression */
32 N_UNDF, /* debug */
33 N_UNDF, /* ntv */
34 N_UNDF, /* ptv */
355afbcd
KR
35 N_REGISTER, /* register */
36};
37
38const segT N_TYPE_seg[N_TYPE + 2] =
39{ /* N_TYPE == 0x1E = 32-2 */
40 SEG_UNKNOWN, /* N_UNDF == 0 */
41 SEG_GOOF,
42 SEG_ABSOLUTE, /* N_ABS == 2 */
43 SEG_GOOF,
44 SEG_TEXT, /* N_TEXT == 4 */
45 SEG_GOOF,
46 SEG_DATA, /* N_DATA == 6 */
47 SEG_GOOF,
48 SEG_BSS, /* N_BSS == 8 */
49 SEG_GOOF,
50 SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF,
51 SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF,
52 SEG_GOOF, SEG_GOOF, SEG_GOOF, SEG_GOOF,
53 SEG_REGISTER, /* dummy N_REGISTER for regs = 30 */
54 SEG_GOOF,
fecd2382
RP
55};
56
4f0bccc7 57static void obj_bout_line PARAMS ((int));
fecd2382 58
355afbcd
KR
59const pseudo_typeS obj_pseudo_table[] =
60{
355afbcd 61 {"line", obj_bout_line, 0}, /* source code line number */
355afbcd
KR
62
63/* coff debugging directives. Currently ignored silently */
64 {"def", s_ignore, 0},
65 {"dim", s_ignore, 0},
66 {"endef", s_ignore, 0},
67 {"ln", s_ignore, 0},
68 {"scl", s_ignore, 0},
69 {"size", s_ignore, 0},
70 {"tag", s_ignore, 0},
71 {"type", s_ignore, 0},
72 {"val", s_ignore, 0},
73
74/* other stuff we don't handle */
75 {"ABORT", s_ignore, 0},
76 {"ident", s_ignore, 0},
77
78 {NULL} /* end sentinel */
79}; /* obj_pseudo_table */
fecd2382
RP
80
81/* Relocation. */
82
fecd2382
RP
83/*
84 * emit_relocations()
85 *
86 * Crawl along a fixS chain. Emit the segment's relocations.
87 */
355afbcd
KR
88void
89obj_emit_relocations (where, fixP, segment_address_in_file)
90 char **where;
91 fixS *fixP; /* Fixup chain for this segment. */
92 relax_addressT segment_address_in_file;
fecd2382 93{
355afbcd
KR
94 for (; fixP; fixP = fixP->fx_next)
95 {
96 if (fixP->fx_addsy != NULL
97 || fixP->fx_r_type != NO_RELOC)
98 {
99 tc_bout_fix_to_chars (*where, fixP, segment_address_in_file);
100 *where += sizeof (struct relocation_info);
101 } /* if there's a symbol */
102 } /* for each fixup */
103
104} /* emit_relocations() */
fecd2382
RP
105
106/* Aout file generation & utilities */
107
108/* Convert a lvalue to machine dependent data */
355afbcd
KR
109void
110obj_header_append (where, headers)
111 char **where;
112 object_headers *headers;
fecd2382 113{
355afbcd
KR
114 /* Always leave in host byte order */
115
116 headers->header.a_talign = section_alignment[SEG_TEXT];
117
118 if (headers->header.a_talign < 2)
119 {
120 headers->header.a_talign = 2;
121 } /* force to at least 2 */
122
123 headers->header.a_dalign = section_alignment[SEG_DATA];
124 headers->header.a_balign = section_alignment[SEG_BSS];
125
126 headers->header.a_tload = 0;
127 headers->header.a_dload = md_section_align (SEG_DATA, H_GET_TEXT_SIZE (headers));
128
129 headers->header.a_relaxable = linkrelax;
462088b8 130
8ae35e59 131#ifdef CROSS_COMPILE
355afbcd
KR
132 md_number_to_chars (*where, headers->header.a_magic, sizeof (headers->header.a_magic));
133 *where += sizeof (headers->header.a_magic);
134 md_number_to_chars (*where, headers->header.a_text, sizeof (headers->header.a_text));
135 *where += sizeof (headers->header.a_text);
136 md_number_to_chars (*where, headers->header.a_data, sizeof (headers->header.a_data));
137 *where += sizeof (headers->header.a_data);
138 md_number_to_chars (*where, headers->header.a_bss, sizeof (headers->header.a_bss));
139 *where += sizeof (headers->header.a_bss);
140 md_number_to_chars (*where, headers->header.a_syms, sizeof (headers->header.a_syms));
141 *where += sizeof (headers->header.a_syms);
142 md_number_to_chars (*where, headers->header.a_entry, sizeof (headers->header.a_entry));
143 *where += sizeof (headers->header.a_entry);
144 md_number_to_chars (*where, headers->header.a_trsize, sizeof (headers->header.a_trsize));
145 *where += sizeof (headers->header.a_trsize);
146 md_number_to_chars (*where, headers->header.a_drsize, sizeof (headers->header.a_drsize));
147 *where += sizeof (headers->header.a_drsize);
148 md_number_to_chars (*where, headers->header.a_tload, sizeof (headers->header.a_tload));
149 *where += sizeof (headers->header.a_tload);
150 md_number_to_chars (*where, headers->header.a_dload, sizeof (headers->header.a_dload));
151 *where += sizeof (headers->header.a_dload);
152 md_number_to_chars (*where, headers->header.a_talign, sizeof (headers->header.a_talign));
153 *where += sizeof (headers->header.a_talign);
154 md_number_to_chars (*where, headers->header.a_dalign, sizeof (headers->header.a_dalign));
155 *where += sizeof (headers->header.a_dalign);
156 md_number_to_chars (*where, headers->header.a_balign, sizeof (headers->header.a_balign));
157 *where += sizeof (headers->header.a_balign);
158 md_number_to_chars (*where, headers->header.a_relaxable, sizeof (headers->header.a_relaxable));
159 *where += sizeof (headers->header.a_relaxable);
8ae35e59 160#else /* ! CROSS_COMPILE */
355afbcd 161 append (where, (char *) &headers->header, sizeof (headers->header));
8ae35e59 162#endif /* ! CROSS_COMPILE */
355afbcd 163} /* a_header_append() */
fecd2382 164
355afbcd
KR
165void
166obj_symbol_to_chars (where, symbolP)
167 char **where;
168 symbolS *symbolP;
fecd2382 169{
355afbcd
KR
170 md_number_to_chars ((char *) &(S_GET_OFFSET (symbolP)), S_GET_OFFSET (symbolP), sizeof (S_GET_OFFSET (symbolP)));
171 md_number_to_chars ((char *) &(S_GET_DESC (symbolP)), S_GET_DESC (symbolP), sizeof (S_GET_DESC (symbolP)));
85051959 172 md_number_to_chars ((char *) &symbolP->sy_symbol.n_value, S_GET_VALUE (symbolP), sizeof (symbolP->sy_symbol.n_value));
8ae35e59 173
355afbcd
KR
174 append (where, (char *) &symbolP->sy_symbol, sizeof (obj_symbol_type));
175} /* obj_symbol_to_chars() */
fecd2382 176
355afbcd
KR
177void
178obj_emit_symbols (where, symbol_rootP)
179 char **where;
180 symbolS *symbol_rootP;
fecd2382 181{
355afbcd
KR
182 symbolS *symbolP;
183
184 /*
a39116f1
RP
185 * Emit all symbols left in the symbol chain.
186 */
355afbcd
KR
187 for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))
188 {
189 /* Used to save the offset of the name. It is used to point
a39116f1 190 to the string in memory but must be a file offset. */
355afbcd
KR
191 char *temp;
192
193 temp = S_GET_NAME (symbolP);
194 S_SET_OFFSET (symbolP, symbolP->sy_name_offset);
195
196 /* Any symbol still undefined and is not a dbg symbol is made N_EXT. */
197 if (!S_IS_DEBUG (symbolP) && !S_IS_DEFINED (symbolP))
198 S_SET_EXTERNAL (symbolP);
fecd2382 199
355afbcd
KR
200 obj_symbol_to_chars (where, symbolP);
201 S_SET_NAME (symbolP, temp);
202 }
203} /* emit_symbols() */
204
205void
206obj_symbol_new_hook (symbolP)
207 symbolS *symbolP;
208{
209 S_SET_OTHER (symbolP, 0);
210 S_SET_DESC (symbolP, 0);
211 return;
212} /* obj_symbol_new_hook() */
213
214static void
4f0bccc7
ILT
215obj_bout_line (ignore)
216 int ignore;
fecd2382 217{
355afbcd
KR
218 /* Assume delimiter is part of expression. */
219 /* BSD4.2 as fails with delightful bug, so we */
220 /* are not being incompatible here. */
221 new_logical_line ((char *) NULL, (int) (get_absolute_expression ()));
222 demand_empty_rest_of_line ();
223} /* obj_bout_line() */
fecd2382 224
355afbcd
KR
225void
226obj_read_begin_hook ()
227{
228 return;
229} /* obj_read_begin_hook() */
fecd2382 230
355afbcd
KR
231void
232obj_crawl_symbol_chain (headers)
233 object_headers *headers;
fecd2382 234{
355afbcd
KR
235 symbolS **symbolPP;
236 symbolS *symbolP;
237 int symbol_number = 0;
238
355afbcd
KR
239 tc_crawl_symbol_chain (headers);
240
241 symbolPP = &symbol_rootP; /*->last symbol chain link. */
242 while ((symbolP = *symbolPP) != NULL)
243 {
244 if (flagseen['R'] && (S_GET_SEGMENT (symbolP) == SEG_DATA))
245 {
246 S_SET_SEGMENT (symbolP, SEG_TEXT);
247 } /* if pusing data into text */
248
5868b1fe 249 resolve_symbol_value (symbolP);
355afbcd
KR
250
251 /* OK, here is how we decide which symbols go out into the
4f0bccc7 252 brave new symtab. Symbols that do are:
355afbcd 253
4f0bccc7
ILT
254 * symbols with no name (stabd's?)
255 * symbols with debug info in their N_TYPE
355afbcd 256
4f0bccc7
ILT
257 Symbols that don't are:
258 * symbols that are registers
259 * symbols with \1 as their 3rd character (numeric labels)
260 * "local labels" as defined by S_LOCAL_NAME(name)
261 if the -L switch was passed to gas.
355afbcd 262
4f0bccc7
ILT
263 All other symbols are output. We complain if a deleted
264 symbol was marked external. */
355afbcd
KR
265
266
267 if (1
268 && !S_IS_REGISTER (symbolP)
269 && (!S_GET_NAME (symbolP)
270 || S_IS_DEBUG (symbolP)
fecd2382 271#ifdef TC_I960
355afbcd
KR
272 /* FIXME-SOON this ifdef seems highly dubious to me. xoxorich. */
273 || !S_IS_DEFINED (symbolP)
274 || S_IS_EXTERNAL (symbolP)
fecd2382 275#endif /* TC_I960 */
355afbcd
KR
276 || (S_GET_NAME (symbolP)[0] != '\001' && (flagseen['L'] || !S_LOCAL_NAME (symbolP)))))
277 {
278 symbolP->sy_number = symbol_number++;
279
280 /* The + 1 after strlen account for the \0 at the
fecd2382 281 end of each string */
355afbcd
KR
282 if (!S_IS_STABD (symbolP))
283 {
284 /* Ordinary case. */
285 symbolP->sy_name_offset = string_byte_count;
286 string_byte_count += strlen (S_GET_NAME (symbolP)) + 1;
287 }
288 else /* .Stabd case. */
289 symbolP->sy_name_offset = 0;
290 symbolPP = &(symbol_next (symbolP));
291 }
292 else
293 {
294 if (S_IS_EXTERNAL (symbolP) || !S_IS_DEFINED (symbolP))
295 {
296 as_bad ("Local symbol %s never defined", S_GET_NAME (symbolP));
297 } /* oops. */
298
299 /* Unhook it from the chain */
300 *symbolPP = symbol_next (symbolP);
301 } /* if this symbol should be in the output */
302 } /* for each symbol */
303
304 H_SET_SYMBOL_TABLE_SIZE (headers, symbol_number);
305
306 return;
307} /* obj_crawl_symbol_chain() */
fecd2382
RP
308
309/*
310 * Find strings by crawling along symbol table chain.
311 */
312
355afbcd
KR
313void
314obj_emit_strings (where)
315 char **where;
fecd2382 316{
355afbcd
KR
317 symbolS *symbolP;
318
3cc6716d 319#ifdef CROSS_COMPILE
355afbcd
KR
320 /* Gotta do md_ byte-ordering stuff for string_byte_count first - KWK */
321 md_number_to_chars (*where, string_byte_count, sizeof (string_byte_count));
322 *where += sizeof (string_byte_count);
3cc6716d 323#else /* CROSS_COMPILE */
355afbcd 324 append (where, (char *) &string_byte_count, (unsigned long) sizeof (string_byte_count));
3cc6716d 325#endif /* CROSS_COMPILE */
355afbcd
KR
326
327 for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))
328 {
329 if (S_GET_NAME (symbolP))
330 append (where, S_GET_NAME (symbolP), (unsigned long) (strlen (S_GET_NAME (symbolP)) + 1));
331 } /* walk symbol chain */
332
333 return;
334} /* obj_emit_strings() */
fecd2382 335
fecd2382 336/* end of obj-bout.c */
This page took 0.106428 seconds and 4 git commands to generate.