1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2013 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * outaout.c output routines for the Netwide Assembler to produce
36 * Linux a.out object files
56 #if defined OF_AOUT || defined OF_AOUTB
58 #define RELTYPE_ABSOLUTE 0x00
59 #define RELTYPE_RELATIVE 0x01
60 #define RELTYPE_GOTPC 0x01 /* no explicit GOTPC in a.out */
61 #define RELTYPE_GOTOFF 0x10
62 #define RELTYPE_GOT 0x10 /* distinct from GOTOFF bcos sym not sect */
63 #define RELTYPE_PLT 0x21
64 #define RELTYPE_SYMFLAG 0x08
68 int32_t address
; /* relative to _start_ of section */
69 int32_t symbol
; /* symbol number or -ve section id */
70 int bytes
; /* 2 or 4 */
71 int reltype
; /* see above */
75 int32_t strpos
; /* string table position of name */
76 int type
; /* symbol type - see flags below */
77 int32_t value
; /* address, or COMMON variable size */
78 int32_t size
; /* size for data or function exports */
79 int32_t segment
; /* back-reference used by gsym_reloc */
80 struct Symbol
*next
; /* list of globals in each section */
81 struct Symbol
*nextfwd
; /* list of unresolved-size symbols */
82 char *name
; /* for unresolved-size symbols */
83 int32_t symnum
; /* index into symbol table */
87 * Section IDs - used in Reloc.symbol when negative, and in
88 * Symbol.type when positive.
90 #define SECT_ABS 2 /* absolute value */
91 #define SECT_TEXT 4 /* text section */
92 #define SECT_DATA 6 /* data section */
93 #define SECT_BSS 8 /* bss section */
94 #define SECT_MASK 0xE /* mask out any of the above */
97 * More flags used in Symbol.type.
99 #define SYM_GLOBAL 1 /* it's a global symbol */
100 #define SYM_DATA 0x100 /* used for shared libs */
101 #define SYM_FUNCTION 0x200 /* used for shared libs */
102 #define SYM_WITH_SIZE 0x4000 /* not output; internal only */
105 * Bit more explanation of symbol types: SECT_xxx denotes a local
106 * symbol. SECT_xxx|SYM_GLOBAL denotes a global symbol, defined in
107 * this module. Just SYM_GLOBAL, with zero value, denotes an
108 * external symbol referenced in this module. And just SYM_GLOBAL,
109 * but with a non-zero value, declares a C `common' variable, of
115 uint32_t len
, size
, nrelocs
;
117 struct Reloc
*head
, **tail
;
118 struct Symbol
*gsyms
, *asym
;
121 static struct Section stext
, sdata
, sbss
;
123 static struct SAA
*syms
;
124 static uint32_t nsyms
;
126 static struct RAA
*bsym
;
128 static struct SAA
*strs
;
129 static uint32_t strslen
;
131 static struct Symbol
*fwds
;
136 static void aout_write(void);
137 static void aout_write_relocs(struct Reloc
*);
138 static void aout_write_syms(void);
139 static void aout_sect_write(struct Section
*, const uint8_t *,
141 static void aout_pad_sections(void);
142 static void aout_fixup_relocs(struct Section
*);
145 * Special section numbers which are used to define special
146 * symbols, which can be used with WRT to provide PIC relocation
149 static int32_t aout_gotpc_sect
, aout_gotoff_sect
;
150 static int32_t aout_got_sect
, aout_plt_sect
;
151 static int32_t aout_sym_sect
;
153 static void aoutg_init(void)
155 stext
.data
= saa_init(1L);
157 stext
.tail
= &stext
.head
;
158 sdata
.data
= saa_init(1L);
160 sdata
.tail
= &sdata
.head
;
161 stext
.len
= stext
.size
= sdata
.len
= sdata
.size
= sbss
.len
= 0;
162 stext
.nrelocs
= sdata
.nrelocs
= 0;
163 stext
.gsyms
= sdata
.gsyms
= sbss
.gsyms
= NULL
;
164 stext
.index
= seg_alloc();
165 sdata
.index
= seg_alloc();
166 sbss
.index
= seg_alloc();
167 stext
.asym
= sdata
.asym
= sbss
.asym
= NULL
;
168 syms
= saa_init((int32_t)sizeof(struct Symbol
));
178 static void aout_init(void)
183 aout_gotpc_sect
= aout_gotoff_sect
= aout_got_sect
=
184 aout_plt_sect
= aout_sym_sect
= NO_SEG
;
191 extern const struct ofmt of_aoutb
;
193 static void aoutb_init(void)
198 is_pic
= 0x00; /* may become 0x40 */
200 aout_gotpc_sect
= seg_alloc();
201 backend_label("..gotpc", aout_gotpc_sect
+ 1, 0L);
202 aout_gotoff_sect
= seg_alloc();
203 backend_label("..gotoff", aout_gotoff_sect
+ 1, 0L);
204 aout_got_sect
= seg_alloc();
205 backend_label("..got", aout_got_sect
+ 1, 0L);
206 aout_plt_sect
= seg_alloc();
207 backend_label("..plt", aout_plt_sect
+ 1, 0L);
208 aout_sym_sect
= seg_alloc();
209 backend_label("..sym", aout_sym_sect
+ 1, 0L);
214 static void aout_cleanup(void)
219 aout_fixup_relocs(&stext
);
220 aout_fixup_relocs(&sdata
);
222 saa_free(stext
.data
);
225 stext
.head
= stext
.head
->next
;
228 saa_free(sdata
.data
);
231 sdata
.head
= sdata
.head
->next
;
239 static int32_t aout_section_names(char *name
, int pass
, int *bits
)
245 * Default to 32 bits.
252 if (!strcmp(name
, ".text"))
254 else if (!strcmp(name
, ".data"))
256 else if (!strcmp(name
, ".bss"))
262 static void aout_deflabel(char *name
, int32_t segment
, int64_t offset
,
263 int is_global
, char *special
)
265 int pos
= strslen
+ 4;
267 int special_used
= false;
269 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
271 * This is a NASM special symbol. We never allow it into
272 * the a.out symbol table, even if it's a valid one. If it
273 * _isn't_ a valid one, we should barf immediately.
275 if (strcmp(name
, "..gotpc") && strcmp(name
, "..gotoff") &&
276 strcmp(name
, "..got") && strcmp(name
, "..plt") &&
277 strcmp(name
, "..sym"))
278 nasm_error(ERR_NONFATAL
, "unrecognised special symbol `%s'", name
);
282 if (is_global
== 3) {
285 * Fix up a forward-reference symbol size from the first
288 for (s
= &fwds
; *s
; s
= &(*s
)->nextfwd
)
289 if (!strcmp((*s
)->name
, name
)) {
290 struct tokenval tokval
;
294 p
= nasm_skip_spaces(nasm_skip_word(p
));
297 tokval
.t_type
= TOKEN_INVALID
;
298 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, NULL
);
301 nasm_error(ERR_NONFATAL
, "cannot use relocatable"
302 " expression as symbol size");
304 (*s
)->size
= reloc_value(e
);
308 * Remove it from the list of unresolved sizes.
310 nasm_free((*s
)->name
);
314 return; /* it wasn't an important one */
317 saa_wbytes(strs
, name
, (int32_t)(1 + strlen(name
)));
318 strslen
+= 1 + strlen(name
);
320 sym
= saa_wstruct(syms
);
323 sym
->type
= is_global
? SYM_GLOBAL
: 0;
324 sym
->segment
= segment
;
325 if (segment
== NO_SEG
)
326 sym
->type
|= SECT_ABS
;
327 else if (segment
== stext
.index
) {
328 sym
->type
|= SECT_TEXT
;
330 sym
->next
= stext
.gsyms
;
332 } else if (!stext
.asym
)
334 } else if (segment
== sdata
.index
) {
335 sym
->type
|= SECT_DATA
;
337 sym
->next
= sdata
.gsyms
;
339 } else if (!sdata
.asym
)
341 } else if (segment
== sbss
.index
) {
342 sym
->type
|= SECT_BSS
;
344 sym
->next
= sbss
.gsyms
;
346 } else if (!sbss
.asym
)
349 sym
->type
= SYM_GLOBAL
;
353 sym
->value
= (sym
->type
== SYM_GLOBAL
? 0 : offset
);
355 if (is_global
&& sym
->type
!= SYM_GLOBAL
) {
357 * Global symbol exported _from_ this module. We must check
358 * the special text for type information.
362 int n
= strcspn(special
, " ");
364 if (!nasm_strnicmp(special
, "function", n
))
365 sym
->type
|= SYM_FUNCTION
;
366 else if (!nasm_strnicmp(special
, "data", n
) ||
367 !nasm_strnicmp(special
, "object", n
))
368 sym
->type
|= SYM_DATA
;
370 nasm_error(ERR_NONFATAL
, "unrecognised symbol type `%.*s'",
373 struct tokenval tokval
;
376 char *saveme
= stdscan_get();
379 nasm_error(ERR_NONFATAL
, "Linux a.out does not support"
380 " symbol size information");
382 while (special
[n
] && nasm_isspace(special
[n
]))
385 * We have a size expression; attempt to
388 sym
->type
|= SYM_WITH_SIZE
;
390 stdscan_set(special
+ n
);
391 tokval
.t_type
= TOKEN_INVALID
;
392 e
= evaluate(stdscan
, NULL
, &tokval
, &fwd
, 0, NULL
);
396 sym
->name
= nasm_strdup(name
);
399 nasm_error(ERR_NONFATAL
, "cannot use relocatable"
400 " expression as symbol size");
402 sym
->size
= reloc_value(e
);
412 * define the references from external-symbol segment numbers
413 * to these symbol records.
415 if (segment
!= NO_SEG
&& segment
!= stext
.index
&&
416 segment
!= sdata
.index
&& segment
!= sbss
.index
)
417 bsym
= raa_write(bsym
, segment
, nsyms
);
421 if (sym
->type
& SYM_WITH_SIZE
)
422 nsyms
++; /* and another for the size */
424 if (special
&& !special_used
)
425 nasm_error(ERR_NONFATAL
, "no special symbol features supported here");
428 static void aout_add_reloc(struct Section
*sect
, int32_t segment
,
429 int reltype
, int bytes
)
433 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
434 sect
->tail
= &r
->next
;
437 r
->address
= sect
->len
;
438 r
->symbol
= (segment
== NO_SEG
? -SECT_ABS
:
439 segment
== stext
.index
? -SECT_TEXT
:
440 segment
== sdata
.index
? -SECT_DATA
:
441 segment
== sbss
.index
? -SECT_BSS
:
442 raa_read(bsym
, segment
));
443 r
->reltype
= reltype
;
445 r
->reltype
|= RELTYPE_SYMFLAG
;
452 * This routine deals with ..got and ..sym relocations: the more
453 * complicated kinds. In shared-library writing, some relocations
454 * with respect to global symbols must refer to the precise symbol
455 * rather than referring to an offset from the base of the section
456 * _containing_ the symbol. Such relocations call to this routine,
457 * which searches the symbol list for the symbol in question.
459 * RELTYPE_GOT references require the _exact_ symbol address to be
460 * used; RELTYPE_ABSOLUTE references can be at an offset from the
461 * symbol. The boolean argument `exact' tells us this.
463 * Return value is the adjusted value of `addr', having become an
464 * offset from the symbol rather than the section. Should always be
465 * zero when returning from an exact call.
467 * Limitation: if you define two symbols at the same place,
468 * confusion will occur.
470 * Inefficiency: we search, currently, using a linked list which
471 * isn't even necessarily sorted.
473 static int32_t aout_add_gsym_reloc(struct Section
*sect
,
474 int32_t segment
, int32_t offset
,
475 int type
, int bytes
, int exact
)
477 struct Symbol
*sym
, *sm
, *shead
;
481 * First look up the segment to find whether it's text, data,
482 * bss or an external symbol.
485 if (segment
== stext
.index
)
487 else if (segment
== sdata
.index
)
489 else if (segment
== sbss
.index
)
492 if (exact
&& offset
!= 0)
493 nasm_error(ERR_NONFATAL
, "unable to find a suitable global symbol"
494 " for this reference");
496 aout_add_reloc(sect
, segment
, type
, bytes
);
502 * Find a symbol pointing _exactly_ at this one.
504 list_for_each(sym
, shead
)
505 if (sym
->value
== offset
)
509 * Find the nearest symbol below this one.
512 list_for_each(sm
, shead
)
513 if (sm
->value
<= offset
&& (!sym
|| sm
->value
> sym
->value
))
517 nasm_error(ERR_NONFATAL
, "unable to find a suitable global symbol"
518 " for this reference");
522 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
523 sect
->tail
= &r
->next
;
526 r
->address
= sect
->len
;
527 r
->symbol
= sym
->symnum
;
528 r
->reltype
= type
| RELTYPE_SYMFLAG
;
533 return offset
- sym
->value
;
537 * This routine deals with ..gotoff relocations. These _must_ refer
538 * to a symbol, due to a perversity of *BSD's PIC implementation,
539 * and it must be a non-global one as well; so we store `asym', the
540 * first nonglobal symbol defined in each section, and always work
541 * from that. Relocation type is always RELTYPE_GOTOFF.
543 * Return value is the adjusted value of `addr', having become an
544 * offset from the `asym' symbol rather than the section.
546 static int32_t aout_add_gotoff_reloc(struct Section
*sect
, int32_t segment
,
547 int32_t offset
, int bytes
)
553 * First look up the segment to find whether it's text, data,
554 * bss or an external symbol.
557 if (segment
== stext
.index
)
559 else if (segment
== sdata
.index
)
561 else if (segment
== sbss
.index
)
564 nasm_error(ERR_NONFATAL
, "`..gotoff' relocations require a non-global"
565 " symbol in the section");
567 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
568 sect
->tail
= &r
->next
;
571 r
->address
= sect
->len
;
572 r
->symbol
= asym
->symnum
;
573 r
->reltype
= RELTYPE_GOTOFF
;
578 return offset
- asym
->value
;
581 static void aout_out(int32_t segto
, const void *data
,
582 enum out_type type
, uint64_t size
,
583 int32_t segment
, int32_t wrt
)
587 uint8_t mydata
[4], *p
;
589 if (segto
== stext
.index
)
591 else if (segto
== sdata
.index
)
593 else if (segto
== sbss
.index
)
596 nasm_error(ERR_WARNING
, "attempt to assemble code in"
597 " segment %d: defaulting to `.text'", segto
);
601 if (!s
&& type
!= OUT_RESERVE
) {
602 nasm_error(ERR_WARNING
, "attempt to initialize memory in the"
603 " BSS section: ignored");
604 sbss
.len
+= realsize(type
, size
);
608 memset(mydata
, 0, sizeof(mydata
));
610 if (type
== OUT_RESERVE
) {
612 nasm_error(ERR_WARNING
, "uninitialized space declared in"
613 " %s section: zeroing",
614 (segto
== stext
.index
? "code" : "data"));
615 aout_sect_write(s
, NULL
, size
);
618 } else if (type
== OUT_RAWDATA
) {
619 aout_sect_write(s
, data
, size
);
620 } else if (type
== OUT_ADDRESS
) {
621 int asize
= abs((int)size
);
622 addr
= *(int64_t *)data
;
623 if (segment
!= NO_SEG
) {
625 nasm_error(ERR_NONFATAL
, "a.out format does not support"
626 " segment base references");
629 aout_add_reloc(s
, segment
, RELTYPE_ABSOLUTE
, asize
);
631 nasm_error(ERR_NONFATAL
,
632 "Linux a.out format does not support"
634 wrt
= NO_SEG
; /* we can at least _try_ to continue */
635 } else if (wrt
== aout_gotpc_sect
+ 1) {
637 aout_add_reloc(s
, segment
, RELTYPE_GOTPC
, asize
);
638 } else if (wrt
== aout_gotoff_sect
+ 1) {
640 addr
= aout_add_gotoff_reloc(s
, segment
, addr
, asize
);
641 } else if (wrt
== aout_got_sect
+ 1) {
643 addr
= aout_add_gsym_reloc(s
, segment
, addr
, RELTYPE_GOT
,
645 } else if (wrt
== aout_sym_sect
+ 1) {
646 addr
= aout_add_gsym_reloc(s
, segment
, addr
,
647 RELTYPE_ABSOLUTE
, asize
,
649 } else if (wrt
== aout_plt_sect
+ 1) {
651 nasm_error(ERR_NONFATAL
,
652 "a.out format cannot produce non-PC-"
653 "relative PLT references");
655 nasm_error(ERR_NONFATAL
,
656 "a.out format does not support this"
658 wrt
= NO_SEG
; /* we can at least _try_ to continue */
667 aout_sect_write(s
, mydata
, asize
);
668 } else if (type
== OUT_REL2ADR
) {
669 if (segment
!= NO_SEG
&& segment
% 2) {
670 nasm_error(ERR_NONFATAL
, "a.out format does not support"
671 " segment base references");
674 aout_add_reloc(s
, segment
, RELTYPE_RELATIVE
, 2);
676 nasm_error(ERR_NONFATAL
, "Linux a.out format does not support"
678 wrt
= NO_SEG
; /* we can at least _try_ to continue */
679 } else if (wrt
== aout_plt_sect
+ 1) {
681 aout_add_reloc(s
, segment
, RELTYPE_PLT
, 2);
682 } else if (wrt
== aout_gotpc_sect
+ 1 ||
683 wrt
== aout_gotoff_sect
+ 1 ||
684 wrt
== aout_got_sect
+ 1) {
685 nasm_error(ERR_NONFATAL
, "a.out format cannot produce PC-"
686 "relative GOT references");
688 nasm_error(ERR_NONFATAL
, "a.out format does not support this"
690 wrt
= NO_SEG
; /* we can at least _try_ to continue */
694 WRITESHORT(p
, *(int64_t *)data
- (size
+ s
->len
));
695 aout_sect_write(s
, mydata
, 2L);
696 } else if (type
== OUT_REL4ADR
) {
697 if (segment
!= NO_SEG
&& segment
% 2) {
698 nasm_error(ERR_NONFATAL
, "a.out format does not support"
699 " segment base references");
702 aout_add_reloc(s
, segment
, RELTYPE_RELATIVE
, 4);
704 nasm_error(ERR_NONFATAL
, "Linux a.out format does not support"
706 wrt
= NO_SEG
; /* we can at least _try_ to continue */
707 } else if (wrt
== aout_plt_sect
+ 1) {
709 aout_add_reloc(s
, segment
, RELTYPE_PLT
, 4);
710 } else if (wrt
== aout_gotpc_sect
+ 1 ||
711 wrt
== aout_gotoff_sect
+ 1 ||
712 wrt
== aout_got_sect
+ 1) {
713 nasm_error(ERR_NONFATAL
, "a.out format cannot produce PC-"
714 "relative GOT references");
716 nasm_error(ERR_NONFATAL
, "a.out format does not support this"
718 wrt
= NO_SEG
; /* we can at least _try_ to continue */
722 WRITELONG(p
, *(int64_t *)data
- (size
+ s
->len
));
723 aout_sect_write(s
, mydata
, 4L);
727 static void aout_pad_sections(void)
729 static uint8_t pad
[] = { 0x90, 0x90, 0x90, 0x90 };
731 * Pad each of the text and data sections with NOPs until their
732 * length is a multiple of four. (NOP == 0x90.) Also increase
733 * the length of the BSS section similarly.
735 aout_sect_write(&stext
, pad
, (-(int32_t)stext
.len
) & 3);
736 aout_sect_write(&sdata
, pad
, (-(int32_t)sdata
.len
) & 3);
737 sbss
.len
= ALIGN(sbss
.len
, 4);
741 * a.out files have the curious property that all references to
742 * things in the data or bss sections are done by addresses which
743 * are actually relative to the start of the _text_ section, in the
744 * _file_. (No relation to what happens after linking. No idea why
745 * this should be so. It's very strange.) So we have to go through
746 * the relocation table, _after_ the final size of each section is
747 * known, and fix up the relocations pointed to.
749 static void aout_fixup_relocs(struct Section
*sect
)
753 saa_rewind(sect
->data
);
754 list_for_each(r
, sect
->head
) {
755 uint8_t *p
, *q
, blk
[4];
758 saa_fread(sect
->data
, r
->address
, blk
, (int32_t)r
->bytes
);
762 l
+= ((int32_t)*p
++) << 8;
764 l
+= ((int32_t)*p
++) << 16;
765 l
+= ((int32_t)*p
++) << 24;
768 if (r
->symbol
== -SECT_DATA
)
770 else if (r
->symbol
== -SECT_BSS
)
771 l
+= stext
.len
+ sdata
.len
;
774 else if (r
->bytes
== 2)
778 saa_fwrite(sect
->data
, r
->address
, blk
, (int32_t)r
->bytes
);
782 static void aout_write(void)
785 * Emit the a.out header.
787 /* OMAGIC, M_386 or MID_I386, no flags */
788 fwriteint32_t(bsd
? 0x07018600 | is_pic
: 0x640107L
, ofile
);
789 fwriteint32_t(stext
.len
, ofile
);
790 fwriteint32_t(sdata
.len
, ofile
);
791 fwriteint32_t(sbss
.len
, ofile
);
792 fwriteint32_t(nsyms
* 12, ofile
); /* length of symbol table */
793 fwriteint32_t(0L, ofile
); /* object files have no entry point */
794 fwriteint32_t(stext
.nrelocs
* 8, ofile
); /* size of text relocs */
795 fwriteint32_t(sdata
.nrelocs
* 8, ofile
); /* size of data relocs */
798 * Write out the code section and the data section.
800 saa_fpwrite(stext
.data
, ofile
);
801 saa_fpwrite(sdata
.data
, ofile
);
804 * Write out the relocations.
806 aout_write_relocs(stext
.head
);
807 aout_write_relocs(sdata
.head
);
810 * Write the symbol table.
815 * And the string table.
817 fwriteint32_t(strslen
+ 4, ofile
); /* length includes length count */
818 saa_fpwrite(strs
, ofile
);
821 static void aout_write_relocs(struct Reloc
*r
)
823 list_for_each(r
, r
) {
826 fwriteint32_t(r
->address
, ofile
);
832 word2
|= r
->reltype
<< 24;
833 word2
|= (r
->bytes
== 1 ? 0 :
834 r
->bytes
== 2 ? 0x2000000L
: 0x4000000L
);
835 fwriteint32_t(word2
, ofile
);
839 static void aout_write_syms(void)
844 for (i
= 0; i
< nsyms
; i
++) {
845 struct Symbol
*sym
= saa_rstruct(syms
);
846 fwriteint32_t(sym
->strpos
, ofile
);
847 fwriteint32_t((int32_t)sym
->type
& ~SYM_WITH_SIZE
, ofile
);
849 * Fix up the symbol value now we know the final section
852 if ((sym
->type
& SECT_MASK
) == SECT_DATA
)
853 sym
->value
+= stext
.len
;
854 if ((sym
->type
& SECT_MASK
) == SECT_BSS
)
855 sym
->value
+= stext
.len
+ sdata
.len
;
856 fwriteint32_t(sym
->value
, ofile
);
858 * Output a size record if necessary.
860 if (sym
->type
& SYM_WITH_SIZE
) {
861 fwriteint32_t(sym
->strpos
, ofile
);
862 fwriteint32_t(0x0DL
, ofile
); /* special value: means size */
863 fwriteint32_t(sym
->size
, ofile
);
864 i
++; /* use up another of `nsyms' */
869 static void aout_sect_write(struct Section
*sect
,
870 const uint8_t *data
, uint32_t len
)
872 saa_wbytes(sect
->data
, data
, len
);
876 extern macros_t aout_stdmac
[];
878 #endif /* OF_AOUT || OF_AOUTB */
882 const struct ofmt of_aout
= {
883 "Linux a.out object files",
893 nasm_do_legacy_output
,
902 NULL
/* pragma list */
909 const struct ofmt of_aoutb
= {
910 "NetBSD/FreeBSD a.out object files",
920 nasm_do_legacy_output
,
929 NULL
/* pragma list */