Various tab/space/comment cleanup
[nasm.git] / nasm.c
blobac2adde6bda56926b2c577e8c1a6dc2c1b84fc18
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 strcpy(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 |=
1518 OPFLAG_FORWARD;
1519 forwref = saa_rstruct(forwrefs);
1520 } while (forwref != NULL
1521 && forwref->lineno == globallineno);
1522 } else
1523 output_ins.forw_ref = false;
1525 if (output_ins.forw_ref) {
1526 if (passn == 1) {
1527 for (i = 0; i < output_ins.operands; i++) {
1528 if (output_ins.oprs[i].
1529 opflags & OPFLAG_FORWARD) {
1530 struct forwrefinfo *fwinf =
1531 (struct forwrefinfo *)
1532 saa_wstruct(forwrefs);
1533 fwinf->lineno = globallineno;
1534 fwinf->operand = i;
1541 /* forw_ref */
1542 if (output_ins.opcode == I_EQU) {
1543 if (pass1 == 1) {
1545 * Special `..' EQUs get processed in pass two,
1546 * except `..@' macro-processor EQUs which are done
1547 * in the normal place.
1549 if (!output_ins.label)
1550 nasm_error(ERR_NONFATAL,
1551 "EQU not preceded by label");
1553 else if (output_ins.label[0] != '.' ||
1554 output_ins.label[1] != '.' ||
1555 output_ins.label[2] == '@') {
1556 if (output_ins.operands == 1 &&
1557 (output_ins.oprs[0].type & IMMEDIATE) &&
1558 output_ins.oprs[0].wrt == NO_SEG) {
1559 bool isext = !!(output_ins.oprs[0].opflags
1560 & OPFLAG_EXTERN);
1561 def_label(output_ins.label,
1562 output_ins.oprs[0].segment,
1563 output_ins.oprs[0].offset, NULL,
1564 false, isext);
1565 } else if (output_ins.operands == 2
1566 && (output_ins.oprs[0].type & IMMEDIATE)
1567 && (output_ins.oprs[0].type & COLON)
1568 && output_ins.oprs[0].segment == NO_SEG
1569 && output_ins.oprs[0].wrt == NO_SEG
1570 && (output_ins.oprs[1].type & IMMEDIATE)
1571 && output_ins.oprs[1].segment == NO_SEG
1572 && output_ins.oprs[1].wrt == NO_SEG) {
1573 def_label(output_ins.label,
1574 output_ins.oprs[0].offset | SEG_ABS,
1575 output_ins.oprs[1].offset,
1576 NULL, false, false);
1577 } else
1578 nasm_error(ERR_NONFATAL,
1579 "bad syntax for EQU");
1581 } else {
1583 * Special `..' EQUs get processed here, except
1584 * `..@' macro processor EQUs which are done above.
1586 if (output_ins.label[0] == '.' &&
1587 output_ins.label[1] == '.' &&
1588 output_ins.label[2] != '@') {
1589 if (output_ins.operands == 1 &&
1590 (output_ins.oprs[0].type & IMMEDIATE)) {
1591 define_label(output_ins.label,
1592 output_ins.oprs[0].segment,
1593 output_ins.oprs[0].offset,
1594 NULL, false, false);
1595 } else if (output_ins.operands == 2
1596 && (output_ins.oprs[0].
1597 type & IMMEDIATE)
1598 && (output_ins.oprs[0].type & COLON)
1599 && output_ins.oprs[0].segment ==
1600 NO_SEG
1601 && (output_ins.oprs[1].
1602 type & IMMEDIATE)
1603 && output_ins.oprs[1].segment ==
1604 NO_SEG) {
1605 define_label(output_ins.label,
1606 output_ins.oprs[0].
1607 offset | SEG_ABS,
1608 output_ins.oprs[1].offset,
1609 NULL, false, false);
1610 } else
1611 nasm_error(ERR_NONFATAL,
1612 "bad syntax for EQU");
1615 } else { /* instruction isn't an EQU */
1617 if (pass1 == 1) {
1619 int64_t l = insn_size(location.segment, offs, sb, cpu,
1620 &output_ins, nasm_error);
1622 /* if (using_debug_info) && output_ins.opcode != -1) */
1623 if (using_debug_info)
1624 { /* fbk 03/25/01 */
1625 /* this is done here so we can do debug type info */
1626 int32_t typeinfo =
1627 TYS_ELEMENTS(output_ins.operands);
1628 switch (output_ins.opcode) {
1629 case I_RESB:
1630 typeinfo =
1631 TYS_ELEMENTS(output_ins.oprs[0].
1632 offset) | TY_BYTE;
1633 break;
1634 case I_RESW:
1635 typeinfo =
1636 TYS_ELEMENTS(output_ins.oprs[0].
1637 offset) | TY_WORD;
1638 break;
1639 case I_RESD:
1640 typeinfo =
1641 TYS_ELEMENTS(output_ins.oprs[0].
1642 offset) | TY_DWORD;
1643 break;
1644 case I_RESQ:
1645 typeinfo =
1646 TYS_ELEMENTS(output_ins.oprs[0].
1647 offset) | TY_QWORD;
1648 break;
1649 case I_REST:
1650 typeinfo =
1651 TYS_ELEMENTS(output_ins.oprs[0].
1652 offset) | TY_TBYTE;
1653 break;
1654 case I_RESO:
1655 typeinfo =
1656 TYS_ELEMENTS(output_ins.oprs[0].
1657 offset) | TY_OWORD;
1658 break;
1659 case I_RESY:
1660 typeinfo =
1661 TYS_ELEMENTS(output_ins.oprs[0].
1662 offset) | TY_YWORD;
1663 break;
1664 case I_DB:
1665 typeinfo |= TY_BYTE;
1666 break;
1667 case I_DW:
1668 typeinfo |= TY_WORD;
1669 break;
1670 case I_DD:
1671 if (output_ins.eops_float)
1672 typeinfo |= TY_FLOAT;
1673 else
1674 typeinfo |= TY_DWORD;
1675 break;
1676 case I_DQ:
1677 typeinfo |= TY_QWORD;
1678 break;
1679 case I_DT:
1680 typeinfo |= TY_TBYTE;
1681 break;
1682 case I_DO:
1683 typeinfo |= TY_OWORD;
1684 break;
1685 case I_DY:
1686 typeinfo |= TY_YWORD;
1687 break;
1688 default:
1689 typeinfo = TY_LABEL;
1693 dfmt->debug_typevalue(typeinfo);
1695 if (l != -1) {
1696 offs += l;
1697 SET_CURR_OFFS(offs);
1700 * else l == -1 => invalid instruction, which will be
1701 * flagged as an error on pass 2
1704 } else {
1705 offs += assemble(location.segment, offs, sb, cpu,
1706 &output_ins, ofmt, nasm_error,
1707 &nasmlist);
1708 SET_CURR_OFFS(offs);
1711 } /* not an EQU */
1712 cleanup_insn(&output_ins);
1714 nasm_free(line);
1715 location.offset = offs = GET_CURR_OFFS;
1716 } /* end while (line = preproc->getline... */
1718 if (pass0 == 2 && global_offset_changed && !terminate_after_phase)
1719 nasm_error(ERR_NONFATAL,
1720 "phase error detected at end of assembly.");
1722 if (pass1 == 1)
1723 preproc->cleanup(1);
1725 if ((passn > 1 && !global_offset_changed) || pass0 == 2) {
1726 pass0++;
1727 } else if (global_offset_changed &&
1728 global_offset_changed < prev_offset_changed) {
1729 prev_offset_changed = global_offset_changed;
1730 stall_count = 0;
1731 } else {
1732 stall_count++;
1735 if (terminate_after_phase)
1736 break;
1738 if ((stall_count > 997) || (passn >= pass_max)) {
1739 /* We get here if the labels don't converge
1740 * Example: FOO equ FOO + 1
1742 nasm_error(ERR_NONFATAL,
1743 "Can't find valid values for all labels "
1744 "after %d passes, giving up.", passn);
1745 nasm_error(ERR_NONFATAL,
1746 "Possible causes: recursive EQUs, macro abuse.");
1747 break;
1751 preproc->cleanup(0);
1752 nasmlist.cleanup();
1753 if (!terminate_after_phase && opt_verbose_info) {
1754 /* -On and -Ov switches */
1755 fprintf(stdout, "info: assembly required 1+%d+1 passes\n", passn-3);
1759 static enum directives getkw(char **directive, char **value)
1761 char *p, *q, *buf;
1763 buf = nasm_skip_spaces(*directive);
1765 /* it should be enclosed in [ ] */
1766 if (*buf != '[')
1767 return D_NONE;
1768 q = strchr(buf, ']');
1769 if (!q)
1770 return D_NONE;
1772 /* stip off the comments */
1773 p = strchr(buf, ';');
1774 if (p) {
1775 if (p < q) /* ouch! somwhere inside */
1776 return D_NONE;
1777 *p = '\0';
1780 /* no brace, no trailing spaces */
1781 *q = '\0';
1782 nasm_zap_spaces_rev(--q);
1784 /* directive */
1785 p = nasm_skip_spaces(++buf);
1786 q = nasm_skip_word(p);
1787 if (!q)
1788 return D_NONE; /* sigh... no value there */
1789 *q = '\0';
1790 *directive = p;
1792 /* and value finally */
1793 p = nasm_skip_spaces(++q);
1794 *value = p;
1796 return find_directive(*directive);
1800 * gnu style error reporting
1801 * This function prints an error message to error_file in the
1802 * style used by GNU. An example would be:
1803 * file.asm:50: error: blah blah blah
1804 * where file.asm is the name of the file, 50 is the line number on
1805 * which the error occurs (or is detected) and "error:" is one of
1806 * the possible optional diagnostics -- it can be "error" or "warning"
1807 * or something else. Finally the line terminates with the actual
1808 * error message.
1810 * @param severity the severity of the warning or error
1811 * @param fmt the printf style format string
1813 static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
1815 char *currentfile = NULL;
1816 int32_t lineno = 0;
1818 if (is_suppressed_warning(severity))
1819 return;
1821 if (!(severity & ERR_NOFILE))
1822 src_get(&lineno, &currentfile);
1824 if (currentfile) {
1825 fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno);
1826 nasm_free(currentfile);
1827 } else {
1828 fputs("nasm: ", error_file);
1831 nasm_verror_common(severity, fmt, ap);
1835 * MS style error reporting
1836 * This function prints an error message to error_file in the
1837 * style used by Visual C and some other Microsoft tools. An example
1838 * would be:
1839 * file.asm(50) : error: blah blah blah
1840 * where file.asm is the name of the file, 50 is the line number on
1841 * which the error occurs (or is detected) and "error:" is one of
1842 * the possible optional diagnostics -- it can be "error" or "warning"
1843 * or something else. Finally the line terminates with the actual
1844 * error message.
1846 * @param severity the severity of the warning or error
1847 * @param fmt the printf style format string
1849 static void nasm_verror_vc(int severity, const char *fmt, va_list ap)
1851 char *currentfile = NULL;
1852 int32_t lineno = 0;
1854 if (is_suppressed_warning(severity))
1855 return;
1857 if (!(severity & ERR_NOFILE))
1858 src_get(&lineno, &currentfile);
1860 if (currentfile) {
1861 fprintf(error_file, "%s(%"PRId32") : ", currentfile, lineno);
1862 nasm_free(currentfile);
1863 } else {
1864 fputs("nasm: ", error_file);
1867 nasm_verror_common(severity, fmt, ap);
1871 * check for supressed warning
1872 * checks for suppressed warning or pass one only warning and we're
1873 * not in pass 1
1875 * @param severity the severity of the warning or error
1876 * @return true if we should abort error/warning printing
1878 static bool is_suppressed_warning(int severity)
1881 * See if it's a suppressed warning.
1883 return (severity & ERR_MASK) == ERR_WARNING &&
1884 (((severity & ERR_WARN_MASK) != 0 &&
1885 !warning_on[(severity & ERR_WARN_MASK) >> ERR_WARN_SHR]) ||
1886 /* See if it's a pass-one only warning and we're not in pass one. */
1887 ((severity & ERR_PASS1) && pass0 != 1) ||
1888 ((severity & ERR_PASS2) && pass0 != 2));
1892 * common error reporting
1893 * This is the common back end of the error reporting schemes currently
1894 * implemented. It prints the nature of the warning and then the
1895 * specific error message to error_file and may or may not return. It
1896 * doesn't return if the error severity is a "panic" or "debug" type.
1898 * @param severity the severity of the warning or error
1899 * @param fmt the printf style format string
1901 static void nasm_verror_common(int severity, const char *fmt, va_list args)
1903 char msg[1024];
1904 const char *pfx;
1906 switch (severity & (ERR_MASK|ERR_NO_SEVERITY)) {
1907 case ERR_WARNING:
1908 pfx = "warning: ";
1909 break;
1910 case ERR_NONFATAL:
1911 pfx = "error: ";
1912 break;
1913 case ERR_FATAL:
1914 pfx = "fatal: ";
1915 break;
1916 case ERR_PANIC:
1917 pfx = "panic: ";
1918 break;
1919 case ERR_DEBUG:
1920 pfx = "debug: ";
1921 break;
1922 default:
1923 pfx = "";
1924 break;
1927 vsnprintf(msg, sizeof msg, fmt, args);
1929 fprintf(error_file, "%s%s\n", pfx, msg);
1931 if (*listname)
1932 nasmlist.error(severity, pfx, msg);
1934 if (severity & ERR_USAGE)
1935 want_usage = true;
1937 switch (severity & ERR_MASK) {
1938 case ERR_DEBUG:
1939 /* no further action, by definition */
1940 break;
1941 case ERR_WARNING:
1942 if (warning_on[0]) /* Treat warnings as errors */
1943 terminate_after_phase = true;
1944 break;
1945 case ERR_NONFATAL:
1946 terminate_after_phase = true;
1947 break;
1948 case ERR_FATAL:
1949 if (ofile) {
1950 fclose(ofile);
1951 remove(outname);
1952 ofile = NULL;
1954 if (want_usage)
1955 usage();
1956 exit(1); /* instantly die */
1957 break; /* placate silly compilers */
1958 case ERR_PANIC:
1959 fflush(NULL);
1960 /* abort(); *//* halt, catch fire, and dump core */
1961 exit(3);
1962 break;
1966 static void usage(void)
1968 fputs("type `nasm -h' for help\n", error_file);
1971 #define BUF_DELTA 512
1973 static FILE *no_pp_fp;
1974 static ListGen *no_pp_list;
1975 static int32_t no_pp_lineinc;
1977 static void no_pp_reset(char *file, int pass, ListGen * listgen,
1978 StrList **deplist)
1980 src_set_fname(nasm_strdup(file));
1981 src_set_linnum(0);
1982 no_pp_lineinc = 1;
1983 no_pp_fp = fopen(file, "r");
1984 if (!no_pp_fp)
1985 nasm_error(ERR_FATAL | ERR_NOFILE,
1986 "unable to open input file `%s'", file);
1987 no_pp_list = listgen;
1988 (void)pass; /* placate compilers */
1990 if (deplist) {
1991 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
1992 sl->next = NULL;
1993 strcpy(sl->str, file);
1994 *deplist = sl;
1998 static char *no_pp_getline(void)
2000 char *buffer, *p, *q;
2001 int bufsize;
2003 bufsize = BUF_DELTA;
2004 buffer = nasm_malloc(BUF_DELTA);
2005 src_set_linnum(src_get_linnum() + no_pp_lineinc);
2007 while (1) { /* Loop to handle %line */
2009 p = buffer;
2010 while (1) { /* Loop to handle long lines */
2011 q = fgets(p, bufsize - (p - buffer), no_pp_fp);
2012 if (!q)
2013 break;
2014 p += strlen(p);
2015 if (p > buffer && p[-1] == '\n')
2016 break;
2017 if (p - buffer > bufsize - 10) {
2018 int offset;
2019 offset = p - buffer;
2020 bufsize += BUF_DELTA;
2021 buffer = nasm_realloc(buffer, bufsize);
2022 p = buffer + offset;
2026 if (!q && p == buffer) {
2027 nasm_free(buffer);
2028 return NULL;
2032 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
2033 * them are present at the end of the line.
2035 buffer[strcspn(buffer, "\r\n\032")] = '\0';
2037 if (!nasm_strnicmp(buffer, "%line", 5)) {
2038 int32_t ln;
2039 int li;
2040 char *nm = nasm_malloc(strlen(buffer));
2041 if (sscanf(buffer + 5, "%"PRId32"+%d %s", &ln, &li, nm) == 3) {
2042 nasm_free(src_set_fname(nm));
2043 src_set_linnum(ln);
2044 no_pp_lineinc = li;
2045 continue;
2047 nasm_free(nm);
2049 break;
2052 no_pp_list->line(LIST_READ, buffer);
2054 return buffer;
2057 static void no_pp_cleanup(int pass)
2059 (void)pass; /* placate GCC */
2060 fclose(no_pp_fp);
2063 static uint32_t get_cpu(char *value)
2065 if (!strcmp(value, "8086"))
2066 return IF_8086;
2067 if (!strcmp(value, "186"))
2068 return IF_186;
2069 if (!strcmp(value, "286"))
2070 return IF_286;
2071 if (!strcmp(value, "386"))
2072 return IF_386;
2073 if (!strcmp(value, "486"))
2074 return IF_486;
2075 if (!strcmp(value, "586") || !nasm_stricmp(value, "pentium"))
2076 return IF_PENT;
2077 if (!strcmp(value, "686") ||
2078 !nasm_stricmp(value, "ppro") ||
2079 !nasm_stricmp(value, "pentiumpro") || !nasm_stricmp(value, "p2"))
2080 return IF_P6;
2081 if (!nasm_stricmp(value, "p3") || !nasm_stricmp(value, "katmai"))
2082 return IF_KATMAI;
2083 if (!nasm_stricmp(value, "p4") || /* is this right? -- jrc */
2084 !nasm_stricmp(value, "willamette"))
2085 return IF_WILLAMETTE;
2086 if (!nasm_stricmp(value, "prescott"))
2087 return IF_PRESCOTT;
2088 if (!nasm_stricmp(value, "x64") ||
2089 !nasm_stricmp(value, "x86-64"))
2090 return IF_X86_64;
2091 if (!nasm_stricmp(value, "ia64") ||
2092 !nasm_stricmp(value, "ia-64") ||
2093 !nasm_stricmp(value, "itanium") ||
2094 !nasm_stricmp(value, "itanic") || !nasm_stricmp(value, "merced"))
2095 return IF_IA64;
2097 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2098 "unknown 'cpu' type");
2100 return IF_PLEVEL; /* the maximum level */
2103 static int get_bits(char *value)
2105 int i;
2107 if ((i = atoi(value)) == 16)
2108 return i; /* set for a 16-bit segment */
2109 else if (i == 32) {
2110 if (cpu < IF_386) {
2111 nasm_error(ERR_NONFATAL,
2112 "cannot specify 32-bit segment on processor below a 386");
2113 i = 16;
2115 } else if (i == 64) {
2116 if (cpu < IF_X86_64) {
2117 nasm_error(ERR_NONFATAL,
2118 "cannot specify 64-bit segment on processor below an x86-64");
2119 i = 16;
2121 if (i != maxbits) {
2122 nasm_error(ERR_NONFATAL,
2123 "%s output format does not support 64-bit code",
2124 ofmt->shortname);
2125 i = 16;
2127 } else {
2128 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2129 "`%s' is not a valid segment size; must be 16, 32 or 64",
2130 value);
2131 i = 16;
2133 return i;
2136 /* end of nasm.c */