Distinguish no directive present from unknown directive
[nasm.git] / nasm.c
blob70f8c9e42737cf2c3c094cf04206f999ed50b406
1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * The Netwide Assembler main program module
38 #include "compiler.h"
40 #include <stdio.h>
41 #include <stdarg.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <ctype.h>
45 #include <inttypes.h>
46 #include <limits.h>
47 #include <time.h>
49 #include "nasm.h"
50 #include "nasmlib.h"
51 #include "saa.h"
52 #include "raa.h"
53 #include "float.h"
54 #include "stdscan.h"
55 #include "insns.h"
56 #include "preproc.h"
57 #include "parser.h"
58 #include "eval.h"
59 #include "assemble.h"
60 #include "labels.h"
61 #include "output/outform.h"
62 #include "listing.h"
64 struct forwrefinfo { /* info held on forward refs. */
65 int lineno;
66 int operand;
69 static int get_bits(char *value);
70 static uint32_t get_cpu(char *cpu_str);
71 static void parse_cmdline(int, char **);
72 static void assemble_file(char *, StrList **);
73 static void nasm_verror_gnu(int severity, const char *fmt, va_list args);
74 static void nasm_verror_vc(int severity, const char *fmt, va_list args);
75 static void nasm_verror_common(int severity, const char *fmt, va_list args);
76 static bool is_suppressed_warning(int severity);
77 static void usage(void);
79 static int using_debug_info, opt_verbose_info;
80 bool tasm_compatible_mode = false;
81 int pass0, passn;
82 int maxbits = 0;
83 int globalrel = 0;
85 static time_t official_compile_time;
87 static char inname[FILENAME_MAX];
88 static char outname[FILENAME_MAX];
89 static char listname[FILENAME_MAX];
90 static char errname[FILENAME_MAX];
91 static int globallineno; /* for forward-reference tracking */
92 /* static int pass = 0; */
93 struct ofmt *ofmt = &OF_DEFAULT;
94 const struct dfmt *dfmt;
96 static FILE *error_file; /* Where to write error messages */
98 FILE *ofile = NULL;
99 int optimizing = -1; /* number of optimization passes to take */
100 static int sb, cmd_sb = 16; /* by default */
101 static uint32_t cmd_cpu = IF_PLEVEL; /* highest level by default */
102 static uint32_t cpu = IF_PLEVEL; /* passed to insn_size & assemble.c */
103 int64_t global_offset_changed; /* referenced in labels.c */
104 int64_t prev_offset_changed;
105 int32_t stall_count;
107 static struct location location;
108 int in_abs_seg; /* Flag we are in ABSOLUTE seg */
109 int32_t abs_seg; /* ABSOLUTE segment basis */
110 int32_t abs_offset; /* ABSOLUTE offset */
112 static struct RAA *offsets;
114 static struct SAA *forwrefs; /* keep track of forward references */
115 static const struct forwrefinfo *forwref;
117 static Preproc *preproc;
118 enum op_type {
119 op_normal, /* Preprocess and assemble */
120 op_preprocess, /* Preprocess only */
121 op_depend, /* Generate dependencies */
123 static enum op_type operating_mode;
124 /* Dependency flags */
125 static bool depend_emit_phony = false;
126 static bool depend_missing_ok = false;
127 static const char *depend_target = NULL;
128 static const char *depend_file = NULL;
131 * Which of the suppressible warnings are suppressed. Entry zero
132 * isn't an actual warning, but it used for -w+error/-Werror.
135 static bool warning_on[ERR_WARN_MAX+1]; /* Current state */
136 static bool warning_on_global[ERR_WARN_MAX+1]; /* Command-line state */
138 static const struct warning {
139 const char *name;
140 const char *help;
141 bool enabled;
142 } warnings[ERR_WARN_MAX+1] = {
143 {"error", "treat warnings as errors", false},
144 {"macro-params", "macro calls with wrong parameter count", true},
145 {"macro-selfref", "cyclic macro references", false},
146 {"macro-defaults", "macros with more default than optional parameters", true},
147 {"orphan-labels", "labels alone on lines without trailing `:'", true},
148 {"number-overflow", "numeric constant does not fit", true},
149 {"gnu-elf-extensions", "using 8- or 16-bit relocation in ELF32, a GNU extension", false},
150 {"float-overflow", "floating point overflow", true},
151 {"float-denorm", "floating point denormal", false},
152 {"float-underflow", "floating point underflow", false},
153 {"float-toolong", "too many digits in floating-point number", true},
154 {"user", "%warning directives", true},
158 * This is a null preprocessor which just copies lines from input
159 * to output. It's used when someone explicitly requests that NASM
160 * not preprocess their source file.
163 static void no_pp_reset(char *, int, ListGen *, StrList **);
164 static char *no_pp_getline(void);
165 static void no_pp_cleanup(int);
166 static Preproc no_pp = {
167 no_pp_reset,
168 no_pp_getline,
169 no_pp_cleanup
173 * get/set current offset...
175 #define GET_CURR_OFFS (in_abs_seg?abs_offset:\
176 raa_read(offsets,location.segment))
177 #define SET_CURR_OFFS(x) (in_abs_seg?(void)(abs_offset=(x)):\
178 (void)(offsets=raa_write(offsets,location.segment,(x))))
180 static bool want_usage;
181 static bool terminate_after_phase;
182 int user_nolist = 0; /* fbk 9/2/00 */
184 static void nasm_fputs(const char *line, FILE * outfile)
186 if (outfile) {
187 fputs(line, outfile);
188 putc('\n', outfile);
189 } else
190 puts(line);
193 /* Convert a struct tm to a POSIX-style time constant */
194 static int64_t posix_mktime(struct tm *tm)
196 int64_t t;
197 int64_t y = tm->tm_year;
199 /* See IEEE 1003.1:2004, section 4.14 */
201 t = (y-70)*365 + (y-69)/4 - (y-1)/100 + (y+299)/400;
202 t += tm->tm_yday;
203 t *= 24;
204 t += tm->tm_hour;
205 t *= 60;
206 t += tm->tm_min;
207 t *= 60;
208 t += tm->tm_sec;
210 return t;
213 static void define_macros_early(void)
215 char temp[128];
216 struct tm lt, *lt_p, gm, *gm_p;
217 int64_t posix_time;
219 lt_p = localtime(&official_compile_time);
220 if (lt_p) {
221 lt = *lt_p;
223 strftime(temp, sizeof temp, "__DATE__=\"%Y-%m-%d\"", &lt);
224 pp_pre_define(temp);
225 strftime(temp, sizeof temp, "__DATE_NUM__=%Y%m%d", &lt);
226 pp_pre_define(temp);
227 strftime(temp, sizeof temp, "__TIME__=\"%H:%M:%S\"", &lt);
228 pp_pre_define(temp);
229 strftime(temp, sizeof temp, "__TIME_NUM__=%H%M%S", &lt);
230 pp_pre_define(temp);
233 gm_p = gmtime(&official_compile_time);
234 if (gm_p) {
235 gm = *gm_p;
237 strftime(temp, sizeof temp, "__UTC_DATE__=\"%Y-%m-%d\"", &gm);
238 pp_pre_define(temp);
239 strftime(temp, sizeof temp, "__UTC_DATE_NUM__=%Y%m%d", &gm);
240 pp_pre_define(temp);
241 strftime(temp, sizeof temp, "__UTC_TIME__=\"%H:%M:%S\"", &gm);
242 pp_pre_define(temp);
243 strftime(temp, sizeof temp, "__UTC_TIME_NUM__=%H%M%S", &gm);
244 pp_pre_define(temp);
247 if (gm_p)
248 posix_time = posix_mktime(&gm);
249 else if (lt_p)
250 posix_time = posix_mktime(&lt);
251 else
252 posix_time = 0;
254 if (posix_time) {
255 snprintf(temp, sizeof temp, "__POSIX_TIME__=%"PRId64, posix_time);
256 pp_pre_define(temp);
260 static void define_macros_late(void)
262 char temp[128];
264 snprintf(temp, sizeof(temp), "__OUTPUT_FORMAT__=%s\n",
265 ofmt->shortname);
266 pp_pre_define(temp);
269 static void emit_dependencies(StrList *list)
271 FILE *deps;
272 int linepos, len;
273 StrList *l, *nl;
275 if (depend_file && strcmp(depend_file, "-")) {
276 deps = fopen(depend_file, "w");
277 if (!deps) {
278 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
279 "unable to write dependency file `%s'", depend_file);
280 return;
282 } else {
283 deps = stdout;
286 linepos = fprintf(deps, "%s:", depend_target);
287 list_for_each(l, list) {
288 len = strlen(l->str);
289 if (linepos + len > 62) {
290 fprintf(deps, " \\\n ");
291 linepos = 1;
293 fprintf(deps, " %s", l->str);
294 linepos += len+1;
296 fprintf(deps, "\n\n");
298 list_for_each_safe(l, nl, list) {
299 if (depend_emit_phony)
300 fprintf(deps, "%s:\n\n", l->str);
301 nasm_free(l);
304 if (deps != stdout)
305 fclose(deps);
308 int main(int argc, char **argv)
310 StrList *depend_list = NULL, **depend_ptr;
312 time(&official_compile_time);
314 pass0 = 0;
315 want_usage = terminate_after_phase = false;
316 nasm_set_verror(nasm_verror_gnu);
318 error_file = stderr;
320 tolower_init();
322 nasm_init_malloc_error();
323 offsets = raa_init();
324 forwrefs = saa_init((int32_t)sizeof(struct forwrefinfo));
326 preproc = &nasmpp;
327 operating_mode = op_normal;
329 seg_init();
331 /* Define some macros dependent on the runtime, but not
332 on the command line. */
333 define_macros_early();
335 parse_cmdline(argc, argv);
337 if (terminate_after_phase) {
338 if (want_usage)
339 usage();
340 return 1;
343 /* If debugging info is disabled, suppress any debug calls */
344 if (!using_debug_info)
345 ofmt->current_dfmt = &null_debug_form;
347 if (ofmt->stdmac)
348 pp_extra_stdmac(ofmt->stdmac);
349 parser_global_info(&location);
350 eval_global_info(ofmt, lookup_label, &location);
352 /* define some macros dependent of command-line */
353 define_macros_late();
355 depend_ptr = (depend_file || (operating_mode == op_depend))
356 ? &depend_list : NULL;
357 if (!depend_target)
358 depend_target = outname;
360 switch (operating_mode) {
361 case op_depend:
363 char *line;
365 if (depend_missing_ok)
366 pp_include_path(NULL); /* "assume generated" */
368 preproc->reset(inname, 0, &nasmlist, depend_ptr);
369 if (outname[0] == '\0')
370 ofmt->filename(inname, outname);
371 ofile = NULL;
372 while ((line = preproc->getline()))
373 nasm_free(line);
374 preproc->cleanup(0);
376 break;
378 case op_preprocess:
380 char *line;
381 char *file_name = NULL;
382 int32_t prior_linnum = 0;
383 int lineinc = 0;
385 if (*outname) {
386 ofile = fopen(outname, "w");
387 if (!ofile)
388 nasm_error(ERR_FATAL | ERR_NOFILE,
389 "unable to open output file `%s'",
390 outname);
391 } else
392 ofile = NULL;
394 location.known = false;
396 /* pass = 1; */
397 preproc->reset(inname, 3, &nasmlist, depend_ptr);
399 while ((line = preproc->getline())) {
401 * We generate %line directives if needed for later programs
403 int32_t linnum = prior_linnum += lineinc;
404 int altline = src_get(&linnum, &file_name);
405 if (altline) {
406 if (altline == 1 && lineinc == 1)
407 nasm_fputs("", ofile);
408 else {
409 lineinc = (altline != -1 || lineinc != 1);
410 fprintf(ofile ? ofile : stdout,
411 "%%line %"PRId32"+%d %s\n", linnum, lineinc,
412 file_name);
414 prior_linnum = linnum;
416 nasm_fputs(line, ofile);
417 nasm_free(line);
419 nasm_free(file_name);
420 preproc->cleanup(0);
421 if (ofile)
422 fclose(ofile);
423 if (ofile && terminate_after_phase)
424 remove(outname);
425 ofile = NULL;
427 break;
429 case op_normal:
432 * We must call ofmt->filename _anyway_, even if the user
433 * has specified their own output file, because some
434 * formats (eg OBJ and COFF) use ofmt->filename to find out
435 * the name of the input file and then put that inside the
436 * file.
438 ofmt->filename(inname, outname);
440 ofile = fopen(outname, (ofmt->flags & OFMT_TEXT) ? "w" : "wb");
441 if (!ofile) {
442 nasm_error(ERR_FATAL | ERR_NOFILE,
443 "unable to open output file `%s'", outname);
447 * We must call init_labels() before ofmt->init() since
448 * some object formats will want to define labels in their
449 * init routines. (eg OS/2 defines the FLAT group)
451 init_labels();
453 ofmt->init();
454 dfmt = ofmt->current_dfmt;
455 dfmt->init();
457 assemble_file(inname, depend_ptr);
459 if (!terminate_after_phase) {
460 ofmt->cleanup(using_debug_info);
461 cleanup_labels();
462 fflush(ofile);
463 if (ferror(ofile)) {
464 nasm_error(ERR_NONFATAL|ERR_NOFILE,
465 "write error on output file `%s'", outname);
469 if (ofile) {
470 fclose(ofile);
471 if (terminate_after_phase)
472 remove(outname);
473 ofile = NULL;
476 break;
479 if (depend_list && !terminate_after_phase)
480 emit_dependencies(depend_list);
482 if (want_usage)
483 usage();
485 raa_free(offsets);
486 saa_free(forwrefs);
487 eval_cleanup();
488 stdscan_cleanup();
490 return terminate_after_phase;
494 * Get a parameter for a command line option.
495 * First arg must be in the form of e.g. -f...
497 static char *get_param(char *p, char *q, bool *advance)
499 *advance = false;
500 if (p[2]) /* the parameter's in the option */
501 return nasm_skip_spaces(p + 2);
502 if (q && q[0]) {
503 *advance = true;
504 return q;
506 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
507 "option `-%c' requires an argument", p[1]);
508 return NULL;
512 * Copy a filename
514 static void copy_filename(char *dst, const char *src)
516 size_t len = strlen(src);
518 if (len >= (size_t)FILENAME_MAX) {
519 nasm_error(ERR_FATAL | ERR_NOFILE, "file name too long");
520 return;
522 strncpy(dst, src, FILENAME_MAX);
526 * Convert a string to Make-safe form
528 static char *quote_for_make(const char *str)
530 const char *p;
531 char *os, *q;
533 size_t n = 1; /* Terminating zero */
534 size_t nbs = 0;
536 if (!str)
537 return NULL;
539 for (p = str; *p; p++) {
540 switch (*p) {
541 case ' ':
542 case '\t':
543 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
544 n += nbs + 2;
545 nbs = 0;
546 break;
547 case '$':
548 case '#':
549 nbs = 0;
550 n += 2;
551 break;
552 case '\\':
553 nbs++;
554 n++;
555 break;
556 default:
557 nbs = 0;
558 n++;
559 break;
563 /* Convert N backslashes at the end of filename to 2N backslashes */
564 if (nbs)
565 n += nbs;
567 os = q = nasm_malloc(n);
569 nbs = 0;
570 for (p = str; *p; p++) {
571 switch (*p) {
572 case ' ':
573 case '\t':
574 while (nbs--)
575 *q++ = '\\';
576 *q++ = '\\';
577 *q++ = *p;
578 break;
579 case '$':
580 *q++ = *p;
581 *q++ = *p;
582 nbs = 0;
583 break;
584 case '#':
585 *q++ = '\\';
586 *q++ = *p;
587 nbs = 0;
588 break;
589 case '\\':
590 *q++ = *p;
591 nbs++;
592 break;
593 default:
594 *q++ = *p;
595 nbs = 0;
596 break;
599 while (nbs--)
600 *q++ = '\\';
602 *q = '\0';
604 return os;
607 struct textargs {
608 const char *label;
609 int value;
612 #define OPT_PREFIX 0
613 #define OPT_POSTFIX 1
614 struct textargs textopts[] = {
615 {"prefix", OPT_PREFIX},
616 {"postfix", OPT_POSTFIX},
617 {NULL, 0}
620 static bool stopoptions = false;
621 static bool process_arg(char *p, char *q)
623 char *param;
624 int i;
625 bool advance = false;
626 bool do_warn;
628 if (!p || !p[0])
629 return false;
631 if (p[0] == '-' && !stopoptions) {
632 if (strchr("oOfpPdDiIlFXuUZwW", p[1])) {
633 /* These parameters take values */
634 if (!(param = get_param(p, q, &advance)))
635 return advance;
638 switch (p[1]) {
639 case 's':
640 error_file = stdout;
641 break;
643 case 'o': /* output file */
644 copy_filename(outname, param);
645 break;
647 case 'f': /* output format */
648 ofmt = ofmt_find(param);
649 if (!ofmt) {
650 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
651 "unrecognised output format `%s' - "
652 "use -hf for a list", param);
654 break;
656 case 'O': /* Optimization level */
658 int opt;
660 if (!*param) {
661 /* Naked -O == -Ox */
662 optimizing = INT_MAX >> 1; /* Almost unlimited */
663 } else {
664 while (*param) {
665 switch (*param) {
666 case '0': case '1': case '2': case '3': case '4':
667 case '5': case '6': case '7': case '8': case '9':
668 opt = strtoul(param, &param, 10);
670 /* -O0 -> optimizing == -1, 0.98 behaviour */
671 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
672 if (opt < 2)
673 optimizing = opt - 1;
674 else
675 optimizing = opt;
676 break;
678 case 'v':
679 case '+':
680 param++;
681 opt_verbose_info = true;
682 break;
684 case 'x':
685 param++;
686 optimizing = INT_MAX >> 1; /* Almost unlimited */
687 break;
689 default:
690 nasm_error(ERR_FATAL,
691 "unknown optimization option -O%c\n",
692 *param);
693 break;
697 break;
700 case 'p': /* pre-include */
701 case 'P':
702 pp_pre_include(param);
703 break;
705 case 'd': /* pre-define */
706 case 'D':
707 pp_pre_define(param);
708 break;
710 case 'u': /* un-define */
711 case 'U':
712 pp_pre_undefine(param);
713 break;
715 case 'i': /* include search path */
716 case 'I':
717 pp_include_path(param);
718 break;
720 case 'l': /* listing file */
721 copy_filename(listname, param);
722 break;
724 case 'Z': /* error messages file */
725 copy_filename(errname, param);
726 break;
728 case 'F': /* specify debug format */
729 ofmt->current_dfmt = dfmt_find(ofmt, param);
730 if (!ofmt->current_dfmt) {
731 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
732 "unrecognized debug format `%s' for"
733 " output format `%s'",
734 param, ofmt->shortname);
736 using_debug_info = true;
737 break;
739 case 'X': /* specify error reporting format */
740 if (nasm_stricmp("vc", param) == 0)
741 nasm_set_verror(nasm_verror_vc);
742 else if (nasm_stricmp("gnu", param) == 0)
743 nasm_set_verror(nasm_verror_gnu);
744 else
745 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
746 "unrecognized error reporting format `%s'",
747 param);
748 break;
750 case 'g':
751 using_debug_info = true;
752 break;
754 case 'h':
755 printf
756 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
757 "[-l listfile]\n"
758 " [options...] [--] filename\n"
759 " or nasm -v for version info\n\n"
760 " -t assemble in SciTech TASM compatible mode\n"
761 " -g generate debug information in selected format\n");
762 printf
763 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
764 " -a don't preprocess (assemble only)\n"
765 " -M generate Makefile dependencies on stdout\n"
766 " -MG d:o, missing files assumed generated\n"
767 " -MF <file> set Makefile dependency file\n"
768 " -MD <file> assemble and generate dependencies\n"
769 " -MT <file> dependency target name\n"
770 " -MQ <file> dependency target name (quoted)\n"
771 " -MP emit phony target\n\n"
772 " -Z<file> redirect error messages to file\n"
773 " -s redirect error messages to stdout\n\n"
774 " -F format select a debugging format\n\n"
775 " -I<path> adds a pathname to the include file path\n");
776 printf
777 (" -O<digit> optimize branch offsets\n"
778 " -O0: No optimization (default)\n"
779 " -O1: Minimal optimization\n"
780 " -Ox: Multipass optimization (recommended)\n\n"
781 " -P<file> pre-includes a file\n"
782 " -D<macro>[=<value>] pre-defines a macro\n"
783 " -U<macro> undefines a macro\n"
784 " -X<format> specifies error reporting format (gnu or vc)\n"
785 " -w+foo enables warning foo (equiv. -Wfoo)\n"
786 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
787 "--prefix,--postfix\n"
788 " this options prepend or append the given argument to all\n"
789 " extern and global variables\n\n"
790 "Warnings:\n");
791 for (i = 0; i <= ERR_WARN_MAX; i++)
792 printf(" %-23s %s (default %s)\n",
793 warnings[i].name, warnings[i].help,
794 warnings[i].enabled ? "on" : "off");
795 printf
796 ("\nresponse files should contain command line parameters"
797 ", one per line.\n");
798 if (p[2] == 'f') {
799 printf("\nvalid output formats for -f are"
800 " (`*' denotes default):\n");
801 ofmt_list(ofmt, stdout);
802 } else {
803 printf("\nFor a list of valid output formats, use -hf.\n");
804 printf("For a list of debug formats, use -f <form> -y.\n");
806 exit(0); /* never need usage message here */
807 break;
809 case 'y':
810 printf("\nvalid debug formats for '%s' output format are"
811 " ('*' denotes default):\n", ofmt->shortname);
812 dfmt_list(ofmt, stdout);
813 exit(0);
814 break;
816 case 't':
817 tasm_compatible_mode = true;
818 break;
820 case 'v':
821 printf("NASM version %s compiled on %s%s\n",
822 nasm_version, nasm_date, nasm_compile_options);
823 exit(0); /* never need usage message here */
824 break;
826 case 'e': /* preprocess only */
827 case 'E':
828 operating_mode = op_preprocess;
829 break;
831 case 'a': /* assemble only - don't preprocess */
832 preproc = &no_pp;
833 break;
835 case 'W':
836 if (param[0] == 'n' && param[1] == 'o' && param[2] == '-') {
837 do_warn = false;
838 param += 3;
839 } else {
840 do_warn = true;
842 goto set_warning;
844 case 'w':
845 if (param[0] != '+' && param[0] != '-') {
846 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
847 "invalid option to `-w'");
848 break;
850 do_warn = (param[0] == '+');
851 param++;
852 goto set_warning;
853 set_warning:
854 for (i = 0; i <= ERR_WARN_MAX; i++)
855 if (!nasm_stricmp(param, warnings[i].name))
856 break;
857 if (i <= ERR_WARN_MAX)
858 warning_on_global[i] = do_warn;
859 else if (!nasm_stricmp(param, "all"))
860 for (i = 1; i <= ERR_WARN_MAX; i++)
861 warning_on_global[i] = do_warn;
862 else if (!nasm_stricmp(param, "none"))
863 for (i = 1; i <= ERR_WARN_MAX; i++)
864 warning_on_global[i] = !do_warn;
865 else
866 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
867 "invalid warning `%s'", param);
868 break;
870 case 'M':
871 switch (p[2]) {
872 case 0:
873 operating_mode = op_depend;
874 break;
875 case 'G':
876 operating_mode = op_depend;
877 depend_missing_ok = true;
878 break;
879 case 'P':
880 depend_emit_phony = true;
881 break;
882 case 'D':
883 depend_file = q;
884 advance = true;
885 break;
886 case 'T':
887 depend_target = q;
888 advance = true;
889 break;
890 case 'Q':
891 depend_target = quote_for_make(q);
892 advance = true;
893 break;
894 default:
895 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
896 "unknown dependency option `-M%c'", p[2]);
897 break;
899 if (advance && (!q || !q[0])) {
900 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
901 "option `-M%c' requires a parameter", p[2]);
902 break;
904 break;
906 case '-':
908 int s;
910 if (p[2] == 0) { /* -- => stop processing options */
911 stopoptions = 1;
912 break;
914 for (s = 0; textopts[s].label; s++) {
915 if (!nasm_stricmp(p + 2, textopts[s].label)) {
916 break;
920 switch (s) {
922 case OPT_PREFIX:
923 case OPT_POSTFIX:
925 if (!q) {
926 nasm_error(ERR_NONFATAL | ERR_NOFILE |
927 ERR_USAGE,
928 "option `--%s' requires an argument",
929 p + 2);
930 break;
931 } else {
932 advance = 1, param = q;
935 if (s == OPT_PREFIX) {
936 strncpy(lprefix, param, PREFIX_MAX - 1);
937 lprefix[PREFIX_MAX - 1] = 0;
938 break;
940 if (s == OPT_POSTFIX) {
941 strncpy(lpostfix, param, POSTFIX_MAX - 1);
942 lpostfix[POSTFIX_MAX - 1] = 0;
943 break;
945 break;
947 default:
949 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
950 "unrecognised option `--%s'", p + 2);
951 break;
954 break;
957 default:
958 if (!ofmt->setinfo(GI_SWITCH, &p))
959 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
960 "unrecognised option `-%c'", p[1]);
961 break;
963 } else {
964 if (*inname) {
965 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
966 "more than one input file specified");
967 } else {
968 copy_filename(inname, p);
972 return advance;
975 #define ARG_BUF_DELTA 128
977 static void process_respfile(FILE * rfile)
979 char *buffer, *p, *q, *prevarg;
980 int bufsize, prevargsize;
982 bufsize = prevargsize = ARG_BUF_DELTA;
983 buffer = nasm_malloc(ARG_BUF_DELTA);
984 prevarg = nasm_malloc(ARG_BUF_DELTA);
985 prevarg[0] = '\0';
987 while (1) { /* Loop to handle all lines in file */
988 p = buffer;
989 while (1) { /* Loop to handle long lines */
990 q = fgets(p, bufsize - (p - buffer), rfile);
991 if (!q)
992 break;
993 p += strlen(p);
994 if (p > buffer && p[-1] == '\n')
995 break;
996 if (p - buffer > bufsize - 10) {
997 int offset;
998 offset = p - buffer;
999 bufsize += ARG_BUF_DELTA;
1000 buffer = nasm_realloc(buffer, bufsize);
1001 p = buffer + offset;
1005 if (!q && p == buffer) {
1006 if (prevarg[0])
1007 process_arg(prevarg, NULL);
1008 nasm_free(buffer);
1009 nasm_free(prevarg);
1010 return;
1014 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1015 * them are present at the end of the line.
1017 *(p = &buffer[strcspn(buffer, "\r\n\032")]) = '\0';
1019 while (p > buffer && nasm_isspace(p[-1]))
1020 *--p = '\0';
1022 p = nasm_skip_spaces(buffer);
1024 if (process_arg(prevarg, p))
1025 *p = '\0';
1027 if ((int) strlen(p) > prevargsize - 10) {
1028 prevargsize += ARG_BUF_DELTA;
1029 prevarg = nasm_realloc(prevarg, prevargsize);
1031 strncpy(prevarg, p, prevargsize);
1035 /* Function to process args from a string of args, rather than the
1036 * argv array. Used by the environment variable and response file
1037 * processing.
1039 static void process_args(char *args)
1041 char *p, *q, *arg, *prevarg;
1042 char separator = ' ';
1044 p = args;
1045 if (*p && *p != '-')
1046 separator = *p++;
1047 arg = NULL;
1048 while (*p) {
1049 q = p;
1050 while (*p && *p != separator)
1051 p++;
1052 while (*p == separator)
1053 *p++ = '\0';
1054 prevarg = arg;
1055 arg = q;
1056 if (process_arg(prevarg, arg))
1057 arg = NULL;
1059 if (arg)
1060 process_arg(arg, NULL);
1063 static void process_response_file(const char *file)
1065 char str[2048];
1066 FILE *f = fopen(file, "r");
1067 if (!f) {
1068 perror(file);
1069 exit(-1);
1071 while (fgets(str, sizeof str, f)) {
1072 process_args(str);
1074 fclose(f);
1077 static void parse_cmdline(int argc, char **argv)
1079 FILE *rfile;
1080 char *envreal, *envcopy = NULL, *p, *arg;
1081 int i;
1083 *inname = *outname = *listname = *errname = '\0';
1084 for (i = 0; i <= ERR_WARN_MAX; i++)
1085 warning_on_global[i] = warnings[i].enabled;
1088 * First, process the NASMENV environment variable.
1090 envreal = getenv("NASMENV");
1091 arg = NULL;
1092 if (envreal) {
1093 envcopy = nasm_strdup(envreal);
1094 process_args(envcopy);
1095 nasm_free(envcopy);
1099 * Now process the actual command line.
1101 while (--argc) {
1102 bool advance;
1103 argv++;
1104 if (argv[0][0] == '@') {
1105 /* We have a response file, so process this as a set of
1106 * arguments like the environment variable. This allows us
1107 * to have multiple arguments on a single line, which is
1108 * different to the -@resp file processing below for regular
1109 * NASM.
1111 process_response_file(argv[0]+1);
1112 argc--;
1113 argv++;
1115 if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
1116 p = get_param(argv[0], argc > 1 ? argv[1] : NULL, &advance);
1117 if (p) {
1118 rfile = fopen(p, "r");
1119 if (rfile) {
1120 process_respfile(rfile);
1121 fclose(rfile);
1122 } else
1123 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1124 "unable to open response file `%s'", p);
1126 } else
1127 advance = process_arg(argv[0], argc > 1 ? argv[1] : NULL);
1128 argv += advance, argc -= advance;
1131 /* Look for basic command line typos. This definitely doesn't
1132 catch all errors, but it might help cases of fumbled fingers. */
1133 if (!*inname)
1134 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1135 "no input file specified");
1136 else if (!strcmp(inname, errname) ||
1137 !strcmp(inname, outname) ||
1138 !strcmp(inname, listname) ||
1139 (depend_file && !strcmp(inname, depend_file)))
1140 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1141 "file `%s' is both input and output file",
1142 inname);
1144 if (*errname) {
1145 error_file = fopen(errname, "w");
1146 if (!error_file) {
1147 error_file = stderr; /* Revert to default! */
1148 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1149 "cannot open file `%s' for error messages",
1150 errname);
1155 static enum directives getkw(char **directive, char **value);
1157 static void assemble_file(char *fname, StrList **depend_ptr)
1159 char *directive, *value, *p, *q, *special, *line;
1160 insn output_ins;
1161 int i, validid;
1162 bool rn_error;
1163 int32_t seg;
1164 int64_t offs;
1165 struct tokenval tokval;
1166 expr *e;
1167 int pass_max;
1169 if (cmd_sb == 32 && cmd_cpu < IF_386)
1170 nasm_error(ERR_FATAL, "command line: "
1171 "32-bit segment size requires a higher cpu");
1173 pass_max = prev_offset_changed = (INT_MAX >> 1) + 2; /* Almost unlimited */
1174 for (passn = 1; pass0 <= 2; passn++) {
1175 int pass1, pass2;
1176 ldfunc def_label;
1178 pass1 = pass0 == 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1179 pass2 = passn > 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1180 /* pass0 0, 0, 0, ..., 1, 2 */
1182 def_label = passn > 1 ? redefine_label : define_label;
1184 globalbits = sb = cmd_sb; /* set 'bits' to command line default */
1185 cpu = cmd_cpu;
1186 if (pass0 == 2) {
1187 if (*listname)
1188 nasmlist.init(listname, nasm_error);
1190 in_abs_seg = false;
1191 global_offset_changed = 0; /* set by redefine_label */
1192 location.segment = ofmt->section(NULL, pass2, &sb);
1193 globalbits = sb;
1194 if (passn > 1) {
1195 saa_rewind(forwrefs);
1196 forwref = saa_rstruct(forwrefs);
1197 raa_free(offsets);
1198 offsets = raa_init();
1200 preproc->reset(fname, pass1, &nasmlist,
1201 pass1 == 2 ? depend_ptr : NULL);
1202 memcpy(warning_on, warning_on_global, (ERR_WARN_MAX+1) * sizeof(bool));
1204 globallineno = 0;
1205 if (passn == 1)
1206 location.known = true;
1207 location.offset = offs = GET_CURR_OFFS;
1209 while ((line = preproc->getline())) {
1210 enum directives d;
1211 globallineno++;
1214 * Here we parse our directives; this is not handled by the
1215 * 'real' parser. This really should be a separate function.
1217 directive = line;
1218 d = getkw(&directive, &value);
1219 if (d) {
1220 int err = 0;
1222 switch (d) {
1223 case D_SEGMENT: /* [SEGMENT n] */
1224 case D_SECTION:
1225 seg = ofmt->section(value, pass2, &sb);
1226 if (seg == NO_SEG) {
1227 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1228 "segment name `%s' not recognized",
1229 value);
1230 } else {
1231 in_abs_seg = false;
1232 location.segment = seg;
1234 break;
1235 case D_EXTERN: /* [EXTERN label:special] */
1236 if (*value == '$')
1237 value++; /* skip initial $ if present */
1238 if (pass0 == 2) {
1239 q = value;
1240 while (*q && *q != ':')
1241 q++;
1242 if (*q == ':') {
1243 *q++ = '\0';
1244 ofmt->symdef(value, 0L, 0L, 3, q);
1246 } else if (passn == 1) {
1247 q = value;
1248 validid = true;
1249 if (!isidstart(*q))
1250 validid = false;
1251 while (*q && *q != ':') {
1252 if (!isidchar(*q))
1253 validid = false;
1254 q++;
1256 if (!validid) {
1257 nasm_error(ERR_NONFATAL,
1258 "identifier expected after EXTERN");
1259 break;
1261 if (*q == ':') {
1262 *q++ = '\0';
1263 special = q;
1264 } else
1265 special = NULL;
1266 if (!is_extern(value)) { /* allow re-EXTERN to be ignored */
1267 int temp = pass0;
1268 pass0 = 1; /* fake pass 1 in labels.c */
1269 declare_as_global(value, special);
1270 define_label(value, seg_alloc(), 0L, NULL,
1271 false, true);
1272 pass0 = temp;
1274 } /* else pass0 == 1 */
1275 break;
1276 case D_BITS: /* [BITS bits] */
1277 globalbits = sb = get_bits(value);
1278 break;
1279 case D_GLOBAL: /* [GLOBAL symbol:special] */
1280 if (*value == '$')
1281 value++; /* skip initial $ if present */
1282 if (pass0 == 2) { /* pass 2 */
1283 q = value;
1284 while (*q && *q != ':')
1285 q++;
1286 if (*q == ':') {
1287 *q++ = '\0';
1288 ofmt->symdef(value, 0L, 0L, 3, q);
1290 } else if (pass2 == 1) { /* pass == 1 */
1291 q = value;
1292 validid = true;
1293 if (!isidstart(*q))
1294 validid = false;
1295 while (*q && *q != ':') {
1296 if (!isidchar(*q))
1297 validid = false;
1298 q++;
1300 if (!validid) {
1301 nasm_error(ERR_NONFATAL,
1302 "identifier expected after GLOBAL");
1303 break;
1305 if (*q == ':') {
1306 *q++ = '\0';
1307 special = q;
1308 } else
1309 special = NULL;
1310 declare_as_global(value, special);
1311 } /* pass == 1 */
1312 break;
1313 case D_COMMON: /* [COMMON symbol size:special] */
1315 int64_t size;
1317 if (*value == '$')
1318 value++; /* skip initial $ if present */
1319 p = value;
1320 validid = true;
1321 if (!isidstart(*p))
1322 validid = false;
1323 while (*p && !nasm_isspace(*p)) {
1324 if (!isidchar(*p))
1325 validid = false;
1326 p++;
1328 if (!validid) {
1329 nasm_error(ERR_NONFATAL,
1330 "identifier expected after COMMON");
1331 break;
1333 if (*p) {
1334 p = nasm_zap_spaces_fwd(p);
1335 q = p;
1336 while (*q && *q != ':')
1337 q++;
1338 if (*q == ':') {
1339 *q++ = '\0';
1340 special = q;
1341 } else {
1342 special = NULL;
1344 size = readnum(p, &rn_error);
1345 if (rn_error) {
1346 nasm_error(ERR_NONFATAL,
1347 "invalid size specified"
1348 " in COMMON declaration");
1349 break;
1351 } else {
1352 nasm_error(ERR_NONFATAL,
1353 "no size specified in"
1354 " COMMON declaration");
1355 break;
1358 if (pass0 < 2) {
1359 define_common(value, seg_alloc(), size, special);
1360 } else if (pass0 == 2) {
1361 if (special)
1362 ofmt->symdef(value, 0L, 0L, 3, special);
1364 break;
1366 case D_ABSOLUTE: /* [ABSOLUTE address] */
1367 stdscan_reset();
1368 stdscan_set(value);
1369 tokval.t_type = TOKEN_INVALID;
1370 e = evaluate(stdscan, NULL, &tokval, NULL, pass2,
1371 nasm_error, NULL);
1372 if (e) {
1373 if (!is_reloc(e))
1374 nasm_error(pass0 ==
1375 1 ? ERR_NONFATAL : ERR_PANIC,
1376 "cannot use non-relocatable expression as "
1377 "ABSOLUTE address");
1378 else {
1379 abs_seg = reloc_seg(e);
1380 abs_offset = reloc_value(e);
1382 } else if (passn == 1)
1383 abs_offset = 0x100; /* don't go near zero in case of / */
1384 else
1385 nasm_error(ERR_PANIC, "invalid ABSOLUTE address "
1386 "in pass two");
1387 in_abs_seg = true;
1388 location.segment = NO_SEG;
1389 break;
1390 case D_DEBUG: /* [DEBUG] */
1392 char debugid[128];
1393 bool badid, overlong;
1395 p = value;
1396 q = debugid;
1397 badid = overlong = false;
1398 if (!isidstart(*p)) {
1399 badid = true;
1400 } else {
1401 while (*p && !nasm_isspace(*p)) {
1402 if (q >= debugid + sizeof debugid - 1) {
1403 overlong = true;
1404 break;
1406 if (!isidchar(*p))
1407 badid = true;
1408 *q++ = *p++;
1410 *q = 0;
1412 if (badid) {
1413 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1414 "identifier expected after DEBUG");
1415 break;
1417 if (overlong) {
1418 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1419 "DEBUG identifier too long");
1420 break;
1422 p = nasm_skip_spaces(p);
1423 if (pass0 == 2)
1424 dfmt->debug_directive(debugid, p);
1425 break;
1427 case D_WARNING: /* [WARNING {+|-|*}warn-name] */
1428 value = nasm_skip_spaces(value);
1429 switch(*value) {
1430 case '-': validid = 0; value++; break;
1431 case '+': validid = 1; value++; break;
1432 case '*': validid = 2; value++; break;
1433 default: validid = 1; break;
1436 for (i = 1; i <= ERR_WARN_MAX; i++)
1437 if (!nasm_stricmp(value, warnings[i].name))
1438 break;
1439 if (i <= ERR_WARN_MAX) {
1440 switch(validid) {
1441 case 0:
1442 warning_on[i] = false;
1443 break;
1444 case 1:
1445 warning_on[i] = true;
1446 break;
1447 case 2:
1448 warning_on[i] = warning_on_global[i];
1449 break;
1452 else
1453 nasm_error(ERR_NONFATAL,
1454 "invalid warning id in WARNING directive");
1455 break;
1456 case D_CPU: /* [CPU] */
1457 cpu = get_cpu(value);
1458 break;
1459 case D_LIST: /* [LIST {+|-}] */
1460 value = nasm_skip_spaces(value);
1461 if (*value == '+') {
1462 user_nolist = 0;
1463 } else {
1464 if (*value == '-') {
1465 user_nolist = 1;
1466 } else {
1467 err = 1;
1470 break;
1471 case D_DEFAULT: /* [DEFAULT] */
1472 stdscan_reset();
1473 stdscan_set(value);
1474 tokval.t_type = TOKEN_INVALID;
1475 if (stdscan(NULL, &tokval) == TOKEN_SPECIAL) {
1476 switch ((int)tokval.t_integer) {
1477 case S_REL:
1478 globalrel = 1;
1479 break;
1480 case S_ABS:
1481 globalrel = 0;
1482 break;
1483 default:
1484 err = 1;
1485 break;
1487 } else {
1488 err = 1;
1490 break;
1491 case D_FLOAT:
1492 if (float_option(value)) {
1493 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1494 "unknown 'float' directive: %s",
1495 value);
1497 break;
1498 default:
1499 if (!d || !ofmt->directive(d, value, pass2))
1500 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1501 "unrecognised directive [%s]",
1502 directive);
1503 break;
1505 if (err) {
1506 nasm_error(ERR_NONFATAL,
1507 "invalid parameter to [%s] directive",
1508 directive);
1510 } else { /* it isn't a directive */
1511 parse_line(pass1, line, &output_ins, def_label);
1513 if (optimizing > 0) {
1514 if (forwref != NULL && globallineno == forwref->lineno) {
1515 output_ins.forw_ref = true;
1516 do {
1517 output_ins.oprs[forwref->operand].opflags |= OPFLAG_FORWARD;
1518 forwref = saa_rstruct(forwrefs);
1519 } while (forwref != NULL
1520 && forwref->lineno == globallineno);
1521 } else
1522 output_ins.forw_ref = false;
1524 if (output_ins.forw_ref) {
1525 if (passn == 1) {
1526 for (i = 0; i < output_ins.operands; i++) {
1527 if (output_ins.oprs[i].opflags & OPFLAG_FORWARD) {
1528 struct forwrefinfo *fwinf =
1529 (struct forwrefinfo *)
1530 saa_wstruct(forwrefs);
1531 fwinf->lineno = globallineno;
1532 fwinf->operand = i;
1539 /* forw_ref */
1540 if (output_ins.opcode == I_EQU) {
1541 if (pass1 == 1) {
1543 * Special `..' EQUs get processed in pass two,
1544 * except `..@' macro-processor EQUs which are done
1545 * in the normal place.
1547 if (!output_ins.label)
1548 nasm_error(ERR_NONFATAL,
1549 "EQU not preceded by label");
1551 else if (output_ins.label[0] != '.' ||
1552 output_ins.label[1] != '.' ||
1553 output_ins.label[2] == '@') {
1554 if (output_ins.operands == 1 &&
1555 (output_ins.oprs[0].type & IMMEDIATE) &&
1556 output_ins.oprs[0].wrt == NO_SEG) {
1557 bool isext = !!(output_ins.oprs[0].opflags
1558 & OPFLAG_EXTERN);
1559 def_label(output_ins.label,
1560 output_ins.oprs[0].segment,
1561 output_ins.oprs[0].offset, NULL,
1562 false, isext);
1563 } else if (output_ins.operands == 2
1564 && (output_ins.oprs[0].type & IMMEDIATE)
1565 && (output_ins.oprs[0].type & COLON)
1566 && output_ins.oprs[0].segment == NO_SEG
1567 && output_ins.oprs[0].wrt == NO_SEG
1568 && (output_ins.oprs[1].type & IMMEDIATE)
1569 && output_ins.oprs[1].segment == NO_SEG
1570 && output_ins.oprs[1].wrt == NO_SEG) {
1571 def_label(output_ins.label,
1572 output_ins.oprs[0].offset | SEG_ABS,
1573 output_ins.oprs[1].offset,
1574 NULL, false, false);
1575 } else
1576 nasm_error(ERR_NONFATAL,
1577 "bad syntax for EQU");
1579 } else {
1581 * Special `..' EQUs get processed here, except
1582 * `..@' macro processor EQUs which are done above.
1584 if (output_ins.label[0] == '.' &&
1585 output_ins.label[1] == '.' &&
1586 output_ins.label[2] != '@') {
1587 if (output_ins.operands == 1 &&
1588 (output_ins.oprs[0].type & IMMEDIATE)) {
1589 define_label(output_ins.label,
1590 output_ins.oprs[0].segment,
1591 output_ins.oprs[0].offset,
1592 NULL, false, false);
1593 } else if (output_ins.operands == 2
1594 && (output_ins.oprs[0].type & IMMEDIATE)
1595 && (output_ins.oprs[0].type & COLON)
1596 && output_ins.oprs[0].segment == NO_SEG
1597 && (output_ins.oprs[1].type & IMMEDIATE)
1598 && output_ins.oprs[1].segment == NO_SEG) {
1599 define_label(output_ins.label,
1600 output_ins.oprs[0].offset | SEG_ABS,
1601 output_ins.oprs[1].offset,
1602 NULL, false, false);
1603 } else
1604 nasm_error(ERR_NONFATAL,
1605 "bad syntax for EQU");
1608 } else { /* instruction isn't an EQU */
1610 if (pass1 == 1) {
1612 int64_t l = insn_size(location.segment, offs, sb, cpu,
1613 &output_ins, nasm_error);
1615 /* if (using_debug_info) && output_ins.opcode != -1) */
1616 if (using_debug_info)
1617 { /* fbk 03/25/01 */
1618 /* this is done here so we can do debug type info */
1619 int32_t typeinfo =
1620 TYS_ELEMENTS(output_ins.operands);
1621 switch (output_ins.opcode) {
1622 case I_RESB:
1623 typeinfo =
1624 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;
1625 break;
1626 case I_RESW:
1627 typeinfo =
1628 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;
1629 break;
1630 case I_RESD:
1631 typeinfo =
1632 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;
1633 break;
1634 case I_RESQ:
1635 typeinfo =
1636 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;
1637 break;
1638 case I_REST:
1639 typeinfo =
1640 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;
1641 break;
1642 case I_RESO:
1643 typeinfo =
1644 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_OWORD;
1645 break;
1646 case I_RESY:
1647 typeinfo =
1648 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_YWORD;
1649 break;
1650 case I_DB:
1651 typeinfo |= TY_BYTE;
1652 break;
1653 case I_DW:
1654 typeinfo |= TY_WORD;
1655 break;
1656 case I_DD:
1657 if (output_ins.eops_float)
1658 typeinfo |= TY_FLOAT;
1659 else
1660 typeinfo |= TY_DWORD;
1661 break;
1662 case I_DQ:
1663 typeinfo |= TY_QWORD;
1664 break;
1665 case I_DT:
1666 typeinfo |= TY_TBYTE;
1667 break;
1668 case I_DO:
1669 typeinfo |= TY_OWORD;
1670 break;
1671 case I_DY:
1672 typeinfo |= TY_YWORD;
1673 break;
1674 default:
1675 typeinfo = TY_LABEL;
1679 dfmt->debug_typevalue(typeinfo);
1681 if (l != -1) {
1682 offs += l;
1683 SET_CURR_OFFS(offs);
1686 * else l == -1 => invalid instruction, which will be
1687 * flagged as an error on pass 2
1690 } else {
1691 offs += assemble(location.segment, offs, sb, cpu,
1692 &output_ins, ofmt, nasm_error,
1693 &nasmlist);
1694 SET_CURR_OFFS(offs);
1697 } /* not an EQU */
1698 cleanup_insn(&output_ins);
1700 nasm_free(line);
1701 location.offset = offs = GET_CURR_OFFS;
1702 } /* end while (line = preproc->getline... */
1704 if (pass0 == 2 && global_offset_changed && !terminate_after_phase)
1705 nasm_error(ERR_NONFATAL,
1706 "phase error detected at end of assembly.");
1708 if (pass1 == 1)
1709 preproc->cleanup(1);
1711 if ((passn > 1 && !global_offset_changed) || pass0 == 2) {
1712 pass0++;
1713 } else if (global_offset_changed &&
1714 global_offset_changed < prev_offset_changed) {
1715 prev_offset_changed = global_offset_changed;
1716 stall_count = 0;
1717 } else {
1718 stall_count++;
1721 if (terminate_after_phase)
1722 break;
1724 if ((stall_count > 997) || (passn >= pass_max)) {
1725 /* We get here if the labels don't converge
1726 * Example: FOO equ FOO + 1
1728 nasm_error(ERR_NONFATAL,
1729 "Can't find valid values for all labels "
1730 "after %d passes, giving up.", passn);
1731 nasm_error(ERR_NONFATAL,
1732 "Possible causes: recursive EQUs, macro abuse.");
1733 break;
1737 preproc->cleanup(0);
1738 nasmlist.cleanup();
1739 if (!terminate_after_phase && opt_verbose_info) {
1740 /* -On and -Ov switches */
1741 fprintf(stdout, "info: assembly required 1+%d+1 passes\n", passn-3);
1745 static enum directives getkw(char **directive, char **value)
1747 char *p, *q, *buf;
1749 buf = nasm_skip_spaces(*directive);
1751 /* it should be enclosed in [ ] */
1752 if (*buf != '[')
1753 return D_none;
1754 q = strchr(buf, ']');
1755 if (!q)
1756 return D_none;
1758 /* stip off the comments */
1759 p = strchr(buf, ';');
1760 if (p) {
1761 if (p < q) /* ouch! somwhere inside */
1762 return D_none;
1763 *p = '\0';
1766 /* no brace, no trailing spaces */
1767 *q = '\0';
1768 nasm_zap_spaces_rev(--q);
1770 /* directive */
1771 p = nasm_skip_spaces(++buf);
1772 q = nasm_skip_word(p);
1773 if (!q)
1774 return D_none; /* sigh... no value there */
1775 *q = '\0';
1776 *directive = p;
1778 /* and value finally */
1779 p = nasm_skip_spaces(++q);
1780 *value = p;
1782 return find_directive(*directive);
1786 * gnu style error reporting
1787 * This function prints an error message to error_file in the
1788 * style used by GNU. An example would be:
1789 * file.asm:50: error: blah blah blah
1790 * where file.asm is the name of the file, 50 is the line number on
1791 * which the error occurs (or is detected) and "error:" is one of
1792 * the possible optional diagnostics -- it can be "error" or "warning"
1793 * or something else. Finally the line terminates with the actual
1794 * error message.
1796 * @param severity the severity of the warning or error
1797 * @param fmt the printf style format string
1799 static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
1801 char *currentfile = NULL;
1802 int32_t lineno = 0;
1804 if (is_suppressed_warning(severity))
1805 return;
1807 if (!(severity & ERR_NOFILE))
1808 src_get(&lineno, &currentfile);
1810 if (currentfile) {
1811 fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno);
1812 nasm_free(currentfile);
1813 } else {
1814 fputs("nasm: ", error_file);
1817 nasm_verror_common(severity, fmt, ap);
1821 * MS style error reporting
1822 * This function prints an error message to error_file in the
1823 * style used by Visual C and some other Microsoft tools. An example
1824 * would be:
1825 * file.asm(50) : error: blah blah blah
1826 * where file.asm is the name of the file, 50 is the line number on
1827 * which the error occurs (or is detected) and "error:" is one of
1828 * the possible optional diagnostics -- it can be "error" or "warning"
1829 * or something else. Finally the line terminates with the actual
1830 * error message.
1832 * @param severity the severity of the warning or error
1833 * @param fmt the printf style format string
1835 static void nasm_verror_vc(int severity, const char *fmt, va_list ap)
1837 char *currentfile = NULL;
1838 int32_t lineno = 0;
1840 if (is_suppressed_warning(severity))
1841 return;
1843 if (!(severity & ERR_NOFILE))
1844 src_get(&lineno, &currentfile);
1846 if (currentfile) {
1847 fprintf(error_file, "%s(%"PRId32") : ", currentfile, lineno);
1848 nasm_free(currentfile);
1849 } else {
1850 fputs("nasm: ", error_file);
1853 nasm_verror_common(severity, fmt, ap);
1857 * check for supressed warning
1858 * checks for suppressed warning or pass one only warning and we're
1859 * not in pass 1
1861 * @param severity the severity of the warning or error
1862 * @return true if we should abort error/warning printing
1864 static bool is_suppressed_warning(int severity)
1867 * See if it's a suppressed warning.
1869 return (severity & ERR_MASK) == ERR_WARNING &&
1870 (((severity & ERR_WARN_MASK) != 0 &&
1871 !warning_on[(severity & ERR_WARN_MASK) >> ERR_WARN_SHR]) ||
1872 /* See if it's a pass-one only warning and we're not in pass one. */
1873 ((severity & ERR_PASS1) && pass0 != 1) ||
1874 ((severity & ERR_PASS2) && pass0 != 2));
1878 * common error reporting
1879 * This is the common back end of the error reporting schemes currently
1880 * implemented. It prints the nature of the warning and then the
1881 * specific error message to error_file and may or may not return. It
1882 * doesn't return if the error severity is a "panic" or "debug" type.
1884 * @param severity the severity of the warning or error
1885 * @param fmt the printf style format string
1887 static void nasm_verror_common(int severity, const char *fmt, va_list args)
1889 char msg[1024];
1890 const char *pfx;
1892 switch (severity & (ERR_MASK|ERR_NO_SEVERITY)) {
1893 case ERR_WARNING:
1894 pfx = "warning: ";
1895 break;
1896 case ERR_NONFATAL:
1897 pfx = "error: ";
1898 break;
1899 case ERR_FATAL:
1900 pfx = "fatal: ";
1901 break;
1902 case ERR_PANIC:
1903 pfx = "panic: ";
1904 break;
1905 case ERR_DEBUG:
1906 pfx = "debug: ";
1907 break;
1908 default:
1909 pfx = "";
1910 break;
1913 vsnprintf(msg, sizeof msg, fmt, args);
1915 fprintf(error_file, "%s%s\n", pfx, msg);
1917 if (*listname)
1918 nasmlist.error(severity, pfx, msg);
1920 if (severity & ERR_USAGE)
1921 want_usage = true;
1923 switch (severity & ERR_MASK) {
1924 case ERR_DEBUG:
1925 /* no further action, by definition */
1926 break;
1927 case ERR_WARNING:
1928 if (warning_on[0]) /* Treat warnings as errors */
1929 terminate_after_phase = true;
1930 break;
1931 case ERR_NONFATAL:
1932 terminate_after_phase = true;
1933 break;
1934 case ERR_FATAL:
1935 if (ofile) {
1936 fclose(ofile);
1937 remove(outname);
1938 ofile = NULL;
1940 if (want_usage)
1941 usage();
1942 exit(1); /* instantly die */
1943 break; /* placate silly compilers */
1944 case ERR_PANIC:
1945 fflush(NULL);
1946 /* abort(); *//* halt, catch fire, and dump core */
1947 exit(3);
1948 break;
1952 static void usage(void)
1954 fputs("type `nasm -h' for help\n", error_file);
1957 #define BUF_DELTA 512
1959 static FILE *no_pp_fp;
1960 static ListGen *no_pp_list;
1961 static int32_t no_pp_lineinc;
1963 static void no_pp_reset(char *file, int pass, ListGen * listgen,
1964 StrList **deplist)
1966 src_set_fname(nasm_strdup(file));
1967 src_set_linnum(0);
1968 no_pp_lineinc = 1;
1969 no_pp_fp = fopen(file, "r");
1970 if (!no_pp_fp)
1971 nasm_error(ERR_FATAL | ERR_NOFILE,
1972 "unable to open input file `%s'", file);
1973 no_pp_list = listgen;
1974 (void)pass; /* placate compilers */
1976 if (deplist) {
1977 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
1978 sl->next = NULL;
1979 strcpy(sl->str, file);
1980 *deplist = sl;
1984 static char *no_pp_getline(void)
1986 char *buffer, *p, *q;
1987 int bufsize;
1989 bufsize = BUF_DELTA;
1990 buffer = nasm_malloc(BUF_DELTA);
1991 src_set_linnum(src_get_linnum() + no_pp_lineinc);
1993 while (1) { /* Loop to handle %line */
1995 p = buffer;
1996 while (1) { /* Loop to handle long lines */
1997 q = fgets(p, bufsize - (p - buffer), no_pp_fp);
1998 if (!q)
1999 break;
2000 p += strlen(p);
2001 if (p > buffer && p[-1] == '\n')
2002 break;
2003 if (p - buffer > bufsize - 10) {
2004 int offset;
2005 offset = p - buffer;
2006 bufsize += BUF_DELTA;
2007 buffer = nasm_realloc(buffer, bufsize);
2008 p = buffer + offset;
2012 if (!q && p == buffer) {
2013 nasm_free(buffer);
2014 return NULL;
2018 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
2019 * them are present at the end of the line.
2021 buffer[strcspn(buffer, "\r\n\032")] = '\0';
2023 if (!nasm_strnicmp(buffer, "%line", 5)) {
2024 int32_t ln;
2025 int li;
2026 char *nm = nasm_malloc(strlen(buffer));
2027 if (sscanf(buffer + 5, "%"PRId32"+%d %s", &ln, &li, nm) == 3) {
2028 nasm_free(src_set_fname(nm));
2029 src_set_linnum(ln);
2030 no_pp_lineinc = li;
2031 continue;
2033 nasm_free(nm);
2035 break;
2038 no_pp_list->line(LIST_READ, buffer);
2040 return buffer;
2043 static void no_pp_cleanup(int pass)
2045 (void)pass; /* placate GCC */
2046 fclose(no_pp_fp);
2049 static uint32_t get_cpu(char *value)
2051 if (!strcmp(value, "8086"))
2052 return IF_8086;
2053 if (!strcmp(value, "186"))
2054 return IF_186;
2055 if (!strcmp(value, "286"))
2056 return IF_286;
2057 if (!strcmp(value, "386"))
2058 return IF_386;
2059 if (!strcmp(value, "486"))
2060 return IF_486;
2061 if (!strcmp(value, "586") || !nasm_stricmp(value, "pentium"))
2062 return IF_PENT;
2063 if (!strcmp(value, "686") ||
2064 !nasm_stricmp(value, "ppro") ||
2065 !nasm_stricmp(value, "pentiumpro") || !nasm_stricmp(value, "p2"))
2066 return IF_P6;
2067 if (!nasm_stricmp(value, "p3") || !nasm_stricmp(value, "katmai"))
2068 return IF_KATMAI;
2069 if (!nasm_stricmp(value, "p4") || /* is this right? -- jrc */
2070 !nasm_stricmp(value, "willamette"))
2071 return IF_WILLAMETTE;
2072 if (!nasm_stricmp(value, "prescott"))
2073 return IF_PRESCOTT;
2074 if (!nasm_stricmp(value, "x64") ||
2075 !nasm_stricmp(value, "x86-64"))
2076 return IF_X86_64;
2077 if (!nasm_stricmp(value, "ia64") ||
2078 !nasm_stricmp(value, "ia-64") ||
2079 !nasm_stricmp(value, "itanium") ||
2080 !nasm_stricmp(value, "itanic") || !nasm_stricmp(value, "merced"))
2081 return IF_IA64;
2083 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2084 "unknown 'cpu' type");
2086 return IF_PLEVEL; /* the maximum level */
2089 static int get_bits(char *value)
2091 int i;
2093 if ((i = atoi(value)) == 16)
2094 return i; /* set for a 16-bit segment */
2095 else if (i == 32) {
2096 if (cpu < IF_386) {
2097 nasm_error(ERR_NONFATAL,
2098 "cannot specify 32-bit segment on processor below a 386");
2099 i = 16;
2101 } else if (i == 64) {
2102 if (cpu < IF_X86_64) {
2103 nasm_error(ERR_NONFATAL,
2104 "cannot specify 64-bit segment on processor below an x86-64");
2105 i = 16;
2107 if (i != maxbits) {
2108 nasm_error(ERR_NONFATAL,
2109 "%s output format does not support 64-bit code",
2110 ofmt->shortname);
2111 i = 16;
2113 } else {
2114 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2115 "`%s' is not a valid segment size; must be 16, 32 or 64",
2116 value);
2117 i = 16;
2119 return i;