Initial revision
[binutils.git] / gas / config / obj-ieee.c
blob30a0798e295206e0f440e89081d4401f779ed56c
1 /* obj-format for ieee-695 records.
2 Copyright (C) 1991, 92, 93, 94, 95, 1997, 1998 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 published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GAS 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.
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, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
23 created by
25 steve chamberlain steve@cygnus.com
29 this will hopefully become the port through which bfd and gas talk,
30 for the moment, only ieee is known to work well.
33 #include "bfd.h"
34 #include "as.h"
35 #include "subsegs.h"
36 #include "output-file.h"
37 #include "frags.h"
39 bfd *abfd;
41 /* How many addresses does the .align take? */
42 static relax_addressT
43 relax_align (address, alignment)
44 register relax_addressT address; /* Address now. */
45 register long alignment; /* Alignment (binary). */
47 relax_addressT mask;
48 relax_addressT new_address;
50 mask = ~((~0) << alignment);
51 new_address = (address + mask) & (~mask);
52 return (new_address - address);
53 } /* relax_align() */
55 /* calculate the size of the frag chain and create a bfd section
56 to contain all of it */
57 static void
58 DEFUN (size_section, (abfd, idx),
59 bfd * abfd AND
60 unsigned int idx)
62 asection *sec;
63 unsigned int size = 0;
64 fragS *frag = segment_info[idx].frag_root;
65 while (frag)
67 if (frag->fr_address != size)
69 printf (_("Out of step\n"));
70 size = frag->fr_address;
72 size += frag->fr_fix;
73 switch (frag->fr_type)
75 case rs_fill:
76 case rs_org:
77 size += frag->fr_offset * frag->fr_var;
78 break;
79 case rs_align:
80 case rs_align_code:
82 addressT off;
84 off = relax_align (size, frag->fr_offset);
85 if (frag->fr_subtype != 0 && off > frag->fr_subtype)
86 off = 0;
87 size += off;
90 frag = frag->fr_next;
92 if (size)
94 char *name = segment_info[idx].name;
95 if (name == (char *) NULL)
97 name = ".data";
99 segment_info[idx].user_stuff = (char *) (sec = bfd_make_section (abfd, name));
100 /* Make it output through itself */
101 sec->output_section = sec;
102 sec->flags |= SEC_HAS_CONTENTS;
103 bfd_set_section_size (abfd, sec, size);
107 /* run through a frag chain and write out the data to go with it */
108 static void
109 DEFUN (fill_section, (abfd, idx),
110 bfd * abfd AND
111 unsigned int idx)
113 asection *sec = segment_info[idx].user_stuff;
114 if (sec)
116 fragS *frag = segment_info[idx].frag_root;
117 unsigned int offset = 0;
118 while (frag)
120 unsigned int fill_size;
121 unsigned int count;
122 switch (frag->fr_type)
124 case rs_fill:
125 case rs_align:
126 case rs_org:
127 if (frag->fr_fix)
129 bfd_set_section_contents (abfd,
130 sec,
131 frag->fr_literal,
132 frag->fr_address,
133 frag->fr_fix);
135 offset += frag->fr_fix;
136 fill_size = frag->fr_var;
137 if (fill_size)
139 unsigned int off = frag->fr_fix;
140 for (count = frag->fr_offset; count; count--)
142 bfd_set_section_contents (abfd, sec,
143 frag->fr_literal +
144 frag->fr_fix,
145 frag->fr_address + off,
146 fill_size);
147 off += fill_size;
150 break;
151 default:
152 abort ();
154 frag = frag->fr_next;
159 /* Count the relocations in a chain */
161 static unsigned int
162 DEFUN (count_entries_in_chain, (idx),
163 unsigned int idx)
165 unsigned int nrelocs;
166 fixS *fixup_ptr;
168 /* Count the relocations */
169 fixup_ptr = segment_info[idx].fix_root;
170 nrelocs = 0;
171 while (fixup_ptr != (fixS *) NULL)
173 fixup_ptr = fixup_ptr->fx_next;
174 nrelocs++;
176 return nrelocs;
179 /* output all the relocations for a section */
180 void
181 DEFUN (do_relocs_for, (idx),
182 unsigned int idx)
184 unsigned int nrelocs;
185 arelent **reloc_ptr_vector;
186 arelent *reloc_vector;
187 asymbol **ptrs;
188 asection *section = (asection *) (segment_info[idx].user_stuff);
189 unsigned int i;
190 fixS *from;
191 if (section)
193 nrelocs = count_entries_in_chain (idx);
195 reloc_ptr_vector = (arelent **) malloc ((nrelocs + 1) * sizeof (arelent *));
196 reloc_vector = (arelent *) malloc (nrelocs * sizeof (arelent));
197 ptrs = (asymbol **) malloc (nrelocs * sizeof (asymbol *));
198 from = segment_info[idx].fix_root;
199 for (i = 0; i < nrelocs; i++)
201 arelent *to = reloc_vector + i;
202 asymbol *s;
203 reloc_ptr_vector[i] = to;
204 to->howto = (reloc_howto_type *) (from->fx_r_type);
206 #if 0 /* We can't represent complicated things in a reloc yet */
207 if (from->fx_addsy == 0 || from->fx_subsy != 0) abort();
208 #endif
210 s = &(from->fx_addsy->sy_symbol.sy);
211 to->address = ((char *) (from->fx_frag->fr_address +
212 from->fx_where))
213 - ((char *) (&(from->fx_frag->fr_literal)));
214 to->addend = from->fx_offset;
215 /* If we know the symbol which we want to relocate to, turn
216 this reloaction into a section relative.
218 If this relocation is pcrelative, and we know the
219 destination, we still want to keep the relocation - since
220 the linker might relax some of the bytes, but it stops
221 being pc relative and turns into an absolute relocation. */
222 if (s)
224 if ((s->flags & BSF_UNDEFINED) == 0)
226 to->section = s->section;
228 /* We can refer directly to the value field here,
229 rather than using S_GET_VALUE, because this is
230 only called after do_symbols, which sets up the
231 value field. */
232 to->addend += s->value;
234 to->sym_ptr_ptr = 0;
235 if (to->howto->pcrel_offset)
237 /* This is a pcrel relocation, the addend should be adjusted */
238 to->addend -= to->address + 1;
241 else
243 to->section = 0;
244 *ptrs = &(from->fx_addsy->sy_symbol.sy);
245 to->sym_ptr_ptr = ptrs;
247 if (to->howto->pcrel_offset)
249 /* This is a pcrel relocation, the addend should be adjusted */
250 to->addend -= to->address - 1;
255 else
257 to->section = 0;
260 ptrs++;
261 from = from->fx_next;
264 /* attatch to the section */
265 section->orelocation = reloc_ptr_vector;
266 section->reloc_count = nrelocs;
267 section->flags |= SEC_LOAD;
271 /* do the symbols.. */
272 static void
273 DEFUN (do_symbols, (abfd),
274 bfd * abfd)
276 extern symbolS *symbol_rootP;
277 symbolS *ptr;
278 asymbol **symbol_ptr_vec;
279 asymbol *symbol_vec;
280 unsigned int count = 0;
281 unsigned int index;
284 for (ptr = symbol_rootP;
285 ptr != (symbolS *) NULL;
286 ptr = ptr->sy_next)
288 if (SEG_NORMAL (ptr->sy_symbol.seg))
290 ptr->sy_symbol.sy.section =
291 (asection *) (segment_info[ptr->sy_symbol.seg].user_stuff);
292 S_SET_VALUE (ptr, S_GET_VALUE (ptr) + ptr->sy_frag->fr_address);
293 if (ptr->sy_symbol.sy.flags == 0)
295 ptr->sy_symbol.sy.flags = BSF_LOCAL;
298 else
300 switch (ptr->sy_symbol.seg)
302 case SEG_ABSOLUTE:
303 ptr->sy_symbol.sy.flags |= BSF_ABSOLUTE;
304 ptr->sy_symbol.sy.section = 0;
305 break;
306 case SEG_UNKNOWN:
307 ptr->sy_symbol.sy.flags = BSF_UNDEFINED;
308 ptr->sy_symbol.sy.section = 0;
309 break;
310 default:
311 abort ();
314 ptr->sy_symbol.sy.value = S_GET_VALUE (ptr);
315 count++;
317 symbol_ptr_vec = (asymbol **) malloc ((count + 1) * sizeof (asymbol *));
319 index = 0;
320 for (ptr = symbol_rootP;
321 ptr != (symbolS *) NULL;
322 ptr = ptr->sy_next)
324 symbol_ptr_vec[index] = &(ptr->sy_symbol.sy);
325 index++;
327 symbol_ptr_vec[index] = 0;
328 abfd->outsymbols = symbol_ptr_vec;
329 abfd->symcount = count;
332 /* The generic as->bfd converter. Other backends may have special case
333 code */
335 void
336 DEFUN_VOID (bfd_as_write_hook)
338 int i;
340 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
342 size_section (abfd, i);
346 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
347 fill_section (abfd, i);
349 do_symbols (abfd);
351 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
352 do_relocs_for (i);
356 S_SET_SEGMENT (x, y)
357 symbolS *x;
358 int y;
360 x->sy_symbol.seg = y;
363 S_IS_DEFINED (x)
364 symbolS *x;
366 if (SEG_NORMAL (x->sy_symbol.seg))
368 return 1;
370 switch (x->sy_symbol.seg)
372 case SEG_UNKNOWN:
373 return 0;
374 default:
375 abort ();
379 S_IS_EXTERNAL (x)
381 abort ();
384 S_GET_DESC (x)
386 abort ();
389 S_GET_SEGMENT (x)
390 symbolS *x;
392 return x->sy_symbol.seg;
395 S_SET_EXTERNAL (x)
396 symbolS *x;
398 x->sy_symbol.sy.flags |= BSF_GLOBAL | BSF_EXPORT;
401 S_SET_NAME (x, y)
402 symbolS *x;
403 char *y;
405 x->sy_symbol.sy.name = y;
408 S_GET_OTHER (x)
410 abort ();
413 S_IS_DEBUG (x)
415 abort ();
418 #ifndef segment_name
419 char *
420 segment_name ()
422 abort ();
424 #endif
426 void
427 obj_read_begin_hook ()
431 static void
432 obj_ieee_section (ignore)
433 int ignore;
435 extern char *input_line_pointer;
436 extern char is_end_of_line[];
437 char *p = input_line_pointer;
438 char *s = p;
439 int i;
440 /* Look up the name, if it doesn't exist, make it */
441 while (*p && *p != ' ' && *p != ',' && !is_end_of_line[*p])
443 p++;
445 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
447 if (segment_info[i].hadone)
449 if (strncmp (segment_info[i].name, s, p - s) == 0)
451 goto ok;
455 else
456 break;
458 if (i == SEG_UNKNOWN)
460 as_bad (_("too many sections"));
461 return;
464 segment_info[i].hadone = 1;
465 segment_info[i].name = malloc (p - s + 1);
466 memcpy (segment_info[i].name, s, p - s);
467 segment_info[i].name[p - s] = 0;
469 subseg_set (i, 0);
470 while (!is_end_of_line[*p])
471 p++;
472 input_line_pointer = p;
477 void cons ();
478 void s_ignore ();
481 void s_globl ();
482 const pseudo_typeS obj_pseudo_table[] =
484 {"section", obj_ieee_section, 0},
485 {"data.b", cons, 1},
486 {"data.w", cons, 2},
487 {"data.l", cons, 4},
488 {"export", s_globl, 0},
489 {"option", s_ignore, 0},
490 {"end", s_ignore, 0},
491 {"import", s_ignore, 0},
492 {"sdata", stringer, 0},
499 void
500 obj_symbol_new_hook (symbolP)
501 symbolS *symbolP;
503 symbolP->sy_symbol.sy.the_bfd = abfd;
510 #if 1
511 extern void
512 DEFUN_VOID (write_object_file)
514 int i;
515 struct frchain *frchain_ptr;
516 struct frag *frag_ptr;
518 abfd = bfd_openw (out_file_name, "ieee");
520 if (abfd == 0)
522 as_perror (_("FATAL: Can't create %s"), out_file_name);
523 exit (EXIT_FAILURE);
525 bfd_set_format (abfd, bfd_object);
526 bfd_set_arch_mach (abfd, bfd_arch_h8300, 0);
527 subseg_set (1, 0);
528 subseg_set (2, 0);
529 subseg_set (3, 0);
530 for (frchain_ptr = frchain_root;
531 frchain_ptr != (struct frchain *) NULL;
532 frchain_ptr = frchain_ptr->frch_next)
534 /* Run through all the sub-segments and align them up. Also close any
535 open frags. We tack a .fill onto the end of the frag chain so
536 that any .align's size can be worked by looking at the next
537 frag. */
539 subseg_set (frchain_ptr->frch_seg, frchain_ptr->frch_subseg);
540 #ifndef SUB_SEGMENT_ALIGN
541 #define SUB_SEGMENT_ALIGN(SEG) 2
542 #endif
543 frag_align (SUB_SEGMENT_ALIGN (now_seg), 0, 0);
544 frag_wane (frag_now);
545 frag_now->fr_fix = 0;
546 know (frag_now->fr_next == NULL);
549 /* Now build one big frag chain for each segment, linked through
550 fr_next. */
551 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
554 fragS **prev_frag_ptr_ptr;
555 struct frchain *next_frchain_ptr;
557 /* struct frag **head_ptr = segment_info[i].frag_root;*/
559 segment_info[i].frag_root = segment_info[i].frchainP->frch_root;
560 #if 0
561 /* Im not sure what this is for */
562 for (frchain_ptr = segment_info[i].frchainP->frch_root;
563 frchain_ptr != (struct frchain *) NULL;
564 frchain_ptr = frchain_ptr->frch_next)
566 *head_ptr = frchain_ptr;
567 head_ptr = &frchain_ptr->next;
571 #endif
574 for (i = SEG_E0; i < SEG_UNKNOWN; i++)
576 relax_segment (segment_info[i].frag_root, i);
579 /* Now the addresses of the frags are correct within the segment */
581 bfd_as_write_hook ();
582 bfd_close (abfd);
585 #endif
587 H_SET_TEXT_SIZE (a, b)
589 abort ();
592 H_GET_TEXT_SIZE ()
594 abort ();
597 H_SET_BSS_SIZE ()
599 abort ();
602 H_SET_STRING_SIZE ()
604 abort ();
607 H_SET_RELOCATION_SIZE ()
609 abort ();
612 H_SET_MAGIC_NUMBER ()
614 abort ();
617 H_GET_FILE_SIZE ()
619 abort ();
622 H_GET_TEXT_RELOCATION_SIZE ()
624 abort ();
627 /* end of obj-ieee.c */