1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2009 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 * outcoff.c output routines for the Netwide Assembler to produce
36 * COFF object files (for DJGPP and Win32)
53 #include "output/outform.h"
54 #include "output/outlib.h"
56 #if defined(OF_COFF) || defined(OF_WIN32) || defined(OF_WIN64)
61 * (0) When I say `standard COFF' below, I mean `COFF as output and
62 * used by DJGPP'. I assume DJGPP gets it right.
64 * (1) Win32 appears to interpret the term `relative relocation'
65 * differently from standard COFF. Standard COFF understands a
66 * relative relocation to mean that during relocation you add the
67 * address of the symbol you're referencing, and subtract the base
68 * address of the section you're in. Win32 COFF, by contrast, seems
69 * to add the address of the symbol and then subtract the address
70 * of THE BYTE AFTER THE RELOCATED DWORD. Hence the two formats are
71 * subtly incompatible.
73 * (2) Win32 doesn't bother putting any flags in the header flags
74 * field (at offset 0x12 into the file).
76 * (3) Win32 uses some extra flags into the section header table:
77 * it defines flags 0x80000000 (writable), 0x40000000 (readable)
78 * and 0x20000000 (executable), and uses them in the expected
79 * combinations. It also defines 0x00100000 through 0x00700000 for
80 * section alignments of 1 through 64 bytes.
82 * (4) Both standard COFF and Win32 COFF seem to use the DWORD
83 * field directly after the section name in the section header
84 * table for something strange: they store what the address of the
85 * section start point _would_ be, if you laid all the sections end
86 * to end starting at zero. Dunno why. Microsoft's documentation
87 * lists this field as "Virtual Size of Section", which doesn't
88 * seem to fit at all. In fact, Win32 even includes non-linked
89 * sections such as .drectve in this calculation.
91 * Newer versions of MASM seem to have changed this to be zero, and
92 * that apparently matches the COFF spec, so go with that.
94 * (5) Standard COFF does something very strange to common
95 * variables: the relocation point for a common variable is as far
96 * _before_ the variable as its size stretches out _after_ it. So
97 * we must fix up common variable references. Win32 seems to be
98 * sensible on this one.
101 /* Flag which version of COFF we are currently outputting. */
102 static bool win32
, win64
;
104 static int32_t imagebase_sect
;
105 #define WRT_IMAGEBASE "..imagebase"
109 int32_t address
; /* relative to _start_ of section */
110 int32_t symbol
; /* symbol number */
115 } symbase
; /* relocation for symbol number :) */
119 /* possible values for Reloc->type */
120 #define IMAGE_REL_AMD64_ADDR64 0x0001
121 #define IMAGE_REL_AMD64_ADDR32 0x0002
122 #define IMAGE_REL_AMD64_ADDR32NB 0x0003
123 #define IMAGE_REL_AMD64_REL32 0x0004
124 #define IMAGE_REL_I386_DIR32 0x0006
125 #define IMAGE_REL_I386_DIR32NB 0x0007
126 #define IMAGE_REL_I386_REL32 0x0014
130 int32_t strpos
; /* string table position of name */
131 int32_t value
; /* address, or COMMON variable size */
132 int section
; /* section number where it's defined
133 * - in COFF codes, not NASM codes */
134 bool is_global
; /* is it a global symbol or not? */
135 int16_t type
; /* 0 - notype, 0x20 - function */
136 int32_t namlen
; /* full name length */
139 static char coff_infile
[FILENAME_MAX
];
146 struct Reloc
*head
, **tail
;
147 uint32_t flags
; /* section flags */
152 #define TEXT_FLAGS ((win32 | win64) ? 0x60500020L : 0x20L)
153 #define DATA_FLAGS ((win32 | win64) ? 0xC0300040L : 0x40L)
154 #define BSS_FLAGS ((win32 | win64) ? 0xC0300080L : 0x80L)
155 #define INFO_FLAGS 0x00100A00L
156 #define RDATA_FLAGS ((win32 | win64) ? 0x40400040L : 0x40L)
158 #define SECT_DELTA 32
159 static struct Section
**sects
;
160 static int nsects
, sectlen
;
162 static struct SAA
*syms
;
163 static uint32_t nsyms
;
165 static int32_t def_seg
;
169 static struct RAA
*bsym
, *symval
;
171 static struct SAA
*strs
;
172 static uint32_t strslen
;
174 static void coff_gen_init(void);
175 static void coff_sect_write(struct Section
*, const uint8_t *,
177 static void coff_write(void);
178 static void coff_section_header(char *, int32_t, int32_t, int32_t, int32_t, int, int32_t);
179 static void coff_write_relocs(struct Section
*);
180 static void coff_write_symbols(void);
182 static void coff_win32_init(void)
189 static void coff_win64_init(void)
195 imagebase_sect
= seg_alloc()+1;
196 define_label(WRT_IMAGEBASE
, imagebase_sect
, 0, NULL
, false, false);
199 static void coff_std_init(void)
201 win32
= win64
= false;
205 static void coff_gen_init(void)
209 nsects
= sectlen
= 0;
210 syms
= saa_init(sizeof(struct Symbol
));
216 def_seg
= seg_alloc();
219 static void coff_cleanup(int debuginfo
)
227 for (i
= 0; i
< nsects
; i
++) {
229 saa_free(sects
[i
]->data
);
230 while (sects
[i
]->head
) {
232 sects
[i
]->head
= sects
[i
]->head
->next
;
244 static int coff_make_section(char *name
, uint32_t flags
)
248 s
= nasm_malloc(sizeof(*s
));
250 if (flags
!= BSS_FLAGS
)
251 s
->data
= saa_init(1);
258 if (!strcmp(name
, ".text"))
261 s
->index
= seg_alloc();
262 strncpy(s
->name
, name
, 8);
266 if (nsects
>= sectlen
) {
267 sectlen
+= SECT_DELTA
;
268 sects
= nasm_realloc(sects
, sectlen
* sizeof(*sects
));
275 static int32_t coff_section_names(char *name
, int pass
, int *bits
)
278 uint32_t flags
, align_and
= ~0L, align_or
= 0L;
295 while (*p
&& !nasm_isspace(*p
))
299 if (strlen(name
) > 8) {
300 nasm_error(ERR_WARNING
, "COFF section names limited to 8 characters:"
306 while (*p
&& nasm_isspace(*p
))
310 while (*p
&& !nasm_isspace(*p
))
314 while (*p
&& nasm_isspace(*p
))
317 if (!nasm_stricmp(q
, "code") || !nasm_stricmp(q
, "text")) {
319 } else if (!nasm_stricmp(q
, "data")) {
321 } else if (!nasm_stricmp(q
, "rdata")) {
325 flags
= DATA_FLAGS
; /* gotta do something */
326 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
327 " read-only data sections");
329 } else if (!nasm_stricmp(q
, "bss")) {
331 } else if (!nasm_stricmp(q
, "info")) {
335 flags
= DATA_FLAGS
; /* gotta do something */
336 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
337 " informational sections");
339 } else if (!nasm_strnicmp(q
, "align=", 6)) {
340 if (!(win32
| win64
))
341 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
342 " section alignment specification");
344 if (q
[6 + strspn(q
+ 6, "0123456789")])
345 nasm_error(ERR_NONFATAL
,
346 "argument to `align' is not numeric");
348 unsigned int align
= atoi(q
+ 6);
349 if (!align
|| ((align
- 1) & align
))
350 nasm_error(ERR_NONFATAL
, "argument to `align' is not a"
353 nasm_error(ERR_NONFATAL
, "Win32 cannot align sections"
354 " to better than 64-byte boundaries");
356 align_and
= ~0x00F00000L
;
357 align_or
= (align
== 1 ? 0x00100000L
:
358 align
== 2 ? 0x00200000L
:
359 align
== 4 ? 0x00300000L
:
360 align
== 8 ? 0x00400000L
:
361 align
== 16 ? 0x00500000L
:
363 32 ? 0x00600000L
: 0x00700000L
);
370 for (i
= 0; i
< nsects
; i
++)
371 if (!strcmp(name
, sects
[i
]->name
))
375 if (!strcmp(name
, ".data"))
377 else if (!strcmp(name
, ".rdata"))
379 else if (!strcmp(name
, ".bss"))
381 else if (win64
&& !strcmp(name
, ".pdata"))
382 flags
= 0x40300040; /* rdata align=4 */
383 else if (win64
&& !strcmp(name
, ".xdata"))
384 flags
= 0x40400040; /* rdate align=8 */
388 i
= coff_make_section(name
, flags
);
390 sects
[i
]->flags
= flags
;
391 sects
[i
]->flags
&= align_and
;
392 sects
[i
]->flags
|= align_or
;
393 } else if (pass
== 1) {
395 nasm_error(ERR_WARNING
, "section attributes ignored on"
396 " redeclaration of section `%s'", name
);
399 return sects
[i
]->index
;
402 static void coff_deflabel(char *name
, int32_t segment
, int64_t offset
,
403 int is_global
, char *special
)
405 int pos
= strslen
+ 4;
409 nasm_error(ERR_NONFATAL
, "COFF format does not support any"
410 " special symbol types");
412 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
413 if (strcmp(name
,WRT_IMAGEBASE
))
414 nasm_error(ERR_NONFATAL
, "unrecognized special symbol `%s'", name
);
418 if (strlen(name
) > 8) {
419 size_t nlen
= strlen(name
)+1;
420 saa_wbytes(strs
, name
, nlen
);
425 sym
= saa_wstruct(syms
);
428 sym
->namlen
= strlen(name
);
430 strcpy(sym
->name
, name
);
431 sym
->is_global
= !!is_global
;
432 sym
->type
= 0; /* Default to T_NULL (no type) */
433 if (segment
== NO_SEG
)
434 sym
->section
= -1; /* absolute symbol */
438 for (i
= 0; i
< nsects
; i
++)
439 if (segment
== sects
[i
]->index
) {
440 sym
->section
= i
+ 1;
444 sym
->is_global
= true;
449 sym
->value
= (sym
->section
== 0 ? 0 : offset
);
452 * define the references from external-symbol segment numbers
453 * to these symbol records.
455 if (sym
->section
== 0) {
456 bsym
= raa_write(bsym
, segment
, nsyms
);
459 if (segment
!= NO_SEG
)
460 symval
= raa_write(symval
, segment
, sym
->section
? 0 : sym
->value
);
465 static int32_t coff_add_reloc(struct Section
*sect
, int32_t segment
,
470 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
471 sect
->tail
= &r
->next
;
474 r
->address
= sect
->len
;
475 if (segment
== NO_SEG
)
476 r
->symbol
= 0, r
->symbase
= ABS_SYMBOL
;
479 r
->symbase
= REAL_SYMBOLS
;
480 for (i
= 0; i
< nsects
; i
++)
481 if (segment
== sects
[i
]->index
) {
483 r
->symbase
= SECT_SYMBOLS
;
486 if (r
->symbase
== REAL_SYMBOLS
)
487 r
->symbol
= raa_read(bsym
, segment
);
494 * Return the fixup for standard COFF common variables.
496 if (r
->symbase
== REAL_SYMBOLS
&& !(win32
| win64
))
497 return raa_read(symval
, segment
);
502 static void coff_out(int32_t segto
, const void *data
,
503 enum out_type type
, uint64_t size
,
504 int32_t segment
, int32_t wrt
)
507 uint8_t mydata
[8], *p
;
510 if (wrt
!= NO_SEG
&& !win64
) {
511 wrt
= NO_SEG
; /* continue to do _something_ */
512 nasm_error(ERR_NONFATAL
, "WRT not supported by COFF output formats");
516 * handle absolute-assembly (structure definitions)
518 if (segto
== NO_SEG
) {
519 if (type
!= OUT_RESERVE
)
520 nasm_error(ERR_NONFATAL
, "attempt to assemble code in [ABSOLUTE]"
526 for (i
= 0; i
< nsects
; i
++)
527 if (segto
== sects
[i
]->index
) {
532 int tempint
; /* ignored */
533 if (segto
!= coff_section_names(".text", 2, &tempint
))
534 nasm_error(ERR_PANIC
, "strange segment conditions in COFF driver");
536 s
= sects
[nsects
- 1];
539 /* magically default to 'wrt ..imagebase' in .pdata and .xdata */
540 if (win64
&& wrt
== NO_SEG
&&
541 (!strcmp(s
->name
,".pdata") || !strcmp(s
->name
,".xdata")))
542 wrt
= imagebase_sect
;
544 if (!s
->data
&& type
!= OUT_RESERVE
) {
545 nasm_error(ERR_WARNING
, "attempt to initialize memory in"
546 " BSS section `%s': ignored", s
->name
);
547 s
->len
+= realsize(type
, size
);
551 if (type
== OUT_RESERVE
) {
553 nasm_error(ERR_WARNING
, "uninitialised space declared in"
554 " non-BSS section `%s': zeroing", s
->name
);
555 coff_sect_write(s
, NULL
, size
);
558 } else if (type
== OUT_RAWDATA
) {
559 if (segment
!= NO_SEG
)
560 nasm_error(ERR_PANIC
, "OUT_RAWDATA with other than NO_SEG");
561 coff_sect_write(s
, data
, size
);
562 } else if (type
== OUT_ADDRESS
) {
564 if (size
!= 4 && (segment
!= NO_SEG
|| wrt
!= NO_SEG
))
565 nasm_error(ERR_NONFATAL
, "COFF format does not support non-32-bit"
569 if (segment
!= NO_SEG
|| wrt
!= NO_SEG
) {
571 nasm_error(ERR_NONFATAL
, "COFF format does not support"
573 } else if (segment
% 2) {
574 nasm_error(ERR_NONFATAL
, "COFF format does not support"
575 " segment base references");
577 fix
= coff_add_reloc(s
, segment
, IMAGE_REL_I386_DIR32
);
580 WRITELONG(p
, *(int64_t *)data
+ fix
);
581 coff_sect_write(s
, mydata
, size
);
587 if (wrt
== imagebase_sect
) {
588 nasm_error(ERR_NONFATAL
, "operand size mismatch: 'wrt "
589 WRT_IMAGEBASE
"' is a 32-bit operand");
591 fix
= coff_add_reloc(s
, segment
, IMAGE_REL_AMD64_ADDR64
);
592 WRITEDLONG(p
, *(int64_t *)data
+ fix
);
593 coff_sect_write(s
, mydata
, size
);
595 fix
= coff_add_reloc(s
, segment
,
596 wrt
== imagebase_sect
? IMAGE_REL_AMD64_ADDR32NB
:
597 IMAGE_REL_AMD64_ADDR32
);
598 WRITELONG(p
, *(int64_t *)data
+ fix
);
599 coff_sect_write(s
, mydata
, size
);
602 } else if (type
== OUT_REL2ADR
) {
603 nasm_error(ERR_NONFATAL
, "COFF format does not support 16-bit"
605 } else if (type
== OUT_REL4ADR
) {
606 if (segment
== segto
&& !(win64
)) /* Acceptable for RIP-relative */
607 nasm_error(ERR_PANIC
, "intra-segment OUT_REL4ADR");
608 else if (segment
== NO_SEG
&& win32
)
609 nasm_error(ERR_NONFATAL
, "Win32 COFF does not correctly support"
610 " relative references to absolute addresses");
613 if (segment
!= NO_SEG
&& segment
% 2) {
614 nasm_error(ERR_NONFATAL
, "COFF format does not support"
615 " segment base references");
617 fix
= coff_add_reloc(s
, segment
,
618 win64
? IMAGE_REL_AMD64_REL32
: IMAGE_REL_I386_REL32
);
621 WRITELONG(p
, *(int64_t *)data
+ 4 - size
+ fix
);
623 WRITELONG(p
, *(int64_t *)data
- (size
+ s
->len
) + fix
);
625 coff_sect_write(s
, mydata
, 4L);
631 static void coff_sect_write(struct Section
*sect
,
632 const uint8_t *data
, uint32_t len
)
634 saa_wbytes(sect
->data
, data
, len
);
638 typedef struct tagString
{
639 struct tagString
*next
;
644 #define EXPORT_SECTION_NAME ".drectve"
645 #define EXPORT_SECTION_FLAGS INFO_FLAGS
647 #define EXPORT_SECTION_NAME ".text"
648 #define EXPORT_SECTION_FLAGS TEXT_FLAGS
651 static STRING
*Exports
= NULL
;
652 static struct Section
*directive_sec
;
653 void AddExport(char *name
)
655 STRING
*rvp
= Exports
, *newS
;
657 newS
= (STRING
*) nasm_malloc(sizeof(STRING
));
658 newS
->len
= strlen(name
);
660 newS
->String
= (char *)nasm_malloc(newS
->len
+ 1);
661 strcpy(newS
->String
, name
);
665 for (i
= 0; i
< nsects
; i
++) {
666 if (!strcmp(EXPORT_SECTION_NAME
, sects
[i
]->name
))
671 i
= coff_make_section(EXPORT_SECTION_NAME
, EXPORT_SECTION_FLAGS
);
673 directive_sec
= sects
[i
];
677 if (!strcmp(rvp
->String
, name
))
685 static void BuildExportTable(STRING
**rvp
)
692 list_for_each_safe(p
, t
, *rvp
) {
693 coff_sect_write(directive_sec
, (uint8_t *)"-export:", 8);
694 coff_sect_write(directive_sec
, (uint8_t *)p
->String
, p
->len
);
695 coff_sect_write(directive_sec
, (uint8_t *)" ", 1);
696 nasm_free(p
->String
);
703 static int coff_directives(enum directives directive
, char *value
, int pass
)
711 return 1; /* ignore in pass two */
713 while (*q
&& !nasm_isspace(*q
))
715 if (nasm_isspace(*q
)) {
717 while (*q
&& nasm_isspace(*q
))
722 nasm_error(ERR_NONFATAL
, "`export' directive requires export name");
726 nasm_error(ERR_NONFATAL
, "unrecognized export qualifier `%s'", q
);
737 if (!win32
) /* Only applicable for -f win32 */
741 { for (i
= 0; i
< nsects
; i
++)
742 if (!strcmp(".sxdata",sects
[i
]->name
))
745 sxseg
= coff_make_section(".sxdata",0x200);
749 /* pass0 == 2 is the only time when the full set of symbols are
750 guaranteed to be present; it is the final output pass. */
754 for (n
= 0; n
< nsyms
; n
++) {
755 struct Symbol
*sym
= saa_rstruct(syms
);
758 /* sym->strpos is biased by 4, because symbol
759 * table is prefixed with table length */
760 if (sym
->strpos
>=4) {
761 char *name
= nasm_malloc(sym
->namlen
+1);
762 saa_fread(strs
, sym
->strpos
-4, name
, sym
->namlen
);
763 name
[sym
->namlen
] = '\0';
764 equals
= !strcmp(value
,name
);
768 equals
= !strcmp(value
,sym
->name
);
771 /* this value arithmetics effectively reflects
772 * initsym in coff_write(): 2 for file, 1 for
773 * .absolute and two per each section */
774 unsigned char value
[4],*p
=value
;
775 WRITELONG(p
,n
+ 2 + 1 + nsects
*2);
776 coff_sect_write(sects
[sxseg
],value
,4);
782 nasm_error(ERR_NONFATAL
,
783 "`safeseh' directive requires valid symbol");
793 static void coff_write(void)
795 int32_t pos
, sympos
, vsize
;
798 /* fill in the .drectve section with -export's */
799 BuildExportTable(&Exports
);
802 /* add default value for @feat.00, this allows to 'link /safeseh' */
806 for (n
= 0; n
< nsyms
; n
++) {
807 struct Symbol
*sym
= saa_rstruct(syms
);
808 if (sym
->strpos
== -1 && !strcmp("@feat.00",sym
->name
))
812 coff_deflabel("@feat.00",NO_SEG
,1,0,NULL
);
816 * Work out how big the file will get. Calculate the start of
817 * the `real' symbols at the same time.
819 pos
= 0x14 + 0x28 * nsects
;
820 initsym
= 3; /* two for the file, one absolute */
821 for (i
= 0; i
< nsects
; i
++) {
822 if (sects
[i
]->data
) {
824 pos
+= sects
[i
]->len
;
825 sects
[i
]->relpos
= pos
;
826 pos
+= 10 * sects
[i
]->nrelocs
;
828 sects
[i
]->pos
= sects
[i
]->relpos
= 0L;
829 initsym
+= 2; /* two for each section */
834 * Output the COFF header.
837 fwriteint16_t(0x8664, ofile
); /* MACHINE_x86-64 */
839 fwriteint16_t(0x014C, ofile
); /* MACHINE_i386 */
840 fwriteint16_t(nsects
, ofile
); /* number of sections */
841 fwriteint32_t(time(NULL
), ofile
); /* time stamp */
842 fwriteint32_t(sympos
, ofile
);
843 fwriteint32_t(nsyms
+ initsym
, ofile
);
844 fwriteint16_t(0, ofile
); /* no optional header */
845 /* Flags: 32-bit, no line numbers. Win32 doesn't even bother with them. */
846 fwriteint16_t((win32
| win64
) ? 0 : 0x104, ofile
);
849 * Output the section headers.
852 for (i
= 0; i
< nsects
; i
++) {
853 coff_section_header(sects
[i
]->name
, vsize
, sects
[i
]->len
,
854 sects
[i
]->pos
, sects
[i
]->relpos
,
855 sects
[i
]->nrelocs
, sects
[i
]->flags
);
856 vsize
+= sects
[i
]->len
;
860 * Output the sections and their relocations.
862 for (i
= 0; i
< nsects
; i
++)
863 if (sects
[i
]->data
) {
864 saa_fpwrite(sects
[i
]->data
, ofile
);
865 coff_write_relocs(sects
[i
]);
869 * Output the symbol and string tables.
871 coff_write_symbols();
872 fwriteint32_t(strslen
+ 4, ofile
); /* length includes length count */
873 saa_fpwrite(strs
, ofile
);
876 static void coff_section_header(char *name
, int32_t vsize
,
877 int32_t datalen
, int32_t datapos
,
878 int32_t relpos
, int nrelocs
, int32_t flags
)
884 memset(padname
, 0, 8);
885 strncpy(padname
, name
, 8);
886 fwrite(padname
, 8, 1, ofile
);
887 fwriteint32_t(0, ofile
); /* Virtual size field - set to 0 or vsize */
888 fwriteint32_t(0L, ofile
); /* RVA/offset - we ignore */
889 fwriteint32_t(datalen
, ofile
);
890 fwriteint32_t(datapos
, ofile
);
891 fwriteint32_t(relpos
, ofile
);
892 fwriteint32_t(0L, ofile
); /* no line numbers - we don't do 'em */
893 fwriteint16_t(nrelocs
, ofile
);
894 fwriteint16_t(0, ofile
); /* again, no line numbers */
895 fwriteint32_t(flags
, ofile
);
898 static void coff_write_relocs(struct Section
*s
)
902 for (r
= s
->head
; r
; r
= r
->next
) {
903 fwriteint32_t(r
->address
, ofile
);
904 fwriteint32_t(r
->symbol
+ (r
->symbase
== REAL_SYMBOLS
? initsym
:
905 r
->symbase
== ABS_SYMBOL
? initsym
- 1 :
906 r
->symbase
== SECT_SYMBOLS
? 2 : 0),
908 fwriteint16_t(r
->type
, ofile
);
912 static void coff_symbol(char *name
, int32_t strpos
, int32_t value
,
913 int section
, int type
, int storageclass
, int aux
)
918 memset(padname
, 0, 8);
919 strncpy(padname
, name
, 8);
920 fwrite(padname
, 8, 1, ofile
);
922 fwriteint32_t(0, ofile
);
923 fwriteint32_t(strpos
, ofile
);
925 fwriteint32_t(value
, ofile
);
926 fwriteint16_t(section
, ofile
);
927 fwriteint16_t(type
, ofile
);
928 fputc(storageclass
, ofile
);
932 static void coff_write_symbols(void)
938 * The `.file' record, and the file name auxiliary record.
940 coff_symbol(".file", 0L, 0L, -2, 0, 0x67, 1);
941 memset(filename
, 0, 18);
942 strncpy(filename
, coff_infile
, 18);
943 fwrite(filename
, 18, 1, ofile
);
946 * The section records, with their auxiliaries.
948 memset(filename
, 0, 18); /* useful zeroed buffer */
950 for (i
= 0; i
< (uint32_t) nsects
; i
++) {
951 coff_symbol(sects
[i
]->name
, 0L, 0L, i
+ 1, 0, 3, 1);
952 fwriteint32_t(sects
[i
]->len
, ofile
);
953 fwriteint16_t(sects
[i
]->nrelocs
, ofile
);
954 fwrite(filename
, 12, 1, ofile
);
958 * The absolute symbol, for relative-to-absolute relocations.
960 coff_symbol(".absolut", 0L, 0L, -1, 0, 3, 0);
966 for (i
= 0; i
< nsyms
; i
++) {
967 struct Symbol
*sym
= saa_rstruct(syms
);
968 coff_symbol(sym
->strpos
== -1 ? sym
->name
: NULL
,
969 sym
->strpos
, sym
->value
, sym
->section
,
970 sym
->type
, sym
->is_global
? 2 : 3, 0);
974 static int32_t coff_segbase(int32_t segment
)
979 static void coff_std_filename(char *inname
, char *outname
)
981 strcpy(coff_infile
, inname
);
982 standard_extension(inname
, outname
, ".o");
985 static void coff_win32_filename(char *inname
, char *outname
)
987 strcpy(coff_infile
, inname
);
988 standard_extension(inname
, outname
, ".obj");
991 extern macros_t coff_stdmac
[];
993 static int coff_set_info(enum geninfo type
, char **val
)
999 #endif /* defined(OF_COFF) || defined(OF_WIN32) */
1003 struct ofmt of_coff
= {
1004 "COFF (i386) object files (e.g. DJGPP for DOS)",
1025 struct ofmt of_win32
= {
1026 "Microsoft Win32 (i386) object files",
1039 coff_win32_filename
,
1047 struct ofmt of_win64
= {
1048 "Microsoft Win64 (x86-64) object files",
1061 coff_win32_filename
,