Drop tab/space mess from parse_cmdline
[nasm.git] / nasm.c
blob7d38d6070062bb2e845345d72b5e157fa1a242e2
1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2011 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"
65 * This is the maximum number of optimization passes to do. If we ever
66 * find a case where the optimizer doesn't naturally converge, we might
67 * have to drop this value so the assembler doesn't appear to just hang.
69 #define MAX_OPTIMIZE (INT_MAX >> 1)
71 struct forwrefinfo { /* info held on forward refs. */
72 int lineno;
73 int operand;
76 static int get_bits(char *value);
77 static uint32_t get_cpu(char *cpu_str);
78 static void parse_cmdline(int, char **);
79 static void assemble_file(char *, StrList **);
80 static void nasm_verror_gnu(int severity, const char *fmt, va_list args);
81 static void nasm_verror_vc(int severity, const char *fmt, va_list args);
82 static void nasm_verror_common(int severity, const char *fmt, va_list args);
83 static bool is_suppressed_warning(int severity);
84 static void usage(void);
86 static int using_debug_info, opt_verbose_info;
87 bool tasm_compatible_mode = false;
88 int pass0, passn;
89 int maxbits = 0;
90 int globalrel = 0;
92 static time_t official_compile_time;
94 static char inname[FILENAME_MAX];
95 static char outname[FILENAME_MAX];
96 static char listname[FILENAME_MAX];
97 static char errname[FILENAME_MAX];
98 static int globallineno; /* for forward-reference tracking */
99 /* static int pass = 0; */
100 struct ofmt *ofmt = &OF_DEFAULT;
101 struct ofmt_alias *ofmt_alias = NULL;
102 const struct dfmt *dfmt;
104 static FILE *error_file; /* Where to write error messages */
106 FILE *ofile = NULL;
107 int optimizing = MAX_OPTIMIZE; /* number of optimization passes to take */
108 static int sb, cmd_sb = 16; /* by default */
109 static uint32_t cmd_cpu = IF_PLEVEL; /* highest level by default */
110 static uint32_t cpu = IF_PLEVEL; /* passed to insn_size & assemble.c */
111 int64_t global_offset_changed; /* referenced in labels.c */
112 int64_t prev_offset_changed;
113 int32_t stall_count;
115 static struct location location;
116 int in_abs_seg; /* Flag we are in ABSOLUTE seg */
117 int32_t abs_seg; /* ABSOLUTE segment basis */
118 int32_t abs_offset; /* ABSOLUTE offset */
120 static struct RAA *offsets;
122 static struct SAA *forwrefs; /* keep track of forward references */
123 static const struct forwrefinfo *forwref;
125 static struct preproc_ops *preproc;
127 enum op_type {
128 op_normal, /* Preprocess and assemble */
129 op_preprocess, /* Preprocess only */
130 op_depend, /* Generate dependencies */
132 static enum op_type operating_mode;
133 /* Dependency flags */
134 static bool depend_emit_phony = false;
135 static bool depend_missing_ok = false;
136 static const char *depend_target = NULL;
137 static const char *depend_file = NULL;
140 * Which of the suppressible warnings are suppressed. Entry zero
141 * isn't an actual warning, but it used for -w+error/-Werror.
144 static bool warning_on[ERR_WARN_MAX+1]; /* Current state */
145 static bool warning_on_global[ERR_WARN_MAX+1]; /* Command-line state */
147 static const struct warning {
148 const char *name;
149 const char *help;
150 bool enabled;
151 } warnings[ERR_WARN_MAX+1] = {
152 {"error", "treat warnings as errors", false},
153 {"macro-params", "macro calls with wrong parameter count", true},
154 {"macro-selfref", "cyclic macro references", false},
155 {"macro-defaults", "macros with more default than optional parameters", true},
156 {"orphan-labels", "labels alone on lines without trailing `:'", true},
157 {"number-overflow", "numeric constant does not fit", true},
158 {"gnu-elf-extensions", "using 8- or 16-bit relocation in ELF32, a GNU extension", false},
159 {"float-overflow", "floating point overflow", true},
160 {"float-denorm", "floating point denormal", false},
161 {"float-underflow", "floating point underflow", false},
162 {"float-toolong", "too many digits in floating-point number", true},
163 {"user", "%warning directives", true},
167 * This is a null preprocessor which just copies lines from input
168 * to output. It's used when someone explicitly requests that NASM
169 * not preprocess their source file.
172 static void no_pp_reset(char *file, int pass, ListGen *listgen, StrList **deplist);
173 static char *no_pp_getline(void);
174 static void no_pp_cleanup(int pass);
176 static struct preproc_ops no_pp = {
177 no_pp_reset,
178 no_pp_getline,
179 no_pp_cleanup
183 * get/set current offset...
185 #define GET_CURR_OFFS (in_abs_seg?abs_offset:\
186 raa_read(offsets,location.segment))
187 #define SET_CURR_OFFS(x) (in_abs_seg?(void)(abs_offset=(x)):\
188 (void)(offsets=raa_write(offsets,location.segment,(x))))
190 static bool want_usage;
191 static bool terminate_after_phase;
192 int user_nolist = 0; /* fbk 9/2/00 */
194 static void nasm_fputs(const char *line, FILE * outfile)
196 if (outfile) {
197 fputs(line, outfile);
198 putc('\n', outfile);
199 } else
200 puts(line);
203 /* Convert a struct tm to a POSIX-style time constant */
204 static int64_t posix_mktime(struct tm *tm)
206 int64_t t;
207 int64_t y = tm->tm_year;
209 /* See IEEE 1003.1:2004, section 4.14 */
211 t = (y-70)*365 + (y-69)/4 - (y-1)/100 + (y+299)/400;
212 t += tm->tm_yday;
213 t *= 24;
214 t += tm->tm_hour;
215 t *= 60;
216 t += tm->tm_min;
217 t *= 60;
218 t += tm->tm_sec;
220 return t;
223 static void define_macros_early(void)
225 char temp[128];
226 struct tm lt, *lt_p, gm, *gm_p;
227 int64_t posix_time;
229 lt_p = localtime(&official_compile_time);
230 if (lt_p) {
231 lt = *lt_p;
233 strftime(temp, sizeof temp, "__DATE__=\"%Y-%m-%d\"", &lt);
234 pp_pre_define(temp);
235 strftime(temp, sizeof temp, "__DATE_NUM__=%Y%m%d", &lt);
236 pp_pre_define(temp);
237 strftime(temp, sizeof temp, "__TIME__=\"%H:%M:%S\"", &lt);
238 pp_pre_define(temp);
239 strftime(temp, sizeof temp, "__TIME_NUM__=%H%M%S", &lt);
240 pp_pre_define(temp);
243 gm_p = gmtime(&official_compile_time);
244 if (gm_p) {
245 gm = *gm_p;
247 strftime(temp, sizeof temp, "__UTC_DATE__=\"%Y-%m-%d\"", &gm);
248 pp_pre_define(temp);
249 strftime(temp, sizeof temp, "__UTC_DATE_NUM__=%Y%m%d", &gm);
250 pp_pre_define(temp);
251 strftime(temp, sizeof temp, "__UTC_TIME__=\"%H:%M:%S\"", &gm);
252 pp_pre_define(temp);
253 strftime(temp, sizeof temp, "__UTC_TIME_NUM__=%H%M%S", &gm);
254 pp_pre_define(temp);
257 if (gm_p)
258 posix_time = posix_mktime(&gm);
259 else if (lt_p)
260 posix_time = posix_mktime(&lt);
261 else
262 posix_time = 0;
264 if (posix_time) {
265 snprintf(temp, sizeof temp, "__POSIX_TIME__=%"PRId64, posix_time);
266 pp_pre_define(temp);
270 static void define_macros_late(void)
272 char temp[128];
275 * In case if output format is defined by alias
276 * we have to put shortname of the alias itself here
277 * otherwise ABI backward compatibility gets broken.
279 snprintf(temp, sizeof(temp), "__OUTPUT_FORMAT__=%s",
280 ofmt_alias ? ofmt_alias->shortname : ofmt->shortname);
281 pp_pre_define(temp);
284 static void emit_dependencies(StrList *list)
286 FILE *deps;
287 int linepos, len;
288 StrList *l, *nl;
290 if (depend_file && strcmp(depend_file, "-")) {
291 deps = fopen(depend_file, "w");
292 if (!deps) {
293 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
294 "unable to write dependency file `%s'", depend_file);
295 return;
297 } else {
298 deps = stdout;
301 linepos = fprintf(deps, "%s:", depend_target);
302 list_for_each(l, list) {
303 len = strlen(l->str);
304 if (linepos + len > 62) {
305 fprintf(deps, " \\\n ");
306 linepos = 1;
308 fprintf(deps, " %s", l->str);
309 linepos += len+1;
311 fprintf(deps, "\n\n");
313 list_for_each_safe(l, nl, list) {
314 if (depend_emit_phony)
315 fprintf(deps, "%s:\n\n", l->str);
316 nasm_free(l);
319 if (deps != stdout)
320 fclose(deps);
323 int main(int argc, char **argv)
325 StrList *depend_list = NULL, **depend_ptr;
327 time(&official_compile_time);
329 pass0 = 0;
330 want_usage = terminate_after_phase = false;
331 nasm_set_verror(nasm_verror_gnu);
333 error_file = stderr;
335 tolower_init();
337 nasm_init_malloc_error();
338 offsets = raa_init();
339 forwrefs = saa_init((int32_t)sizeof(struct forwrefinfo));
341 preproc = &nasmpp;
342 operating_mode = op_normal;
344 seg_init();
346 /* Define some macros dependent on the runtime, but not
347 on the command line. */
348 define_macros_early();
350 parse_cmdline(argc, argv);
352 if (terminate_after_phase) {
353 if (want_usage)
354 usage();
355 return 1;
358 /* If debugging info is disabled, suppress any debug calls */
359 if (!using_debug_info)
360 ofmt->current_dfmt = &null_debug_form;
362 if (ofmt->stdmac)
363 pp_extra_stdmac(ofmt->stdmac);
364 parser_global_info(&location);
365 eval_global_info(ofmt, lookup_label, &location);
367 /* define some macros dependent of command-line */
368 define_macros_late();
370 depend_ptr = (depend_file || (operating_mode == op_depend))
371 ? &depend_list : NULL;
372 if (!depend_target)
373 depend_target = outname;
375 switch (operating_mode) {
376 case op_depend:
378 char *line;
380 if (depend_missing_ok)
381 pp_include_path(NULL); /* "assume generated" */
383 preproc->reset(inname, 0, &nasmlist, depend_ptr);
384 if (outname[0] == '\0')
385 ofmt->filename(inname, outname);
386 ofile = NULL;
387 while ((line = preproc->getline()))
388 nasm_free(line);
389 preproc->cleanup(0);
391 break;
393 case op_preprocess:
395 char *line;
396 char *file_name = NULL;
397 int32_t prior_linnum = 0;
398 int lineinc = 0;
400 if (*outname) {
401 ofile = fopen(outname, "w");
402 if (!ofile)
403 nasm_error(ERR_FATAL | ERR_NOFILE,
404 "unable to open output file `%s'",
405 outname);
406 } else
407 ofile = NULL;
409 location.known = false;
411 /* pass = 1; */
412 preproc->reset(inname, 3, &nasmlist, depend_ptr);
414 while ((line = preproc->getline())) {
416 * We generate %line directives if needed for later programs
418 int32_t linnum = prior_linnum += lineinc;
419 int altline = src_get(&linnum, &file_name);
420 if (altline) {
421 if (altline == 1 && lineinc == 1)
422 nasm_fputs("", ofile);
423 else {
424 lineinc = (altline != -1 || lineinc != 1);
425 fprintf(ofile ? ofile : stdout,
426 "%%line %"PRId32"+%d %s\n", linnum, lineinc,
427 file_name);
429 prior_linnum = linnum;
431 nasm_fputs(line, ofile);
432 nasm_free(line);
434 nasm_free(file_name);
435 preproc->cleanup(0);
436 if (ofile)
437 fclose(ofile);
438 if (ofile && terminate_after_phase)
439 remove(outname);
440 ofile = NULL;
442 break;
444 case op_normal:
447 * We must call ofmt->filename _anyway_, even if the user
448 * has specified their own output file, because some
449 * formats (eg OBJ and COFF) use ofmt->filename to find out
450 * the name of the input file and then put that inside the
451 * file.
453 ofmt->filename(inname, outname);
455 ofile = fopen(outname, (ofmt->flags & OFMT_TEXT) ? "w" : "wb");
456 if (!ofile) {
457 nasm_error(ERR_FATAL | ERR_NOFILE,
458 "unable to open output file `%s'", outname);
462 * We must call init_labels() before ofmt->init() since
463 * some object formats will want to define labels in their
464 * init routines. (eg OS/2 defines the FLAT group)
466 init_labels();
468 ofmt->init();
469 dfmt = ofmt->current_dfmt;
470 dfmt->init();
472 assemble_file(inname, depend_ptr);
474 if (!terminate_after_phase) {
475 ofmt->cleanup(using_debug_info);
476 cleanup_labels();
477 fflush(ofile);
478 if (ferror(ofile)) {
479 nasm_error(ERR_NONFATAL|ERR_NOFILE,
480 "write error on output file `%s'", outname);
484 if (ofile) {
485 fclose(ofile);
486 if (terminate_after_phase)
487 remove(outname);
488 ofile = NULL;
491 break;
494 if (depend_list && !terminate_after_phase)
495 emit_dependencies(depend_list);
497 if (want_usage)
498 usage();
500 raa_free(offsets);
501 saa_free(forwrefs);
502 eval_cleanup();
503 stdscan_cleanup();
505 return terminate_after_phase;
509 * Get a parameter for a command line option.
510 * First arg must be in the form of e.g. -f...
512 static char *get_param(char *p, char *q, bool *advance)
514 *advance = false;
515 if (p[2]) /* the parameter's in the option */
516 return nasm_skip_spaces(p + 2);
517 if (q && q[0]) {
518 *advance = true;
519 return q;
521 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
522 "option `-%c' requires an argument", p[1]);
523 return NULL;
527 * Copy a filename
529 static void copy_filename(char *dst, const char *src)
531 size_t len = strlen(src);
533 if (len >= (size_t)FILENAME_MAX) {
534 nasm_error(ERR_FATAL | ERR_NOFILE, "file name too long");
535 return;
537 strncpy(dst, src, FILENAME_MAX);
541 * Convert a string to Make-safe form
543 static char *quote_for_make(const char *str)
545 const char *p;
546 char *os, *q;
548 size_t n = 1; /* Terminating zero */
549 size_t nbs = 0;
551 if (!str)
552 return NULL;
554 for (p = str; *p; p++) {
555 switch (*p) {
556 case ' ':
557 case '\t':
558 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
559 n += nbs + 2;
560 nbs = 0;
561 break;
562 case '$':
563 case '#':
564 nbs = 0;
565 n += 2;
566 break;
567 case '\\':
568 nbs++;
569 n++;
570 break;
571 default:
572 nbs = 0;
573 n++;
574 break;
578 /* Convert N backslashes at the end of filename to 2N backslashes */
579 if (nbs)
580 n += nbs;
582 os = q = nasm_malloc(n);
584 nbs = 0;
585 for (p = str; *p; p++) {
586 switch (*p) {
587 case ' ':
588 case '\t':
589 while (nbs--)
590 *q++ = '\\';
591 *q++ = '\\';
592 *q++ = *p;
593 break;
594 case '$':
595 *q++ = *p;
596 *q++ = *p;
597 nbs = 0;
598 break;
599 case '#':
600 *q++ = '\\';
601 *q++ = *p;
602 nbs = 0;
603 break;
604 case '\\':
605 *q++ = *p;
606 nbs++;
607 break;
608 default:
609 *q++ = *p;
610 nbs = 0;
611 break;
614 while (nbs--)
615 *q++ = '\\';
617 *q = '\0';
619 return os;
622 struct textargs {
623 const char *label;
624 int value;
627 #define OPT_PREFIX 0
628 #define OPT_POSTFIX 1
629 struct textargs textopts[] = {
630 {"prefix", OPT_PREFIX},
631 {"postfix", OPT_POSTFIX},
632 {NULL, 0}
635 static bool stopoptions = false;
636 static bool process_arg(char *p, char *q)
638 char *param;
639 int i;
640 bool advance = false;
641 bool do_warn;
643 if (!p || !p[0])
644 return false;
646 if (p[0] == '-' && !stopoptions) {
647 if (strchr("oOfpPdDiIlFXuUZwW", p[1])) {
648 /* These parameters take values */
649 if (!(param = get_param(p, q, &advance)))
650 return advance;
653 switch (p[1]) {
654 case 's':
655 error_file = stdout;
656 break;
658 case 'o': /* output file */
659 copy_filename(outname, param);
660 break;
662 case 'f': /* output format */
663 ofmt = ofmt_find(param, &ofmt_alias);
664 if (!ofmt) {
665 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
666 "unrecognised output format `%s' - "
667 "use -hf for a list", param);
669 break;
671 case 'O': /* Optimization level */
673 int opt;
675 if (!*param) {
676 /* Naked -O == -Ox */
677 optimizing = MAX_OPTIMIZE;
678 } else {
679 while (*param) {
680 switch (*param) {
681 case '0': case '1': case '2': case '3': case '4':
682 case '5': case '6': case '7': case '8': case '9':
683 opt = strtoul(param, &param, 10);
685 /* -O0 -> optimizing == -1, 0.98 behaviour */
686 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
687 if (opt < 2)
688 optimizing = opt - 1;
689 else
690 optimizing = opt;
691 break;
693 case 'v':
694 case '+':
695 param++;
696 opt_verbose_info = true;
697 break;
699 case 'x':
700 param++;
701 optimizing = MAX_OPTIMIZE;
702 break;
704 default:
705 nasm_error(ERR_FATAL,
706 "unknown optimization option -O%c\n",
707 *param);
708 break;
711 if (optimizing > MAX_OPTIMIZE)
712 optimizing = MAX_OPTIMIZE;
714 break;
717 case 'p': /* pre-include */
718 case 'P':
719 pp_pre_include(param);
720 break;
722 case 'd': /* pre-define */
723 case 'D':
724 pp_pre_define(param);
725 break;
727 case 'u': /* un-define */
728 case 'U':
729 pp_pre_undefine(param);
730 break;
732 case 'i': /* include search path */
733 case 'I':
734 pp_include_path(param);
735 break;
737 case 'l': /* listing file */
738 copy_filename(listname, param);
739 break;
741 case 'Z': /* error messages file */
742 copy_filename(errname, param);
743 break;
745 case 'F': /* specify debug format */
746 ofmt->current_dfmt = dfmt_find(ofmt, param);
747 if (!ofmt->current_dfmt) {
748 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
749 "unrecognized debug format `%s' for"
750 " output format `%s'",
751 param, ofmt->shortname);
753 using_debug_info = true;
754 break;
756 case 'X': /* specify error reporting format */
757 if (nasm_stricmp("vc", param) == 0)
758 nasm_set_verror(nasm_verror_vc);
759 else if (nasm_stricmp("gnu", param) == 0)
760 nasm_set_verror(nasm_verror_gnu);
761 else
762 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
763 "unrecognized error reporting format `%s'",
764 param);
765 break;
767 case 'g':
768 using_debug_info = true;
769 break;
771 case 'h':
772 printf
773 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
774 "[-l listfile]\n"
775 " [options...] [--] filename\n"
776 " or nasm -v for version info\n\n"
777 " -t assemble in SciTech TASM compatible mode\n"
778 " -g generate debug information in selected format\n");
779 printf
780 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
781 " -a don't preprocess (assemble only)\n"
782 " -M generate Makefile dependencies on stdout\n"
783 " -MG d:o, missing files assumed generated\n"
784 " -MF <file> set Makefile dependency file\n"
785 " -MD <file> assemble and generate dependencies\n"
786 " -MT <file> dependency target name\n"
787 " -MQ <file> dependency target name (quoted)\n"
788 " -MP emit phony target\n\n"
789 " -Z<file> redirect error messages to file\n"
790 " -s redirect error messages to stdout\n\n"
791 " -F format select a debugging format\n\n"
792 " -I<path> adds a pathname to the include file path\n");
793 printf
794 (" -O<digit> optimize branch offsets\n"
795 " -O0: No optimization (default)\n"
796 " -O1: Minimal optimization\n"
797 " -Ox: Multipass optimization (recommended)\n\n"
798 " -P<file> pre-includes a file\n"
799 " -D<macro>[=<value>] pre-defines a macro\n"
800 " -U<macro> undefines a macro\n"
801 " -X<format> specifies error reporting format (gnu or vc)\n"
802 " -w+foo enables warning foo (equiv. -Wfoo)\n"
803 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
804 "--prefix,--postfix\n"
805 " this options prepend or append the given argument to all\n"
806 " extern and global variables\n\n"
807 "Warnings:\n");
808 for (i = 0; i <= ERR_WARN_MAX; i++)
809 printf(" %-23s %s (default %s)\n",
810 warnings[i].name, warnings[i].help,
811 warnings[i].enabled ? "on" : "off");
812 printf
813 ("\nresponse files should contain command line parameters"
814 ", one per line.\n");
815 if (p[2] == 'f') {
816 printf("\nvalid output formats for -f are"
817 " (`*' denotes default):\n");
818 ofmt_list(ofmt, stdout);
819 } else {
820 printf("\nFor a list of valid output formats, use -hf.\n");
821 printf("For a list of debug formats, use -f <form> -y.\n");
823 exit(0); /* never need usage message here */
824 break;
826 case 'y':
827 printf("\nvalid debug formats for '%s' output format are"
828 " ('*' denotes default):\n", ofmt->shortname);
829 dfmt_list(ofmt, stdout);
830 exit(0);
831 break;
833 case 't':
834 tasm_compatible_mode = true;
835 break;
837 case 'v':
838 printf("NASM version %s compiled on %s%s\n",
839 nasm_version, nasm_date, nasm_compile_options);
840 exit(0); /* never need usage message here */
841 break;
843 case 'e': /* preprocess only */
844 case 'E':
845 operating_mode = op_preprocess;
846 break;
848 case 'a': /* assemble only - don't preprocess */
849 preproc = &no_pp;
850 break;
852 case 'W':
853 if (param[0] == 'n' && param[1] == 'o' && param[2] == '-') {
854 do_warn = false;
855 param += 3;
856 } else {
857 do_warn = true;
859 goto set_warning;
861 case 'w':
862 if (param[0] != '+' && param[0] != '-') {
863 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
864 "invalid option to `-w'");
865 break;
867 do_warn = (param[0] == '+');
868 param++;
870 set_warning:
871 for (i = 0; i <= ERR_WARN_MAX; i++) {
872 if (!nasm_stricmp(param, warnings[i].name))
873 break;
875 if (i <= ERR_WARN_MAX) {
876 warning_on_global[i] = do_warn;
877 } else if (!nasm_stricmp(param, "all")) {
878 for (i = 1; i <= ERR_WARN_MAX; i++)
879 warning_on_global[i] = do_warn;
880 } else if (!nasm_stricmp(param, "none")) {
881 for (i = 1; i <= ERR_WARN_MAX; i++)
882 warning_on_global[i] = !do_warn;
883 } else {
884 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
885 "invalid warning `%s'", param);
887 break;
889 case 'M':
890 switch (p[2]) {
891 case 0:
892 operating_mode = op_depend;
893 break;
894 case 'G':
895 operating_mode = op_depend;
896 depend_missing_ok = true;
897 break;
898 case 'P':
899 depend_emit_phony = true;
900 break;
901 case 'D':
902 depend_file = q;
903 advance = true;
904 break;
905 case 'T':
906 depend_target = q;
907 advance = true;
908 break;
909 case 'Q':
910 depend_target = quote_for_make(q);
911 advance = true;
912 break;
913 default:
914 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
915 "unknown dependency option `-M%c'", p[2]);
916 break;
918 if (advance && (!q || !q[0])) {
919 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
920 "option `-M%c' requires a parameter", p[2]);
921 break;
923 break;
925 case '-':
927 int s;
929 if (p[2] == 0) { /* -- => stop processing options */
930 stopoptions = 1;
931 break;
933 for (s = 0; textopts[s].label; s++) {
934 if (!nasm_stricmp(p + 2, textopts[s].label)) {
935 break;
939 switch (s) {
941 case OPT_PREFIX:
942 case OPT_POSTFIX:
944 if (!q) {
945 nasm_error(ERR_NONFATAL | ERR_NOFILE |
946 ERR_USAGE,
947 "option `--%s' requires an argument",
948 p + 2);
949 break;
950 } else {
951 advance = 1, param = q;
954 if (s == OPT_PREFIX) {
955 strncpy(lprefix, param, PREFIX_MAX - 1);
956 lprefix[PREFIX_MAX - 1] = 0;
957 break;
959 if (s == OPT_POSTFIX) {
960 strncpy(lpostfix, param, POSTFIX_MAX - 1);
961 lpostfix[POSTFIX_MAX - 1] = 0;
962 break;
964 break;
966 default:
968 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
969 "unrecognised option `--%s'", p + 2);
970 break;
973 break;
976 default:
977 if (!ofmt->setinfo(GI_SWITCH, &p))
978 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
979 "unrecognised option `-%c'", p[1]);
980 break;
982 } else {
983 if (*inname) {
984 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
985 "more than one input file specified");
986 } else {
987 copy_filename(inname, p);
991 return advance;
994 #define ARG_BUF_DELTA 128
996 static void process_respfile(FILE * rfile)
998 char *buffer, *p, *q, *prevarg;
999 int bufsize, prevargsize;
1001 bufsize = prevargsize = ARG_BUF_DELTA;
1002 buffer = nasm_malloc(ARG_BUF_DELTA);
1003 prevarg = nasm_malloc(ARG_BUF_DELTA);
1004 prevarg[0] = '\0';
1006 while (1) { /* Loop to handle all lines in file */
1007 p = buffer;
1008 while (1) { /* Loop to handle long lines */
1009 q = fgets(p, bufsize - (p - buffer), rfile);
1010 if (!q)
1011 break;
1012 p += strlen(p);
1013 if (p > buffer && p[-1] == '\n')
1014 break;
1015 if (p - buffer > bufsize - 10) {
1016 int offset;
1017 offset = p - buffer;
1018 bufsize += ARG_BUF_DELTA;
1019 buffer = nasm_realloc(buffer, bufsize);
1020 p = buffer + offset;
1024 if (!q && p == buffer) {
1025 if (prevarg[0])
1026 process_arg(prevarg, NULL);
1027 nasm_free(buffer);
1028 nasm_free(prevarg);
1029 return;
1033 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1034 * them are present at the end of the line.
1036 *(p = &buffer[strcspn(buffer, "\r\n\032")]) = '\0';
1038 while (p > buffer && nasm_isspace(p[-1]))
1039 *--p = '\0';
1041 p = nasm_skip_spaces(buffer);
1043 if (process_arg(prevarg, p))
1044 *p = '\0';
1046 if ((int) strlen(p) > prevargsize - 10) {
1047 prevargsize += ARG_BUF_DELTA;
1048 prevarg = nasm_realloc(prevarg, prevargsize);
1050 strncpy(prevarg, p, prevargsize);
1054 /* Function to process args from a string of args, rather than the
1055 * argv array. Used by the environment variable and response file
1056 * processing.
1058 static void process_args(char *args)
1060 char *p, *q, *arg, *prevarg;
1061 char separator = ' ';
1063 p = args;
1064 if (*p && *p != '-')
1065 separator = *p++;
1066 arg = NULL;
1067 while (*p) {
1068 q = p;
1069 while (*p && *p != separator)
1070 p++;
1071 while (*p == separator)
1072 *p++ = '\0';
1073 prevarg = arg;
1074 arg = q;
1075 if (process_arg(prevarg, arg))
1076 arg = NULL;
1078 if (arg)
1079 process_arg(arg, NULL);
1082 static void process_response_file(const char *file)
1084 char str[2048];
1085 FILE *f = fopen(file, "r");
1086 if (!f) {
1087 perror(file);
1088 exit(-1);
1090 while (fgets(str, sizeof str, f)) {
1091 process_args(str);
1093 fclose(f);
1096 static void parse_cmdline(int argc, char **argv)
1098 FILE *rfile;
1099 char *envreal, *envcopy = NULL, *p;
1100 int i;
1102 *inname = *outname = *listname = *errname = '\0';
1104 for (i = 0; i <= ERR_WARN_MAX; i++)
1105 warning_on_global[i] = warnings[i].enabled;
1108 * First, process the NASMENV environment variable.
1110 envreal = getenv("NASMENV");
1111 if (envreal) {
1112 envcopy = nasm_strdup(envreal);
1113 process_args(envcopy);
1114 nasm_free(envcopy);
1118 * Now process the actual command line.
1120 while (--argc) {
1121 bool advance;
1122 argv++;
1123 if (argv[0][0] == '@') {
1125 * We have a response file, so process this as a set of
1126 * arguments like the environment variable. This allows us
1127 * to have multiple arguments on a single line, which is
1128 * different to the -@resp file processing below for regular
1129 * NASM.
1131 process_response_file(argv[0]+1);
1132 argc--;
1133 argv++;
1135 if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
1136 p = get_param(argv[0], argc > 1 ? argv[1] : NULL, &advance);
1137 if (p) {
1138 rfile = fopen(p, "r");
1139 if (rfile) {
1140 process_respfile(rfile);
1141 fclose(rfile);
1142 } else
1143 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1144 "unable to open response file `%s'", p);
1146 } else
1147 advance = process_arg(argv[0], argc > 1 ? argv[1] : NULL);
1148 argv += advance, argc -= advance;
1152 * Look for basic command line typos. This definitely doesn't
1153 * catch all errors, but it might help cases of fumbled fingers.
1155 if (!*inname)
1156 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1157 "no input file specified");
1158 else if (!strcmp(inname, errname) ||
1159 !strcmp(inname, outname) ||
1160 !strcmp(inname, listname) ||
1161 (depend_file && !strcmp(inname, depend_file)))
1162 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1163 "file `%s' is both input and output file",
1164 inname);
1166 if (*errname) {
1167 error_file = fopen(errname, "w");
1168 if (!error_file) {
1169 error_file = stderr; /* Revert to default! */
1170 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1171 "cannot open file `%s' for error messages",
1172 errname);
1177 static enum directives getkw(char **directive, char **value);
1179 static void assemble_file(char *fname, StrList **depend_ptr)
1181 char *directive, *value, *p, *q, *special, *line;
1182 insn output_ins;
1183 int i, validid;
1184 bool rn_error;
1185 int32_t seg;
1186 int64_t offs;
1187 struct tokenval tokval;
1188 expr *e;
1189 int pass_max;
1191 if (cmd_sb == 32 && cmd_cpu < IF_386)
1192 nasm_error(ERR_FATAL, "command line: "
1193 "32-bit segment size requires a higher cpu");
1195 pass_max = prev_offset_changed = (INT_MAX >> 1) + 2; /* Almost unlimited */
1196 for (passn = 1; pass0 <= 2; passn++) {
1197 int pass1, pass2;
1198 ldfunc def_label;
1200 pass1 = pass0 == 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1201 pass2 = passn > 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1202 /* pass0 0, 0, 0, ..., 1, 2 */
1204 def_label = passn > 1 ? redefine_label : define_label;
1206 globalbits = sb = cmd_sb; /* set 'bits' to command line default */
1207 cpu = cmd_cpu;
1208 if (pass0 == 2) {
1209 if (*listname)
1210 nasmlist.init(listname, nasm_error);
1212 in_abs_seg = false;
1213 global_offset_changed = 0; /* set by redefine_label */
1214 location.segment = ofmt->section(NULL, pass2, &sb);
1215 globalbits = sb;
1216 if (passn > 1) {
1217 saa_rewind(forwrefs);
1218 forwref = saa_rstruct(forwrefs);
1219 raa_free(offsets);
1220 offsets = raa_init();
1222 preproc->reset(fname, pass1, &nasmlist,
1223 pass1 == 2 ? depend_ptr : NULL);
1224 memcpy(warning_on, warning_on_global, (ERR_WARN_MAX+1) * sizeof(bool));
1226 globallineno = 0;
1227 if (passn == 1)
1228 location.known = true;
1229 location.offset = offs = GET_CURR_OFFS;
1231 while ((line = preproc->getline())) {
1232 enum directives d;
1233 globallineno++;
1236 * Here we parse our directives; this is not handled by the
1237 * 'real' parser. This really should be a separate function.
1239 directive = line;
1240 d = getkw(&directive, &value);
1241 if (d) {
1242 int err = 0;
1244 switch (d) {
1245 case D_SEGMENT: /* [SEGMENT n] */
1246 case D_SECTION:
1247 seg = ofmt->section(value, pass2, &sb);
1248 if (seg == NO_SEG) {
1249 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1250 "segment name `%s' not recognized",
1251 value);
1252 } else {
1253 in_abs_seg = false;
1254 location.segment = seg;
1256 break;
1257 case D_SECTALIGN: /* [SECTALIGN n] */
1258 if (*value) {
1259 stdscan_reset();
1260 stdscan_set(value);
1261 tokval.t_type = TOKEN_INVALID;
1262 e = evaluate(stdscan, NULL, &tokval, NULL, pass2, nasm_error, NULL);
1263 if (e) {
1264 unsigned int align = (unsigned int)e->value;
1265 if ((uint64_t)e->value > 0x7fffffff) {
1267 * FIXME: Please make some sane message here
1268 * ofmt should have some 'check' method which
1269 * would report segment alignment bounds.
1271 nasm_error(ERR_FATAL,
1272 "incorrect segment alignment `%s'", value);
1273 } else if (!is_power2(align)) {
1274 nasm_error(ERR_NONFATAL,
1275 "segment alignment `%s' is not power of two",
1276 value);
1278 /* callee should be able to handle all details */
1279 ofmt->sectalign(location.segment, align);
1282 break;
1283 case D_EXTERN: /* [EXTERN label:special] */
1284 if (*value == '$')
1285 value++; /* skip initial $ if present */
1286 if (pass0 == 2) {
1287 q = value;
1288 while (*q && *q != ':')
1289 q++;
1290 if (*q == ':') {
1291 *q++ = '\0';
1292 ofmt->symdef(value, 0L, 0L, 3, q);
1294 } else if (passn == 1) {
1295 q = value;
1296 validid = true;
1297 if (!isidstart(*q))
1298 validid = false;
1299 while (*q && *q != ':') {
1300 if (!isidchar(*q))
1301 validid = false;
1302 q++;
1304 if (!validid) {
1305 nasm_error(ERR_NONFATAL,
1306 "identifier expected after EXTERN");
1307 break;
1309 if (*q == ':') {
1310 *q++ = '\0';
1311 special = q;
1312 } else
1313 special = NULL;
1314 if (!is_extern(value)) { /* allow re-EXTERN to be ignored */
1315 int temp = pass0;
1316 pass0 = 1; /* fake pass 1 in labels.c */
1317 declare_as_global(value, special);
1318 define_label(value, seg_alloc(), 0L, NULL,
1319 false, true);
1320 pass0 = temp;
1322 } /* else pass0 == 1 */
1323 break;
1324 case D_BITS: /* [BITS bits] */
1325 globalbits = sb = get_bits(value);
1326 break;
1327 case D_GLOBAL: /* [GLOBAL symbol:special] */
1328 if (*value == '$')
1329 value++; /* skip initial $ if present */
1330 if (pass0 == 2) { /* pass 2 */
1331 q = value;
1332 while (*q && *q != ':')
1333 q++;
1334 if (*q == ':') {
1335 *q++ = '\0';
1336 ofmt->symdef(value, 0L, 0L, 3, q);
1338 } else if (pass2 == 1) { /* pass == 1 */
1339 q = value;
1340 validid = true;
1341 if (!isidstart(*q))
1342 validid = false;
1343 while (*q && *q != ':') {
1344 if (!isidchar(*q))
1345 validid = false;
1346 q++;
1348 if (!validid) {
1349 nasm_error(ERR_NONFATAL,
1350 "identifier expected after GLOBAL");
1351 break;
1353 if (*q == ':') {
1354 *q++ = '\0';
1355 special = q;
1356 } else
1357 special = NULL;
1358 declare_as_global(value, special);
1359 } /* pass == 1 */
1360 break;
1361 case D_COMMON: /* [COMMON symbol size:special] */
1363 int64_t size;
1365 if (*value == '$')
1366 value++; /* skip initial $ if present */
1367 p = value;
1368 validid = true;
1369 if (!isidstart(*p))
1370 validid = false;
1371 while (*p && !nasm_isspace(*p)) {
1372 if (!isidchar(*p))
1373 validid = false;
1374 p++;
1376 if (!validid) {
1377 nasm_error(ERR_NONFATAL,
1378 "identifier expected after COMMON");
1379 break;
1381 if (*p) {
1382 p = nasm_zap_spaces_fwd(p);
1383 q = p;
1384 while (*q && *q != ':')
1385 q++;
1386 if (*q == ':') {
1387 *q++ = '\0';
1388 special = q;
1389 } else {
1390 special = NULL;
1392 size = readnum(p, &rn_error);
1393 if (rn_error) {
1394 nasm_error(ERR_NONFATAL,
1395 "invalid size specified"
1396 " in COMMON declaration");
1397 break;
1399 } else {
1400 nasm_error(ERR_NONFATAL,
1401 "no size specified in"
1402 " COMMON declaration");
1403 break;
1406 if (pass0 < 2) {
1407 define_common(value, seg_alloc(), size, special);
1408 } else if (pass0 == 2) {
1409 if (special)
1410 ofmt->symdef(value, 0L, 0L, 3, special);
1412 break;
1414 case D_ABSOLUTE: /* [ABSOLUTE address] */
1415 stdscan_reset();
1416 stdscan_set(value);
1417 tokval.t_type = TOKEN_INVALID;
1418 e = evaluate(stdscan, NULL, &tokval, NULL, pass2,
1419 nasm_error, NULL);
1420 if (e) {
1421 if (!is_reloc(e))
1422 nasm_error(pass0 ==
1423 1 ? ERR_NONFATAL : ERR_PANIC,
1424 "cannot use non-relocatable expression as "
1425 "ABSOLUTE address");
1426 else {
1427 abs_seg = reloc_seg(e);
1428 abs_offset = reloc_value(e);
1430 } else if (passn == 1)
1431 abs_offset = 0x100; /* don't go near zero in case of / */
1432 else
1433 nasm_error(ERR_PANIC, "invalid ABSOLUTE address "
1434 "in pass two");
1435 in_abs_seg = true;
1436 location.segment = NO_SEG;
1437 break;
1438 case D_DEBUG: /* [DEBUG] */
1440 char debugid[128];
1441 bool badid, overlong;
1443 p = value;
1444 q = debugid;
1445 badid = overlong = false;
1446 if (!isidstart(*p)) {
1447 badid = true;
1448 } else {
1449 while (*p && !nasm_isspace(*p)) {
1450 if (q >= debugid + sizeof debugid - 1) {
1451 overlong = true;
1452 break;
1454 if (!isidchar(*p))
1455 badid = true;
1456 *q++ = *p++;
1458 *q = 0;
1460 if (badid) {
1461 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1462 "identifier expected after DEBUG");
1463 break;
1465 if (overlong) {
1466 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1467 "DEBUG identifier too long");
1468 break;
1470 p = nasm_skip_spaces(p);
1471 if (pass0 == 2)
1472 dfmt->debug_directive(debugid, p);
1473 break;
1475 case D_WARNING: /* [WARNING {+|-|*}warn-name] */
1476 value = nasm_skip_spaces(value);
1477 switch(*value) {
1478 case '-': validid = 0; value++; break;
1479 case '+': validid = 1; value++; break;
1480 case '*': validid = 2; value++; break;
1481 default: validid = 1; break;
1484 for (i = 1; i <= ERR_WARN_MAX; i++)
1485 if (!nasm_stricmp(value, warnings[i].name))
1486 break;
1487 if (i <= ERR_WARN_MAX) {
1488 switch(validid) {
1489 case 0:
1490 warning_on[i] = false;
1491 break;
1492 case 1:
1493 warning_on[i] = true;
1494 break;
1495 case 2:
1496 warning_on[i] = warning_on_global[i];
1497 break;
1500 else
1501 nasm_error(ERR_NONFATAL,
1502 "invalid warning id in WARNING directive");
1503 break;
1504 case D_CPU: /* [CPU] */
1505 cpu = get_cpu(value);
1506 break;
1507 case D_LIST: /* [LIST {+|-}] */
1508 value = nasm_skip_spaces(value);
1509 if (*value == '+') {
1510 user_nolist = 0;
1511 } else {
1512 if (*value == '-') {
1513 user_nolist = 1;
1514 } else {
1515 err = 1;
1518 break;
1519 case D_DEFAULT: /* [DEFAULT] */
1520 stdscan_reset();
1521 stdscan_set(value);
1522 tokval.t_type = TOKEN_INVALID;
1523 if (stdscan(NULL, &tokval) == TOKEN_SPECIAL) {
1524 switch ((int)tokval.t_integer) {
1525 case S_REL:
1526 globalrel = 1;
1527 break;
1528 case S_ABS:
1529 globalrel = 0;
1530 break;
1531 default:
1532 err = 1;
1533 break;
1535 } else {
1536 err = 1;
1538 break;
1539 case D_FLOAT:
1540 if (float_option(value)) {
1541 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1542 "unknown 'float' directive: %s",
1543 value);
1545 break;
1546 default:
1547 if (ofmt->directive(d, value, pass2))
1548 break;
1549 /* else fall through */
1550 case D_unknown:
1551 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1552 "unrecognised directive [%s]",
1553 directive);
1554 break;
1556 if (err) {
1557 nasm_error(ERR_NONFATAL,
1558 "invalid parameter to [%s] directive",
1559 directive);
1561 } else { /* it isn't a directive */
1562 parse_line(pass1, line, &output_ins, def_label);
1564 if (optimizing > 0) {
1565 if (forwref != NULL && globallineno == forwref->lineno) {
1566 output_ins.forw_ref = true;
1567 do {
1568 output_ins.oprs[forwref->operand].opflags |= OPFLAG_FORWARD;
1569 forwref = saa_rstruct(forwrefs);
1570 } while (forwref != NULL
1571 && forwref->lineno == globallineno);
1572 } else
1573 output_ins.forw_ref = false;
1575 if (output_ins.forw_ref) {
1576 if (passn == 1) {
1577 for (i = 0; i < output_ins.operands; i++) {
1578 if (output_ins.oprs[i].opflags & OPFLAG_FORWARD) {
1579 struct forwrefinfo *fwinf =
1580 (struct forwrefinfo *)
1581 saa_wstruct(forwrefs);
1582 fwinf->lineno = globallineno;
1583 fwinf->operand = i;
1590 /* forw_ref */
1591 if (output_ins.opcode == I_EQU) {
1592 if (pass1 == 1) {
1594 * Special `..' EQUs get processed in pass two,
1595 * except `..@' macro-processor EQUs which are done
1596 * in the normal place.
1598 if (!output_ins.label)
1599 nasm_error(ERR_NONFATAL,
1600 "EQU not preceded by label");
1602 else if (output_ins.label[0] != '.' ||
1603 output_ins.label[1] != '.' ||
1604 output_ins.label[2] == '@') {
1605 if (output_ins.operands == 1 &&
1606 (output_ins.oprs[0].type & IMMEDIATE) &&
1607 output_ins.oprs[0].wrt == NO_SEG) {
1608 bool isext = !!(output_ins.oprs[0].opflags
1609 & OPFLAG_EXTERN);
1610 def_label(output_ins.label,
1611 output_ins.oprs[0].segment,
1612 output_ins.oprs[0].offset, NULL,
1613 false, isext);
1614 } else if (output_ins.operands == 2
1615 && (output_ins.oprs[0].type & IMMEDIATE)
1616 && (output_ins.oprs[0].type & COLON)
1617 && output_ins.oprs[0].segment == NO_SEG
1618 && output_ins.oprs[0].wrt == NO_SEG
1619 && (output_ins.oprs[1].type & IMMEDIATE)
1620 && output_ins.oprs[1].segment == NO_SEG
1621 && output_ins.oprs[1].wrt == NO_SEG) {
1622 def_label(output_ins.label,
1623 output_ins.oprs[0].offset | SEG_ABS,
1624 output_ins.oprs[1].offset,
1625 NULL, false, false);
1626 } else
1627 nasm_error(ERR_NONFATAL,
1628 "bad syntax for EQU");
1630 } else {
1632 * Special `..' EQUs get processed here, except
1633 * `..@' macro processor EQUs which are done above.
1635 if (output_ins.label[0] == '.' &&
1636 output_ins.label[1] == '.' &&
1637 output_ins.label[2] != '@') {
1638 if (output_ins.operands == 1 &&
1639 (output_ins.oprs[0].type & IMMEDIATE)) {
1640 define_label(output_ins.label,
1641 output_ins.oprs[0].segment,
1642 output_ins.oprs[0].offset,
1643 NULL, false, false);
1644 } else if (output_ins.operands == 2
1645 && (output_ins.oprs[0].type & IMMEDIATE)
1646 && (output_ins.oprs[0].type & COLON)
1647 && output_ins.oprs[0].segment == NO_SEG
1648 && (output_ins.oprs[1].type & IMMEDIATE)
1649 && output_ins.oprs[1].segment == NO_SEG) {
1650 define_label(output_ins.label,
1651 output_ins.oprs[0].offset | SEG_ABS,
1652 output_ins.oprs[1].offset,
1653 NULL, false, false);
1654 } else
1655 nasm_error(ERR_NONFATAL,
1656 "bad syntax for EQU");
1659 } else { /* instruction isn't an EQU */
1661 if (pass1 == 1) {
1663 int64_t l = insn_size(location.segment, offs, sb, cpu,
1664 &output_ins, nasm_error);
1666 /* if (using_debug_info) && output_ins.opcode != -1) */
1667 if (using_debug_info)
1668 { /* fbk 03/25/01 */
1669 /* this is done here so we can do debug type info */
1670 int32_t typeinfo =
1671 TYS_ELEMENTS(output_ins.operands);
1672 switch (output_ins.opcode) {
1673 case I_RESB:
1674 typeinfo =
1675 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;
1676 break;
1677 case I_RESW:
1678 typeinfo =
1679 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;
1680 break;
1681 case I_RESD:
1682 typeinfo =
1683 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;
1684 break;
1685 case I_RESQ:
1686 typeinfo =
1687 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;
1688 break;
1689 case I_REST:
1690 typeinfo =
1691 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;
1692 break;
1693 case I_RESO:
1694 typeinfo =
1695 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_OWORD;
1696 break;
1697 case I_RESY:
1698 typeinfo =
1699 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_YWORD;
1700 break;
1701 case I_DB:
1702 typeinfo |= TY_BYTE;
1703 break;
1704 case I_DW:
1705 typeinfo |= TY_WORD;
1706 break;
1707 case I_DD:
1708 if (output_ins.eops_float)
1709 typeinfo |= TY_FLOAT;
1710 else
1711 typeinfo |= TY_DWORD;
1712 break;
1713 case I_DQ:
1714 typeinfo |= TY_QWORD;
1715 break;
1716 case I_DT:
1717 typeinfo |= TY_TBYTE;
1718 break;
1719 case I_DO:
1720 typeinfo |= TY_OWORD;
1721 break;
1722 case I_DY:
1723 typeinfo |= TY_YWORD;
1724 break;
1725 default:
1726 typeinfo = TY_LABEL;
1730 dfmt->debug_typevalue(typeinfo);
1732 if (l != -1) {
1733 offs += l;
1734 SET_CURR_OFFS(offs);
1737 * else l == -1 => invalid instruction, which will be
1738 * flagged as an error on pass 2
1741 } else {
1742 offs += assemble(location.segment, offs, sb, cpu,
1743 &output_ins, ofmt, nasm_error,
1744 &nasmlist);
1745 SET_CURR_OFFS(offs);
1748 } /* not an EQU */
1749 cleanup_insn(&output_ins);
1751 nasm_free(line);
1752 location.offset = offs = GET_CURR_OFFS;
1753 } /* end while (line = preproc->getline... */
1755 if (pass0 == 2 && global_offset_changed && !terminate_after_phase)
1756 nasm_error(ERR_NONFATAL,
1757 "phase error detected at end of assembly.");
1759 if (pass1 == 1)
1760 preproc->cleanup(1);
1762 if ((passn > 1 && !global_offset_changed) || pass0 == 2) {
1763 pass0++;
1764 } else if (global_offset_changed &&
1765 global_offset_changed < prev_offset_changed) {
1766 prev_offset_changed = global_offset_changed;
1767 stall_count = 0;
1768 } else {
1769 stall_count++;
1772 if (terminate_after_phase)
1773 break;
1775 if ((stall_count > 997) || (passn >= pass_max)) {
1776 /* We get here if the labels don't converge
1777 * Example: FOO equ FOO + 1
1779 nasm_error(ERR_NONFATAL,
1780 "Can't find valid values for all labels "
1781 "after %d passes, giving up.", passn);
1782 nasm_error(ERR_NONFATAL,
1783 "Possible causes: recursive EQUs, macro abuse.");
1784 break;
1788 preproc->cleanup(0);
1789 nasmlist.cleanup();
1790 if (!terminate_after_phase && opt_verbose_info) {
1791 /* -On and -Ov switches */
1792 fprintf(stdout, "info: assembly required 1+%d+1 passes\n", passn-3);
1796 static enum directives getkw(char **directive, char **value)
1798 char *p, *q, *buf;
1800 buf = nasm_skip_spaces(*directive);
1802 /* it should be enclosed in [ ] */
1803 if (*buf != '[')
1804 return D_none;
1805 q = strchr(buf, ']');
1806 if (!q)
1807 return D_none;
1809 /* stip off the comments */
1810 p = strchr(buf, ';');
1811 if (p) {
1812 if (p < q) /* ouch! somwhere inside */
1813 return D_none;
1814 *p = '\0';
1817 /* no brace, no trailing spaces */
1818 *q = '\0';
1819 nasm_zap_spaces_rev(--q);
1821 /* directive */
1822 p = nasm_skip_spaces(++buf);
1823 q = nasm_skip_word(p);
1824 if (!q)
1825 return D_none; /* sigh... no value there */
1826 *q = '\0';
1827 *directive = p;
1829 /* and value finally */
1830 p = nasm_skip_spaces(++q);
1831 *value = p;
1833 return find_directive(*directive);
1837 * gnu style error reporting
1838 * This function prints an error message to error_file in the
1839 * style used by GNU. An example would be:
1840 * file.asm:50: error: blah blah blah
1841 * where file.asm is the name of the file, 50 is the line number on
1842 * which the error occurs (or is detected) and "error:" is one of
1843 * the possible optional diagnostics -- it can be "error" or "warning"
1844 * or something else. Finally the line terminates with the actual
1845 * error message.
1847 * @param severity the severity of the warning or error
1848 * @param fmt the printf style format string
1850 static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
1852 char *currentfile = NULL;
1853 int32_t lineno = 0;
1855 if (is_suppressed_warning(severity))
1856 return;
1858 if (!(severity & ERR_NOFILE))
1859 src_get(&lineno, &currentfile);
1861 if (currentfile) {
1862 fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno);
1863 nasm_free(currentfile);
1864 } else {
1865 fputs("nasm: ", error_file);
1868 nasm_verror_common(severity, fmt, ap);
1872 * MS style error reporting
1873 * This function prints an error message to error_file in the
1874 * style used by Visual C and some other Microsoft tools. An example
1875 * would be:
1876 * file.asm(50) : error: blah blah blah
1877 * where file.asm is the name of the file, 50 is the line number on
1878 * which the error occurs (or is detected) and "error:" is one of
1879 * the possible optional diagnostics -- it can be "error" or "warning"
1880 * or something else. Finally the line terminates with the actual
1881 * error message.
1883 * @param severity the severity of the warning or error
1884 * @param fmt the printf style format string
1886 static void nasm_verror_vc(int severity, const char *fmt, va_list ap)
1888 char *currentfile = NULL;
1889 int32_t lineno = 0;
1891 if (is_suppressed_warning(severity))
1892 return;
1894 if (!(severity & ERR_NOFILE))
1895 src_get(&lineno, &currentfile);
1897 if (currentfile) {
1898 fprintf(error_file, "%s(%"PRId32") : ", currentfile, lineno);
1899 nasm_free(currentfile);
1900 } else {
1901 fputs("nasm: ", error_file);
1904 nasm_verror_common(severity, fmt, ap);
1908 * check for supressed warning
1909 * checks for suppressed warning or pass one only warning and we're
1910 * not in pass 1
1912 * @param severity the severity of the warning or error
1913 * @return true if we should abort error/warning printing
1915 static bool is_suppressed_warning(int severity)
1918 /* Not a warning at all */
1919 if ((severity & ERR_MASK) != ERR_WARNING)
1920 return false;
1922 /* Might be a warning but suppresed explicitly */
1923 if (severity & ERR_WARN_MASK) {
1924 if (warning_on[WARN_IDX(severity)])
1925 return false;
1928 /* See if it's a pass-one only warning and we're not in pass one. */
1929 if (((severity & ERR_PASS1) && pass0 != 1) ||
1930 ((severity & ERR_PASS2) && pass0 != 2))
1931 return true;
1933 return true;
1937 * common error reporting
1938 * This is the common back end of the error reporting schemes currently
1939 * implemented. It prints the nature of the warning and then the
1940 * specific error message to error_file and may or may not return. It
1941 * doesn't return if the error severity is a "panic" or "debug" type.
1943 * @param severity the severity of the warning or error
1944 * @param fmt the printf style format string
1946 static void nasm_verror_common(int severity, const char *fmt, va_list args)
1948 char msg[1024];
1949 const char *pfx;
1951 switch (severity & (ERR_MASK|ERR_NO_SEVERITY)) {
1952 case ERR_WARNING:
1953 pfx = "warning: ";
1954 break;
1955 case ERR_NONFATAL:
1956 pfx = "error: ";
1957 break;
1958 case ERR_FATAL:
1959 pfx = "fatal: ";
1960 break;
1961 case ERR_PANIC:
1962 pfx = "panic: ";
1963 break;
1964 case ERR_DEBUG:
1965 pfx = "debug: ";
1966 break;
1967 default:
1968 pfx = "";
1969 break;
1972 vsnprintf(msg, sizeof msg, fmt, args);
1974 fprintf(error_file, "%s%s\n", pfx, msg);
1976 if (*listname)
1977 nasmlist.error(severity, pfx, msg);
1979 if (severity & ERR_USAGE)
1980 want_usage = true;
1982 switch (severity & ERR_MASK) {
1983 case ERR_DEBUG:
1984 /* no further action, by definition */
1985 break;
1986 case ERR_WARNING:
1987 /* Treat warnings as errors */
1988 if (warning_on[WARN_IDX(ERR_WARN_TERM)])
1989 terminate_after_phase = true;
1990 break;
1991 case ERR_NONFATAL:
1992 terminate_after_phase = true;
1993 break;
1994 case ERR_FATAL:
1995 if (ofile) {
1996 fclose(ofile);
1997 remove(outname);
1998 ofile = NULL;
2000 if (want_usage)
2001 usage();
2002 exit(1); /* instantly die */
2003 break; /* placate silly compilers */
2004 case ERR_PANIC:
2005 fflush(NULL);
2006 /* abort(); *//* halt, catch fire, and dump core */
2007 exit(3);
2008 break;
2012 static void usage(void)
2014 fputs("type `nasm -h' for help\n", error_file);
2017 #define BUF_DELTA 512
2019 static FILE *no_pp_fp;
2020 static ListGen *no_pp_list;
2021 static int32_t no_pp_lineinc;
2023 static void no_pp_reset(char *file, int pass, ListGen * listgen,
2024 StrList **deplist)
2026 src_set_fname(nasm_strdup(file));
2027 src_set_linnum(0);
2028 no_pp_lineinc = 1;
2029 no_pp_fp = fopen(file, "r");
2030 if (!no_pp_fp)
2031 nasm_error(ERR_FATAL | ERR_NOFILE,
2032 "unable to open input file `%s'", file);
2033 no_pp_list = listgen;
2034 (void)pass; /* placate compilers */
2036 if (deplist) {
2037 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
2038 sl->next = NULL;
2039 strcpy(sl->str, file);
2040 *deplist = sl;
2044 static char *no_pp_getline(void)
2046 char *buffer, *p, *q;
2047 int bufsize;
2049 bufsize = BUF_DELTA;
2050 buffer = nasm_malloc(BUF_DELTA);
2051 src_set_linnum(src_get_linnum() + no_pp_lineinc);
2053 while (1) { /* Loop to handle %line */
2055 p = buffer;
2056 while (1) { /* Loop to handle long lines */
2057 q = fgets(p, bufsize - (p - buffer), no_pp_fp);
2058 if (!q)
2059 break;
2060 p += strlen(p);
2061 if (p > buffer && p[-1] == '\n')
2062 break;
2063 if (p - buffer > bufsize - 10) {
2064 int offset;
2065 offset = p - buffer;
2066 bufsize += BUF_DELTA;
2067 buffer = nasm_realloc(buffer, bufsize);
2068 p = buffer + offset;
2072 if (!q && p == buffer) {
2073 nasm_free(buffer);
2074 return NULL;
2078 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
2079 * them are present at the end of the line.
2081 buffer[strcspn(buffer, "\r\n\032")] = '\0';
2083 if (!nasm_strnicmp(buffer, "%line", 5)) {
2084 int32_t ln;
2085 int li;
2086 char *nm = nasm_malloc(strlen(buffer));
2087 if (sscanf(buffer + 5, "%"PRId32"+%d %s", &ln, &li, nm) == 3) {
2088 nasm_free(src_set_fname(nm));
2089 src_set_linnum(ln);
2090 no_pp_lineinc = li;
2091 continue;
2093 nasm_free(nm);
2095 break;
2098 no_pp_list->line(LIST_READ, buffer);
2100 return buffer;
2103 static void no_pp_cleanup(int pass)
2105 (void)pass; /* placate GCC */
2106 if (no_pp_fp) {
2107 fclose(no_pp_fp);
2108 no_pp_fp = NULL;
2112 static uint32_t get_cpu(char *value)
2114 if (!strcmp(value, "8086"))
2115 return IF_8086;
2116 if (!strcmp(value, "186"))
2117 return IF_186;
2118 if (!strcmp(value, "286"))
2119 return IF_286;
2120 if (!strcmp(value, "386"))
2121 return IF_386;
2122 if (!strcmp(value, "486"))
2123 return IF_486;
2124 if (!strcmp(value, "586") || !nasm_stricmp(value, "pentium"))
2125 return IF_PENT;
2126 if (!strcmp(value, "686") ||
2127 !nasm_stricmp(value, "ppro") ||
2128 !nasm_stricmp(value, "pentiumpro") || !nasm_stricmp(value, "p2"))
2129 return IF_P6;
2130 if (!nasm_stricmp(value, "p3") || !nasm_stricmp(value, "katmai"))
2131 return IF_KATMAI;
2132 if (!nasm_stricmp(value, "p4") || /* is this right? -- jrc */
2133 !nasm_stricmp(value, "willamette"))
2134 return IF_WILLAMETTE;
2135 if (!nasm_stricmp(value, "prescott"))
2136 return IF_PRESCOTT;
2137 if (!nasm_stricmp(value, "x64") ||
2138 !nasm_stricmp(value, "x86-64"))
2139 return IF_X86_64;
2140 if (!nasm_stricmp(value, "ia64") ||
2141 !nasm_stricmp(value, "ia-64") ||
2142 !nasm_stricmp(value, "itanium") ||
2143 !nasm_stricmp(value, "itanic") || !nasm_stricmp(value, "merced"))
2144 return IF_IA64;
2146 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2147 "unknown 'cpu' type");
2149 return IF_PLEVEL; /* the maximum level */
2152 static int get_bits(char *value)
2154 int i;
2156 if ((i = atoi(value)) == 16)
2157 return i; /* set for a 16-bit segment */
2158 else if (i == 32) {
2159 if (cpu < IF_386) {
2160 nasm_error(ERR_NONFATAL,
2161 "cannot specify 32-bit segment on processor below a 386");
2162 i = 16;
2164 } else if (i == 64) {
2165 if (cpu < IF_X86_64) {
2166 nasm_error(ERR_NONFATAL,
2167 "cannot specify 64-bit segment on processor below an x86-64");
2168 i = 16;
2170 if (i != maxbits) {
2171 nasm_error(ERR_NONFATAL,
2172 "%s output format does not support 64-bit code",
2173 ofmt->shortname);
2174 i = 16;
2176 } else {
2177 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2178 "`%s' is not a valid segment size; must be 16, 32 or 64",
2179 value);
2180 i = 16;
2182 return i;