nasm/output/outdbg.c

253 lines
6.0 KiB
C
Raw Normal View History

2002-05-01 04:51:32 +08:00
/* outdbg.c output routines for the Netwide Assembler to produce
* a debugging trace
*
* 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.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "nasm.h"
#include "nasmlib.h"
#include "outform.h"
#ifdef OF_DBG
2002-05-01 04:52:49 +08:00
struct Section {
struct Section *next;
long number;
char *name;
} *dbgsect;
2002-05-01 04:51:32 +08:00
FILE *dbgf;
efunc dbgef;
2002-05-01 04:53:55 +08:00
struct ofmt of_dbg;
2005-01-16 06:15:51 +08:00
static void dbg_init(FILE * fp, efunc errfunc, ldfunc ldef, evalfunc eval)
2002-05-01 04:51:32 +08:00
{
2005-01-16 06:15:51 +08:00
(void)eval;
2002-05-01 04:53:55 +08:00
2002-05-01 04:52:49 +08:00
dbgf = fp;
dbgef = errfunc;
dbgsect = NULL;
2005-01-16 06:15:51 +08:00
(void)ldef;
fprintf(fp, "NASM Output format debug dump\n");
of_dbg.current_dfmt->init(&of_dbg, 0, fp, errfunc);
2002-05-01 04:51:32 +08:00
}
2002-05-01 04:53:55 +08:00
static void dbg_cleanup(int debuginfo)
2002-05-01 04:51:32 +08:00
{
2005-01-16 06:15:51 +08:00
(void)debuginfo;
2002-05-01 04:53:55 +08:00
of_dbg.current_dfmt->cleanup();
2002-05-01 04:52:49 +08:00
while (dbgsect) {
2005-01-16 06:15:51 +08:00
struct Section *tmp = dbgsect;
dbgsect = dbgsect->next;
nasm_free(tmp->name);
nasm_free(tmp);
2002-05-01 04:52:49 +08:00
}
fclose(dbgf);
2002-05-01 04:51:32 +08:00
}
2005-01-16 06:15:51 +08:00
static long dbg_section_names(char *name, int pass, int *bits)
2002-05-01 04:51:32 +08:00
{
2002-05-01 04:52:49 +08:00
int seg;
2002-05-01 04:51:32 +08:00
/*
* We must have an initial default: let's make it 16.
*/
if (!name)
2005-01-16 06:15:51 +08:00
*bits = 16;
2002-05-01 04:51:32 +08:00
if (!name)
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "section_name on init: returning %d\n",
seg = seg_alloc());
2002-05-01 04:52:49 +08:00
else {
2005-01-16 06:15:51 +08:00
int n = strcspn(name, " \t");
char *sname = nasm_strndup(name, n);
struct Section *s;
seg = NO_SEG;
for (s = dbgsect; s; s = s->next)
if (!strcmp(s->name, sname))
seg = s->number;
if (seg == NO_SEG) {
s = nasm_malloc(sizeof(*s));
s->name = sname;
s->number = seg = seg_alloc();
s->next = dbgsect;
dbgsect = s;
fprintf(dbgf, "section_name %s (pass %d): returning %d\n",
name, pass, seg);
}
2002-05-01 04:52:49 +08:00
}
return seg;
2002-05-01 04:51:32 +08:00
}
2005-01-16 06:15:51 +08:00
static void dbg_deflabel(char *name, long segment, long offset,
int is_global, char *special)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "deflabel %s := %08lx:%08lx %s (%d)%s%s\n",
name, segment, offset,
is_global == 2 ? "common" : is_global ? "global" : "local",
is_global, special ? ": " : "", special);
2002-05-01 04:51:32 +08:00
}
2005-01-16 06:15:51 +08:00
static void dbg_out(long segto, void *data, unsigned long type,
long segment, long wrt)
2002-05-01 04:53:55 +08:00
{
2002-05-01 04:52:49 +08:00
long realbytes = type & OUT_SIZMASK;
long ldata;
int id;
type &= OUT_TYPMASK;
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "out to %lx, len = %ld: ", segto, realbytes);
switch (type) {
case OUT_RESERVE:
fprintf(dbgf, "reserved.\n");
break;
case OUT_RAWDATA:
fprintf(dbgf, "raw data = ");
while (realbytes--) {
id = *(unsigned char *)data;
data = (char *)data + 1;
fprintf(dbgf, "%02x ", id);
}
fprintf(dbgf, "\n");
break;
case OUT_ADDRESS:
ldata = 0; /* placate gcc */
if (realbytes == 1)
ldata = *((char *)data);
else if (realbytes == 2)
ldata = *((short *)data);
else if (realbytes == 4)
ldata = *((long *)data);
fprintf(dbgf, "addr %08lx (seg %08lx, wrt %08lx)\n", ldata,
segment, wrt);
break;
case OUT_REL2ADR:
fprintf(dbgf, "rel2adr %04x (seg %08lx)\n", (int)*(short *)data,
segment);
break;
case OUT_REL4ADR:
fprintf(dbgf, "rel4adr %08lx (seg %08lx)\n", *(long *)data,
segment);
break;
default:
fprintf(dbgf, "unknown\n");
break;
2002-05-01 04:51:32 +08:00
}
}
2005-01-16 06:15:51 +08:00
static long dbg_segbase(long segment)
2002-05-01 04:53:55 +08:00
{
2002-05-01 04:52:49 +08:00
return segment;
2002-05-01 04:51:32 +08:00
}
2005-01-16 06:15:51 +08:00
static int dbg_directive(char *directive, char *value, int pass)
2002-05-01 04:53:55 +08:00
{
2002-05-01 04:52:49 +08:00
fprintf(dbgf, "directive [%s] value [%s] (pass %d)\n",
2005-01-16 06:15:51 +08:00
directive, value, pass);
2002-05-01 04:52:49 +08:00
return 1;
2002-05-01 04:51:32 +08:00
}
2005-01-16 06:15:51 +08:00
static void dbg_filename(char *inname, char *outname, efunc error)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
standard_extension(inname, outname, ".dbg", error);
2002-05-01 04:51:32 +08:00
}
2002-05-01 04:53:55 +08:00
static int dbg_set_info(enum geninfo type, char **val)
{
2005-01-16 06:15:51 +08:00
(void)type;
(void)val;
2002-05-01 04:53:55 +08:00
return 0;
}
2005-01-16 06:15:51 +08:00
char *types[] = {
"unknown", "label", "byte", "word", "dword", "float", "qword", "tbyte"
2002-05-01 04:53:55 +08:00
};
2005-01-16 06:15:51 +08:00
void dbgdbg_init(struct ofmt *of, void *id, FILE * fp, efunc error)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
(void)of;
(void)id;
(void)fp;
(void)error;
fprintf(fp, " With debug info\n");
2002-05-01 04:53:55 +08:00
}
static void dbgdbg_cleanup(void)
{
}
2005-01-16 06:15:51 +08:00
static void dbgdbg_linnum(const char *lnfname, long lineno, long segto)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "dbglinenum %s(%ld) := %08lx\n", lnfname, lineno, segto);
2002-05-01 04:53:55 +08:00
}
2005-01-16 06:15:51 +08:00
static void dbgdbg_deflabel(char *name, long segment,
long offset, int is_global, char *special)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "dbglabel %s := %08lx:%08lx %s (%d)%s%s\n",
name,
2002-05-01 04:53:55 +08:00
segment, offset,
2005-01-16 06:15:51 +08:00
is_global == 2 ? "common" : is_global ? "global" : "local",
is_global, special ? ": " : "", special);
2002-05-01 04:53:55 +08:00
}
static void dbgdbg_define(const char *type, const char *params)
{
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "dbgdirective [%s] value [%s]\n", type, params);
2002-05-01 04:53:55 +08:00
}
2005-01-16 06:15:51 +08:00
static void dbgdbg_output(int output_type, void *param)
2002-05-01 04:53:55 +08:00
{
2005-01-16 06:15:51 +08:00
(void)output_type;
(void)param;
2002-05-01 04:53:55 +08:00
}
static void dbgdbg_typevalue(long type)
{
2005-01-16 06:15:51 +08:00
fprintf(dbgf, "new type: %s(%lX)\n",
types[TYM_TYPE(type) >> 3], TYM_ELEMENTS(type));
2002-05-01 04:53:55 +08:00
}
static struct dfmt debug_debug_form = {
"Trace of all info passed to debug stage",
"debug",
dbgdbg_init,
dbgdbg_linnum,
dbgdbg_deflabel,
dbgdbg_define,
dbgdbg_typevalue,
dbgdbg_output,
dbgdbg_cleanup,
};
static struct dfmt *debug_debug_arr[3] = {
2005-01-16 06:15:51 +08:00
&debug_debug_form,
&null_debug_form,
NULL
2002-05-01 04:53:55 +08:00
};
2002-05-01 04:51:32 +08:00
struct ofmt of_dbg = {
"Trace of all info passed to output stage",
"dbg",
2002-05-01 04:52:49 +08:00
NULL,
2002-05-01 04:53:55 +08:00
debug_debug_arr,
&null_debug_form,
NULL,
2002-05-01 04:51:32 +08:00
dbg_init,
2002-05-01 04:53:55 +08:00
dbg_set_info,
2002-05-01 04:51:32 +08:00
dbg_out,
dbg_deflabel,
dbg_section_names,
dbg_segbase,
dbg_directive,
dbg_filename,
dbg_cleanup
};
2005-01-16 06:15:51 +08:00
#endif /* OF_DBG */