nasm/nasm.c

1353 lines
33 KiB
C
Raw Normal View History

2002-04-30 20:51:32 +00:00
/* The Netwide Assembler main program module
*
* 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 <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "nasm.h"
#include "nasmlib.h"
2002-04-30 20:52:08 +00:00
#include "preproc.h"
2002-04-30 20:51:32 +00:00
#include "parser.h"
2002-04-30 20:52:49 +00:00
#include "eval.h"
2002-04-30 20:51:32 +00:00
#include "assemble.h"
#include "labels.h"
#include "outform.h"
2002-04-30 20:52:26 +00:00
#include "listing.h"
2002-04-30 20:51:32 +00:00
2002-04-30 20:53:55 +00:00
struct forwrefinfo { /* info held on forward refs. */
int lineno;
int operand;
};
2002-04-30 20:51:32 +00:00
static void report_error (int, char *, ...);
static void parse_cmdline (int, char **);
static void assemble_file (char *);
static int getkw (char *buf, char **value);
static void register_output_formats(void);
static void usage(void);
2002-04-30 20:53:55 +00:00
static int using_debug_info;
2002-04-30 20:51:32 +00:00
static char inname[FILENAME_MAX];
static char outname[FILENAME_MAX];
2002-04-30 20:52:26 +00:00
static char listname[FILENAME_MAX];
2002-04-30 20:52:08 +00:00
static int globallineno; /* for forward-reference tracking */
2002-04-30 20:51:32 +00:00
static int pass;
static struct ofmt *ofmt = NULL;
2002-04-30 20:57:38 +00:00
static FILE *error_file = stderr; /* Where to write error messages */
2002-04-30 20:51:32 +00:00
static FILE *ofile = NULL;
static int sb = 16; /* by default */
2002-04-30 20:53:55 +00:00
static loc_t location;
int in_abs_seg; /* Flag we are in ABSOLUTE seg */
static long abs_seg;
2002-04-30 20:52:26 +00:00
2002-04-30 20:51:32 +00:00
static struct RAA *offsets;
static long abs_offset;
2002-04-30 20:51:53 +00:00
static struct SAA *forwrefs; /* keep track of forward references */
2002-04-30 20:53:55 +00:00
static struct forwrefinfo *forwref;
2002-04-30 20:51:32 +00:00
2002-04-30 20:52:08 +00:00
static Preproc *preproc;
2002-04-30 20:57:38 +00:00
enum op_type {
op_normal, /* Preprocess and assemble */
op_preprocess, /* Preprocess only */
op_depend /* Generate dependencies */
};
static enum op_type operating_mode;
2002-04-30 20:52:08 +00:00
/* used by error function to report location */
2002-04-30 20:52:26 +00:00
/*
* Which of the suppressible warnings are suppressed. Entry zero
* doesn't do anything. Initial defaults are given here.
*/
static char suppressed[1+ERR_WARN_MAX] = {
2002-04-30 20:53:55 +00:00
0, TRUE, TRUE, FALSE
2002-04-30 20:52:26 +00:00
};
/*
* The option names for the suppressible warnings. As before, entry
* zero does nothing.
*/
static char *suppressed_names[1+ERR_WARN_MAX] = {
2002-04-30 20:52:49 +00:00
NULL, "macro-params", "orphan-labels", "number-overflow"
2002-04-30 20:52:26 +00:00
};
/*
* The explanations for the suppressible warnings. As before, entry
* zero does nothing.
*/
static char *suppressed_what[1+ERR_WARN_MAX] = {
NULL, "macro calls with wrong no. of params",
2002-04-30 20:52:49 +00:00
"labels alone on lines without trailing `:'",
"numeric constants greater than 0xFFFFFFFF"
2002-04-30 20:52:26 +00:00
};
2002-04-30 20:52:08 +00:00
/*
* This is a null preprocessor which just copies lines from input
* to output. It's used when someone explicitly requests that NASM
* not preprocess their source file.
*/
2002-04-30 20:52:49 +00:00
static void no_pp_reset (char *, int, efunc, evalfunc, ListGen *);
2002-04-30 20:52:08 +00:00
static char *no_pp_getline (void);
static void no_pp_cleanup (void);
static Preproc no_pp = {
no_pp_reset,
no_pp_getline,
no_pp_cleanup
};
2002-04-30 20:51:32 +00:00
/*
* get/set current offset...
*/
2002-04-30 20:53:55 +00:00
#define get_curr_ofs (in_abs_seg?abs_offset:\
raa_read(offsets,location.segment))
#define set_curr_ofs(x) (in_abs_seg?(void)(abs_offset=(x)):\
(void)(offsets=raa_write(offsets,location.segment,(x))))
2002-04-30 20:51:32 +00:00
static int want_usage;
static int terminate_after_phase;
2002-04-30 20:53:55 +00:00
static void nasm_fputs(char *line, FILE *ofile)
{
if (ofile) {
fputs(line, ofile);
fputc('\n', ofile);
} else
puts(line);
}
int main(int argc, char **argv)
{
2002-04-30 20:51:32 +00:00
want_usage = terminate_after_phase = FALSE;
nasm_set_malloc_error (report_error);
offsets = raa_init();
2002-04-30 20:53:55 +00:00
forwrefs = saa_init ((long)sizeof(struct forwrefinfo));
2002-04-30 20:51:32 +00:00
2002-04-30 20:52:08 +00:00
preproc = &nasmpp;
2002-04-30 20:57:38 +00:00
operating_mode = op_normal;
2002-04-30 20:52:08 +00:00
2002-04-30 20:51:32 +00:00
seg_init();
register_output_formats();
parse_cmdline(argc, argv);
2002-04-30 20:53:55 +00:00
if (terminate_after_phase)
{
2002-04-30 20:51:32 +00:00
if (want_usage)
usage();
return 1;
}
2002-04-30 20:52:49 +00:00
if (ofmt->stdmac)
pp_extra_stdmac (ofmt->stdmac);
2002-04-30 20:53:55 +00:00
parser_global_info (ofmt, &location);
eval_global_info (ofmt, lookup_label, &location);
2002-04-30 20:52:49 +00:00
2002-04-30 20:57:38 +00:00
switch ( operating_mode ) {
case op_depend:
{
2002-04-30 20:52:08 +00:00
char *line;
2002-04-30 20:57:38 +00:00
preproc->reset (inname, 0, report_error, evaluate, &nasmlist);
if (outname[0] == '\0')
ofmt->filename (inname, outname, report_error);
ofile = NULL;
printf("%s: %s", outname, inname);
while ( (line = preproc->getline()) )
nasm_free (line);
2002-04-30 20:52:08 +00:00
preproc->cleanup();
2002-04-30 20:57:38 +00:00
putc('\n', stdout);
}
break;
case op_preprocess:
2002-04-30 20:53:55 +00:00
{
2002-04-30 20:57:38 +00:00
char *line;
char *file_name = NULL;
long prior_linnum=0;
int lineinc=0;
if (*outname) {
ofile = fopen(outname, "w");
if (!ofile)
report_error (ERR_FATAL | ERR_NOFILE,
"unable to open output file `%s'", outname);
} else
ofile = NULL;
location.known = FALSE;
preproc->reset (inname, 2, report_error, evaluate, &nasmlist);
while ( (line = preproc->getline()) ) {
/*
* We generate %line directives if needed for later programs
*/
long linnum = prior_linnum += lineinc;
int altline = src_get(&linnum, &file_name);
if (altline) {
if (altline==1 && lineinc==1)
nasm_fputs("", ofile);
else {
lineinc = (altline != -1 || lineinc!=1);
fprintf(ofile ? ofile : stdout, "%%line %ld+%d %s\n",
linnum, lineinc, file_name);
}
prior_linnum = linnum;
}
nasm_fputs(line, ofile);
nasm_free (line);
}
nasm_free(file_name);
preproc->cleanup();
if (ofile)
fclose(ofile);
if (ofile && terminate_after_phase)
remove(outname);
}
break;
case op_normal:
{
2002-04-30 20:52:26 +00:00
/*
* We must call ofmt->filename _anyway_, even if the user
* has specified their own output file, because some
* formats (eg OBJ and COFF) use ofmt->filename to find out
* the name of the input file and then put that inside the
* file.
*/
2002-04-30 20:52:49 +00:00
ofmt->filename (inname, outname, report_error);
2002-04-30 20:57:38 +00:00
2002-04-30 20:52:08 +00:00
ofile = fopen(outname, "wb");
if (!ofile) {
2002-04-30 20:57:38 +00:00
report_error (ERR_FATAL | ERR_NOFILE,
"unable to open output file `%s'", outname);
2002-04-30 20:52:08 +00:00
}
2002-04-30 20:57:38 +00:00
2002-04-30 20:52:26 +00:00
/*
* We must call init_labels() before ofmt->init() since
* some object formats will want to define labels in their
* init routines. (eg OS/2 defines the FLAT group)
*/
init_labels ();
2002-04-30 20:57:38 +00:00
2002-04-30 20:52:49 +00:00
ofmt->init (ofile, report_error, define_label, evaluate);
2002-04-30 20:57:38 +00:00
2002-04-30 20:52:08 +00:00
assemble_file (inname);
2002-04-30 20:57:38 +00:00
2002-04-30 20:52:08 +00:00
if (!terminate_after_phase) {
2002-04-30 20:57:38 +00:00
ofmt->cleanup (using_debug_info);
cleanup_labels ();
2002-04-30 20:52:08 +00:00
}
2002-04-30 20:53:55 +00:00
else {
2002-04-30 20:57:38 +00:00
/*
* We had an fclose on the output file here, but we
* actually do that in all the object file drivers as well,
* so we're leaving out the one here.
* fclose (ofile);
*/
remove(outname);
if (listname[0])
remove(listname);
2002-04-30 20:52:26 +00:00
}
2002-04-30 20:57:38 +00:00
}
break;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:57:38 +00:00
2002-04-30 20:51:32 +00:00
if (want_usage)
2002-04-30 20:57:38 +00:00
usage();
2002-04-30 20:52:08 +00:00
raa_free (offsets);
saa_free (forwrefs);
2002-04-30 20:53:55 +00:00
eval_cleanup ();
nasmlib_cleanup ();
2002-04-30 20:51:32 +00:00
2002-04-30 20:52:26 +00:00
if (terminate_after_phase)
return 1;
else
return 0;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
/*
* Get a parameter for a command line option.
* First arg must be in the form of e.g. -f...
*/
static char *get_param (char *p, char *q, int *advance)
{
*advance = 0;
if (p[2]) /* the parameter's in the option */
{
p += 2;
while (isspace(*p))
p++;
return p;
}
if (q && q[0])
{
*advance = 1;
return q;
}
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
"option `-%c' requires an argument",
p[1]);
return NULL;
}
int stopoptions = 0;
static int process_arg (char *p, char *q)
{
2002-04-30 20:51:32 +00:00
char *param;
2002-04-30 20:53:55 +00:00
int i, advance = 0;
2002-04-30 20:51:32 +00:00
2002-04-30 20:52:26 +00:00
if (!p || !p[0])
return 0;
2002-04-30 20:53:55 +00:00
if (p[0]=='-' && ! stopoptions)
{
2002-04-30 20:52:26 +00:00
switch (p[1]) {
2002-04-30 20:53:55 +00:00
case '-': /* -- => stop processing options */
stopoptions = 1;
break;
case 's': /* silently ignored for compatibility */
break;
2002-04-30 20:52:26 +00:00
case 'o': /* these parameters take values */
case 'f':
case 'p':
case 'd':
2002-04-30 20:57:38 +00:00
case 'D':
2002-04-30 20:52:26 +00:00
case 'i':
case 'l':
2002-04-30 20:57:38 +00:00
case 'E':
2002-04-30 20:53:55 +00:00
case 'F':
if ( !(param = get_param (p, q, &advance)) )
2002-04-30 20:51:32 +00:00
break;
2002-04-30 20:52:26 +00:00
if (p[1]=='o') { /* output file */
strcpy (outname, param);
} else if (p[1]=='f') { /* output format */
ofmt = ofmt_find(param);
if (!ofmt) {
report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
2002-04-30 20:53:55 +00:00
"unrecognised output format `%s' - "
"use -hf for a list",
2002-04-30 20:52:26 +00:00
param);
}
2002-04-30 20:53:55 +00:00
else
ofmt->current_dfmt = ofmt->debug_formats[0];
2002-04-30 20:52:26 +00:00
} else if (p[1]=='p') { /* pre-include */
pp_pre_include (param);
2002-04-30 20:57:38 +00:00
} else if (p[1]=='D' || p[1]=='d') { /* pre-define */
2002-04-30 20:52:26 +00:00
pp_pre_define (param);
2002-04-30 20:57:38 +00:00
} else if (p[1]=='U' || p[1]=='u') { /* un-define */
pp_pre_undefine (param);
2002-04-30 20:52:26 +00:00
} else if (p[1]=='i') { /* include search path */
pp_include_path (param);
} else if (p[1]=='l') { /* listing file */
strcpy (listname, param);
2002-04-30 20:57:38 +00:00
} else if (p[1]=='E') { /* error messages file */
error_file = fopen(param, "wt");
if ( !error_file ) {
error_file = stderr; /* Revert to default! */
report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
"cannot open file `%s' for error messages",
param);
}
2002-04-30 20:53:55 +00:00
} else if (p[1] == 'F') { /* specify debug format */
ofmt->current_dfmt = dfmt_find(ofmt, param);
if (!ofmt->current_dfmt) {
report_error (ERR_FATAL | ERR_NOFILE | ERR_USAGE,
"unrecognized debug format `%s' for"
" output format `%s'",
param, ofmt->shortname);
}
}
break;
case 'g':
using_debug_info = TRUE;
2002-04-30 20:52:26 +00:00
break;
case 'h':
2002-04-30 20:53:55 +00:00
printf("usage: nasm [-@ response file] [-o outfile] [-f format] "
"[-l listfile]\n"
2002-04-30 20:57:38 +00:00
" [options...] [--] filename\n"
" or nasm -r for version info\n\n"
" -e preprocess only (writes output to stdout by default)\n"
" -a don't preprocess (assemble only)\n"
" -M generate Makefile dependencies on stdout\n\n"
" -E<file> redirect error messages to file\n\n"
" -g enable debug info\n"
" -F format select a debugging format\n\n"
" -i<path> adds a pathname to the include file path\n"
2002-04-30 20:53:55 +00:00
" -p<file> pre-includes a file\n"
2002-04-30 20:57:38 +00:00
" -d<macro>[=<value>] pre-defines a macro\n"
" -u<macro> undefines a macro\n"
" -w+foo enables warnings about foo; -w-foo disables them\n"
"where foo can be:\n");
2002-04-30 20:52:26 +00:00
for (i=1; i<=ERR_WARN_MAX; i++)
2002-04-30 20:53:55 +00:00
printf(" %-16s%s (default %s)\n",
suppressed_names[i], suppressed_what[i],
suppressed[i] ? "off" : "on");
printf ("\nresponse files should contain command line parameters"
", one per line.\n");
if (p[2] == 'f') {
printf("\nvalid output formats for -f are"
" (`*' denotes default):\n");
ofmt_list(ofmt, stdout);
}
else {
printf ("\nFor a list of valid output formats, use -hf.\n");
printf ("For a list of debug formats, use -f <form> -y.\n");
}
2002-04-30 20:52:26 +00:00
exit (0); /* never need usage message here */
break;
2002-04-30 20:53:55 +00:00
case 'y':
printf("\nvalid debug formats for '%s' output format are"
" ('*' denotes default):\n",
ofmt->shortname);
dfmt_list(ofmt, stdout);
exit(0);
break;
2002-04-30 20:52:26 +00:00
case 'r':
2002-04-30 20:53:55 +00:00
printf("NASM version %s\n", NASM_VER);
#ifdef DEBUG
printf("Compiled with -DDEBUG on " __DATE__ "\n");
#endif
2002-04-30 20:52:26 +00:00
exit (0); /* never need usage message here */
break;
case 'e': /* preprocess only */
2002-04-30 20:57:38 +00:00
operating_mode = op_preprocess;
2002-04-30 20:52:26 +00:00
break;
case 'a': /* assemble only - don't preprocess */
preproc = &no_pp;
break;
case 'w':
if (p[2] != '+' && p[2] != '-') {
2002-04-30 20:51:32 +00:00
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
2002-04-30 20:52:26 +00:00
"invalid option to `-w'");
} else {
for (i=1; i<=ERR_WARN_MAX; i++)
if (!nasm_stricmp(p+3, suppressed_names[i]))
break;
if (i <= ERR_WARN_MAX)
suppressed[i] = (p[2] == '-');
else
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
"invalid option to `-w'");
}
break;
2002-04-30 20:57:38 +00:00
case 'M':
operating_mode = op_depend;
break;
2002-04-30 20:52:26 +00:00
default:
2002-04-30 20:53:55 +00:00
if (!ofmt->setinfo(GI_SWITCH,&p))
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
2002-04-30 20:52:26 +00:00
"unrecognised option `-%c'",
p[1]);
break;
}
2002-04-30 20:53:55 +00:00
}
else
{
2002-04-30 20:52:26 +00:00
if (*inname) {
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
"more than one input file specified");
} else
strcpy(inname, p);
}
return advance;
}
2002-04-30 20:53:55 +00:00
#define ARG_BUF_DELTA 128
static void process_respfile (FILE *rfile)
{
char *buffer, *p, *q, *prevarg;
int bufsize, prevargsize;
bufsize = prevargsize = ARG_BUF_DELTA;
buffer = nasm_malloc(ARG_BUF_DELTA);
prevarg = nasm_malloc(ARG_BUF_DELTA);
prevarg[0] = '\0';
while (1) { /* Loop to handle all lines in file */
p = buffer;
while (1) { /* Loop to handle long lines */
q = fgets(p, bufsize-(p-buffer), rfile);
if (!q)
break;
p += strlen(p);
if (p > buffer && p[-1] == '\n')
break;
if (p-buffer > bufsize-10) {
int offset;
offset = p - buffer;
bufsize += ARG_BUF_DELTA;
buffer = nasm_realloc(buffer, bufsize);
p = buffer + offset;
}
}
if (!q && p == buffer) {
if (prevarg[0])
process_arg (prevarg, NULL);
nasm_free (buffer);
nasm_free (prevarg);
return;
}
/*
* Play safe: remove CRs, LFs and any spurious ^Zs, if any of
* them are present at the end of the line.
*/
*(p = &buffer[strcspn(buffer, "\r\n\032")]) = '\0';
while (p > buffer && isspace(p[-1]))
*--p = '\0';
p = buffer;
while (isspace(*p))
p++;
if (process_arg (prevarg, p))
*p = '\0';
if (strlen(p) > prevargsize-10) {
prevargsize += ARG_BUF_DELTA;
prevarg = nasm_realloc(prevarg, prevargsize);
}
strcpy (prevarg, p);
}
}
static void parse_cmdline(int argc, char **argv)
{
FILE *rfile;
char *envreal, *envcopy=NULL, *p, *q, *arg, *prevarg;
2002-04-30 20:52:26 +00:00
char separator = ' ';
*inname = *outname = *listname = '\0';
/*
* First, process the NASM environment variable.
*/
envreal = getenv("NASM");
arg = NULL;
if (envreal) {
envcopy = nasm_strdup(envreal);
p = envcopy;
if (*p && *p != '-')
separator = *p++;
while (*p) {
q = p;
while (*p && *p != separator) p++;
while (*p == separator) *p++ = '\0';
prevarg = arg;
arg = q;
if (process_arg (prevarg, arg))
arg = NULL;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
if (arg)
process_arg (arg, NULL);
2002-04-30 20:52:26 +00:00
nasm_free (envcopy);
}
/*
* Now process the actual command line.
*/
2002-04-30 20:53:55 +00:00
while (--argc)
{
2002-04-30 20:52:26 +00:00
int i;
argv++;
2002-04-30 20:53:55 +00:00
if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
if ((p = get_param (argv[0], argc > 1 ? argv[1] : NULL, &i)))
if ((rfile = fopen(p, "r"))) {
process_respfile (rfile);
fclose(rfile);
} else
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
"unable to open response file `%s'", p);
} else
i = process_arg (argv[0], argc > 1 ? argv[1] : NULL);
2002-04-30 20:52:26 +00:00
argv += i, argc -= i;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:52:26 +00:00
2002-04-30 20:51:32 +00:00
if (!*inname)
report_error (ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
"no input file specified");
}
2002-04-30 20:53:55 +00:00
static void assemble_file (char *fname)
{
char * value, * p, * q, * special, * line, debugid[80];
insn output_ins;
int i, rn_error, validid;
long seg, offs;
2002-04-30 20:52:49 +00:00
struct tokenval tokval;
2002-04-30 20:53:55 +00:00
expr * e;
2002-04-30 20:51:32 +00:00
2002-04-30 20:53:55 +00:00
/*
* pass one
*/
2002-04-30 20:51:32 +00:00
pass = 1;
2002-04-30 20:53:55 +00:00
in_abs_seg = FALSE;
location.segment = ofmt->section(NULL, pass, &sb);
2002-04-30 20:52:49 +00:00
preproc->reset(fname, 1, report_error, evaluate, &nasmlist);
2002-04-30 20:52:08 +00:00
globallineno = 0;
2002-04-30 20:53:55 +00:00
location.known = TRUE;
location.offset = offs = get_curr_ofs;
2002-04-30 20:52:08 +00:00
2002-04-30 20:53:55 +00:00
while ( (line = preproc->getline()) )
{
globallineno++;
2002-04-30 20:51:32 +00:00
/* here we parse our directives; this is not handled by the 'real'
* parser. */
2002-04-30 20:53:55 +00:00
if ( (i = getkw (line, &value)) )
{
2002-04-30 20:51:32 +00:00
switch (i) {
case 1: /* [SEGMENT n] */
seg = ofmt->section (value, pass, &sb);
if (seg == NO_SEG) {
report_error (ERR_NONFATAL,
"segment name `%s' not recognised",
value);
} else {
2002-04-30 20:53:55 +00:00
in_abs_seg = FALSE;
location.segment = seg;
2002-04-30 20:51:32 +00:00
}
break;
2002-04-30 20:52:49 +00:00
case 2: /* [EXTERN label:special] */
2002-04-30 20:51:32 +00:00
if (*value == '$')
value++; /* skip initial $ if present */
2002-04-30 20:52:49 +00:00
q = value;
validid = TRUE;
if (!isidstart(*q))
validid = FALSE;
while (*q && *q != ':') {
if (!isidchar(*q))
validid = FALSE;
q++;
}
if (!validid) {
report_error (ERR_NONFATAL,
"identifier expected after EXTERN");
break;
}
if (*q == ':') {
*q++ = '\0';
special = q;
} else
special = NULL;
if (!is_extern(value)) { /* allow re-EXTERN to be ignored */
declare_as_global (value, special, report_error);
define_label (value, seg_alloc(), 0L, NULL, FALSE, TRUE,
ofmt, report_error);
}
2002-04-30 20:51:32 +00:00
break;
case 3: /* [BITS bits] */
switch (atoi(value)) {
case 16:
case 32:
sb = atoi(value);
break;
default:
report_error(ERR_NONFATAL,
"`%s' is not a valid argument to [BITS]",
value);
break;
}
break;
2002-04-30 20:52:49 +00:00
case 4: /* [GLOBAL symbol:special] */
2002-04-30 20:51:32 +00:00
if (*value == '$')
value++; /* skip initial $ if present */
2002-04-30 20:52:49 +00:00
q = value;
validid = TRUE;
if (!isidstart(*q))
validid = FALSE;
while (*q && *q != ':') {
if (!isidchar(*q))
validid = FALSE;
q++;
}
if (!validid) {
report_error (ERR_NONFATAL,
"identifier expected after GLOBAL");
break;
}
if (*q == ':') {
*q++ = '\0';
special = q;
} else
special = NULL;
declare_as_global (value, special, report_error);
2002-04-30 20:51:32 +00:00
break;
2002-04-30 20:52:49 +00:00
case 5: /* [COMMON symbol size:special] */
2002-04-30 20:51:32 +00:00
p = value;
2002-04-30 20:52:49 +00:00
validid = TRUE;
if (!isidstart(*p))
validid = FALSE;
while (*p && !isspace(*p)) {
if (!isidchar(*p))
validid = FALSE;
2002-04-30 20:51:32 +00:00
p++;
2002-04-30 20:52:49 +00:00
}
if (!validid) {
report_error (ERR_NONFATAL,
"identifier expected after COMMON");
break;
}
2002-04-30 20:51:32 +00:00
if (*p) {
long size;
while (*p && isspace(*p))
*p++ = '\0';
2002-04-30 20:52:49 +00:00
q = p;
while (*q && *q != ':')
q++;
if (*q == ':') {
*q++ = '\0';
special = q;
} else
special = NULL;
2002-04-30 20:51:32 +00:00
size = readnum (p, &rn_error);
if (rn_error)
report_error (ERR_NONFATAL, "invalid size specified"
" in COMMON declaration");
else
define_common (value, seg_alloc(), size,
2002-04-30 20:52:49 +00:00
special, ofmt, report_error);
2002-04-30 20:51:32 +00:00
} else
report_error (ERR_NONFATAL, "no size specified in"
" COMMON declaration");
break;
2002-04-30 20:52:08 +00:00
case 6: /* [ABSOLUTE address] */
2002-04-30 20:52:49 +00:00
stdscan_reset();
stdscan_bufptr = value;
tokval.t_type = TOKEN_INVALID;
e = evaluate(stdscan, NULL, &tokval, NULL, 1, report_error,
NULL);
if (e) {
if (!is_reloc(e))
report_error (ERR_NONFATAL, "cannot use non-"
"relocatable expression as ABSOLUTE"
" address");
else {
abs_seg = reloc_seg(e);
abs_offset = reloc_value(e);
}
} else
2002-04-30 20:51:32 +00:00
abs_offset = 0x100;/* don't go near zero in case of / */
2002-04-30 20:53:55 +00:00
in_abs_seg = TRUE;
location.segment = abs_seg;
break;
case 7:
p = value;
validid = TRUE;
if (!isidstart(*p))
validid = FALSE;
while (*p && !isspace(*p)) {
if (!isidchar(*p))
validid = FALSE;
p++;
}
if (!validid) {
report_error (ERR_NONFATAL,
"identifier expected after DEBUG");
break;
}
while (*p && isspace(*p)) p++;
2002-04-30 20:51:32 +00:00
break;
default:
2002-04-30 20:52:08 +00:00
if (!ofmt->directive (line+1, value, 1))
2002-04-30 20:51:32 +00:00
report_error (ERR_NONFATAL, "unrecognised directive [%s]",
2002-04-30 20:52:08 +00:00
line+1);
2002-04-30 20:51:32 +00:00
break;
}
2002-04-30 20:53:55 +00:00
}
else /* it isn't a directive */
{
2002-04-30 20:52:49 +00:00
parse_line (1, line, &output_ins,
2002-04-30 20:53:55 +00:00
report_error, evaluate, define_label);
if (output_ins.forw_ref)
{
for(i = 0; i < output_ins.operands; i++)
{
if (output_ins.oprs[i].opflags & OPFLAG_FORWARD)
{
struct forwrefinfo *fwinf =
(struct forwrefinfo *)saa_wstruct(forwrefs);
fwinf->lineno = globallineno;
fwinf->operand = i;
}
}
2002-04-30 20:52:08 +00:00
}
2002-04-30 20:53:55 +00:00
if (output_ins.opcode == I_EQU)
{
2002-04-30 20:51:32 +00:00
/*
2002-04-30 20:52:26 +00:00
* Special `..' EQUs get processed in pass two,
* except `..@' macro-processor EQUs which are done
* in the normal place.
2002-04-30 20:51:32 +00:00
*/
if (!output_ins.label)
report_error (ERR_NONFATAL,
"EQU not preceded by label");
2002-04-30 20:53:55 +00:00
/*
* EQU cannot be used to declare a label relative to
* an external symbol.
*/
else if ((output_ins.oprs[0].opflags & OPFLAG_EXTERN)
|| (output_ins.operands > 1
&& (output_ins.oprs[1].opflags & OPFLAG_EXTERN)))
{
report_error (ERR_NONFATAL,
"EQU used relative to external symbol");
}
2002-04-30 20:51:32 +00:00
else if (output_ins.label[0] != '.' ||
2002-04-30 20:52:26 +00:00
output_ins.label[1] != '.' ||
2002-04-30 20:53:55 +00:00
output_ins.label[2] == '@')
{
2002-04-30 20:51:32 +00:00
if (output_ins.operands == 1 &&
2002-04-30 20:52:26 +00:00
(output_ins.oprs[0].type & IMMEDIATE) &&
2002-04-30 20:53:55 +00:00
output_ins.oprs[0].wrt == NO_SEG)
{
2002-04-30 20:51:32 +00:00
define_label (output_ins.label,
output_ins.oprs[0].segment,
output_ins.oprs[0].offset,
2002-04-30 20:52:49 +00:00
NULL, FALSE, FALSE, ofmt, report_error);
2002-04-30 20:53:55 +00:00
}
else if (output_ins.operands == 2 &&
2002-04-30 20:51:32 +00:00
(output_ins.oprs[0].type & IMMEDIATE) &&
(output_ins.oprs[0].type & COLON) &&
output_ins.oprs[0].segment == NO_SEG &&
2002-04-30 20:52:26 +00:00
output_ins.oprs[0].wrt == NO_SEG &&
2002-04-30 20:51:32 +00:00
(output_ins.oprs[1].type & IMMEDIATE) &&
2002-04-30 20:52:26 +00:00
output_ins.oprs[1].segment == NO_SEG &&
2002-04-30 20:53:55 +00:00
output_ins.oprs[1].wrt == NO_SEG)
{
2002-04-30 20:51:32 +00:00
define_label (output_ins.label,
output_ins.oprs[0].offset | SEG_ABS,
output_ins.oprs[1].offset,
2002-04-30 20:52:49 +00:00
NULL, FALSE, FALSE, ofmt, report_error);
2002-04-30 20:53:55 +00:00
}
else
2002-04-30 20:51:32 +00:00
report_error(ERR_NONFATAL, "bad syntax for EQU");
}
2002-04-30 20:53:55 +00:00
}
else /* instruction isn't an EQU */
{
long l = insn_size (location.segment, offs, sb,
2002-04-30 20:51:32 +00:00
&output_ins, report_error);
2002-04-30 20:53:55 +00:00
if (using_debug_info && output_ins.opcode != -1) {
/* this is done here so we can do debug type info */
long typeinfo = TYS_ELEMENTS(output_ins.operands);
switch (output_ins.opcode) {
case I_RESB:
typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;
break;
case I_RESW:
typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;
break;
case I_RESD:
typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;
break;
case I_RESQ:
typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;
break;
case I_REST:
typeinfo = TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;
break;
case I_DB:
typeinfo |= TY_BYTE;
break;
case I_DW:
typeinfo |= TY_WORD;
break;
case I_DD:
if (output_ins.eops_float)
typeinfo |= TY_FLOAT;
else
typeinfo |= TY_DWORD;
break;
case I_DQ:
typeinfo |= TY_QWORD;
break;
case I_DT:
typeinfo |= TY_TBYTE;
break;
default:
typeinfo = TY_LABEL;
}
ofmt->current_dfmt->debug_typevalue(typeinfo);
}
if (l != -1) {
offs += l;
set_curr_ofs (offs);
}
/*
* else l == -1 => invalid instruction, which will be
* flagged as an error on pass 2
*/
2002-04-30 20:51:32 +00:00
}
cleanup_insn (&output_ins);
}
2002-04-30 20:52:08 +00:00
nasm_free (line);
2002-04-30 20:53:55 +00:00
location.offset = offs = get_curr_ofs;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
2002-04-30 20:52:08 +00:00
preproc->cleanup();
2002-04-30 20:51:32 +00:00
if (terminate_after_phase) {
fclose(ofile);
remove(outname);
if (want_usage)
usage();
exit (1);
}
2002-04-30 20:53:55 +00:00
/*
* pass two
*/
2002-04-30 20:51:32 +00:00
pass = 2;
2002-04-30 20:51:53 +00:00
saa_rewind (forwrefs);
2002-04-30 20:52:26 +00:00
if (*listname)
nasmlist.init(listname, report_error);
2002-04-30 20:53:55 +00:00
forwref = saa_rstruct (forwrefs);
in_abs_seg = FALSE;
location.segment = ofmt->section(NULL, pass, &sb);
2002-04-30 20:51:32 +00:00
raa_free (offsets);
offsets = raa_init();
2002-04-30 20:52:49 +00:00
preproc->reset(fname, 2, report_error, evaluate, &nasmlist);
2002-04-30 20:52:08 +00:00
globallineno = 0;
2002-04-30 20:53:55 +00:00
location.offset = offs = get_curr_ofs;
2002-04-30 20:52:08 +00:00
2002-04-30 20:53:55 +00:00
while ( (line = preproc->getline()) )
{
globallineno++;
2002-04-30 20:51:32 +00:00
/* here we parse our directives; this is not handled by
* the 'real' parser. */
2002-04-30 20:52:08 +00:00
if ( (i = getkw (line, &value)) ) {
2002-04-30 20:51:32 +00:00
switch (i) {
case 1: /* [SEGMENT n] */
seg = ofmt->section (value, pass, &sb);
if (seg == NO_SEG) {
report_error (ERR_PANIC,
"invalid segment name on pass two");
} else
2002-04-30 20:53:55 +00:00
in_abs_seg = FALSE;
location.segment = seg;
2002-04-30 20:51:32 +00:00
break;
case 2: /* [EXTERN label] */
2002-04-30 20:52:49 +00:00
q = value;
while (*q && *q != ':')
q++;
if (*q == ':') {
*q++ = '\0';
ofmt->symdef(value, 0L, 0L, 3, q);
}
2002-04-30 20:51:32 +00:00
break;
case 3: /* [BITS bits] */
switch (atoi(value)) {
case 16:
case 32:
sb = atoi(value);
break;
default:
report_error(ERR_PANIC,
"invalid [BITS] value on pass two",
value);
break;
}
break;
2002-04-30 20:52:08 +00:00
case 4: /* [GLOBAL symbol] */
2002-04-30 20:52:49 +00:00
q = value;
while (*q && *q != ':')
q++;
if (*q == ':') {
*q++ = '\0';
ofmt->symdef(value, 0L, 0L, 3, q);
}
2002-04-30 20:51:32 +00:00
break;
2002-04-30 20:52:08 +00:00
case 5: /* [COMMON symbol size] */
2002-04-30 20:52:49 +00:00
q = value;
while (*q && *q != ':') {
if (isspace(*q))
*q = '\0';
q++;
}
if (*q == ':') {
*q++ = '\0';
ofmt->symdef(value, 0L, 0L, 3, q);
}
2002-04-30 20:51:32 +00:00
break;
2002-04-30 20:52:08 +00:00
case 6: /* [ABSOLUTE addr] */
2002-04-30 20:52:49 +00:00
stdscan_reset();
stdscan_bufptr = value;
tokval.t_type = TOKEN_INVALID;
e = evaluate(stdscan, NULL, &tokval, NULL, 2, report_error,
NULL);
if (e) {
if (!is_reloc(e))
report_error (ERR_PANIC, "non-reloc ABSOLUTE address"
" in pass two");
else {
abs_seg = reloc_seg(e);
abs_offset = reloc_value(e);
}
} else
2002-04-30 20:51:32 +00:00
report_error (ERR_PANIC, "invalid ABSOLUTE address "
"in pass two");
2002-04-30 20:53:55 +00:00
in_abs_seg = TRUE;
location.segment = abs_seg;
break;
case 7:
p = value;
q = debugid;
validid = TRUE;
if (!isidstart(*p))
validid = FALSE;
while (*p && !isspace(*p)) {
if (!isidchar(*p))
validid = FALSE;
*q++ = *p++;
}
*q++ = 0;
if (!validid) {
report_error (ERR_PANIC,
"identifier expected after DEBUG in pass 2");
break;
}
while (*p && isspace(*p))
p++;
ofmt->current_dfmt->debug_directive (debugid, p);
2002-04-30 20:51:32 +00:00
break;
default:
2002-04-30 20:52:08 +00:00
if (!ofmt->directive (line+1, value, 2))
2002-04-30 20:51:32 +00:00
report_error (ERR_PANIC, "invalid directive on pass two");
break;
}
2002-04-30 20:53:55 +00:00
}
else /* not a directive */
{
2002-04-30 20:52:49 +00:00
parse_line (2, line, &output_ins,
2002-04-30 20:53:55 +00:00
report_error, evaluate, redefine_label);
if (forwref != NULL && globallineno == forwref->lineno) {
2002-04-30 20:51:53 +00:00
output_ins.forw_ref = TRUE;
2002-04-30 20:53:55 +00:00
do {
output_ins.oprs[forwref->operand].opflags|= OPFLAG_FORWARD;
forwref = saa_rstruct (forwrefs);
} while (forwref != NULL && forwref->lineno == globallineno);
2002-04-30 20:51:53 +00:00
} else
output_ins.forw_ref = FALSE;
2002-04-30 20:52:08 +00:00
/*
* Hack to prevent phase error in the code
* rol ax,x
* x equ 1
2002-04-30 20:53:55 +00:00
*
* If the second operand is a forward reference,
* the UNITY property of the number 1 in that
* operand is cancelled. Otherwise the above
* sequence will cause a phase error.
*
* This hack means that the above code will
* generate 286+ code.
*
* The forward reference will mean that the
* operand will not have the UNITY property on
* the first pass, so the pass behaviours will
* be consistent.
2002-04-30 20:52:08 +00:00
*/
2002-04-30 20:53:55 +00:00
if (output_ins.forw_ref &&
output_ins.operands >= 2 &&
(output_ins.oprs[1].opflags & OPFLAG_FORWARD))
{
output_ins.oprs[1].type &= ~ONENESS;
2002-04-30 20:52:08 +00:00
}
2002-04-30 20:53:55 +00:00
if (output_ins.opcode == I_EQU)
{
2002-04-30 20:51:32 +00:00
/*
2002-04-30 20:52:26 +00:00
* Special `..' EQUs get processed here, except
* `..@' macro processor EQUs which are done above.
2002-04-30 20:51:32 +00:00
*/
if (output_ins.label[0] == '.' &&
2002-04-30 20:52:26 +00:00
output_ins.label[1] == '.' &&
2002-04-30 20:53:55 +00:00
output_ins.label[2] != '@')
{
2002-04-30 20:51:32 +00:00
if (output_ins.operands == 1 &&
(output_ins.oprs[0].type & IMMEDIATE)) {
define_label (output_ins.label,
output_ins.oprs[0].segment,
output_ins.oprs[0].offset,
2002-04-30 20:52:49 +00:00
NULL, FALSE, FALSE, ofmt, report_error);
2002-04-30 20:53:55 +00:00
}
else if (output_ins.operands == 2 &&
2002-04-30 20:51:32 +00:00
(output_ins.oprs[0].type & IMMEDIATE) &&
(output_ins.oprs[0].type & COLON) &&
output_ins.oprs[0].segment == NO_SEG &&
(output_ins.oprs[1].type & IMMEDIATE) &&
2002-04-30 20:53:55 +00:00
output_ins.oprs[1].segment == NO_SEG)
{
2002-04-30 20:51:32 +00:00
define_label (output_ins.label,
output_ins.oprs[0].offset | SEG_ABS,
output_ins.oprs[1].offset,
2002-04-30 20:52:49 +00:00
NULL, FALSE, FALSE, ofmt, report_error);
2002-04-30 20:53:55 +00:00
}
else
2002-04-30 20:51:32 +00:00
report_error(ERR_NONFATAL, "bad syntax for EQU");
}
}
2002-04-30 20:53:55 +00:00
offs += assemble (location.segment, offs, sb,
2002-04-30 20:52:26 +00:00
&output_ins, ofmt, report_error, &nasmlist);
2002-04-30 20:51:32 +00:00
cleanup_insn (&output_ins);
set_curr_ofs (offs);
}
2002-04-30 20:53:55 +00:00
2002-04-30 20:52:08 +00:00
nasm_free (line);
2002-04-30 20:52:49 +00:00
2002-04-30 20:53:55 +00:00
location.offset = offs = get_curr_ofs;
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
2002-04-30 20:52:08 +00:00
preproc->cleanup();
2002-04-30 20:52:26 +00:00
nasmlist.cleanup();
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
static int getkw (char *buf, char **value)
{
2002-04-30 20:51:32 +00:00
char *p, *q;
if (*buf!='[')
return 0;
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
p = buf;
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
while (*p && *p != ']') p++;
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
if (!*p)
return 0;
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
q = p++;
2002-04-30 20:53:55 +00:00
2002-04-30 20:51:32 +00:00
while (*p && *p != ';') {
if (!isspace(*p))
return 0;
p++;
}
q[1] = '\0';
p = buf+1;
while (*buf && *buf!=' ' && *buf!=']' && *buf!='\t')
buf++;
if (*buf==']') {
*buf = '\0';
*value = buf;
} else {
*buf++ = '\0';
2002-04-30 20:52:26 +00:00
while (isspace(*buf)) buf++; /* beppu - skip leading whitespace */
2002-04-30 20:51:32 +00:00
*value = buf;
while (*buf!=']') buf++;
*buf++ = '\0';
}
for (q=p; *q; q++)
*q = tolower(*q);
if (!strcmp(p, "segment") || !strcmp(p, "section"))
return 1;
if (!strcmp(p, "extern"))
return 2;
if (!strcmp(p, "bits"))
return 3;
if (!strcmp(p, "global"))
2002-04-30 20:52:08 +00:00
return 4;
2002-04-30 20:51:32 +00:00
if (!strcmp(p, "common"))
2002-04-30 20:52:08 +00:00
return 5;
2002-04-30 20:51:32 +00:00
if (!strcmp(p, "absolute"))
2002-04-30 20:52:08 +00:00
return 6;
2002-04-30 20:53:55 +00:00
if (!strcmp(p, "debug"))
return 7;
2002-04-30 20:51:32 +00:00
return -1;
}
2002-04-30 20:53:55 +00:00
static void report_error (int severity, char *fmt, ...)
{
2002-04-30 20:51:32 +00:00
va_list ap;
2002-04-30 20:52:26 +00:00
/*
* See if it's a suppressed warning.
*/
if ((severity & ERR_MASK) == ERR_WARNING &&
(severity & ERR_WARN_MASK) != 0 &&
suppressed[ (severity & ERR_WARN_MASK) >> ERR_WARN_SHR ])
return; /* and bail out if so */
2002-04-30 20:52:49 +00:00
/*
* See if it's a pass-one only warning and we're not in pass one.
*/
if ((severity & ERR_PASS1) && pass != 1)
return;
2002-04-30 20:51:32 +00:00
if (severity & ERR_NOFILE)
2002-04-30 20:57:38 +00:00
fputs ("nasm: ", error_file);
2002-04-30 20:53:55 +00:00
else {
char * currentfile = NULL;
long lineno = 0;
src_get (&lineno, &currentfile);
2002-04-30 20:57:38 +00:00
fprintf (error_file, "%s:%ld: ", currentfile, lineno);
2002-04-30 20:53:55 +00:00
nasm_free (currentfile);
}
2002-04-30 20:51:32 +00:00
if ( (severity & ERR_MASK) == ERR_WARNING)
2002-04-30 20:57:38 +00:00
fputs ("warning: ", error_file);
2002-04-30 20:51:32 +00:00
else if ( (severity & ERR_MASK) == ERR_PANIC)
2002-04-30 20:57:38 +00:00
fputs ("panic: ", error_file);
2002-04-30 20:51:32 +00:00
va_start (ap, fmt);
2002-04-30 20:57:38 +00:00
vfprintf (error_file, fmt, ap);
fputc ('\n', error_file);
2002-04-30 20:51:32 +00:00
if (severity & ERR_USAGE)
want_usage = TRUE;
switch (severity & ERR_MASK) {
case ERR_WARNING:
/* no further action, by definition */
break;
case ERR_NONFATAL:
terminate_after_phase = TRUE;
break;
case ERR_FATAL:
2002-04-30 20:52:08 +00:00
if (ofile) {
fclose(ofile);
remove(outname);
}
2002-04-30 20:51:32 +00:00
if (want_usage)
usage();
exit(1); /* instantly die */
break; /* placate silly compilers */
case ERR_PANIC:
2002-04-30 20:57:38 +00:00
fflush(NULL);
2002-04-30 20:52:08 +00:00
abort(); /* halt, catch fire, and dump core */
2002-04-30 20:51:32 +00:00
break;
}
}
2002-04-30 20:53:55 +00:00
static void usage(void)
{
2002-04-30 20:57:38 +00:00
fputs("type `nasm -h' for help\n", error_file);
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:53:55 +00:00
static void register_output_formats(void)
{
ofmt = ofmt_register (report_error);
2002-04-30 20:51:32 +00:00
}
2002-04-30 20:52:08 +00:00
#define BUF_DELTA 512
static FILE *no_pp_fp;
static efunc no_pp_err;
2002-04-30 20:52:49 +00:00
static ListGen *no_pp_list;
2002-04-30 20:53:55 +00:00
static long no_pp_lineinc;
2002-04-30 20:52:08 +00:00
2002-04-30 20:52:49 +00:00
static void no_pp_reset (char *file, int pass, efunc error, evalfunc eval,
2002-04-30 20:53:55 +00:00
ListGen *listgen)
{
src_set_fname(nasm_strdup(file));
src_set_linnum(0);
no_pp_lineinc = 1;
2002-04-30 20:52:08 +00:00
no_pp_err = error;
no_pp_fp = fopen(file, "r");
if (!no_pp_fp)
no_pp_err (ERR_FATAL | ERR_NOFILE,
"unable to open input file `%s'", file);
2002-04-30 20:52:49 +00:00
no_pp_list = listgen;
(void) pass; /* placate compilers */
(void) eval; /* placate compilers */
2002-04-30 20:52:08 +00:00
}
2002-04-30 20:53:55 +00:00
static char *no_pp_getline (void)
{
2002-04-30 20:52:08 +00:00
char *buffer, *p, *q;
int bufsize;
bufsize = BUF_DELTA;
buffer = nasm_malloc(BUF_DELTA);
2002-04-30 20:53:55 +00:00
src_set_linnum(src_get_linnum() + no_pp_lineinc);
2002-04-30 20:52:08 +00:00
2002-04-30 20:53:55 +00:00
while (1) { /* Loop to handle %line */
2002-04-30 20:52:08 +00:00
2002-04-30 20:53:55 +00:00
p = buffer;
while (1) { /* Loop to handle long lines */
q = fgets(p, bufsize-(p-buffer), no_pp_fp);
if (!q)
break;
p += strlen(p);
if (p > buffer && p[-1] == '\n')
break;
if (p-buffer > bufsize-10) {
int offset;
offset = p - buffer;
bufsize += BUF_DELTA;
buffer = nasm_realloc(buffer, bufsize);
p = buffer + offset;
}
}
2002-04-30 20:52:08 +00:00
2002-04-30 20:53:55 +00:00
if (!q && p == buffer) {
nasm_free (buffer);
return NULL;
}
/*
* Play safe: remove CRs, LFs and any spurious ^Zs, if any of
* them are present at the end of the line.
*/
buffer[strcspn(buffer, "\r\n\032")] = '\0';
if (!strncmp(buffer, "%line", 5)) {
long ln;
int li;
char *nm = nasm_malloc(strlen(buffer));
if (sscanf(buffer+5, "%ld+%d %s", &ln, &li, nm) == 3) {
nasm_free( src_set_fname(nm) );
src_set_linnum(ln);
no_pp_lineinc = li;
continue;
}
nasm_free(nm);
}
break;
}
2002-04-30 20:52:08 +00:00
2002-04-30 20:52:49 +00:00
no_pp_list->line (LIST_READ, buffer);
2002-04-30 20:52:08 +00:00
return buffer;
}
2002-04-30 20:53:55 +00:00
static void no_pp_cleanup (void)
{
2002-04-30 20:52:08 +00:00
fclose(no_pp_fp);
}