1 /* outieee.c output routines for the Netwide Assembler to produce
2 * IEEE-std object files
4 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 * Julian Hall. All rights reserved. The software is
6 * redistributable under the license given in the file "LICENSE"
7 * distributed in the NASM archive.
10 /* notes: I have tried to make this correspond to the IEEE version
11 * of the standard, specifically the primary ASCII version. It should
12 * be trivial to create the binary version given this source (which is
13 * one of MANY things that have to be done to make this correspond to
14 * the hp-microtek version of the standard).
16 * 16-bit support is assumed to use 24-bit addresses
17 * The linker can sort out segmentation-specific stuff
18 * if it keeps track of externals
19 * in terms of being relative to section bases
21 * A non-standard variable type, the 'Yn' variable, has been introduced.
22 * Basically it is a reference to extern 'n'- denoting the low limit
23 * (L-variable) of the section that extern 'n' is defined in. Like the
24 * x variable, there may be no explicit assignment to it, it is derived
25 * from the public definition corresponding to the extern name. This
26 * is required because the one thing the mufom guys forgot to do well was
27 * take into account segmented architectures.
29 * I use comment classes for various things and these are undefined by
32 * Debug info should be considered totally non-standard (local labels are
33 * standard but linenum records are not covered by the standard.
34 * Type defs have the standard format but absolute meanings for ordinal
35 * types are not covered by the standard.)
37 * David Lindauer, LADsoft
45 #include <stdarg.h> /* Note: we need the ANSI version of stdarg.h */
51 #include "output/outform.h"
52 #include "output/outlib.h"
58 static char ieee_infile
[FILENAME_MAX
];
59 static int ieee_uppercase
;
62 static ldfunc deflabel
;
67 #define HUNKSIZE 1024 /* Size of the data hunk */
68 #define EXT_BLKSIZ 512
69 #define LDPERLINE 32 /* bytes per line in output */
74 struct LineNumber
*next
;
75 struct ieeeSection
*segment
;
80 static struct FileName
{
81 struct FileName
*next
;
90 } *arrhead
, **arrtail
;
92 static struct ieeePublic
{
93 struct ieeePublic
*next
;
96 int32_t segment
; /* only if it's far-absolute */
98 int type
; /* for debug purposes */
99 } *fpubhead
, **fpubtail
, *last_defined
;
101 static struct ieeeExternal
{
102 struct ieeeExternal
*next
;
105 } *exthead
, **exttail
;
107 static int externals
;
109 static struct ExtBack
{
110 struct ExtBack
*next
;
111 int index
[EXT_BLKSIZ
];
114 /* NOTE: the first segment MUST be the lineno segment */
115 static struct ieeeSection
{
116 struct ieeeObjData
*data
, *datacurr
;
117 struct ieeeSection
*next
;
118 struct ieeeFixupp
*fptr
, *flptr
;
119 int32_t index
; /* the NASM segment id */
120 int32_t ieee_index
; /* the OBJ-file segment index */
122 int32_t align
; /* can be SEG_ABS + absolute addr */
129 int32_t use32
; /* is this segment 32-bit? */
130 struct ieeePublic
*pubhead
, **pubtail
, *lochead
, **loctail
;
132 } *seghead
, **segtail
, *ieee_seg_needs_update
;
135 struct ieeeObjData
*next
;
136 uint8_t data
[HUNKSIZE
];
140 struct ieeeFixupp
*next
;
158 static int32_t ieee_entry_seg
, ieee_entry_ofs
;
161 extern struct ofmt of_ieee
;
163 static void ieee_data_new(struct ieeeSection
*);
164 static void ieee_write_fixup(int32_t, int32_t, struct ieeeSection
*,
165 int, uint64_t, int32_t);
166 static void ieee_install_fixup(struct ieeeSection
*, struct ieeeFixupp
*);
167 static int32_t ieee_segment(char *, int, int *);
168 static void ieee_write_file(int debuginfo
);
169 static void ieee_write_byte(struct ieeeSection
*, int);
170 static void ieee_write_word(struct ieeeSection
*, int);
171 static void ieee_write_dword(struct ieeeSection
*, int32_t);
172 static void ieee_putascii(char *, ...);
173 static void ieee_putcs(int);
174 static int32_t ieee_putld(int32_t, int32_t, uint8_t *);
175 static int32_t ieee_putlr(struct ieeeFixupp
*);
176 static void ieee_unqualified_name(char *, char *);
181 static void ieee_init(FILE * fp
, efunc errfunc
, ldfunc ldef
, evalfunc eval
)
189 fpubtail
= &fpubhead
;
195 seghead
= ieee_seg_needs_update
= NULL
;
197 ieee_entry_seg
= NO_SEG
;
198 ieee_uppercase
= false;
202 static int ieee_set_info(enum geninfo type
, char **val
)
213 static void ieee_cleanup(int debuginfo
)
215 ieee_write_file(debuginfo
);
216 of_ieee
.current_dfmt
->cleanup();
219 struct ieeeSection
*segtmp
= seghead
;
220 seghead
= seghead
->next
;
221 while (segtmp
->pubhead
) {
222 struct ieeePublic
*pubtmp
= segtmp
->pubhead
;
223 segtmp
->pubhead
= pubtmp
->next
;
226 while (segtmp
->fptr
) {
227 struct ieeeFixupp
*fixtmp
= segtmp
->fptr
;
228 segtmp
->fptr
= fixtmp
->next
;
231 while (segtmp
->data
) {
232 struct ieeeObjData
*dattmp
= segtmp
->data
;
233 segtmp
->data
= dattmp
->next
;
239 struct ieeePublic
*pubtmp
= fpubhead
;
240 fpubhead
= fpubhead
->next
;
244 struct ieeeExternal
*exttmp
= exthead
;
245 exthead
= exthead
->next
;
249 struct ExtBack
*ebtmp
= ebhead
;
250 ebhead
= ebhead
->next
;
256 * callback for labels
258 static void ieee_deflabel(char *name
, int32_t segment
,
259 int64_t offset
, int is_global
, char *special
)
262 * We have three cases:
264 * (i) `segment' is a segment-base. If so, set the name field
265 * for the segment structure it refers to, and then
268 * (ii) `segment' is one of our segments, or a SEG_ABS segment.
269 * Save the label position for later output of a PUBDEF record.
272 * (iii) `segment' is not one of our segments. Save the label
273 * position for later output of an EXTDEF.
275 struct ieeeExternal
*ext
;
277 struct ieeeSection
*seg
;
281 error(ERR_NONFATAL
, "unrecognised symbol type `%s'", special
);
284 * First check for the double-period, signifying something
287 if (name
[0] == '.' && name
[1] == '.') {
288 if (!strcmp(name
, "..start")) {
289 ieee_entry_seg
= segment
;
290 ieee_entry_ofs
= offset
;
298 if (ieee_seg_needs_update
) {
299 ieee_seg_needs_update
->name
= name
;
302 if (segment
< SEG_ABS
&& segment
!= NO_SEG
&& segment
% 2)
308 if (segment
>= SEG_ABS
) {
310 * SEG_ABS subcase of (ii).
313 struct ieeePublic
*pub
;
315 pub
= *fpubtail
= nasm_malloc(sizeof(*pub
));
316 fpubtail
= &pub
->next
;
319 pub
->offset
= offset
;
320 pub
->segment
= segment
& ~SEG_ABS
;
325 for (seg
= seghead
; seg
&& is_global
; seg
= seg
->next
)
326 if (seg
->index
== segment
) {
327 struct ieeePublic
*pub
;
329 last_defined
= pub
= *seg
->pubtail
= nasm_malloc(sizeof(*pub
));
330 seg
->pubtail
= &pub
->next
;
333 pub
->offset
= offset
;
334 pub
->index
= seg
->ieee_index
;
343 ext
= *exttail
= nasm_malloc(sizeof(*ext
));
345 exttail
= &ext
->next
;
348 ext
->commonsize
= offset
;
354 eb
= *ebtail
= nasm_malloc(sizeof(*eb
));
358 while (i
> EXT_BLKSIZ
) {
362 eb
= *ebtail
= nasm_malloc(sizeof(*eb
));
368 eb
->index
[i
] = externals
++;
376 static void ieee_out(int32_t segto
, const void *data
,
377 enum out_type type
, uint64_t size
,
378 int32_t segment
, int32_t wrt
)
380 const uint8_t *ucdata
;
382 struct ieeeSection
*seg
;
385 * handle absolute-assembly (structure definitions)
387 if (segto
== NO_SEG
) {
388 if (type
!= OUT_RESERVE
)
389 error(ERR_NONFATAL
, "attempt to assemble code in [ABSOLUTE]"
395 * If `any_segs' is still false, we must define a default
399 int tempint
; /* ignored */
400 if (segto
!= ieee_segment("__NASMDEFSEG", 2, &tempint
))
401 error(ERR_PANIC
, "strange segment conditions in IEEE driver");
405 * Find the segment we are targetting.
407 for (seg
= seghead
; seg
; seg
= seg
->next
)
408 if (seg
->index
== segto
)
411 error(ERR_PANIC
, "code directed to nonexistent segment?");
413 if (type
== OUT_RAWDATA
) {
416 ieee_write_byte(seg
, *ucdata
++);
417 } else if (type
== OUT_ADDRESS
|| type
== OUT_REL2ADR
||
418 type
== OUT_REL4ADR
) {
419 if (segment
== NO_SEG
&& type
!= OUT_ADDRESS
)
420 error(ERR_NONFATAL
, "relative call to absolute address not"
421 " supported by IEEE format");
422 ldata
= *(int64_t *)data
;
423 if (type
== OUT_REL2ADR
)
425 if (type
== OUT_REL4ADR
)
427 ieee_write_fixup(segment
, wrt
, seg
, size
, type
, ldata
);
429 ieee_write_word(seg
, ldata
);
431 ieee_write_dword(seg
, ldata
);
432 } else if (type
== OUT_RESERVE
) {
434 ieee_write_byte(seg
, 0);
438 static void ieee_data_new(struct ieeeSection
*segto
)
442 segto
->data
= segto
->datacurr
=
443 nasm_malloc(sizeof(*(segto
->datacurr
)));
445 segto
->datacurr
= segto
->datacurr
->next
=
446 nasm_malloc(sizeof(*(segto
->datacurr
)));
447 segto
->datacurr
->next
= NULL
;
451 * this routine is unalduterated bloatware. I usually don't do this
452 * but I might as well see what it is like on a harmless program.
453 * If anyone wants to optimize this is a good canditate!
455 static void ieee_write_fixup(int32_t segment
, int32_t wrt
,
456 struct ieeeSection
*segto
, int size
,
457 uint64_t realtype
, int32_t offset
)
459 struct ieeeSection
*target
;
462 /* Don't put a fixup for things NASM can calculate */
463 if (wrt
== NO_SEG
&& segment
== NO_SEG
)
467 /* if it is a WRT offset */
472 s
.id1
= -(wrt
- SEG_ABS
);
474 if (wrt
% 2 && realtype
!= OUT_REL2ADR
475 && realtype
!= OUT_REL4ADR
) {
478 for (target
= seghead
; target
; target
= target
->next
)
479 if (target
->index
== wrt
)
482 s
.id1
= target
->ieee_index
;
483 for (target
= seghead
; target
; target
= target
->next
)
484 if (target
->index
== segment
)
488 s
.id2
= target
->ieee_index
;
491 * Now we assume the segment field is being used
492 * to hold an extern index
494 int32_t i
= segment
/ 2;
495 struct ExtBack
*eb
= ebhead
;
496 while (i
> EXT_BLKSIZ
) {
503 /* if we have an extern decide the type and make a record
508 s
.id2
= eb
->index
[i
];
511 "Source of WRT must be an offset");
516 "unrecognised WRT value in ieee_write_fixup");
518 error(ERR_NONFATAL
, "target of WRT must be a section ");
521 ieee_install_fixup(segto
, &s
);
524 /* Pure segment fixup ? */
525 if (segment
!= NO_SEG
) {
528 if (segment
>= SEG_ABS
) {
529 /* absolute far segment fixup */
530 s
.id1
= -(segment
- ~SEG_ABS
);
531 } else if (segment
% 2) {
532 /* fixup to named segment */
534 for (target
= seghead
; target
; target
= target
->next
)
535 if (target
->index
== segment
- 1)
538 s
.id1
= target
->ieee_index
;
541 * Now we assume the segment field is being used
542 * to hold an extern index
544 int32_t i
= segment
/ 2;
545 struct ExtBack
*eb
= ebhead
;
546 while (i
> EXT_BLKSIZ
) {
553 /* if we have an extern decide the type and make a record
556 if (realtype
== OUT_REL2ADR
|| realtype
== OUT_REL4ADR
) {
558 "Segment of a rel not supported in ieee_write_fixup");
560 /* If we want the segment */
563 s
.id1
= eb
->index
[i
];
567 /* If we get here the seg value doesn't make sense */
569 "unrecognised segment value in ieee_write_fixup");
573 /* Assume we are offsetting directly from a section
574 * So look up the target segment
576 for (target
= seghead
; target
; target
= target
->next
)
577 if (target
->index
== segment
)
580 if (realtype
== OUT_REL2ADR
|| realtype
== OUT_REL4ADR
) {
581 /* PC rel to a known offset */
582 s
.id1
= target
->ieee_index
;
587 /* We were offsetting from a seg */
588 s
.id1
= target
->ieee_index
;
595 * Now we assume the segment field is being used
596 * to hold an extern index
598 int32_t i
= segment
/ 2;
599 struct ExtBack
*eb
= ebhead
;
600 while (i
> EXT_BLKSIZ
) {
607 /* if we have an extern decide the type and make a record
610 if (realtype
== OUT_REL2ADR
|| realtype
== OUT_REL4ADR
) {
613 s
.id1
= eb
->index
[i
];
615 /* else we want the external offset */
618 s
.id1
= eb
->index
[i
];
622 /* If we get here the seg value doesn't make sense */
624 "unrecognised segment value in ieee_write_fixup");
627 if (size
!= 2 && s
.ftype
== FT_SEG
)
628 error(ERR_NONFATAL
, "IEEE format can only handle 2-byte"
629 " segment base references");
631 ieee_install_fixup(segto
, &s
);
634 /* should never get here */
636 static void ieee_install_fixup(struct ieeeSection
*seg
,
637 struct ieeeFixupp
*fix
)
639 struct ieeeFixupp
*f
;
640 f
= nasm_malloc(sizeof(struct ieeeFixupp
));
641 memcpy(f
, fix
, sizeof(struct ieeeFixupp
));
642 f
->offset
= seg
->currentpos
;
643 seg
->currentpos
+= fix
->size
;
646 seg
->flptr
= seg
->flptr
->next
= f
;
648 seg
->fptr
= seg
->flptr
= f
;
655 static int32_t ieee_segment(char *name
, int pass
, int *bits
)
658 * We call the label manager here to define a name for the new
659 * segment, and when our _own_ label-definition stub gets
660 * called in return, it should register the new segment name
661 * using the pointer it gets passed. That way we save memory,
662 * by sponging off the label manager.
668 return seghead
->index
;
670 struct ieeeSection
*seg
;
676 * Look for segment attributes.
680 name
++; /* hack, but a documented one */
682 while (*p
&& !nasm_isspace(*p
))
686 while (*p
&& nasm_isspace(*p
))
690 while (*p
&& !nasm_isspace(*p
))
694 while (*p
&& nasm_isspace(*p
))
702 for (seg
= seghead
; seg
; seg
= seg
->next
) {
704 if (!strcmp(seg
->name
, name
)) {
705 if (attrs
> 0 && pass
== 1)
706 error(ERR_WARNING
, "segment attributes specified on"
707 " redeclaration of segment: ignoring");
716 *segtail
= seg
= nasm_malloc(sizeof(*seg
));
718 segtail
= &seg
->next
;
719 seg
->index
= seg_alloc();
720 seg
->ieee_index
= ieee_idx
;
724 seg
->align
= 1; /* default */
725 seg
->use32
= *bits
== 32; /* default to user spec */
726 seg
->combine
= CMB_PUBLIC
; /* default */
728 seg
->pubtail
= &seg
->pubhead
;
732 seg
->loctail
= &seg
->lochead
;
735 * Process the segment attributes.
744 * `p' contains a segment attribute.
746 if (!nasm_stricmp(p
, "private"))
747 seg
->combine
= CMB_PRIVATE
;
748 else if (!nasm_stricmp(p
, "public"))
749 seg
->combine
= CMB_PUBLIC
;
750 else if (!nasm_stricmp(p
, "common"))
751 seg
->combine
= CMB_COMMON
;
752 else if (!nasm_stricmp(p
, "use16"))
754 else if (!nasm_stricmp(p
, "use32"))
756 else if (!nasm_strnicmp(p
, "align=", 6)) {
757 seg
->align
= readnum(p
+ 6, &rn_error
);
762 error(ERR_NONFATAL
, "segment alignment should be"
765 switch ((int)seg
->align
) {
777 error(ERR_NONFATAL
, "invalid alignment value %d",
782 } else if (!nasm_strnicmp(p
, "absolute=", 9)) {
783 seg
->align
= SEG_ABS
+ readnum(p
+ 9, &rn_error
);
785 error(ERR_NONFATAL
, "argument to `absolute' segment"
786 " attribute should be numeric");
790 ieee_seg_needs_update
= seg
;
791 if (seg
->align
>= SEG_ABS
)
792 deflabel(name
, NO_SEG
, seg
->align
- SEG_ABS
,
793 NULL
, false, false, &of_ieee
, error
);
795 deflabel(name
, seg
->index
+ 1, 0L,
796 NULL
, false, false, &of_ieee
, error
);
797 ieee_seg_needs_update
= NULL
;
808 * directives supported
810 static int ieee_directive(char *directive
, char *value
, int pass
)
815 if (!strcmp(directive
, "uppercase")) {
816 ieee_uppercase
= true;
823 * Return segment data
825 static int32_t ieee_segbase(int32_t segment
)
827 struct ieeeSection
*seg
;
830 * Find the segment in our list.
832 for (seg
= seghead
; seg
; seg
= seg
->next
)
833 if (seg
->index
== segment
- 1)
837 return segment
; /* not one of ours - leave it alone */
839 if (seg
->align
>= SEG_ABS
)
840 return seg
->align
; /* absolute segment */
842 return segment
; /* no special treatment */
848 static void ieee_filename(char *inname
, char *outname
, efunc error
)
850 strcpy(ieee_infile
, inname
);
851 standard_extension(inname
, outname
, ".o", error
);
854 static void ieee_write_file(int debuginfo
)
859 struct ieeeSection
*seg
;
860 struct ieeePublic
*pub
, *loc
;
861 struct ieeeExternal
*ext
;
862 struct ieeeObjData
*data
;
863 struct ieeeFixupp
*fix
;
868 * Write the module header
870 ieee_putascii("MBFNASM,%02X%s.\r\n", strlen(ieee_infile
), ieee_infile
);
873 * Write the NASM boast comment.
875 ieee_putascii("CO0,%02X%s.\r\n", strlen(nasm_comment
), nasm_comment
);
878 * write processor-specific information
880 ieee_putascii("AD8,4,L.\r\n");
886 thetime
= localtime(&reltime
);
887 ieee_putascii("DT%04d%02d%02d%02d%02d%02d.\r\n",
888 1900 + thetime
->tm_year
, thetime
->tm_mon
+ 1,
889 thetime
->tm_mday
, thetime
->tm_hour
, thetime
->tm_min
,
892 * if debugging, dump file names
894 for (fn
= fnhead
; fn
&& debuginfo
; fn
= fn
->next
) {
895 ieee_putascii("C0105,%02X%s.\r\n", strlen(fn
->name
), fn
->name
);
898 ieee_putascii("CO101,07ENDHEAD.\r\n");
900 * the standard doesn't specify when to put checksums,
901 * we'll just do it periodically.
906 * Write the section headers
909 if (!debuginfo
&& !strcmp(seg
->name
, "??LINE"))
914 switch (seg
->combine
) {
926 ieee_unqualified_name(buf
, seg
->name
);
927 if (seg
->align
>= SEG_ABS
) {
928 ieee_putascii("ST%X,A,%02X%s.\r\n", seg
->ieee_index
,
930 ieee_putascii("ASL%X,%lX.\r\n", seg
->ieee_index
,
931 (seg
->align
- SEG_ABS
) * 16);
933 ieee_putascii("ST%X,%c,%02X%s.\r\n", seg
->ieee_index
, attrib
,
935 ieee_putascii("SA%X,%lX.\r\n", seg
->ieee_index
, seg
->align
);
936 ieee_putascii("ASS%X,%X.\r\n", seg
->ieee_index
,
942 * write the start address if there is one
944 if (ieee_entry_seg
) {
945 for (seg
= seghead
; seg
; seg
= seg
->next
)
946 if (seg
->index
== ieee_entry_seg
)
949 error(ERR_PANIC
, "Start address records are incorrect");
951 ieee_putascii("ASG,R%X,%lX,+.\r\n", seg
->ieee_index
,
960 for (seg
= seghead
; seg
; seg
= seg
->next
) {
961 for (pub
= seg
->pubhead
; pub
; pub
= pub
->next
) {
963 ieee_unqualified_name(buf
, pub
->name
);
964 ieee_putascii("NI%X,%02X%s.\r\n", i
, strlen(buf
), buf
);
965 if (pub
->segment
== -1)
966 ieee_putascii("ASI%X,R%X,%lX,+.\r\n", i
, pub
->index
,
969 ieee_putascii("ASI%X,%lX,%lX,+.\r\n", i
, pub
->segment
* 16,
972 if (pub
->type
>= 0x100)
973 ieee_putascii("ATI%X,T%X.\r\n", i
, pub
->type
- 0x100);
975 ieee_putascii("ATI%X,%X.\r\n", i
, pub
->type
);
984 ieee_unqualified_name(buf
, pub
->name
);
985 ieee_putascii("NI%X,%02X%s.\r\n", i
, strlen(buf
), buf
);
986 if (pub
->segment
== -1)
987 ieee_putascii("ASI%X,R%X,%lX,+.\r\n", i
, pub
->index
,
990 ieee_putascii("ASI%X,%lX,%lX,+.\r\n", i
, pub
->segment
* 16,
993 if (pub
->type
>= 0x100)
994 ieee_putascii("ATI%X,T%X.\r\n", i
, pub
->type
- 0x100);
996 ieee_putascii("ATI%X,%X.\r\n", i
, pub
->type
);
1002 * Write the externals
1008 ieee_unqualified_name(buf
, ext
->name
);
1009 ieee_putascii("NX%X,%02X%s.\r\n", i
++, strlen(buf
), buf
);
1015 * IEEE doesn't have a standard pass break record
1016 * so use the ladsoft variant
1018 ieee_putascii("CO100,06ENDSYM.\r\n");
1024 for (arr
= arrhead
; arr
&& debuginfo
; arr
= arr
->next
) {
1025 ieee_putascii("TY%X,20,%X,%lX.\r\n", i
++, arr
->basetype
,
1032 for (seg
= seghead
; seg
&& debuginfo
; seg
= seg
->next
) {
1033 for (loc
= seg
->lochead
; loc
; loc
= loc
->next
) {
1035 ieee_unqualified_name(buf
, loc
->name
);
1036 ieee_putascii("NN%X,%02X%s.\r\n", i
, strlen(buf
), buf
);
1037 if (loc
->segment
== -1)
1038 ieee_putascii("ASN%X,R%X,%lX,+.\r\n", i
, loc
->index
,
1041 ieee_putascii("ASN%X,%lX,%lX,+.\r\n", i
, loc
->segment
* 16,
1044 if (loc
->type
>= 0x100)
1045 ieee_putascii("ATN%X,T%X.\r\n", i
, loc
->type
- 0x100);
1047 ieee_putascii("ATN%X,%X.\r\n", i
, loc
->type
);
1054 * put out section data;
1057 if (!debuginfo
&& !strcmp(seg
->name
, "??LINE"))
1060 if (seg
->currentpos
) {
1061 int32_t size
, org
= 0;
1063 ieee_putascii("SB%X.\r\n", seg
->ieee_index
);
1066 size
= HUNKSIZE
- (org
% HUNKSIZE
);
1069 seg
->currentpos
? seg
->currentpos
- org
: size
;
1070 size
= fix
->offset
- org
> size
? size
: fix
->offset
- org
;
1071 org
= ieee_putld(org
, org
+ size
, data
->data
);
1072 if (org
% HUNKSIZE
== 0)
1074 if (org
== fix
->offset
) {
1075 org
+= ieee_putlr(fix
);
1079 while (org
< seg
->currentpos
&& data
) {
1081 seg
->currentpos
- org
>
1082 HUNKSIZE
? HUNKSIZE
: seg
->currentpos
- org
;
1083 org
= ieee_putld(org
, org
+ size
, data
->data
);
1094 ieee_putascii("ME.\r\n");
1097 static void ieee_write_byte(struct ieeeSection
*seg
, int data
)
1100 if (!(temp
= seg
->currentpos
++ % HUNKSIZE
))
1102 seg
->datacurr
->data
[temp
] = data
;
1105 static void ieee_write_word(struct ieeeSection
*seg
, int data
)
1107 ieee_write_byte(seg
, data
& 0xFF);
1108 ieee_write_byte(seg
, (data
>> 8) & 0xFF);
1111 static void ieee_write_dword(struct ieeeSection
*seg
, int32_t data
)
1113 ieee_write_byte(seg
, data
& 0xFF);
1114 ieee_write_byte(seg
, (data
>> 8) & 0xFF);
1115 ieee_write_byte(seg
, (data
>> 16) & 0xFF);
1116 ieee_write_byte(seg
, (data
>> 24) & 0xFF);
1118 static void ieee_putascii(char *format
, ...)
1124 va_start(ap
, format
);
1125 vsnprintf(buffer
, sizeof(buffer
), format
, ap
);
1127 for (i
= 0; i
< l
; i
++)
1128 if ((buffer
[i
] & 0xff) > 31)
1129 checksum
+= buffer
[i
];
1131 fprintf(ofp
, buffer
);
1135 * put out a checksum record */
1136 static void ieee_putcs(int toclear
)
1139 ieee_putascii("CS.\r\n");
1143 ieee_putascii("CS%02X.\r\n", checksum
& 127);
1148 static int32_t ieee_putld(int32_t start
, int32_t end
, uint8_t *buf
)
1153 val
= start
% HUNKSIZE
;
1154 /* fill up multiple lines */
1155 while (end
- start
>= LDPERLINE
) {
1157 ieee_putascii("LD");
1158 for (i
= 0; i
< LDPERLINE
; i
++) {
1159 ieee_putascii("%02X", buf
[val
++]);
1162 ieee_putascii(".\r\n");
1164 /* if no partial lines */
1167 /* make a partial line */
1168 ieee_putascii("LD");
1169 while (start
< end
) {
1170 ieee_putascii("%02X", buf
[val
++]);
1173 ieee_putascii(".\r\n");
1176 static int32_t ieee_putlr(struct ieeeFixupp
*p
)
1179 * To deal with the vagaries of segmentation the LADsoft linker
1180 * defines two types of segments: absolute and virtual. Note that
1181 * 'absolute' in this context is a different thing from the IEEE
1182 * definition of an absolute segment type, which is also supported. If a
1183 * sement is linked in virtual mode the low limit (L-var) is
1184 * subtracted from each R,X, and P variable which appears in an
1185 * expression, so that we can have relative offsets. Meanwhile
1186 * in the ABSOLUTE mode this subtraction is not done and
1187 * so we can use absolute offsets from 0. In the LADsoft linker
1188 * this configuration is not done in the assemblker source but in
1189 * a source the linker reads. Generally this type of thing only
1190 * becomes an issue if real mode code is used. A pure 32-bit linker could
1191 * get away without defining the virtual mode...
1194 int32_t size
= p
->size
;
1198 sprintf(buf
, "%"PRIX32
"", -p
->id1
);
1200 sprintf(buf
, "L%"PRIX32
",10,/", p
->id1
);
1203 sprintf(buf
, "R%"PRIX32
",%"PRIX32
",+", p
->id1
, p
->addend
);
1206 sprintf(buf
, "R%"PRIX32
",%"PRIX32
",+,P,-,%X,-", p
->id1
, p
->addend
, p
->size
);
1211 sprintf(buf
, "R%"PRIX32
",%"PRIX32
",+,L%"PRIX32
",+,%"PRIX32
",-", p
->id2
, p
->addend
,
1212 p
->id2
, -p
->id1
* 16);
1214 sprintf(buf
, "R%"PRIX32
",%"PRIX32
",+,L%"PRIX32
",+,L%"PRIX32
",-", p
->id2
, p
->addend
,
1218 sprintf(buf
, "X%"PRIX32
"", p
->id1
);
1221 sprintf(buf
, "X%"PRIX32
",P,-,%"PRIX32
",-", p
->id1
, size
);
1224 /* We needed a non-ieee hack here.
1225 * We introduce the Y variable, which is the low
1226 * limit of the native segment the extern resides in
1228 sprintf(buf
, "Y%"PRIX32
",10,/", p
->id1
);
1232 sprintf(buf
, "X%"PRIX32
",Y%"PRIX32
",+,%"PRIX32
",-", p
->id2
, p
->id2
,
1235 sprintf(buf
, "X%"PRIX32
",Y%"PRIX32
",+,L%"PRIX32
",-", p
->id2
, p
->id2
, p
->id1
);
1238 ieee_putascii("LR(%s,%"PRIX32
").\r\n", buf
, size
);
1243 /* Dump all segment data (text and fixups )*/
1245 static void ieee_unqualified_name(char *dest
, char *source
)
1247 if (ieee_uppercase
) {
1249 *dest
++ = toupper(*source
++);
1252 strcpy(dest
, source
);
1254 void dbgls_init(struct ofmt
*of
, void *id
, FILE * fp
, efunc error
)
1264 arrindex
= ARRAY_BOT
;
1267 ieee_segment("??LINE", 2, &tempint
);
1270 static void dbgls_cleanup(void)
1272 struct ieeeSection
*segtmp
;
1274 struct FileName
*fntemp
= fnhead
;
1275 fnhead
= fnhead
->next
;
1276 nasm_free(fntemp
->name
);
1279 for (segtmp
= seghead
; segtmp
; segtmp
= segtmp
->next
) {
1280 while (segtmp
->lochead
) {
1281 struct ieeePublic
*loctmp
= segtmp
->lochead
;
1282 segtmp
->lochead
= loctmp
->next
;
1283 nasm_free(loctmp
->name
);
1288 struct Array
*arrtmp
= arrhead
;
1289 arrhead
= arrhead
->next
;
1295 * because this routine is not bracketed in
1296 * the main program, this routine will be called even if there
1297 * is no request for debug info
1298 * so, we have to make sure the ??LINE segment is avaialbe
1299 * as the first segment when this debug format is selected
1301 static void dbgls_linnum(const char *lnfname
, int32_t lineno
, int32_t segto
)
1303 struct FileName
*fn
;
1304 struct ieeeSection
*seg
;
1306 if (segto
== NO_SEG
)
1310 * If `any_segs' is still false, we must define a default
1314 int tempint
; /* ignored */
1315 if (segto
!= ieee_segment("__NASMDEFSEG", 2, &tempint
))
1316 error(ERR_PANIC
, "strange segment conditions in OBJ driver");
1320 * Find the segment we are targetting.
1322 for (seg
= seghead
; seg
; seg
= seg
->next
)
1323 if (seg
->index
== segto
)
1326 error(ERR_PANIC
, "lineno directed to nonexistent segment?");
1328 for (fn
= fnhead
; fn
; fn
= fn
->next
) {
1329 if (!nasm_stricmp(lnfname
, fn
->name
))
1334 fn
= nasm_malloc(sizeof(*fn
));
1335 fn
->name
= nasm_malloc(strlen(lnfname
) + 1);
1337 strcpy(fn
->name
, lnfname
);
1342 ieee_write_byte(seghead
, fn
->index
);
1343 ieee_write_word(seghead
, lineno
);
1344 ieee_write_fixup(segto
, NO_SEG
, seghead
, 4, OUT_ADDRESS
,
1348 static void dbgls_deflabel(char *name
, int32_t segment
,
1349 int64_t offset
, int is_global
, char *special
)
1351 struct ieeeSection
*seg
;
1353 /* Keep compiler from warning about special */
1357 * If it's a special-retry from pass two, discard it.
1363 * First check for the double-period, signifying something
1366 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
1373 if (ieee_seg_needs_update
)
1375 if (segment
< SEG_ABS
&& segment
!= NO_SEG
&& segment
% 2)
1378 if (segment
>= SEG_ABS
|| segment
== NO_SEG
) {
1383 * If `any_segs' is still false, we might need to define a
1384 * default segment, if they're trying to declare a label in
1385 * `first_seg'. But the label should exist due to a prior
1386 * call to ieee_deflabel so we can skip that.
1389 for (seg
= seghead
; seg
; seg
= seg
->next
)
1390 if (seg
->index
== segment
) {
1391 struct ieeePublic
*loc
;
1393 * Case (ii). Maybe MODPUB someday?
1396 last_defined
= loc
= nasm_malloc(sizeof(*loc
));
1397 *seg
->loctail
= loc
;
1398 seg
->loctail
= &loc
->next
;
1400 loc
->name
= nasm_strdup(name
);
1401 loc
->offset
= offset
;
1403 loc
->index
= seg
->ieee_index
;
1407 static void dbgls_typevalue(int32_t type
)
1409 int elem
= TYM_ELEMENTS(type
);
1410 type
= TYM_TYPE(type
);
1417 last_defined
->type
= 1; /* uint8_t */
1420 last_defined
->type
= 3; /* unsigned word */
1423 last_defined
->type
= 5; /* unsigned dword */
1426 last_defined
->type
= 9; /* float */
1429 last_defined
->type
= 10; /* qword */
1432 last_defined
->type
= 11; /* TBYTE */
1435 last_defined
->type
= 0x10; /* near label */
1440 struct Array
*arrtmp
= nasm_malloc(sizeof(*arrtmp
));
1441 int vtype
= last_defined
->type
;
1442 arrtmp
->size
= elem
;
1443 arrtmp
->basetype
= vtype
;
1444 arrtmp
->next
= NULL
;
1445 last_defined
->type
= arrindex
++ + 0x100;
1447 arrtail
= &(arrtmp
->next
);
1449 last_defined
= NULL
;
1451 static void dbgls_output(int output_type
, void *param
)
1456 static struct dfmt ladsoft_debug_form
= {
1457 "LADsoft Debug Records",
1467 static struct dfmt
*ladsoft_debug_arr
[3] = {
1468 &ladsoft_debug_form
,
1472 struct ofmt of_ieee
= {
1473 "IEEE-695 (LADsoft variant) object file format",
1477 &ladsoft_debug_form
,
1490 #endif /* OF_IEEE */