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 * outbin.c output routines for the Netwide Assembler to produce
36 * flat-form binary files
39 /* This is the extended version of NASM's original binary output
40 * format. It is backward compatible with the original BIN format,
41 * and contains support for multiple sections and advanced section
46 * - Users can create an arbitrary number of sections; they are not
47 * limited to just ".text", ".data", and ".bss".
49 * - Sections can be either progbits or nobits type.
51 * - You can specify that they be aligned at a certian boundary
52 * following the previous section ("align="), or positioned at an
53 * arbitrary byte-granular location ("start=").
55 * - You can specify a "virtual" start address for a section, which
56 * will be used for the calculation for all address references
57 * with respect to that section ("vstart=").
59 * - The ORG directive, as well as the section/segment directive
60 * arguments ("align=", "start=", "vstart="), can take a critical
61 * expression as their value. For example: "align=(1 << 12)".
63 * - You can generate map files using the 'map' directive.
67 /* Uncomment the following define if you want sections to adapt
68 * their progbits/nobits state depending on what type of
69 * instructions are issued, rather than defaulting to progbits.
70 * Note that this behavior violates the specification.
72 #define ABIN_SMART_ADAPT
90 #include "output/outform.h"
91 #include "output/outlib.h"
95 static FILE *rf
= NULL
;
96 static void (*do_output
)(void);
98 /* Section flags keep track of which attributes the user has defined. */
99 #define START_DEFINED 0x001
100 #define ALIGN_DEFINED 0x002
101 #define FOLLOWS_DEFINED 0x004
102 #define VSTART_DEFINED 0x008
103 #define VALIGN_DEFINED 0x010
104 #define VFOLLOWS_DEFINED 0x020
105 #define TYPE_DEFINED 0x040
106 #define TYPE_PROGBITS 0x080
107 #define TYPE_NOBITS 0x100
109 /* This struct is used to keep track of symbols for map-file generation. */
110 static struct bin_label
{
112 struct bin_label
*next
;
113 } *no_seg_labels
, **nsl_tail
;
115 static struct Section
{
117 struct SAA
*contents
;
118 int64_t length
; /* section length in bytes */
120 /* Section attributes */
121 int flags
; /* see flag definitions above */
122 uint64_t align
; /* section alignment */
123 uint64_t valign
; /* notional section alignment */
124 uint64_t start
; /* section start address */
125 uint64_t vstart
; /* section virtual start address */
126 char *follows
; /* the section that this one will follow */
127 char *vfollows
; /* the section that this one will notionally follow */
128 int32_t start_index
; /* NASM section id for non-relocated version */
129 int32_t vstart_index
; /* the NASM section id */
131 struct bin_label
*labels
; /* linked-list of label handles for map output. */
132 struct bin_label
**labels_end
; /* Holds address of end of labels list. */
133 struct Section
*ifollows
; /* Points to previous section (implicit follows). */
134 struct Section
*next
; /* This links sections with a defined start address. */
136 /* The extended bin format allows for sections to have a "virtual"
137 * start address. This is accomplished by creating two sections:
138 * one beginning at the Load Memory Address and the other beginning
139 * at the Virtual Memory Address. The LMA section is only used to
140 * define the section.<section_name>.start label, but there isn't
141 * any other good way for us to handle that label.
144 } *sections
, *last_section
;
146 static struct Reloc
{
152 struct Section
*target
;
153 } *relocs
, **reloctail
;
155 static uint64_t origin
;
156 static int origin_defined
;
158 /* Stuff we need for map-file generation. */
160 #define MAP_SUMMARY 2
161 #define MAP_SECTIONS 4
162 #define MAP_SYMBOLS 8
163 static int map_control
= 0;
164 static char *infile
, *outfile
;
166 extern macros_t bin_stdmac
[];
168 static void add_reloc(struct Section
*s
, int32_t bytes
, int32_t secref
,
173 r
= *reloctail
= nasm_malloc(sizeof(struct Reloc
));
174 reloctail
= &r
->next
;
183 static struct Section
*find_section_by_name(const char *name
)
187 list_for_each(s
, sections
)
188 if (!strcmp(s
->name
, name
))
193 static struct Section
*find_section_by_index(int32_t index
)
197 list_for_each(s
, sections
)
198 if ((index
== s
->vstart_index
) || (index
== s
->start_index
))
203 static struct Section
*create_section(char *name
)
204 { /* Create a new section. */
205 last_section
->next
= nasm_malloc(sizeof(struct Section
));
206 last_section
->next
->ifollows
= last_section
;
207 last_section
= last_section
->next
;
208 last_section
->labels
= NULL
;
209 last_section
->labels_end
= &(last_section
->labels
);
211 /* Initialize section attributes. */
212 last_section
->name
= nasm_strdup(name
);
213 last_section
->contents
= saa_init(1L);
214 last_section
->follows
= last_section
->vfollows
= 0;
215 last_section
->length
= 0;
216 last_section
->flags
= 0;
217 last_section
->align
= 0;
218 last_section
->valign
= 0;
219 last_section
->start
= 0;
220 last_section
->vstart
= 0;
221 last_section
->next
= NULL
;
223 /* Register our sections with NASM. */
224 last_section
->vstart_index
= seg_alloc();
225 last_section
->start_index
= seg_alloc();
229 static void bin_cleanup(int debuginfo
)
231 struct Section
*g
, **gp
;
232 struct Section
*gs
= NULL
, **gsp
;
233 struct Section
*s
, **sp
;
234 struct Section
*nobits
= NULL
, **nt
;
235 struct Section
*last_progbits
;
241 (void)debuginfo
; /* placate optimizers */
244 nasm_error(ERR_DEBUG
,
245 "bin_cleanup: Sections were initially referenced in this order:\n");
246 for (h
= 0, s
= sections
; s
; h
++, s
= s
->next
)
247 fprintf(stdout
, "%i. %s\n", h
, s
->name
);
250 /* Assembly has completed, so now we need to generate the output file.
251 * Step 1: Separate progbits and nobits sections into separate lists.
252 * Step 2: Sort the progbits sections into their output order.
253 * Step 3: Compute start addresses for all progbits sections.
254 * Step 4: Compute vstart addresses for all sections.
255 * Step 5: Apply relocations.
256 * Step 6: Write the sections' data to the output file.
257 * Step 7: Generate the map file.
258 * Step 8: Release all allocated memory.
261 /* To do: Smart section-type adaptation could leave some empty sections
262 * without a defined type (progbits/nobits). Won't fix now since this
263 * feature will be disabled. */
265 /* Step 1: Split progbits and nobits sections into separate lists. */
268 /* Move nobits sections into a separate list. Also pre-process nobits
269 * sections' attributes. */
270 for (sp
= §ions
->next
, s
= sections
->next
; s
; s
= *sp
) { /* Skip progbits sections. */
271 if (s
->flags
& TYPE_PROGBITS
) {
275 /* Do some special pre-processing on nobits sections' attributes. */
276 if (s
->flags
& (START_DEFINED
| ALIGN_DEFINED
| FOLLOWS_DEFINED
)) { /* Check for a mixture of real and virtual section attributes. */
277 if (s
->flags
& (VSTART_DEFINED
| VALIGN_DEFINED
|
279 nasm_error(ERR_FATAL
|ERR_NOFILE
,
280 "cannot mix real and virtual attributes"
281 " in nobits section (%s)", s
->name
);
282 /* Real and virtual attributes mean the same thing for nobits sections. */
283 if (s
->flags
& START_DEFINED
) {
284 s
->vstart
= s
->start
;
285 s
->flags
|= VSTART_DEFINED
;
287 if (s
->flags
& ALIGN_DEFINED
) {
288 s
->valign
= s
->align
;
289 s
->flags
|= VALIGN_DEFINED
;
291 if (s
->flags
& FOLLOWS_DEFINED
) {
292 s
->vfollows
= s
->follows
;
293 s
->flags
|= VFOLLOWS_DEFINED
;
294 s
->flags
&= ~FOLLOWS_DEFINED
;
297 /* Every section must have a start address. */
298 if (s
->flags
& VSTART_DEFINED
) {
299 s
->start
= s
->vstart
;
300 s
->flags
|= START_DEFINED
;
302 /* Move the section into the nobits list. */
309 /* Step 2: Sort the progbits sections into their output order. */
311 /* In Step 2 we move around sections in groups. A group
312 * begins with a section (group leader) that has a user-
313 * defined start address or follows section. The remainder
314 * of the group is made up of the sections that implicitly
315 * follow the group leader (i.e., they were defined after
316 * the group leader and were not given an explicit start
317 * address or follows section by the user). */
319 /* For anyone attempting to read this code:
320 * g (group) points to a group of sections, the first one of which has
321 * a user-defined start address or follows section.
322 * gp (g previous) holds the location of the pointer to g.
323 * gs (g scan) is a temp variable that we use to scan to the end of the group.
324 * gsp (gs previous) holds the location of the pointer to gs.
325 * nt (nobits tail) points to the nobits section-list tail.
328 /* Link all 'follows' groups to their proper position. To do
329 * this we need to know three things: the start of the group
330 * to relocate (g), the section it is following (s), and the
331 * end of the group we're relocating (gs). */
332 for (gp
= §ions
, g
= sections
; g
; g
= gs
) { /* Find the next follows group that is out of place (g). */
333 if (!(g
->flags
& FOLLOWS_DEFINED
)) {
335 if ((g
->next
->flags
& FOLLOWS_DEFINED
) &&
336 strcmp(g
->name
, g
->next
->follows
))
345 /* Find the section that this group follows (s). */
346 for (sp
= §ions
, s
= sections
;
347 s
&& strcmp(s
->name
, g
->follows
);
348 sp
= &s
->next
, s
= s
->next
) ;
350 nasm_error(ERR_FATAL
|ERR_NOFILE
, "section %s follows an invalid or"
351 " unknown section (%s)", g
->name
, g
->follows
);
352 if (s
->next
&& (s
->next
->flags
& FOLLOWS_DEFINED
) &&
353 !strcmp(s
->name
, s
->next
->follows
))
354 nasm_error(ERR_FATAL
|ERR_NOFILE
, "sections %s and %s can't both follow"
355 " section %s", g
->name
, s
->next
->name
, s
->name
);
356 /* Find the end of the current follows group (gs). */
357 for (gsp
= &g
->next
, gs
= g
->next
;
358 gs
&& (gs
!= s
) && !(gs
->flags
& START_DEFINED
);
359 gsp
= &gs
->next
, gs
= gs
->next
) {
360 if (gs
->next
&& (gs
->next
->flags
& FOLLOWS_DEFINED
) &&
361 strcmp(gs
->name
, gs
->next
->follows
)) {
367 /* Re-link the group after its follows section. */
373 /* Link all 'start' groups to their proper position. Once
374 * again we need to know g, s, and gs (see above). The main
375 * difference is we already know g since we sort by moving
376 * groups from the 'unsorted' list into a 'sorted' list (g
377 * will always be the first section in the unsorted list). */
378 for (g
= sections
, sections
= NULL
; g
; g
= gs
) { /* Find the section that we will insert this group before (s). */
379 for (sp
= §ions
, s
= sections
; s
; sp
= &s
->next
, s
= s
->next
)
380 if ((s
->flags
& START_DEFINED
) && (g
->start
< s
->start
))
382 /* Find the end of the group (gs). */
383 for (gs
= g
->next
, gsp
= &g
->next
;
384 gs
&& !(gs
->flags
& START_DEFINED
);
385 gsp
= &gs
->next
, gs
= gs
->next
) ;
386 /* Re-link the group before the target section. */
391 /* Step 3: Compute start addresses for all progbits sections. */
393 /* Make sure we have an origin and a start address for the first section. */
394 if (origin_defined
) {
395 if (sections
->flags
& START_DEFINED
) {
396 /* Make sure this section doesn't begin before the origin. */
397 if (sections
->start
< origin
)
398 nasm_error(ERR_FATAL
|ERR_NOFILE
, "section %s begins"
399 " before program origin", sections
->name
);
400 } else if (sections
->flags
& ALIGN_DEFINED
) {
401 sections
->start
= ALIGN(origin
, sections
->align
);
403 sections
->start
= origin
;
406 if (!(sections
->flags
& START_DEFINED
))
408 origin
= sections
->start
;
410 sections
->flags
|= START_DEFINED
;
412 /* Make sure each section has an explicit start address. If it
413 * doesn't, then compute one based its alignment and the end of
414 * the previous section. */
415 for (pend
= sections
->start
, g
= s
= sections
; g
; g
= g
->next
) { /* Find the next section that could cause an overlap situation
416 * (has a defined start address, and is not zero length). */
419 s
&& ((s
->length
== 0) || !(s
->flags
& START_DEFINED
));
421 /* Compute the start address of this section, if necessary. */
422 if (!(g
->flags
& START_DEFINED
)) { /* Default to an alignment of 4 if unspecified. */
423 if (!(g
->flags
& ALIGN_DEFINED
)) {
425 g
->flags
|= ALIGN_DEFINED
;
427 /* Set the section start address. */
428 g
->start
= ALIGN(pend
, g
->align
);
429 g
->flags
|= START_DEFINED
;
431 /* Ugly special case for progbits sections' virtual attributes:
432 * If there is a defined valign, but no vstart and no vfollows, then
433 * we valign after the previous progbits section. This case doesn't
434 * really make much sense for progbits sections with a defined start
435 * address, but it is possible and we must do *something*.
436 * Not-so-ugly special case:
437 * If a progbits section has no virtual attributes, we set the
438 * vstart equal to the start address. */
439 if (!(g
->flags
& (VSTART_DEFINED
| VFOLLOWS_DEFINED
))) {
440 if (g
->flags
& VALIGN_DEFINED
)
441 g
->vstart
= ALIGN(pend
, g
->valign
);
443 g
->vstart
= g
->start
;
444 g
->flags
|= VSTART_DEFINED
;
446 /* Ignore zero-length sections. */
449 /* Compute the span of this section. */
450 pend
= g
->start
+ g
->length
;
451 /* Check for section overlap. */
453 if (s
->start
< origin
)
454 nasm_error(ERR_FATAL
|ERR_NOFILE
, "section %s beings before program origin",
456 if (g
->start
> s
->start
)
457 nasm_error(ERR_FATAL
|ERR_NOFILE
, "sections %s ~ %s and %s overlap!",
458 gs
->name
, g
->name
, s
->name
);
460 nasm_error(ERR_FATAL
|ERR_NOFILE
, "sections %s and %s overlap!",
463 /* Remember this section as the latest >0 length section. */
467 /* Step 4: Compute vstart addresses for all sections. */
469 /* Attach the nobits sections to the end of the progbits sections. */
470 for (s
= sections
; s
->next
; s
= s
->next
) ;
474 * Scan for sections that don't have a vstart address. If we find
475 * one we'll attempt to compute its vstart. If we can't compute
476 * the vstart, we leave it alone and come back to it in a
477 * subsequent scan. We continue scanning and re-scanning until
478 * we've gone one full cycle without computing any vstarts.
480 do { /* Do one full scan of the sections list. */
481 for (h
= 0, g
= sections
; g
; g
= g
->next
) {
482 if (g
->flags
& VSTART_DEFINED
)
484 /* Find the section that this one virtually follows. */
485 if (g
->flags
& VFOLLOWS_DEFINED
) {
486 for (s
= sections
; s
&& strcmp(g
->vfollows
, s
->name
);
489 nasm_error(ERR_FATAL
|ERR_NOFILE
,
490 "section %s vfollows unknown section (%s)",
491 g
->name
, g
->vfollows
);
492 } else if (g
->ifollows
!= NULL
)
493 for (s
= sections
; s
&& (s
!= g
->ifollows
); s
= s
->next
) ;
494 /* The .bss section is the only one with ifollows = NULL.
495 In this case we implicitly follow the last progbits
500 /* If the section we're following has a vstart, we can proceed. */
501 if (s
->flags
& VSTART_DEFINED
) { /* Default to virtual alignment of four. */
502 if (!(g
->flags
& VALIGN_DEFINED
)) {
504 g
->flags
|= VALIGN_DEFINED
;
506 /* Compute the vstart address. */
507 g
->vstart
= ALIGN(s
->vstart
+ s
->length
, g
->valign
);
508 g
->flags
|= VSTART_DEFINED
;
510 /* Start and vstart mean the same thing for nobits sections. */
511 if (g
->flags
& TYPE_NOBITS
)
512 g
->start
= g
->vstart
;
517 /* Now check for any circular vfollows references, which will manifest
518 * themselves as sections without a defined vstart. */
519 for (h
= 0, s
= sections
; s
; s
= s
->next
) {
520 if (!(s
->flags
& VSTART_DEFINED
)) { /* Non-fatal errors after assembly has completed are generally a
521 * no-no, but we'll throw a fatal one eventually so it's ok. */
522 nasm_error(ERR_NONFATAL
, "cannot compute vstart for section %s",
528 nasm_error(ERR_FATAL
|ERR_NOFILE
, "circular vfollows path detected");
531 nasm_error(ERR_DEBUG
,
532 "bin_cleanup: Confirm final section order for output file:\n");
533 for (h
= 0, s
= sections
; s
&& (s
->flags
& TYPE_PROGBITS
);
535 fprintf(stdout
, "%i. %s\n", h
, s
->name
);
538 /* Step 5: Apply relocations. */
540 /* Prepare the sections for relocating. */
541 list_for_each(s
, sections
)
542 saa_rewind(s
->contents
);
543 /* Apply relocations. */
544 list_for_each(r
, relocs
) {
545 uint8_t *p
, mydata
[8];
549 nasm_assert(r
->bytes
<= 8);
551 saa_fread(r
->target
->contents
, r
->posn
, mydata
, r
->bytes
);
554 for (b
= r
->bytes
- 1; b
>= 0; b
--)
555 l
= (l
<< 8) + mydata
[b
];
557 s
= find_section_by_index(r
->secref
);
559 if (r
->secref
== s
->start_index
)
564 s
= find_section_by_index(r
->secrel
);
566 if (r
->secrel
== s
->start_index
)
572 WRITEADDR(p
, l
, r
->bytes
);
573 saa_fwrite(r
->target
->contents
, r
->posn
, mydata
, r
->bytes
);
576 /* Step 6: Write the section data to the output file. */
579 /* Step 7: Generate the map file. */
582 static const char not_defined
[] = "not defined";
584 /* Display input and output file names. */
585 fprintf(rf
, "\n- NASM Map file ");
588 fprintf(rf
, "\n\nSource file: %s\nOutput file: %s\n\n",
591 if (map_control
& MAP_ORIGIN
) { /* Display program origin. */
592 fprintf(rf
, "-- Program origin ");
595 fprintf(rf
, "\n\n%08"PRIX64
"\n\n", origin
);
597 /* Display sections summary. */
598 if (map_control
& MAP_SUMMARY
) {
599 fprintf(rf
, "-- Sections (summary) ");
602 fprintf(rf
, "\n\nVstart Start Stop "
603 "Length Class Name\n");
604 list_for_each(s
, sections
) {
605 fprintf(rf
, "%16"PRIX64
" %16"PRIX64
" %16"PRIX64
" %08"PRIX64
" ",
606 s
->vstart
, s
->start
, s
->start
+ s
->length
,
608 if (s
->flags
& TYPE_PROGBITS
)
609 fprintf(rf
, "progbits ");
611 fprintf(rf
, "nobits ");
612 fprintf(rf
, "%s\n", s
->name
);
616 /* Display detailed section information. */
617 if (map_control
& MAP_SECTIONS
) {
618 fprintf(rf
, "-- Sections (detailed) ");
622 list_for_each(s
, sections
) {
623 fprintf(rf
, "---- Section %s ", s
->name
);
624 for (h
= 65 - strlen(s
->name
); h
; h
--)
626 fprintf(rf
, "\n\nclass: ");
627 if (s
->flags
& TYPE_PROGBITS
)
628 fprintf(rf
, "progbits");
630 fprintf(rf
, "nobits");
631 fprintf(rf
, "\nlength: %16"PRIX64
"\nstart: %16"PRIX64
""
632 "\nalign: ", s
->length
, s
->start
);
633 if (s
->flags
& ALIGN_DEFINED
)
634 fprintf(rf
, "%16"PRIX64
"", s
->align
);
636 fputs(not_defined
, rf
);
637 fprintf(rf
, "\nfollows: ");
638 if (s
->flags
& FOLLOWS_DEFINED
)
639 fprintf(rf
, "%s", s
->follows
);
641 fputs(not_defined
, rf
);
642 fprintf(rf
, "\nvstart: %16"PRIX64
"\nvalign: ", s
->vstart
);
643 if (s
->flags
& VALIGN_DEFINED
)
644 fprintf(rf
, "%16"PRIX64
"", s
->valign
);
646 fputs(not_defined
, rf
);
647 fprintf(rf
, "\nvfollows: ");
648 if (s
->flags
& VFOLLOWS_DEFINED
)
649 fprintf(rf
, "%s", s
->vfollows
);
651 fputs(not_defined
, rf
);
655 /* Display symbols information. */
656 if (map_control
& MAP_SYMBOLS
) {
660 fprintf(rf
, "-- Symbols ");
665 fprintf(rf
, "---- No Section ");
668 fprintf(rf
, "\n\nValue Name\n");
669 list_for_each(l
, no_seg_labels
) {
670 lookup_label(l
->name
, &segment
, &offset
);
671 fprintf(rf
, "%08"PRIX64
" %s\n", offset
, l
->name
);
675 list_for_each(s
, sections
) {
677 fprintf(rf
, "---- Section %s ", s
->name
);
678 for (h
= 65 - strlen(s
->name
); h
; h
--)
680 fprintf(rf
, "\n\nReal Virtual Name\n");
681 list_for_each(l
, s
->labels
) {
682 lookup_label(l
->name
, &segment
, &offset
);
683 fprintf(rf
, "%16"PRIX64
" %16"PRIX64
" %s\n",
684 s
->start
+ offset
, s
->vstart
+ offset
,
693 /* Close the report file. */
694 if (map_control
&& (rf
!= stdout
) && (rf
!= stderr
))
697 /* Step 8: Release all allocated memory. */
699 /* Free sections, label pointer structs, etc.. */
703 saa_free(s
->contents
);
705 if (s
->flags
& FOLLOWS_DEFINED
)
706 nasm_free(s
->follows
);
707 if (s
->flags
& VFOLLOWS_DEFINED
)
708 nasm_free(s
->vfollows
);
717 /* Free no-section labels. */
718 while (no_seg_labels
) {
720 no_seg_labels
= l
->next
;
724 /* Free relocation structures. */
732 static void bin_out(int32_t segto
, const void *data
,
733 enum out_type type
, uint64_t size
,
734 int32_t segment
, int32_t wrt
)
736 uint8_t *p
, mydata
[8];
740 wrt
= NO_SEG
; /* continue to do _something_ */
741 nasm_error(ERR_NONFATAL
, "WRT not supported by binary output format");
744 /* Handle absolute-assembly (structure definitions). */
745 if (segto
== NO_SEG
) {
746 if (type
!= OUT_RESERVE
)
747 nasm_error(ERR_NONFATAL
, "attempt to assemble code in"
748 " [ABSOLUTE] space");
752 /* Find the segment we are targeting. */
753 s
= find_section_by_index(segto
);
755 nasm_error(ERR_PANIC
, "code directed to nonexistent segment?");
757 /* "Smart" section-type adaptation code. */
758 if (!(s
->flags
& TYPE_DEFINED
)) {
759 if (type
== OUT_RESERVE
)
760 s
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
762 s
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
765 if ((s
->flags
& TYPE_NOBITS
) && (type
!= OUT_RESERVE
))
766 nasm_error(ERR_WARNING
, "attempt to initialize memory in a"
767 " nobits section: ignored");
771 if (segment
!= NO_SEG
&& !find_section_by_index(segment
)) {
773 nasm_error(ERR_NONFATAL
, "binary output format does not support"
774 " segment base references");
776 nasm_error(ERR_NONFATAL
, "binary output format does not support"
777 " external references");
780 if (s
->flags
& TYPE_PROGBITS
) {
781 if (segment
!= NO_SEG
)
782 add_reloc(s
, size
, segment
, -1L);
784 WRITEADDR(p
, *(int64_t *)data
, size
);
785 saa_wbytes(s
->contents
, mydata
, size
);
790 if (s
->flags
& TYPE_PROGBITS
)
791 saa_wbytes(s
->contents
, data
, size
);
795 if (s
->flags
& TYPE_PROGBITS
) {
796 nasm_error(ERR_WARNING
, "uninitialized space declared in"
797 " %s section: zeroing", s
->name
);
798 saa_wbytes(s
->contents
, NULL
, size
);
807 int64_t addr
= *(int64_t *)data
- size
;
808 size
= realsize(type
, size
);
809 if (segment
!= NO_SEG
&& !find_section_by_index(segment
)) {
811 nasm_error(ERR_NONFATAL
, "binary output format does not support"
812 " segment base references");
814 nasm_error(ERR_NONFATAL
, "binary output format does not support"
815 " external references");
818 if (s
->flags
& TYPE_PROGBITS
) {
819 add_reloc(s
, size
, segment
, segto
);
821 WRITEADDR(p
, addr
- s
->length
, size
);
822 saa_wbytes(s
->contents
, mydata
, size
);
828 nasm_error(ERR_NONFATAL
, "unsupported relocation type %d\n", type
);
835 static void bin_deflabel(char *name
, int32_t segment
, int64_t offset
,
836 int is_global
, char *special
)
838 (void)segment
; /* Don't warn that this parameter is unused */
839 (void)offset
; /* Don't warn that this parameter is unused */
842 nasm_error(ERR_NONFATAL
, "binary format does not support any"
843 " special symbol types");
844 else if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@')
845 nasm_error(ERR_NONFATAL
, "unrecognised special symbol `%s'", name
);
846 else if (is_global
== 2)
847 nasm_error(ERR_NONFATAL
, "binary output format does not support common"
851 struct bin_label
***ltp
;
853 /* Remember label definition so we can look it up later when
854 * creating the map file. */
855 s
= find_section_by_index(segment
);
857 ltp
= &(s
->labels_end
);
860 (**ltp
) = nasm_malloc(sizeof(struct bin_label
));
861 (**ltp
)->name
= name
;
862 (**ltp
)->next
= NULL
;
863 *ltp
= &((**ltp
)->next
);
868 /* These constants and the following function are used
869 * by bin_secname() to parse attribute assignments. */
871 enum { ATTRIB_START
, ATTRIB_ALIGN
, ATTRIB_FOLLOWS
,
872 ATTRIB_VSTART
, ATTRIB_VALIGN
, ATTRIB_VFOLLOWS
,
873 ATTRIB_NOBITS
, ATTRIB_PROGBITS
876 static int bin_read_attribute(char **line
, int *attribute
,
880 int attrib_name_size
;
881 struct tokenval tokval
;
884 /* Skip whitespace. */
885 while (**line
&& nasm_isspace(**line
))
890 /* Figure out what attribute we're reading. */
891 if (!nasm_strnicmp(*line
, "align=", 6)) {
892 *attribute
= ATTRIB_ALIGN
;
893 attrib_name_size
= 6;
895 if (!nasm_strnicmp(*line
, "start=", 6)) {
896 *attribute
= ATTRIB_START
;
897 attrib_name_size
= 6;
898 } else if (!nasm_strnicmp(*line
, "follows=", 8)) {
899 *attribute
= ATTRIB_FOLLOWS
;
902 } else if (!nasm_strnicmp(*line
, "vstart=", 7)) {
903 *attribute
= ATTRIB_VSTART
;
904 attrib_name_size
= 7;
905 } else if (!nasm_strnicmp(*line
, "valign=", 7)) {
906 *attribute
= ATTRIB_VALIGN
;
907 attrib_name_size
= 7;
908 } else if (!nasm_strnicmp(*line
, "vfollows=", 9)) {
909 *attribute
= ATTRIB_VFOLLOWS
;
912 } else if (!nasm_strnicmp(*line
, "nobits", 6) &&
913 (nasm_isspace((*line
)[6]) || ((*line
)[6] == '\0'))) {
914 *attribute
= ATTRIB_NOBITS
;
917 } else if (!nasm_strnicmp(*line
, "progbits", 8) &&
918 (nasm_isspace((*line
)[8]) || ((*line
)[8] == '\0'))) {
919 *attribute
= ATTRIB_PROGBITS
;
926 /* Find the end of the expression. */
927 if ((*line
)[attrib_name_size
] != '(') {
928 /* Single term (no parenthesis). */
929 exp
= *line
+= attrib_name_size
;
930 while (**line
&& !nasm_isspace(**line
))
940 /* Full expression (delimited by parenthesis) */
941 exp
= *line
+= attrib_name_size
+ 1;
943 (*line
) += strcspn(*line
, "()'\"");
954 if ((**line
== '"') || (**line
== '\'')) {
962 nasm_error(ERR_NONFATAL
,
963 "invalid syntax in `section' directive");
969 nasm_error(ERR_NONFATAL
, "expecting `)'");
973 *(*line
- 1) = '\0'; /* Terminate the expression. */
976 /* Check for no value given. */
978 nasm_error(ERR_WARNING
, "No value given to attribute in"
979 " `section' directive");
983 /* Read and evaluate the expression. */
986 tokval
.t_type
= TOKEN_INVALID
;
987 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, nasm_error
, NULL
);
989 if (!is_really_simple(e
)) {
990 nasm_error(ERR_NONFATAL
, "section attribute value must be"
991 " a critical expression");
995 nasm_error(ERR_NONFATAL
, "Invalid attribute value"
996 " specified in `section' directive.");
999 *value
= (uint64_t)reloc_value(e
);
1003 static void bin_sectalign(int32_t seg
, unsigned int value
)
1005 struct Section
*s
= find_section_by_index(seg
);
1007 if (!s
|| !is_power2(value
))
1010 if (value
> s
->align
)
1013 if (!(s
->flags
& ALIGN_DEFINED
))
1014 s
->flags
|= ALIGN_DEFINED
;
1017 static void bin_assign_attributes(struct Section
*sec
, char *astring
)
1019 int attribute
, check
;
1023 while (1) { /* Get the next attribute. */
1024 check
= bin_read_attribute(&astring
, &attribute
, &value
);
1025 /* Skip bad attribute. */
1028 /* Unknown section attribute, so skip it and warn the user. */
1031 break; /* End of line. */
1034 while (*astring
&& !nasm_isspace(*astring
))
1040 nasm_error(ERR_WARNING
, "ignoring unknown section attribute:"
1046 switch (attribute
) { /* Handle nobits attribute. */
1048 if ((sec
->flags
& TYPE_DEFINED
)
1049 && (sec
->flags
& TYPE_PROGBITS
))
1050 nasm_error(ERR_NONFATAL
,
1051 "attempt to change section type"
1052 " from progbits to nobits");
1054 sec
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
1057 /* Handle progbits attribute. */
1058 case ATTRIB_PROGBITS
:
1059 if ((sec
->flags
& TYPE_DEFINED
) && (sec
->flags
& TYPE_NOBITS
))
1060 nasm_error(ERR_NONFATAL
, "attempt to change section type"
1061 " from nobits to progbits");
1063 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1066 /* Handle align attribute. */
1068 if (!value
|| ((value
- 1) & value
)) {
1069 nasm_error(ERR_NONFATAL
,
1070 "argument to `align' is not a power of two");
1073 * Alignment is already satisfied if
1074 * the previous align value is greater
1076 if ((sec
->flags
& ALIGN_DEFINED
) && (value
< sec
->align
))
1079 /* Don't allow a conflicting align value. */
1080 if ((sec
->flags
& START_DEFINED
) && (sec
->start
& (value
- 1))) {
1081 nasm_error(ERR_NONFATAL
,
1082 "`align' value conflicts with section start address");
1085 sec
->flags
|= ALIGN_DEFINED
;
1090 /* Handle valign attribute. */
1092 if (!value
|| ((value
- 1) & value
))
1093 nasm_error(ERR_NONFATAL
, "argument to `valign' is not a"
1095 else { /* Alignment is already satisfied if the previous
1096 * align value is greater. */
1097 if ((sec
->flags
& VALIGN_DEFINED
) && (value
< sec
->valign
))
1098 value
= sec
->valign
;
1100 /* Don't allow a conflicting valign value. */
1101 if ((sec
->flags
& VSTART_DEFINED
)
1102 && (sec
->vstart
& (value
- 1)))
1103 nasm_error(ERR_NONFATAL
,
1104 "`valign' value conflicts "
1105 "with `vstart' address");
1107 sec
->valign
= value
;
1108 sec
->flags
|= VALIGN_DEFINED
;
1113 /* Handle start attribute. */
1115 if (sec
->flags
& FOLLOWS_DEFINED
)
1116 nasm_error(ERR_NONFATAL
, "cannot combine `start' and `follows'"
1117 " section attributes");
1118 else if ((sec
->flags
& START_DEFINED
) && (value
!= sec
->start
))
1119 nasm_error(ERR_NONFATAL
, "section start address redefined");
1122 sec
->flags
|= START_DEFINED
;
1123 if (sec
->flags
& ALIGN_DEFINED
) {
1124 if (sec
->start
& (sec
->align
- 1))
1125 nasm_error(ERR_NONFATAL
, "`start' address conflicts"
1126 " with section alignment");
1127 sec
->flags
^= ALIGN_DEFINED
;
1132 /* Handle vstart attribute. */
1134 if (sec
->flags
& VFOLLOWS_DEFINED
)
1135 nasm_error(ERR_NONFATAL
,
1136 "cannot combine `vstart' and `vfollows'"
1137 " section attributes");
1138 else if ((sec
->flags
& VSTART_DEFINED
)
1139 && (value
!= sec
->vstart
))
1140 nasm_error(ERR_NONFATAL
,
1141 "section virtual start address"
1142 " (vstart) redefined");
1144 sec
->vstart
= value
;
1145 sec
->flags
|= VSTART_DEFINED
;
1146 if (sec
->flags
& VALIGN_DEFINED
) {
1147 if (sec
->vstart
& (sec
->valign
- 1))
1148 nasm_error(ERR_NONFATAL
, "`vstart' address conflicts"
1149 " with `valign' value");
1150 sec
->flags
^= VALIGN_DEFINED
;
1155 /* Handle follows attribute. */
1156 case ATTRIB_FOLLOWS
:
1158 astring
+= strcspn(astring
, " \t");
1160 nasm_error(ERR_NONFATAL
, "expecting section name for `follows'"
1163 *(astring
++) = '\0';
1164 if (sec
->flags
& START_DEFINED
)
1165 nasm_error(ERR_NONFATAL
,
1166 "cannot combine `start' and `follows'"
1167 " section attributes");
1168 sec
->follows
= nasm_strdup(p
);
1169 sec
->flags
|= FOLLOWS_DEFINED
;
1173 /* Handle vfollows attribute. */
1174 case ATTRIB_VFOLLOWS
:
1175 if (sec
->flags
& VSTART_DEFINED
)
1176 nasm_error(ERR_NONFATAL
,
1177 "cannot combine `vstart' and `vfollows'"
1178 " section attributes");
1181 astring
+= strcspn(astring
, " \t");
1183 nasm_error(ERR_NONFATAL
,
1184 "expecting section name for `vfollows'"
1187 *(astring
++) = '\0';
1188 sec
->vfollows
= nasm_strdup(p
);
1189 sec
->flags
|= VFOLLOWS_DEFINED
;
1197 static void bin_define_section_labels(void)
1199 static int labels_defined
= 0;
1200 struct Section
*sec
;
1206 list_for_each(sec
, sections
) {
1207 base_len
= strlen(sec
->name
) + 8;
1208 label_name
= nasm_malloc(base_len
+ 8);
1209 strcpy(label_name
, "section.");
1210 strcpy(label_name
+ 8, sec
->name
);
1212 /* section.<name>.start */
1213 strcpy(label_name
+ base_len
, ".start");
1214 define_label(label_name
, sec
->start_index
, 0L, NULL
, 0, 0);
1216 /* section.<name>.vstart */
1217 strcpy(label_name
+ base_len
, ".vstart");
1218 define_label(label_name
, sec
->vstart_index
, 0L, NULL
, 0, 0);
1220 nasm_free(label_name
);
1225 static int32_t bin_secname(char *name
, int pass
, int *bits
)
1228 struct Section
*sec
;
1230 /* bin_secname is called with *name = NULL at the start of each
1231 * pass. Use this opportunity to establish the default section
1232 * (default is BITS-16 ".text" segment).
1234 if (!name
) { /* Reset ORG and section attributes at the start of each pass. */
1236 list_for_each(sec
, sections
)
1237 sec
->flags
&= ~(START_DEFINED
| VSTART_DEFINED
|
1238 ALIGN_DEFINED
| VALIGN_DEFINED
);
1240 /* Define section start and vstart labels. */
1242 bin_define_section_labels();
1244 /* Establish the default (.text) section. */
1246 sec
= find_section_by_name(".text");
1247 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1248 return sec
->vstart_index
;
1251 /* Attempt to find the requested section. If it does not
1252 * exist, create it. */
1254 while (*p
&& !nasm_isspace(*p
))
1258 sec
= find_section_by_name(name
);
1260 sec
= create_section(name
);
1261 if (!strcmp(name
, ".data"))
1262 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1263 else if (!strcmp(name
, ".bss")) {
1264 sec
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
1265 sec
->ifollows
= NULL
;
1269 /* Handle attribute assignments. */
1271 bin_assign_attributes(sec
, p
);
1273 #ifndef ABIN_SMART_ADAPT
1274 /* The following line disables smart adaptation of
1275 * PROGBITS/NOBITS section types (it forces sections to
1276 * default to PROGBITS). */
1277 if ((pass
!= 1) && !(sec
->flags
& TYPE_DEFINED
))
1278 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1281 return sec
->vstart_index
;
1284 static int bin_directive(enum directives directive
, char *args
, int pass
)
1286 switch (directive
) {
1289 struct tokenval tokval
;
1295 tokval
.t_type
= TOKEN_INVALID
;
1296 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, nasm_error
, NULL
);
1298 if (!is_really_simple(e
))
1299 nasm_error(ERR_NONFATAL
, "org value must be a critical"
1302 value
= reloc_value(e
);
1303 /* Check for ORG redefinition. */
1304 if (origin_defined
&& (value
!= origin
))
1305 nasm_error(ERR_NONFATAL
, "program origin redefined");
1312 nasm_error(ERR_NONFATAL
, "No or invalid offset specified"
1313 " in ORG directive.");
1318 /* The 'map' directive allows the user to generate section
1319 * and symbol information to stdout, stderr, or to a file. */
1324 args
+= strspn(args
, " \t");
1327 args
+= strcspn(args
, " \t");
1330 if (!nasm_stricmp(p
, "all"))
1332 MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
| MAP_SYMBOLS
;
1333 else if (!nasm_stricmp(p
, "brief"))
1334 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
;
1335 else if (!nasm_stricmp(p
, "sections"))
1336 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
;
1337 else if (!nasm_stricmp(p
, "segments"))
1338 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
;
1339 else if (!nasm_stricmp(p
, "symbols"))
1340 map_control
|= MAP_SYMBOLS
;
1342 if (!nasm_stricmp(p
, "stdout"))
1344 else if (!nasm_stricmp(p
, "stderr"))
1346 else { /* Must be a filename. */
1347 rf
= fopen(p
, "wt");
1349 nasm_error(ERR_WARNING
, "unable to open map file `%s'",
1356 nasm_error(ERR_WARNING
, "map file already specified");
1358 if (map_control
== 0)
1359 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
;
1369 static void bin_filename(char *inname
, char *outname
)
1371 standard_extension(inname
, outname
, "");
1376 static void ith_filename(char *inname
, char *outname
)
1378 standard_extension(inname
, outname
, ".ith");
1383 static void srec_filename(char *inname
, char *outname
)
1385 standard_extension(inname
, outname
, ".srec");
1390 static int32_t bin_segbase(int32_t segment
)
1395 static int bin_set_info(enum geninfo type
, char **val
)
1402 struct ofmt of_bin
, of_ith
, of_srec
;
1403 static void binfmt_init(void);
1404 static void do_output_bin(void);
1405 static void do_output_ith(void);
1406 static void do_output_srec(void);
1408 static void bin_init(void)
1410 do_output
= do_output_bin
;
1414 static void ith_init(void)
1416 do_output
= do_output_ith
;
1420 static void srec_init(void)
1422 do_output
= do_output_srec
;
1426 static void binfmt_init(void)
1428 maxbits
= 64; /* Support 64-bit Segments */
1430 reloctail
= &relocs
;
1432 no_seg_labels
= NULL
;
1433 nsl_tail
= &no_seg_labels
;
1435 /* Create default section (.text). */
1436 sections
= last_section
= nasm_malloc(sizeof(struct Section
));
1437 last_section
->next
= NULL
;
1438 last_section
->name
= nasm_strdup(".text");
1439 last_section
->contents
= saa_init(1L);
1440 last_section
->follows
= last_section
->vfollows
= 0;
1441 last_section
->ifollows
= NULL
;
1442 last_section
->length
= 0;
1443 last_section
->flags
= TYPE_DEFINED
| TYPE_PROGBITS
;
1444 last_section
->labels
= NULL
;
1445 last_section
->labels_end
= &(last_section
->labels
);
1446 last_section
->start_index
= seg_alloc();
1447 last_section
->vstart_index
= seg_alloc();
1450 /* Generate binary file output */
1451 static void do_output_bin(void)
1454 uint64_t addr
= origin
;
1456 /* Write the progbits sections to the output file. */
1457 list_for_each(s
, sections
) {
1458 /* Skip non-progbits sections */
1459 if (!(s
->flags
& TYPE_PROGBITS
))
1461 /* Skip zero-length sections */
1465 /* Pad the space between sections. */
1466 nasm_assert(addr
<= s
->start
);
1467 fwritezero(s
->start
- addr
, ofile
);
1469 /* Write the section to the output file. */
1470 saa_fpwrite(s
->contents
, ofile
);
1472 /* Keep track of the current file position */
1473 addr
= s
->start
+ s
->length
;
1477 /* Generate Intel hex file output */
1478 static int write_ith_record(unsigned int len
, uint16_t addr
,
1479 uint8_t type
, void *data
)
1481 char buf
[1+2+4+2+255*2+2+2];
1483 uint8_t csum
, *dptr
= data
;
1486 nasm_assert(len
<= 255);
1488 csum
= len
+ addr
+ (addr
>> 8) + type
;
1489 for (i
= 0; i
< len
; i
++)
1493 p
+= sprintf(p
, ":%02X%04X%02X", len
, addr
, type
);
1494 for (i
= 0; i
< len
; i
++)
1495 p
+= sprintf(p
, "%02X", dptr
[i
]);
1496 p
+= sprintf(p
, "%02X\n", csum
);
1498 if (fwrite(buf
, 1, p
-buf
, ofile
) != (size_t)(p
-buf
))
1504 static void do_output_ith(void)
1508 uint64_t addr
, hiaddr
, hilba
;
1512 /* Write the progbits sections to the output file. */
1514 list_for_each(s
, sections
) {
1515 /* Skip non-progbits sections */
1516 if (!(s
->flags
& TYPE_PROGBITS
))
1518 /* Skip zero-length sections */
1524 saa_rewind(s
->contents
);
1527 hiaddr
= addr
>> 16;
1528 if (hiaddr
!= hilba
) {
1529 buf
[0] = hiaddr
>> 8;
1531 write_ith_record(2, 0, 4, buf
);
1535 chunk
= 32 - (addr
& 31);
1539 saa_rnbytes(s
->contents
, buf
, chunk
);
1540 write_ith_record(chunk
, (uint16_t)addr
, 0, buf
);
1547 /* Write closing record */
1548 write_ith_record(0, 0, 1, NULL
);
1551 /* Generate Motorola S-records */
1552 static int write_srecord(unsigned int len
, unsigned int alen
,
1553 uint32_t addr
, uint8_t type
, void *data
)
1555 char buf
[2+2+8+255*2+2+2];
1557 uint8_t csum
, *dptr
= data
;
1560 nasm_assert(len
<= 255);
1576 csum
= (len
+alen
+1) + addr
+ (addr
>> 8) + (addr
>> 16) + (addr
>> 24);
1577 for (i
= 0; i
< len
; i
++)
1581 p
+= sprintf(p
, "S%c%02X%0*X", type
, len
+alen
+1, alen
*2, addr
);
1582 for (i
= 0; i
< len
; i
++)
1583 p
+= sprintf(p
, "%02X", dptr
[i
]);
1584 p
+= sprintf(p
, "%02X\n", csum
);
1586 if (fwrite(buf
, 1, p
-buf
, ofile
) != (size_t)(p
-buf
))
1592 static void do_output_srec(void)
1596 uint64_t addr
, maxaddr
;
1603 list_for_each(s
, sections
) {
1604 /* Skip non-progbits sections */
1605 if (!(s
->flags
& TYPE_PROGBITS
))
1607 /* Skip zero-length sections */
1611 addr
= s
->start
+ s
->length
- 1;
1616 if (maxaddr
<= 0xffff) {
1618 dtype
= '1'; /* S1 = 16-bit data */
1619 etype
= '9'; /* S9 = 16-bit end */
1620 } else if (maxaddr
<= 0xffffff) {
1622 dtype
= '2'; /* S2 = 24-bit data */
1623 etype
= '8'; /* S8 = 24-bit end */
1626 dtype
= '3'; /* S3 = 32-bit data */
1627 etype
= '7'; /* S7 = 32-bit end */
1630 /* Write head record */
1631 write_srecord(0, 2, 0, '0', NULL
);
1633 /* Write the progbits sections to the output file. */
1634 list_for_each(s
, sections
) {
1635 /* Skip non-progbits sections */
1636 if (!(s
->flags
& TYPE_PROGBITS
))
1638 /* Skip zero-length sections */
1644 saa_rewind(s
->contents
);
1647 chunk
= 32 - (addr
& 31);
1651 saa_rnbytes(s
->contents
, buf
, chunk
);
1652 write_srecord(chunk
, alen
, (uint32_t)addr
, dtype
, buf
);
1659 /* Write closing record */
1660 write_srecord(0, alen
, 0, etype
, NULL
);
1664 struct ofmt of_bin
= {
1665 "flat-form binary files (e.g. DOS .COM, .SYS)",
1683 struct ofmt of_ith
= {
1702 struct ofmt of_srec
= {
1703 "Motorola S-records",
1721 #endif /* #ifdef OF_BIN */