nasm/output/outieee.c

1491 lines
43 KiB
C
Raw Normal View History

2002-04-30 20:53:55 +00:00
/* outieee.c output routines for the Netwide Assembler to produce
* IEEE-std object files
*
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
* Julian Hall. All rights reserved. The software is
* redistributable under the licence given in the file "Licence"
* distributed in the NASM archive.
*/
/* notes: I have tried to make this correspond to the IEEE version
* of the standard, specifically the primary ASCII version. It should
* be trivial to create the binary version given this source (which is
* one of MANY things that have to be done to make this correspond to
* the hp-microtek version of the standard).
*
* 16-bit support is assumed to use 24-bit addresses
* The linker can sort out segmentation-specific stuff
* if it keeps track of externals
* in terms of being relative to section bases
*
* A non-standard variable type, the 'Yn' variable, has been introduced.
* Basically it is a reference to extern 'n'- denoting the low limit
* (L-variable) of the section that extern 'n' is defined in. Like the
* x variable, there may be no explicit assignment to it, it is derived
* from the public definition corresponding to the extern name. This
* is required because the one thing the mufom guys forgot to do well was
* take into account segmented architectures.
*
* I use comment classes for various things and these are undefined by
* the standard.
*
* Debug info should be considered totally non-standard (local labels are
* standard but linenum records are not covered by the standard.
* Type defs have the standard format but absolute meanings for ordinal
* types are not covered by the standard.)
*
* David Lindauer, LADsoft
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
2005-01-15 22:15:51 +00:00
#include <stdarg.h> /* Note: we need the ANSI version of stdarg.h */
2002-04-30 20:53:55 +00:00
#include <ctype.h>
#include <inttypes.h>
2002-04-30 20:53:55 +00:00
#include "nasm.h"
#include "nasmlib.h"
#include "outform.h"
#ifdef OF_IEEE
#define ARRAY_BOT 0x1
static int8_t ieee_infile[FILENAME_MAX];
2002-04-30 20:53:55 +00:00
static int ieee_uppercase;
static efunc error;
static ldfunc deflabel;
static FILE *ofp;
static int any_segs;
static int arrindex;
2005-01-15 22:15:51 +00:00
#define HUNKSIZE 1024 /* Size of the data hunk */
2002-04-30 20:53:55 +00:00
#define EXT_BLKSIZ 512
2005-01-15 22:15:51 +00:00
#define LDPERLINE 32 /* bytes per line in output */
2002-04-30 20:53:55 +00:00
struct ieeeSection;
struct LineNumber {
struct LineNumber *next;
struct ieeeSection *segment;
int32_t offset;
int32_t lineno;
2002-04-30 20:53:55 +00:00
};
static struct FileName {
struct FileName *next;
int8_t *name;
int32_t index;
2002-04-30 20:53:55 +00:00
} *fnhead, **fntail;
static struct Array {
struct Array *next;
unsigned size;
int basetype;
} *arrhead, **arrtail;
static struct ieeePublic {
struct ieeePublic *next;
int8_t *name;
int32_t offset;
int32_t segment; /* only if it's far-absolute */
int32_t index;
2005-01-15 22:15:51 +00:00
int type; /* for debug purposes */
2002-04-30 20:53:55 +00:00
} *fpubhead, **fpubtail, *last_defined;
static struct ieeeExternal {
struct ieeeExternal *next;
int8_t *name;
int32_t commonsize;
2002-04-30 20:53:55 +00:00
} *exthead, **exttail;
static int externals;
static struct ExtBack {
struct ExtBack *next;
int index[EXT_BLKSIZ];
} *ebhead, **ebtail;
/* NOTE: the first segment MUST be the lineno segment */
static struct ieeeSection {
2005-01-15 22:15:51 +00:00
struct ieeeObjData *data, *datacurr;
2002-04-30 20:53:55 +00:00
struct ieeeSection *next;
2005-01-15 22:15:51 +00:00
struct ieeeFixupp *fptr, *flptr;
int32_t index; /* the NASM segment id */
int32_t ieee_index; /* the OBJ-file segment index */
int32_t currentpos;
int32_t align; /* can be SEG_ABS + absolute addr */
int32_t startpos;
2002-04-30 20:53:55 +00:00
enum {
2005-01-15 22:15:51 +00:00
CMB_PRIVATE = 0,
CMB_PUBLIC = 2,
CMB_COMMON = 6
2002-04-30 20:53:55 +00:00
} combine;
int32_t use32; /* is this segment 32-bit? */
2002-04-30 20:53:55 +00:00
struct ieeePublic *pubhead, **pubtail, *lochead, **loctail;
int8_t *name;
2002-04-30 20:53:55 +00:00
} *seghead, **segtail, *ieee_seg_needs_update;
2002-04-30 20:54:58 +00:00
struct ieeeObjData {
2002-04-30 20:53:55 +00:00
struct ieeeObjData *next;
uint8_t data[HUNKSIZE];
2002-04-30 20:53:55 +00:00
};
struct ieeeFixupp {
struct ieeeFixupp *next;
2005-01-15 22:15:51 +00:00
enum {
FT_SEG = 0,
FT_REL = 1,
FT_OFS = 2,
FT_EXT = 3,
FT_WRT = 4,
FT_EXTREL = 5,
FT_EXTWRT = 6,
FT_EXTSEG = 7
2002-04-30 20:53:55 +00:00
} ftype;
int16_t size;
int32_t id1;
int32_t id2;
int32_t offset;
int32_t addend;
2002-04-30 20:53:55 +00:00
};
2005-01-15 22:15:51 +00:00
static int32_t ieee_entry_seg, ieee_entry_ofs;
2002-04-30 20:53:55 +00:00
static int checksum;
extern struct ofmt of_ieee;
static void ieee_data_new(struct ieeeSection *);
static void ieee_write_fixup(int32_t, int32_t, struct ieeeSection *,
int, uint32_t, int32_t);
2002-04-30 20:53:55 +00:00
static void ieee_install_fixup(struct ieeeSection *, struct ieeeFixupp *);
static int32_t ieee_segment(int8_t *, int, int *);
2002-04-30 20:53:55 +00:00
static void ieee_write_file(int debuginfo);
static void ieee_write_byte(struct ieeeSection *, int);
static void ieee_write_word(struct ieeeSection *, int);
static void ieee_write_dword(struct ieeeSection *, int32_t);
static void ieee_putascii(int8_t *, ...);
2002-04-30 20:53:55 +00:00
static void ieee_putcs(int);
static int32_t ieee_putld(int32_t, int32_t, uint8_t *);
static int32_t ieee_putlr(struct ieeeFixupp *);
static void ieee_unqualified_name(int8_t *, int8_t *);
2002-04-30 20:53:55 +00:00
/*
* pup init
*/
2005-01-15 22:15:51 +00:00
static void ieee_init(FILE * fp, efunc errfunc, ldfunc ldef, evalfunc eval)
2002-04-30 20:53:55 +00:00
{
2005-01-15 22:15:51 +00:00
(void)eval;
2002-04-30 20:53:55 +00:00
ofp = fp;
error = errfunc;
deflabel = ldef;
any_segs = FALSE;
fpubhead = NULL;
fpubtail = &fpubhead;
exthead = NULL;
exttail = &exthead;
externals = 1;
ebhead = NULL;
ebtail = &ebhead;
seghead = ieee_seg_needs_update = NULL;
segtail = &seghead;
ieee_entry_seg = NO_SEG;
ieee_uppercase = FALSE;
checksum = 0;
2005-01-15 22:15:51 +00:00
of_ieee.current_dfmt->init(&of_ieee, NULL, fp, errfunc);
2002-04-30 20:53:55 +00:00
}
static int ieee_set_info(enum geninfo type, int8_t **val)
2002-04-30 20:53:55 +00:00
{
2005-01-15 22:15:51 +00:00
(void)type;
(void)val;
2002-04-30 20:53:55 +00:00
return 0;
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/*
* Rundown
*/
2005-01-15 22:15:51 +00:00
static void ieee_cleanup(int debuginfo)
2002-04-30 20:53:55 +00:00
{
ieee_write_file(debuginfo);
2005-01-15 22:15:51 +00:00
of_ieee.current_dfmt->cleanup();
fclose(ofp);
2002-04-30 20:53:55 +00:00
while (seghead) {
2005-01-15 22:15:51 +00:00
struct ieeeSection *segtmp = seghead;
seghead = seghead->next;
while (segtmp->pubhead) {
struct ieeePublic *pubtmp = segtmp->pubhead;
segtmp->pubhead = pubtmp->next;
nasm_free(pubtmp);
}
while (segtmp->fptr) {
struct ieeeFixupp *fixtmp = segtmp->fptr;
segtmp->fptr = fixtmp->next;
nasm_free(fixtmp);
}
while (segtmp->data) {
struct ieeeObjData *dattmp = segtmp->data;
segtmp->data = dattmp->next;
nasm_free(dattmp);
}
nasm_free(segtmp);
2002-04-30 20:53:55 +00:00
}
while (fpubhead) {
2005-01-15 22:15:51 +00:00
struct ieeePublic *pubtmp = fpubhead;
fpubhead = fpubhead->next;
nasm_free(pubtmp);
2002-04-30 20:53:55 +00:00
}
while (exthead) {
2005-01-15 22:15:51 +00:00
struct ieeeExternal *exttmp = exthead;
exthead = exthead->next;
nasm_free(exttmp);
2002-04-30 20:53:55 +00:00
}
while (ebhead) {
2005-01-15 22:15:51 +00:00
struct ExtBack *ebtmp = ebhead;
ebhead = ebhead->next;
nasm_free(ebtmp);
2002-04-30 20:53:55 +00:00
}
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/*
* callback for labels
*/
static void ieee_deflabel(int8_t *name, int32_t segment,
int32_t offset, int is_global, int8_t *special)
2005-01-15 22:15:51 +00:00
{
2002-04-30 20:53:55 +00:00
/*
* We have three cases:
*
* (i) `segment' is a segment-base. If so, set the name field
* for the segment structure it refers to, and then
* return.
*
* (ii) `segment' is one of our segments, or a SEG_ABS segment.
* Save the label position for later output of a PUBDEF record.
*
*
* (iii) `segment' is not one of our segments. Save the label
* position for later output of an EXTDEF.
*/
struct ieeeExternal *ext;
struct ExtBack *eb;
struct ieeeSection *seg;
int i;
if (special) {
error(ERR_NONFATAL, "unrecognised symbol type `%s'", special);
}
/*
* First check for the double-period, signifying something
* unusual.
*/
if (name[0] == '.' && name[1] == '.') {
2005-01-15 22:15:51 +00:00
if (!strcmp(name, "..start")) {
ieee_entry_seg = segment;
ieee_entry_ofs = offset;
}
return;
2002-04-30 20:53:55 +00:00
}
/*
* Case (i):
*/
if (ieee_seg_needs_update) {
2005-01-15 22:15:51 +00:00
ieee_seg_needs_update->name = name;
return;
}
2002-04-30 20:53:55 +00:00
if (segment < SEG_ABS && segment != NO_SEG && segment % 2)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
/*
* case (ii)
*/
if (segment >= SEG_ABS) {
2005-01-15 22:15:51 +00:00
/*
* SEG_ABS subcase of (ii).
*/
if (is_global) {
struct ieeePublic *pub;
pub = *fpubtail = nasm_malloc(sizeof(*pub));
fpubtail = &pub->next;
pub->next = NULL;
pub->name = name;
pub->offset = offset;
pub->segment = segment & ~SEG_ABS;
}
return;
2002-04-30 20:53:55 +00:00
}
for (seg = seghead; seg && is_global; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == segment) {
struct ieeePublic *pub;
last_defined = pub = *seg->pubtail = nasm_malloc(sizeof(*pub));
seg->pubtail = &pub->next;
pub->next = NULL;
pub->name = name;
pub->offset = offset;
pub->index = seg->ieee_index;
pub->segment = -1;
return;
}
2002-04-30 20:53:55 +00:00
/*
* Case (iii).
*/
if (is_global) {
ext = *exttail = nasm_malloc(sizeof(*ext));
ext->next = NULL;
exttail = &ext->next;
ext->name = name;
if (is_global == 2)
2005-01-15 22:15:51 +00:00
ext->commonsize = offset;
else
ext->commonsize = 0;
i = segment / 2;
eb = ebhead;
if (!eb) {
eb = *ebtail = nasm_malloc(sizeof(*eb));
eb->next = NULL;
ebtail = &eb->next;
}
while (i > EXT_BLKSIZ) {
if (eb && eb->next)
eb = eb->next;
else {
eb = *ebtail = nasm_malloc(sizeof(*eb));
eb->next = NULL;
ebtail = &eb->next;
}
i -= EXT_BLKSIZ;
2002-04-30 20:53:55 +00:00
}
eb->index[i] = externals++;
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
}
/*
* Put data out
*/
static void ieee_out(int32_t segto, const void *data, uint32_t type,
int32_t segment, int32_t wrt)
2005-01-15 22:15:51 +00:00
{
uint32_t size, realtype;
const uint8_t *ucdata;
int32_t ldata;
2002-04-30 20:53:55 +00:00
struct ieeeSection *seg;
/*
* handle absolute-assembly (structure definitions)
*/
if (segto == NO_SEG) {
2005-01-15 22:15:51 +00:00
if ((type & OUT_TYPMASK) != OUT_RESERVE)
error(ERR_NONFATAL, "attempt to assemble code in [ABSOLUTE]"
" space");
return;
2002-04-30 20:53:55 +00:00
}
/*
* If `any_segs' is still FALSE, we must define a default
* segment.
*/
if (!any_segs) {
2005-01-15 22:15:51 +00:00
int tempint; /* ignored */
if (segto != ieee_segment("__NASMDEFSEG", 2, &tempint))
error(ERR_PANIC, "strange segment conditions in IEEE driver");
2002-04-30 20:53:55 +00:00
}
/*
* Find the segment we are targetting.
*/
for (seg = seghead; seg; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == segto)
break;
2002-04-30 20:53:55 +00:00
if (!seg)
2005-01-15 22:15:51 +00:00
error(ERR_PANIC, "code directed to nonexistent segment?");
2002-04-30 20:53:55 +00:00
size = type & OUT_SIZMASK;
realtype = type & OUT_TYPMASK;
if (realtype == OUT_RAWDATA) {
2005-01-15 22:15:51 +00:00
ucdata = data;
while (size--)
ieee_write_byte(seg, *ucdata++);
2002-04-30 20:53:55 +00:00
} else if (realtype == OUT_ADDRESS || realtype == OUT_REL2ADR ||
2005-01-15 22:15:51 +00:00
realtype == OUT_REL4ADR) {
if (segment == NO_SEG && realtype != OUT_ADDRESS)
error(ERR_NONFATAL, "relative call to absolute address not"
" supported by IEEE format");
ldata = *(int32_t *)data;
2005-01-15 22:15:51 +00:00
if (realtype == OUT_REL2ADR)
ldata += (size - 2);
if (realtype == OUT_REL4ADR)
ldata += (size - 4);
ieee_write_fixup(segment, wrt, seg, size, realtype, ldata);
if (size == 2)
ieee_write_word(seg, ldata);
else
ieee_write_dword(seg, ldata);
} else if (realtype == OUT_RESERVE) {
while (size--)
ieee_write_byte(seg, 0);
2002-04-30 20:53:55 +00:00
}
}
2005-01-15 22:15:51 +00:00
static void ieee_data_new(struct ieeeSection *segto)
{
2002-04-30 20:53:55 +00:00
if (!segto->data)
2005-01-15 22:15:51 +00:00
segto->data = segto->datacurr =
nasm_malloc(sizeof(*(segto->datacurr)));
2002-04-30 20:53:55 +00:00
else
2005-01-15 22:15:51 +00:00
segto->datacurr = segto->datacurr->next =
nasm_malloc(sizeof(*(segto->datacurr)));
2002-04-30 20:53:55 +00:00
segto->datacurr->next = NULL;
}
/*
* this routine is unalduterated bloatware. I usually don't do this
* but I might as well see what it is like on a harmless program.
* If anyone wants to optimize this is a good canditate!
*/
static void ieee_write_fixup(int32_t segment, int32_t wrt,
2005-01-15 22:15:51 +00:00
struct ieeeSection *segto, int size,
uint32_t realtype, int32_t offset)
2005-01-15 22:15:51 +00:00
{
2002-04-30 20:53:55 +00:00
struct ieeeSection *target;
struct ieeeFixupp s;
/* Don't put a fixup for things NASM can calculate */
if (wrt == NO_SEG && segment == NO_SEG)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
s.ftype = -1;
/* if it is a WRT offset */
if (wrt != NO_SEG) {
2005-01-15 22:15:51 +00:00
s.ftype = FT_WRT;
s.addend = offset;
if (wrt >= SEG_ABS)
s.id1 = -(wrt - SEG_ABS);
else {
if (wrt % 2 && realtype != OUT_REL2ADR
&& realtype != OUT_REL4ADR) {
wrt--;
for (target = seghead; target; target = target->next)
if (target->index == wrt)
break;
if (target) {
s.id1 = target->ieee_index;
for (target = seghead; target; target = target->next)
if (target->index == segment)
break;
if (target)
s.id2 = target->ieee_index;
else {
/*
* Now we assume the segment field is being used
* to hold an extern index
*/
int32_t i = segment / 2;
2005-01-15 22:15:51 +00:00
struct ExtBack *eb = ebhead;
while (i > EXT_BLKSIZ) {
if (eb)
eb = eb->next;
else
break;
i -= EXT_BLKSIZ;
}
/* if we have an extern decide the type and make a record
*/
if (eb) {
s.ftype = FT_EXTWRT;
s.addend = 0;
s.id2 = eb->index[i];
} else
error(ERR_NONFATAL,
"Source of WRT must be an offset");
}
} else
error(ERR_PANIC,
"unrecognised WRT value in ieee_write_fixup");
} else
error(ERR_NONFATAL, "target of WRT must be a section ");
}
s.size = size;
ieee_install_fixup(segto, &s);
return;
2002-04-30 20:53:55 +00:00
}
/* Pure segment fixup ? */
if (segment != NO_SEG) {
2005-01-15 22:15:51 +00:00
s.ftype = FT_SEG;
s.id1 = 0;
if (segment >= SEG_ABS) {
/* absolute far segment fixup */
s.id1 = -(segment - ~SEG_ABS);
} else if (segment % 2) {
/* fixup to named segment */
/* look it up */
for (target = seghead; target; target = target->next)
if (target->index == segment - 1)
break;
if (target)
s.id1 = target->ieee_index;
else {
/*
* Now we assume the segment field is being used
* to hold an extern index
*/
int32_t i = segment / 2;
2005-01-15 22:15:51 +00:00
struct ExtBack *eb = ebhead;
while (i > EXT_BLKSIZ) {
if (eb)
eb = eb->next;
else
break;
i -= EXT_BLKSIZ;
}
/* if we have an extern decide the type and make a record
*/
if (eb) {
if (realtype == OUT_REL2ADR || realtype == OUT_REL4ADR) {
error(ERR_PANIC,
"Segment of a rel not supported in ieee_write_fixup");
} else {
/* If we want the segment */
s.ftype = FT_EXTSEG;
s.addend = 0;
s.id1 = eb->index[i];
}
} else
/* If we get here the seg value doesn't make sense */
error(ERR_PANIC,
"unrecognised segment value in ieee_write_fixup");
}
2002-04-30 20:53:55 +00:00
} else {
2005-01-15 22:15:51 +00:00
/* Assume we are offsetting directly from a section
* So look up the target segment
*/
for (target = seghead; target; target = target->next)
if (target->index == segment)
break;
if (target) {
if (realtype == OUT_REL2ADR || realtype == OUT_REL4ADR) {
/* PC rel to a known offset */
s.id1 = target->ieee_index;
s.ftype = FT_REL;
s.size = size;
s.addend = offset;
} else {
/* We were offsetting from a seg */
s.id1 = target->ieee_index;
s.ftype = FT_OFS;
s.size = size;
s.addend = offset;
}
} else {
/*
* Now we assume the segment field is being used
* to hold an extern index
*/
int32_t i = segment / 2;
2005-01-15 22:15:51 +00:00
struct ExtBack *eb = ebhead;
while (i > EXT_BLKSIZ) {
if (eb)
eb = eb->next;
else
break;
i -= EXT_BLKSIZ;
}
/* if we have an extern decide the type and make a record
*/
if (eb) {
if (realtype == OUT_REL2ADR || realtype == OUT_REL4ADR) {
s.ftype = FT_EXTREL;
s.addend = 0;
s.id1 = eb->index[i];
} else {
/* else we want the external offset */
s.ftype = FT_EXT;
s.addend = 0;
s.id1 = eb->index[i];
}
} else
/* If we get here the seg value doesn't make sense */
error(ERR_PANIC,
"unrecognised segment value in ieee_write_fixup");
}
}
if (size != 2 && s.ftype == FT_SEG)
error(ERR_NONFATAL, "IEEE format can only handle 2-byte"
" segment base references");
s.size = size;
ieee_install_fixup(segto, &s);
return;
2002-04-30 20:53:55 +00:00
}
/* should never get here */
}
2005-01-15 22:15:51 +00:00
static void ieee_install_fixup(struct ieeeSection *seg,
struct ieeeFixupp *fix)
2002-04-30 20:53:55 +00:00
{
struct ieeeFixupp *f;
f = nasm_malloc(sizeof(struct ieeeFixupp));
2005-01-15 22:15:51 +00:00
memcpy(f, fix, sizeof(struct ieeeFixupp));
2002-04-30 20:53:55 +00:00
f->offset = seg->currentpos;
seg->currentpos += fix->size;
f->next = NULL;
if (seg->fptr)
2005-01-15 22:15:51 +00:00
seg->flptr = seg->flptr->next = f;
2002-04-30 20:53:55 +00:00
else
2005-01-15 22:15:51 +00:00
seg->fptr = seg->flptr = f;
2002-04-30 20:53:55 +00:00
}
/*
* segment registry
*/
static int32_t ieee_segment(int8_t *name, int pass, int *bits)
2005-01-15 22:15:51 +00:00
{
2002-04-30 20:53:55 +00:00
/*
* We call the label manager here to define a name for the new
* segment, and when our _own_ label-definition stub gets
* called in return, it should register the new segment name
* using the pointer it gets passed. That way we save memory,
* by sponging off the label manager.
*/
if (!name) {
2005-01-15 22:15:51 +00:00
*bits = 16;
if (!any_segs)
return 0;
return seghead->index;
2002-04-30 20:53:55 +00:00
} else {
2005-01-15 22:15:51 +00:00
struct ieeeSection *seg;
int ieee_idx, attrs, rn_error;
int8_t *p;
2005-01-15 22:15:51 +00:00
/*
* Look for segment attributes.
*/
attrs = 0;
while (*name == '.')
name++; /* hack, but a documented one */
p = name;
while (*p && !isspace(*p))
p++;
if (*p) {
*p++ = '\0';
while (*p && isspace(*p))
*p++ = '\0';
}
while (*p) {
while (*p && !isspace(*p))
p++;
if (*p) {
*p++ = '\0';
while (*p && isspace(*p))
*p++ = '\0';
}
attrs++;
}
ieee_idx = 1;
for (seg = seghead; seg; seg = seg->next) {
ieee_idx++;
if (!strcmp(seg->name, name)) {
if (attrs > 0 && pass == 1)
error(ERR_WARNING, "segment attributes specified on"
" redeclaration of segment: ignoring");
if (seg->use32)
*bits = 32;
else
*bits = 16;
return seg->index;
}
}
*segtail = seg = nasm_malloc(sizeof(*seg));
seg->next = NULL;
segtail = &seg->next;
seg->index = seg_alloc();
seg->ieee_index = ieee_idx;
any_segs = TRUE;
seg->name = NULL;
seg->currentpos = 0;
seg->align = 1; /* default */
seg->use32 = *bits == 32; /* default to user spec */
seg->combine = CMB_PUBLIC; /* default */
seg->pubhead = NULL;
seg->pubtail = &seg->pubhead;
seg->data = NULL;
seg->fptr = NULL;
seg->lochead = NULL;
seg->loctail = &seg->lochead;
/*
* Process the segment attributes.
*/
p = name;
while (attrs--) {
p += strlen(p);
while (!*p)
p++;
/*
* `p' contains a segment attribute.
*/
if (!nasm_stricmp(p, "private"))
seg->combine = CMB_PRIVATE;
else if (!nasm_stricmp(p, "public"))
seg->combine = CMB_PUBLIC;
else if (!nasm_stricmp(p, "common"))
seg->combine = CMB_COMMON;
else if (!nasm_stricmp(p, "use16"))
seg->use32 = FALSE;
else if (!nasm_stricmp(p, "use32"))
seg->use32 = TRUE;
else if (!nasm_strnicmp(p, "align=", 6)) {
seg->align = readnum(p + 6, &rn_error);
if (seg->align == 0)
seg->align = 1;
if (rn_error) {
seg->align = 1;
error(ERR_NONFATAL, "segment alignment should be"
" numeric");
}
switch ((int)seg->align) {
case 1: /* BYTE */
case 2: /* WORD */
case 4: /* DWORD */
case 16: /* PARA */
case 256: /* PAGE */
case 8:
case 32:
case 64:
case 128:
break;
default:
error(ERR_NONFATAL, "invalid alignment value %d",
seg->align);
seg->align = 1;
break;
}
} else if (!nasm_strnicmp(p, "absolute=", 9)) {
seg->align = SEG_ABS + readnum(p + 9, &rn_error);
if (rn_error)
error(ERR_NONFATAL, "argument to `absolute' segment"
" attribute should be numeric");
}
}
ieee_seg_needs_update = seg;
if (seg->align >= SEG_ABS)
deflabel(name, NO_SEG, seg->align - SEG_ABS,
NULL, FALSE, FALSE, &of_ieee, error);
else
deflabel(name, seg->index + 1, 0L,
NULL, FALSE, FALSE, &of_ieee, error);
ieee_seg_needs_update = NULL;
if (seg->use32)
*bits = 32;
else
*bits = 16;
return seg->index;
2002-04-30 20:53:55 +00:00
}
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/*
* directives supported
*/
static int ieee_directive(int8_t *directive, int8_t *value, int pass)
2002-04-30 20:53:55 +00:00
{
2005-01-15 22:15:51 +00:00
(void)value;
(void)pass;
2002-04-30 20:53:55 +00:00
if (!strcmp(directive, "uppercase")) {
2005-01-15 22:15:51 +00:00
ieee_uppercase = TRUE;
return 1;
2002-04-30 20:53:55 +00:00
}
return 0;
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/*
* Return segment data
*/
static int32_t ieee_segbase(int32_t segment)
2002-04-30 20:53:55 +00:00
{
struct ieeeSection *seg;
/*
* Find the segment in our list.
*/
for (seg = seghead; seg; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == segment - 1)
break;
2002-04-30 20:53:55 +00:00
if (!seg)
2005-01-15 22:15:51 +00:00
return segment; /* not one of ours - leave it alone */
2002-04-30 20:53:55 +00:00
if (seg->align >= SEG_ABS)
2005-01-15 22:15:51 +00:00
return seg->align; /* absolute segment */
2002-04-30 20:53:55 +00:00
2005-01-15 22:15:51 +00:00
return segment; /* no special treatment */
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/*
* filename
*/
static void ieee_filename(int8_t *inname, int8_t *outname, efunc error)
2005-01-15 22:15:51 +00:00
{
2002-04-30 20:53:55 +00:00
strcpy(ieee_infile, inname);
2005-01-15 22:15:51 +00:00
standard_extension(inname, outname, ".o", error);
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
static void ieee_write_file(int debuginfo)
{
2002-04-30 20:53:55 +00:00
struct tm *thetime;
time_t reltime;
struct FileName *fn;
struct ieeeSection *seg;
struct ieeePublic *pub, *loc;
struct ieeeExternal *ext;
struct ieeeObjData *data;
struct ieeeFixupp *fix;
struct Array *arr;
static int8_t boast[] = "The Netwide Assembler " NASM_VER;
2002-04-30 20:53:55 +00:00
int i;
/*
* Write the module header
*/
2005-01-15 22:15:51 +00:00
ieee_putascii("MBFNASM,%02X%s.\r\n", strlen(ieee_infile), ieee_infile);
2002-04-30 20:53:55 +00:00
/*
* Write the NASM boast comment.
*/
2005-01-15 22:15:51 +00:00
ieee_putascii("CO0,%02X%s.\r\n", strlen(boast), boast);
2002-04-30 20:53:55 +00:00
/*
* write processor-specific information
*/
ieee_putascii("AD8,4,L.\r\n");
/*
* date and time
*/
time(&reltime);
thetime = localtime(&reltime);
2005-01-15 22:15:51 +00:00
ieee_putascii("DT%04d%02d%02d%02d%02d%02d.\r\n",
1900 + thetime->tm_year, thetime->tm_mon + 1,
thetime->tm_mday, thetime->tm_hour, thetime->tm_min,
thetime->tm_sec);
2002-04-30 20:53:55 +00:00
/*
* if debugging, dump file names
*/
for (fn = fnhead; fn && debuginfo; fn = fn->next) {
2005-01-15 22:15:51 +00:00
ieee_putascii("C0105,%02X%s.\r\n", strlen(fn->name), fn->name);
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
ieee_putascii("CO101,07ENDHEAD.\r\n");
/*
* the standard doesn't specify when to put checksums,
* we'll just do it periodically.
*/
ieee_putcs(FALSE);
/*
* Write the section headers
*/
seg = seghead;
2005-01-15 22:15:51 +00:00
if (!debuginfo && !strcmp(seg->name, "??LINE"))
seg = seg->next;
2002-04-30 20:53:55 +00:00
while (seg) {
int8_t buf[256];
int8_t attrib;
2005-01-15 22:15:51 +00:00
switch (seg->combine) {
case CMB_PUBLIC:
default:
attrib = 'C';
break;
case CMB_PRIVATE:
attrib = 'S';
break;
case CMB_COMMON:
attrib = 'M';
break;
}
ieee_unqualified_name(buf, seg->name);
if (seg->align >= SEG_ABS) {
ieee_putascii("ST%X,A,%02X%s.\r\n", seg->ieee_index,
strlen(buf), buf);
ieee_putascii("ASL%X,%lX.\r\n", seg->ieee_index,
(seg->align - SEG_ABS) * 16);
} else {
ieee_putascii("ST%X,%c,%02X%s.\r\n", seg->ieee_index, attrib,
strlen(buf), buf);
ieee_putascii("SA%X,%lX.\r\n", seg->ieee_index, seg->align);
ieee_putascii("ASS%X,%X.\r\n", seg->ieee_index,
seg->currentpos);
}
seg = seg->next;
2002-04-30 20:53:55 +00:00
}
/*
* write the start address if there is one
*/
if (ieee_entry_seg) {
for (seg = seghead; seg; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == ieee_entry_seg)
break;
if (!seg)
error(ERR_PANIC, "Start address records are incorrect");
else
ieee_putascii("ASG,R%X,%lX,+.\r\n", seg->ieee_index,
ieee_entry_ofs);
}
2002-04-30 20:53:55 +00:00
ieee_putcs(FALSE);
/*
* Write the publics
*/
i = 1;
for (seg = seghead; seg; seg = seg->next) {
for (pub = seg->pubhead; pub; pub = pub->next) {
int8_t buf[256];
2005-01-15 22:15:51 +00:00
ieee_unqualified_name(buf, pub->name);
ieee_putascii("NI%X,%02X%s.\r\n", i, strlen(buf), buf);
if (pub->segment == -1)
ieee_putascii("ASI%X,R%X,%lX,+.\r\n", i, pub->index,
pub->offset);
else
ieee_putascii("ASI%X,%lX,%lX,+.\r\n", i, pub->segment * 16,
pub->offset);
if (debuginfo) {
if (pub->type >= 0x100)
ieee_putascii("ATI%X,T%X.\r\n", i, pub->type - 0x100);
else
ieee_putascii("ATI%X,%X.\r\n", i, pub->type);
}
i++;
2002-04-30 20:53:55 +00:00
}
}
pub = fpubhead;
i = 1;
while (pub) {
int8_t buf[256];
2005-01-15 22:15:51 +00:00
ieee_unqualified_name(buf, pub->name);
ieee_putascii("NI%X,%02X%s.\r\n", i, strlen(buf), buf);
if (pub->segment == -1)
ieee_putascii("ASI%X,R%X,%lX,+.\r\n", i, pub->index,
pub->offset);
else
ieee_putascii("ASI%X,%lX,%lX,+.\r\n", i, pub->segment * 16,
pub->offset);
if (debuginfo) {
if (pub->type >= 0x100)
ieee_putascii("ATI%X,T%X.\r\n", i, pub->type - 0x100);
else
ieee_putascii("ATI%X,%X.\r\n", i, pub->type);
}
i++;
2002-04-30 20:53:55 +00:00
pub = pub->next;
}
/*
* Write the externals
*/
ext = exthead;
i = 1;
while (ext) {
int8_t buf[256];
2005-01-15 22:15:51 +00:00
ieee_unqualified_name(buf, ext->name);
ieee_putascii("NX%X,%02X%s.\r\n", i++, strlen(buf), buf);
2002-04-30 20:53:55 +00:00
ext = ext->next;
}
ieee_putcs(FALSE);
/*
* IEEE doesn't have a standard pass break record
* so use the ladsoft variant
*/
ieee_putascii("CO100,06ENDSYM.\r\n");
/*
* now put types
*/
i = ARRAY_BOT;
for (arr = arrhead; arr && debuginfo; arr = arr->next) {
2005-01-15 22:15:51 +00:00
ieee_putascii("TY%X,20,%X,%lX.\r\n", i++, arr->basetype,
arr->size);
2002-04-30 20:53:55 +00:00
}
/*
* now put locals
*/
i = 1;
for (seg = seghead; seg && debuginfo; seg = seg->next) {
for (loc = seg->lochead; loc; loc = loc->next) {
int8_t buf[256];
2005-01-15 22:15:51 +00:00
ieee_unqualified_name(buf, loc->name);
ieee_putascii("NN%X,%02X%s.\r\n", i, strlen(buf), buf);
if (loc->segment == -1)
ieee_putascii("ASN%X,R%X,%lX,+.\r\n", i, loc->index,
loc->offset);
else
ieee_putascii("ASN%X,%lX,%lX,+.\r\n", i, loc->segment * 16,
loc->offset);
if (debuginfo) {
if (loc->type >= 0x100)
ieee_putascii("ATN%X,T%X.\r\n", i, loc->type - 0x100);
else
ieee_putascii("ATN%X,%X.\r\n", i, loc->type);
}
i++;
2002-04-30 20:53:55 +00:00
}
}
/*
* put out section data;
2005-01-15 22:15:51 +00:00
*/
2002-04-30 20:53:55 +00:00
seg = seghead;
2005-01-15 22:15:51 +00:00
if (!debuginfo && !strcmp(seg->name, "??LINE"))
seg = seg->next;
2002-04-30 20:53:55 +00:00
while (seg) {
2005-01-15 22:15:51 +00:00
if (seg->currentpos) {
int32_t size, org = 0;
2005-01-15 22:15:51 +00:00
data = seg->data;
ieee_putascii("SB%X.\r\n", seg->ieee_index);
fix = seg->fptr;
while (fix) {
size = HUNKSIZE - (org % HUNKSIZE);
size =
size + org >
seg->currentpos ? seg->currentpos - org : size;
size = fix->offset - org > size ? size : fix->offset - org;
org = ieee_putld(org, org + size, data->data);
if (org % HUNKSIZE == 0)
data = data->next;
if (org == fix->offset) {
org += ieee_putlr(fix);
fix = fix->next;
}
}
while (org < seg->currentpos && data) {
size =
seg->currentpos - org >
HUNKSIZE ? HUNKSIZE : seg->currentpos - org;
org = ieee_putld(org, org + size, data->data);
data = data->next;
}
ieee_putcs(FALSE);
}
seg = seg->next;
2002-04-30 20:53:55 +00:00
}
/*
* module end record
*/
ieee_putascii("ME.\r\n");
}
2005-01-15 22:15:51 +00:00
static void ieee_write_byte(struct ieeeSection *seg, int data)
{
2002-04-30 20:53:55 +00:00
int temp;
if (!(temp = seg->currentpos++ % HUNKSIZE))
2005-01-15 22:15:51 +00:00
ieee_data_new(seg);
2002-04-30 20:53:55 +00:00
seg->datacurr->data[temp] = data;
}
2005-01-15 22:15:51 +00:00
static void ieee_write_word(struct ieeeSection *seg, int data)
{
2002-04-30 20:53:55 +00:00
ieee_write_byte(seg, data & 0xFF);
2005-01-15 22:15:51 +00:00
ieee_write_byte(seg, (data >> 8) & 0xFF);
2002-04-30 20:53:55 +00:00
}
static void ieee_write_dword(struct ieeeSection *seg, int32_t data)
2005-01-15 22:15:51 +00:00
{
2002-04-30 20:53:55 +00:00
ieee_write_byte(seg, data & 0xFF);
2005-01-15 22:15:51 +00:00
ieee_write_byte(seg, (data >> 8) & 0xFF);
ieee_write_byte(seg, (data >> 16) & 0xFF);
ieee_write_byte(seg, (data >> 24) & 0xFF);
2002-04-30 20:53:55 +00:00
}
static void ieee_putascii(int8_t *format, ...)
2002-04-30 20:53:55 +00:00
{
int8_t buffer[256];
2005-01-15 22:15:51 +00:00
int i, l;
va_list ap;
va_start(ap, format);
vsnprintf(buffer, sizeof(buffer), format, ap);
2005-01-15 22:15:51 +00:00
l = strlen(buffer);
for (i = 0; i < l; i++)
if ((buffer[i] & 0xff) > 31)
checksum += buffer[i];
va_end(ap);
fprintf(ofp, buffer);
2002-04-30 20:53:55 +00:00
}
/*
* put out a checksum record */
static void ieee_putcs(int toclear)
{
2005-01-15 22:15:51 +00:00
if (toclear) {
ieee_putascii("CS.\r\n");
} else {
checksum += 'C';
checksum += 'S';
ieee_putascii("CS%02X.\r\n", checksum & 127);
}
checksum = 0;
2002-04-30 20:53:55 +00:00
}
static int32_t ieee_putld(int32_t start, int32_t end, uint8_t *buf)
2002-04-30 20:53:55 +00:00
{
int32_t val;
2005-01-15 22:15:51 +00:00
if (start == end)
return (start);
val = start % HUNKSIZE;
/* fill up multiple lines */
while (end - start >= LDPERLINE) {
int i;
ieee_putascii("LD");
for (i = 0; i < LDPERLINE; i++) {
ieee_putascii("%02X", buf[val++]);
start++;
}
ieee_putascii(".\r\n");
}
/* if no partial lines */
if (start == end)
return (start);
/* make a partial line */
ieee_putascii("LD");
while (start < end) {
ieee_putascii("%02X", buf[val++]);
start++;
}
ieee_putascii(".\r\n");
return (start);
2002-04-30 20:53:55 +00:00
}
static int32_t ieee_putlr(struct ieeeFixupp *p)
2002-04-30 20:53:55 +00:00
{
/*
* To deal with the vagaries of segmentation the LADsoft linker
* defines two types of segments: absolute and virtual. Note that
* 'absolute' in this context is a different thing from the IEEE
* definition of an absolute segment type, which is also supported. If a
* sement is linked in virtual mode the low limit (L-var) is
* subtracted from each R,X, and P variable which appears in an
* expression, so that we can have relative offsets. Meanwhile
* in the ABSOLUTE mode this subtraction is not done and
* so we can use absolute offsets from 0. In the LADsoft linker
* this configuration is not done in the assemblker source but in
* a source the linker reads. Generally this type of thing only
* becomes an issue if real mode code is used. A pure 32-bit linker could
* get away without defining the virtual mode...
*/
int8_t buf[40];
int32_t size = p->size;
2005-01-15 22:15:51 +00:00
switch (p->ftype) {
case FT_SEG:
if (p->id1 < 0)
sprintf(buf, "%lX", -p->id1);
else
sprintf(buf, "L%lX,10,/", p->id1);
break;
case FT_OFS:
sprintf(buf, "R%lX,%lX,+", p->id1, p->addend);
break;
case FT_REL:
sprintf(buf, "R%lX,%lX,+,P,-,%X,-", p->id1, p->addend, p->size);
break;
case FT_WRT:
if (p->id2 < 0)
sprintf(buf, "R%lX,%lX,+,L%lX,+,%lX,-", p->id2, p->addend,
p->id2, -p->id1 * 16);
else
sprintf(buf, "R%lX,%lX,+,L%lX,+,L%lX,-", p->id2, p->addend,
p->id2, p->id1);
break;
case FT_EXT:
sprintf(buf, "X%lX", p->id1);
break;
case FT_EXTREL:
sprintf(buf, "X%lX,P,-,%lX,-", p->id1, size);
break;
case FT_EXTSEG:
/* We needed a non-ieee hack here.
* We introduce the Y variable, which is the low
* limit of the native segment the extern resides in
*/
sprintf(buf, "Y%lX,10,/", p->id1);
break;
case FT_EXTWRT:
if (p->id2 < 0)
sprintf(buf, "X%lX,Y%lX,+,%lX,-", p->id2, p->id2,
-p->id1 * 16);
else
sprintf(buf, "X%lX,Y%lX,+,L%lX,-", p->id2, p->id2, p->id1);
break;
}
ieee_putascii("LR(%s,%lX).\r\n", buf, size);
return (size);
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
/* Dump all segment data (text and fixups )*/
static void ieee_unqualified_name(int8_t *dest, int8_t *source)
2002-04-30 20:53:55 +00:00
{
if (ieee_uppercase) {
2005-01-15 22:15:51 +00:00
while (*source)
*dest++ = toupper(*source++);
2002-04-30 20:53:55 +00:00
*dest = 0;
2005-01-15 22:15:51 +00:00
} else
strcpy(dest, source);
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
void dbgls_init(struct ofmt *of, void *id, FILE * fp, efunc error)
2002-04-30 20:53:55 +00:00
{
int tempint;
2005-01-15 22:15:51 +00:00
(void)of;
(void)id;
(void)fp;
(void)error;
2002-04-30 20:53:55 +00:00
fnhead = NULL;
fntail = &fnhead;
2005-01-15 22:15:51 +00:00
arrindex = ARRAY_BOT;
2002-04-30 20:53:55 +00:00
arrhead = NULL;
arrtail = &arrhead;
ieee_segment("??LINE", 2, &tempint);
any_segs = FALSE;
}
static void dbgls_cleanup(void)
{
struct ieeeSection *segtmp;
while (fnhead) {
2005-01-15 22:15:51 +00:00
struct FileName *fntemp = fnhead;
fnhead = fnhead->next;
nasm_free(fntemp->name);
nasm_free(fntemp);
2002-04-30 20:53:55 +00:00
}
for (segtmp = seghead; segtmp; segtmp = segtmp->next) {
2005-01-15 22:15:51 +00:00
while (segtmp->lochead) {
struct ieeePublic *loctmp = segtmp->lochead;
segtmp->lochead = loctmp->next;
nasm_free(loctmp->name);
nasm_free(loctmp);
}
2002-04-30 20:53:55 +00:00
}
while (arrhead) {
2005-01-15 22:15:51 +00:00
struct Array *arrtmp = arrhead;
2002-04-30 20:53:55 +00:00
arrhead = arrhead->next;
2005-01-15 22:15:51 +00:00
nasm_free(arrtmp);
2002-04-30 20:53:55 +00:00
}
}
/*
* because this routine is not bracketed in
* the main program, this routine will be called even if there
* is no request for debug info
* so, we have to make sure the ??LINE segment is avaialbe
* as the first segment when this debug format is selected
*/
static void dbgls_linnum(const int8_t *lnfname, int32_t lineno, int32_t segto)
2002-04-30 20:53:55 +00:00
{
struct FileName *fn;
struct ieeeSection *seg;
int i = 0;
if (segto == NO_SEG)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
/*
* If `any_segs' is still FALSE, we must define a default
* segment.
*/
if (!any_segs) {
2005-01-15 22:15:51 +00:00
int tempint; /* ignored */
if (segto != ieee_segment("__NASMDEFSEG", 2, &tempint))
error(ERR_PANIC, "strange segment conditions in OBJ driver");
2002-04-30 20:53:55 +00:00
}
/*
* Find the segment we are targetting.
*/
for (seg = seghead; seg; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == segto)
break;
2002-04-30 20:53:55 +00:00
if (!seg)
2005-01-15 22:15:51 +00:00
error(ERR_PANIC, "lineno directed to nonexistent segment?");
2002-04-30 20:53:55 +00:00
2003-09-12 20:49:25 +00:00
for (fn = fnhead; fn; fn = fn->next) {
2005-01-15 22:15:51 +00:00
if (!nasm_stricmp(lnfname, fn->name))
break;
2002-04-30 20:53:55 +00:00
i++;
}
if (!fn) {
2005-01-15 22:15:51 +00:00
fn = nasm_malloc(sizeof(*fn));
fn->name = nasm_malloc(strlen(lnfname) + 1);
fn->index = i;
strcpy(fn->name, lnfname);
fn->next = NULL;
*fntail = fn;
fntail = &fn->next;
2002-04-30 20:53:55 +00:00
}
ieee_write_byte(seghead, fn->index);
ieee_write_word(seghead, lineno);
2005-01-15 22:15:51 +00:00
ieee_write_fixup(segto, NO_SEG, seghead, 4, OUT_ADDRESS,
seg->currentpos);
2002-04-30 20:53:55 +00:00
}
static void dbgls_deflabel(int8_t *name, int32_t segment,
int32_t offset, int is_global, int8_t *special)
2002-04-30 20:53:55 +00:00
{
struct ieeeSection *seg;
2005-01-15 22:15:51 +00:00
int used_special; /* have we used the special text? */
2002-04-30 20:53:55 +00:00
2002-04-30 20:54:58 +00:00
/* Keep compiler from warning about special and used_special */
used_special = special ? FALSE : FALSE;
2002-04-30 20:53:55 +00:00
/*
* If it's a special-retry from pass two, discard it.
*/
if (is_global == 3)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
/*
* First check for the double-period, signifying something
* unusual.
*/
if (name[0] == '.' && name[1] == '.' && name[2] != '@') {
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
}
/*
* Case (i):
*/
if (ieee_seg_needs_update)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
if (segment < SEG_ABS && segment != NO_SEG && segment % 2)
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
if (segment >= SEG_ABS || segment == NO_SEG) {
2005-01-15 22:15:51 +00:00
return;
2002-04-30 20:53:55 +00:00
}
/*
* If `any_segs' is still FALSE, we might need to define a
* default segment, if they're trying to declare a label in
* `first_seg'. But the label should exist due to a prior
* call to ieee_deflabel so we can skip that.
*/
for (seg = seghead; seg; seg = seg->next)
2005-01-15 22:15:51 +00:00
if (seg->index == segment) {
struct ieeePublic *loc;
/*
* Case (ii). Maybe MODPUB someday?
*/
if (!is_global) {
last_defined = loc = nasm_malloc(sizeof(*loc));
*seg->loctail = loc;
seg->loctail = &loc->next;
loc->next = NULL;
loc->name = nasm_strdup(name);
loc->offset = offset;
loc->segment = -1;
loc->index = seg->ieee_index;
}
}
2002-04-30 20:53:55 +00:00
}
static void dbgls_typevalue(int32_t type)
2002-04-30 20:53:55 +00:00
{
int elem = TYM_ELEMENTS(type);
type = TYM_TYPE(type);
2005-01-15 22:15:51 +00:00
if (!last_defined)
return;
2002-04-30 20:53:55 +00:00
switch (type) {
2005-01-15 22:15:51 +00:00
case TY_BYTE:
last_defined->type = 1; /* uint8_t */
2005-01-15 22:15:51 +00:00
break;
case TY_WORD:
last_defined->type = 3; /* unsigned word */
break;
case TY_DWORD:
last_defined->type = 5; /* unsigned dword */
break;
case TY_FLOAT:
last_defined->type = 9; /* float */
break;
case TY_QWORD:
last_defined->type = 10; /* qword */
break;
case TY_TBYTE:
last_defined->type = 11; /* TBYTE */
break;
default:
last_defined->type = 0x10; /* near label */
break;
2002-04-30 20:53:55 +00:00
}
2005-01-15 22:15:51 +00:00
2002-04-30 20:53:55 +00:00
if (elem > 1) {
2005-01-15 22:15:51 +00:00
struct Array *arrtmp = nasm_malloc(sizeof(*arrtmp));
2002-04-30 20:53:55 +00:00
int vtype = last_defined->type;
arrtmp->size = elem;
arrtmp->basetype = vtype;
arrtmp->next = NULL;
last_defined->type = arrindex++ + 0x100;
*arrtail = arrtmp;
2005-01-15 22:15:51 +00:00
arrtail = &(arrtmp->next);
2002-04-30 20:53:55 +00:00
}
last_defined = NULL;
}
2005-01-15 22:15:51 +00:00
static void dbgls_output(int output_type, void *param)
2002-04-30 20:53:55 +00:00
{
2005-01-15 22:15:51 +00:00
(void)output_type;
(void)param;
2002-04-30 20:53:55 +00:00
}
static struct dfmt ladsoft_debug_form = {
"LADsoft Debug Records",
"ladsoft",
dbgls_init,
dbgls_linnum,
dbgls_deflabel,
null_debug_routine,
dbgls_typevalue,
dbgls_output,
dbgls_cleanup,
};
static struct dfmt *ladsoft_debug_arr[3] = {
2005-01-15 22:15:51 +00:00
&ladsoft_debug_form,
&null_debug_form,
NULL
2002-04-30 20:53:55 +00:00
};
struct ofmt of_ieee = {
"IEEE-695 (LADsoft variant) object file format",
"ieee",
NULL,
ladsoft_debug_arr,
&null_debug_form,
NULL,
ieee_init,
ieee_set_info,
ieee_out,
ieee_deflabel,
ieee_segment,
ieee_segbase,
ieee_directive,
ieee_filename,
ieee_cleanup
};
2005-01-15 22:15:51 +00:00
#endif /* OF_IEEE */