A few more AVX2 spec instructions
[nasm-cyr.git] / nasm.c
blob252223239cee6c90bfae944574f182e3adc99d46
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;
874 if (i <= ERR_WARN_MAX)
875 warning_on_global[i] = do_warn;
876 else if (!nasm_stricmp(param, "all"))
877 for (i = 1; i <= ERR_WARN_MAX; i++)
878 warning_on_global[i] = do_warn;
879 else if (!nasm_stricmp(param, "none"))
880 for (i = 1; i <= ERR_WARN_MAX; i++)
881 warning_on_global[i] = !do_warn;
882 else
883 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
884 "invalid warning `%s'", param);
885 break;
887 case 'M':
888 switch (p[2]) {
889 case 0:
890 operating_mode = op_depend;
891 break;
892 case 'G':
893 operating_mode = op_depend;
894 depend_missing_ok = true;
895 break;
896 case 'P':
897 depend_emit_phony = true;
898 break;
899 case 'D':
900 depend_file = q;
901 advance = true;
902 break;
903 case 'T':
904 depend_target = q;
905 advance = true;
906 break;
907 case 'Q':
908 depend_target = quote_for_make(q);
909 advance = true;
910 break;
911 default:
912 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
913 "unknown dependency option `-M%c'", p[2]);
914 break;
916 if (advance && (!q || !q[0])) {
917 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
918 "option `-M%c' requires a parameter", p[2]);
919 break;
921 break;
923 case '-':
925 int s;
927 if (p[2] == 0) { /* -- => stop processing options */
928 stopoptions = 1;
929 break;
931 for (s = 0; textopts[s].label; s++) {
932 if (!nasm_stricmp(p + 2, textopts[s].label)) {
933 break;
937 switch (s) {
939 case OPT_PREFIX:
940 case OPT_POSTFIX:
942 if (!q) {
943 nasm_error(ERR_NONFATAL | ERR_NOFILE |
944 ERR_USAGE,
945 "option `--%s' requires an argument",
946 p + 2);
947 break;
948 } else {
949 advance = 1, param = q;
952 if (s == OPT_PREFIX) {
953 strncpy(lprefix, param, PREFIX_MAX - 1);
954 lprefix[PREFIX_MAX - 1] = 0;
955 break;
957 if (s == OPT_POSTFIX) {
958 strncpy(lpostfix, param, POSTFIX_MAX - 1);
959 lpostfix[POSTFIX_MAX - 1] = 0;
960 break;
962 break;
964 default:
966 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
967 "unrecognised option `--%s'", p + 2);
968 break;
971 break;
974 default:
975 if (!ofmt->setinfo(GI_SWITCH, &p))
976 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
977 "unrecognised option `-%c'", p[1]);
978 break;
980 } else {
981 if (*inname) {
982 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
983 "more than one input file specified");
984 } else {
985 copy_filename(inname, p);
989 return advance;
992 #define ARG_BUF_DELTA 128
994 static void process_respfile(FILE * rfile)
996 char *buffer, *p, *q, *prevarg;
997 int bufsize, prevargsize;
999 bufsize = prevargsize = ARG_BUF_DELTA;
1000 buffer = nasm_malloc(ARG_BUF_DELTA);
1001 prevarg = nasm_malloc(ARG_BUF_DELTA);
1002 prevarg[0] = '\0';
1004 while (1) { /* Loop to handle all lines in file */
1005 p = buffer;
1006 while (1) { /* Loop to handle long lines */
1007 q = fgets(p, bufsize - (p - buffer), rfile);
1008 if (!q)
1009 break;
1010 p += strlen(p);
1011 if (p > buffer && p[-1] == '\n')
1012 break;
1013 if (p - buffer > bufsize - 10) {
1014 int offset;
1015 offset = p - buffer;
1016 bufsize += ARG_BUF_DELTA;
1017 buffer = nasm_realloc(buffer, bufsize);
1018 p = buffer + offset;
1022 if (!q && p == buffer) {
1023 if (prevarg[0])
1024 process_arg(prevarg, NULL);
1025 nasm_free(buffer);
1026 nasm_free(prevarg);
1027 return;
1031 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1032 * them are present at the end of the line.
1034 *(p = &buffer[strcspn(buffer, "\r\n\032")]) = '\0';
1036 while (p > buffer && nasm_isspace(p[-1]))
1037 *--p = '\0';
1039 p = nasm_skip_spaces(buffer);
1041 if (process_arg(prevarg, p))
1042 *p = '\0';
1044 if ((int) strlen(p) > prevargsize - 10) {
1045 prevargsize += ARG_BUF_DELTA;
1046 prevarg = nasm_realloc(prevarg, prevargsize);
1048 strncpy(prevarg, p, prevargsize);
1052 /* Function to process args from a string of args, rather than the
1053 * argv array. Used by the environment variable and response file
1054 * processing.
1056 static void process_args(char *args)
1058 char *p, *q, *arg, *prevarg;
1059 char separator = ' ';
1061 p = args;
1062 if (*p && *p != '-')
1063 separator = *p++;
1064 arg = NULL;
1065 while (*p) {
1066 q = p;
1067 while (*p && *p != separator)
1068 p++;
1069 while (*p == separator)
1070 *p++ = '\0';
1071 prevarg = arg;
1072 arg = q;
1073 if (process_arg(prevarg, arg))
1074 arg = NULL;
1076 if (arg)
1077 process_arg(arg, NULL);
1080 static void process_response_file(const char *file)
1082 char str[2048];
1083 FILE *f = fopen(file, "r");
1084 if (!f) {
1085 perror(file);
1086 exit(-1);
1088 while (fgets(str, sizeof str, f)) {
1089 process_args(str);
1091 fclose(f);
1094 static void parse_cmdline(int argc, char **argv)
1096 FILE *rfile;
1097 char *envreal, *envcopy = NULL, *p, *arg;
1098 int i;
1100 *inname = *outname = *listname = *errname = '\0';
1101 for (i = 0; i <= ERR_WARN_MAX; i++)
1102 warning_on_global[i] = warnings[i].enabled;
1105 * First, process the NASMENV environment variable.
1107 envreal = getenv("NASMENV");
1108 arg = NULL;
1109 if (envreal) {
1110 envcopy = nasm_strdup(envreal);
1111 process_args(envcopy);
1112 nasm_free(envcopy);
1116 * Now process the actual command line.
1118 while (--argc) {
1119 bool advance;
1120 argv++;
1121 if (argv[0][0] == '@') {
1122 /* We have a response file, so process this as a set of
1123 * arguments like the environment variable. This allows us
1124 * to have multiple arguments on a single line, which is
1125 * different to the -@resp file processing below for regular
1126 * NASM.
1128 process_response_file(argv[0]+1);
1129 argc--;
1130 argv++;
1132 if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
1133 p = get_param(argv[0], argc > 1 ? argv[1] : NULL, &advance);
1134 if (p) {
1135 rfile = fopen(p, "r");
1136 if (rfile) {
1137 process_respfile(rfile);
1138 fclose(rfile);
1139 } else
1140 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1141 "unable to open response file `%s'", p);
1143 } else
1144 advance = process_arg(argv[0], argc > 1 ? argv[1] : NULL);
1145 argv += advance, argc -= advance;
1148 /* Look for basic command line typos. This definitely doesn't
1149 catch all errors, but it might help cases of fumbled fingers. */
1150 if (!*inname)
1151 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
1152 "no input file specified");
1153 else if (!strcmp(inname, errname) ||
1154 !strcmp(inname, outname) ||
1155 !strcmp(inname, listname) ||
1156 (depend_file && !strcmp(inname, depend_file)))
1157 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1158 "file `%s' is both input and output file",
1159 inname);
1161 if (*errname) {
1162 error_file = fopen(errname, "w");
1163 if (!error_file) {
1164 error_file = stderr; /* Revert to default! */
1165 nasm_error(ERR_FATAL | ERR_NOFILE | ERR_USAGE,
1166 "cannot open file `%s' for error messages",
1167 errname);
1172 static enum directives getkw(char **directive, char **value);
1174 static void assemble_file(char *fname, StrList **depend_ptr)
1176 char *directive, *value, *p, *q, *special, *line;
1177 insn output_ins;
1178 int i, validid;
1179 bool rn_error;
1180 int32_t seg;
1181 int64_t offs;
1182 struct tokenval tokval;
1183 expr *e;
1184 int pass_max;
1186 if (cmd_sb == 32 && cmd_cpu < IF_386)
1187 nasm_error(ERR_FATAL, "command line: "
1188 "32-bit segment size requires a higher cpu");
1190 pass_max = prev_offset_changed = (INT_MAX >> 1) + 2; /* Almost unlimited */
1191 for (passn = 1; pass0 <= 2; passn++) {
1192 int pass1, pass2;
1193 ldfunc def_label;
1195 pass1 = pass0 == 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1196 pass2 = passn > 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1197 /* pass0 0, 0, 0, ..., 1, 2 */
1199 def_label = passn > 1 ? redefine_label : define_label;
1201 globalbits = sb = cmd_sb; /* set 'bits' to command line default */
1202 cpu = cmd_cpu;
1203 if (pass0 == 2) {
1204 if (*listname)
1205 nasmlist.init(listname, nasm_error);
1207 in_abs_seg = false;
1208 global_offset_changed = 0; /* set by redefine_label */
1209 location.segment = ofmt->section(NULL, pass2, &sb);
1210 globalbits = sb;
1211 if (passn > 1) {
1212 saa_rewind(forwrefs);
1213 forwref = saa_rstruct(forwrefs);
1214 raa_free(offsets);
1215 offsets = raa_init();
1217 preproc->reset(fname, pass1, &nasmlist,
1218 pass1 == 2 ? depend_ptr : NULL);
1219 memcpy(warning_on, warning_on_global, (ERR_WARN_MAX+1) * sizeof(bool));
1221 globallineno = 0;
1222 if (passn == 1)
1223 location.known = true;
1224 location.offset = offs = GET_CURR_OFFS;
1226 while ((line = preproc->getline())) {
1227 enum directives d;
1228 globallineno++;
1231 * Here we parse our directives; this is not handled by the
1232 * 'real' parser. This really should be a separate function.
1234 directive = line;
1235 d = getkw(&directive, &value);
1236 if (d) {
1237 int err = 0;
1239 switch (d) {
1240 case D_SEGMENT: /* [SEGMENT n] */
1241 case D_SECTION:
1242 seg = ofmt->section(value, pass2, &sb);
1243 if (seg == NO_SEG) {
1244 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1245 "segment name `%s' not recognized",
1246 value);
1247 } else {
1248 in_abs_seg = false;
1249 location.segment = seg;
1251 break;
1252 case D_SECTALIGN: /* [SECTALIGN n] */
1253 if (*value) {
1254 stdscan_reset();
1255 stdscan_set(value);
1256 tokval.t_type = TOKEN_INVALID;
1257 e = evaluate(stdscan, NULL, &tokval, NULL, pass2, nasm_error, NULL);
1258 if (e) {
1259 unsigned int align = (unsigned int)e->value;
1260 if ((uint64_t)e->value > 0x7fffffff) {
1262 * FIXME: Please make some sane message here
1263 * ofmt should have some 'check' method which
1264 * would report segment alignment bounds.
1266 nasm_error(ERR_FATAL,
1267 "incorrect segment alignment `%s'", value);
1268 } else if (!is_power2(align)) {
1269 nasm_error(ERR_NONFATAL,
1270 "segment alignment `%s' is not power of two",
1271 value);
1273 /* callee should be able to handle all details */
1274 ofmt->sectalign(location.segment, align);
1277 break;
1278 case D_EXTERN: /* [EXTERN label:special] */
1279 if (*value == '$')
1280 value++; /* skip initial $ if present */
1281 if (pass0 == 2) {
1282 q = value;
1283 while (*q && *q != ':')
1284 q++;
1285 if (*q == ':') {
1286 *q++ = '\0';
1287 ofmt->symdef(value, 0L, 0L, 3, q);
1289 } else if (passn == 1) {
1290 q = value;
1291 validid = true;
1292 if (!isidstart(*q))
1293 validid = false;
1294 while (*q && *q != ':') {
1295 if (!isidchar(*q))
1296 validid = false;
1297 q++;
1299 if (!validid) {
1300 nasm_error(ERR_NONFATAL,
1301 "identifier expected after EXTERN");
1302 break;
1304 if (*q == ':') {
1305 *q++ = '\0';
1306 special = q;
1307 } else
1308 special = NULL;
1309 if (!is_extern(value)) { /* allow re-EXTERN to be ignored */
1310 int temp = pass0;
1311 pass0 = 1; /* fake pass 1 in labels.c */
1312 declare_as_global(value, special);
1313 define_label(value, seg_alloc(), 0L, NULL,
1314 false, true);
1315 pass0 = temp;
1317 } /* else pass0 == 1 */
1318 break;
1319 case D_BITS: /* [BITS bits] */
1320 globalbits = sb = get_bits(value);
1321 break;
1322 case D_GLOBAL: /* [GLOBAL symbol:special] */
1323 if (*value == '$')
1324 value++; /* skip initial $ if present */
1325 if (pass0 == 2) { /* pass 2 */
1326 q = value;
1327 while (*q && *q != ':')
1328 q++;
1329 if (*q == ':') {
1330 *q++ = '\0';
1331 ofmt->symdef(value, 0L, 0L, 3, q);
1333 } else if (pass2 == 1) { /* pass == 1 */
1334 q = value;
1335 validid = true;
1336 if (!isidstart(*q))
1337 validid = false;
1338 while (*q && *q != ':') {
1339 if (!isidchar(*q))
1340 validid = false;
1341 q++;
1343 if (!validid) {
1344 nasm_error(ERR_NONFATAL,
1345 "identifier expected after GLOBAL");
1346 break;
1348 if (*q == ':') {
1349 *q++ = '\0';
1350 special = q;
1351 } else
1352 special = NULL;
1353 declare_as_global(value, special);
1354 } /* pass == 1 */
1355 break;
1356 case D_COMMON: /* [COMMON symbol size:special] */
1358 int64_t size;
1360 if (*value == '$')
1361 value++; /* skip initial $ if present */
1362 p = value;
1363 validid = true;
1364 if (!isidstart(*p))
1365 validid = false;
1366 while (*p && !nasm_isspace(*p)) {
1367 if (!isidchar(*p))
1368 validid = false;
1369 p++;
1371 if (!validid) {
1372 nasm_error(ERR_NONFATAL,
1373 "identifier expected after COMMON");
1374 break;
1376 if (*p) {
1377 p = nasm_zap_spaces_fwd(p);
1378 q = p;
1379 while (*q && *q != ':')
1380 q++;
1381 if (*q == ':') {
1382 *q++ = '\0';
1383 special = q;
1384 } else {
1385 special = NULL;
1387 size = readnum(p, &rn_error);
1388 if (rn_error) {
1389 nasm_error(ERR_NONFATAL,
1390 "invalid size specified"
1391 " in COMMON declaration");
1392 break;
1394 } else {
1395 nasm_error(ERR_NONFATAL,
1396 "no size specified in"
1397 " COMMON declaration");
1398 break;
1401 if (pass0 < 2) {
1402 define_common(value, seg_alloc(), size, special);
1403 } else if (pass0 == 2) {
1404 if (special)
1405 ofmt->symdef(value, 0L, 0L, 3, special);
1407 break;
1409 case D_ABSOLUTE: /* [ABSOLUTE address] */
1410 stdscan_reset();
1411 stdscan_set(value);
1412 tokval.t_type = TOKEN_INVALID;
1413 e = evaluate(stdscan, NULL, &tokval, NULL, pass2,
1414 nasm_error, NULL);
1415 if (e) {
1416 if (!is_reloc(e))
1417 nasm_error(pass0 ==
1418 1 ? ERR_NONFATAL : ERR_PANIC,
1419 "cannot use non-relocatable expression as "
1420 "ABSOLUTE address");
1421 else {
1422 abs_seg = reloc_seg(e);
1423 abs_offset = reloc_value(e);
1425 } else if (passn == 1)
1426 abs_offset = 0x100; /* don't go near zero in case of / */
1427 else
1428 nasm_error(ERR_PANIC, "invalid ABSOLUTE address "
1429 "in pass two");
1430 in_abs_seg = true;
1431 location.segment = NO_SEG;
1432 break;
1433 case D_DEBUG: /* [DEBUG] */
1435 char debugid[128];
1436 bool badid, overlong;
1438 p = value;
1439 q = debugid;
1440 badid = overlong = false;
1441 if (!isidstart(*p)) {
1442 badid = true;
1443 } else {
1444 while (*p && !nasm_isspace(*p)) {
1445 if (q >= debugid + sizeof debugid - 1) {
1446 overlong = true;
1447 break;
1449 if (!isidchar(*p))
1450 badid = true;
1451 *q++ = *p++;
1453 *q = 0;
1455 if (badid) {
1456 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1457 "identifier expected after DEBUG");
1458 break;
1460 if (overlong) {
1461 nasm_error(passn == 1 ? ERR_NONFATAL : ERR_PANIC,
1462 "DEBUG identifier too long");
1463 break;
1465 p = nasm_skip_spaces(p);
1466 if (pass0 == 2)
1467 dfmt->debug_directive(debugid, p);
1468 break;
1470 case D_WARNING: /* [WARNING {+|-|*}warn-name] */
1471 value = nasm_skip_spaces(value);
1472 switch(*value) {
1473 case '-': validid = 0; value++; break;
1474 case '+': validid = 1; value++; break;
1475 case '*': validid = 2; value++; break;
1476 default: validid = 1; break;
1479 for (i = 1; i <= ERR_WARN_MAX; i++)
1480 if (!nasm_stricmp(value, warnings[i].name))
1481 break;
1482 if (i <= ERR_WARN_MAX) {
1483 switch(validid) {
1484 case 0:
1485 warning_on[i] = false;
1486 break;
1487 case 1:
1488 warning_on[i] = true;
1489 break;
1490 case 2:
1491 warning_on[i] = warning_on_global[i];
1492 break;
1495 else
1496 nasm_error(ERR_NONFATAL,
1497 "invalid warning id in WARNING directive");
1498 break;
1499 case D_CPU: /* [CPU] */
1500 cpu = get_cpu(value);
1501 break;
1502 case D_LIST: /* [LIST {+|-}] */
1503 value = nasm_skip_spaces(value);
1504 if (*value == '+') {
1505 user_nolist = 0;
1506 } else {
1507 if (*value == '-') {
1508 user_nolist = 1;
1509 } else {
1510 err = 1;
1513 break;
1514 case D_DEFAULT: /* [DEFAULT] */
1515 stdscan_reset();
1516 stdscan_set(value);
1517 tokval.t_type = TOKEN_INVALID;
1518 if (stdscan(NULL, &tokval) == TOKEN_SPECIAL) {
1519 switch ((int)tokval.t_integer) {
1520 case S_REL:
1521 globalrel = 1;
1522 break;
1523 case S_ABS:
1524 globalrel = 0;
1525 break;
1526 default:
1527 err = 1;
1528 break;
1530 } else {
1531 err = 1;
1533 break;
1534 case D_FLOAT:
1535 if (float_option(value)) {
1536 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1537 "unknown 'float' directive: %s",
1538 value);
1540 break;
1541 default:
1542 if (ofmt->directive(d, value, pass2))
1543 break;
1544 /* else fall through */
1545 case D_unknown:
1546 nasm_error(pass1 == 1 ? ERR_NONFATAL : ERR_PANIC,
1547 "unrecognised directive [%s]",
1548 directive);
1549 break;
1551 if (err) {
1552 nasm_error(ERR_NONFATAL,
1553 "invalid parameter to [%s] directive",
1554 directive);
1556 } else { /* it isn't a directive */
1557 parse_line(pass1, line, &output_ins, def_label);
1559 if (optimizing > 0) {
1560 if (forwref != NULL && globallineno == forwref->lineno) {
1561 output_ins.forw_ref = true;
1562 do {
1563 output_ins.oprs[forwref->operand].opflags |= OPFLAG_FORWARD;
1564 forwref = saa_rstruct(forwrefs);
1565 } while (forwref != NULL
1566 && forwref->lineno == globallineno);
1567 } else
1568 output_ins.forw_ref = false;
1570 if (output_ins.forw_ref) {
1571 if (passn == 1) {
1572 for (i = 0; i < output_ins.operands; i++) {
1573 if (output_ins.oprs[i].opflags & OPFLAG_FORWARD) {
1574 struct forwrefinfo *fwinf =
1575 (struct forwrefinfo *)
1576 saa_wstruct(forwrefs);
1577 fwinf->lineno = globallineno;
1578 fwinf->operand = i;
1585 /* forw_ref */
1586 if (output_ins.opcode == I_EQU) {
1587 if (pass1 == 1) {
1589 * Special `..' EQUs get processed in pass two,
1590 * except `..@' macro-processor EQUs which are done
1591 * in the normal place.
1593 if (!output_ins.label)
1594 nasm_error(ERR_NONFATAL,
1595 "EQU not preceded by label");
1597 else if (output_ins.label[0] != '.' ||
1598 output_ins.label[1] != '.' ||
1599 output_ins.label[2] == '@') {
1600 if (output_ins.operands == 1 &&
1601 (output_ins.oprs[0].type & IMMEDIATE) &&
1602 output_ins.oprs[0].wrt == NO_SEG) {
1603 bool isext = !!(output_ins.oprs[0].opflags
1604 & OPFLAG_EXTERN);
1605 def_label(output_ins.label,
1606 output_ins.oprs[0].segment,
1607 output_ins.oprs[0].offset, NULL,
1608 false, isext);
1609 } else if (output_ins.operands == 2
1610 && (output_ins.oprs[0].type & IMMEDIATE)
1611 && (output_ins.oprs[0].type & COLON)
1612 && output_ins.oprs[0].segment == NO_SEG
1613 && output_ins.oprs[0].wrt == NO_SEG
1614 && (output_ins.oprs[1].type & IMMEDIATE)
1615 && output_ins.oprs[1].segment == NO_SEG
1616 && output_ins.oprs[1].wrt == NO_SEG) {
1617 def_label(output_ins.label,
1618 output_ins.oprs[0].offset | SEG_ABS,
1619 output_ins.oprs[1].offset,
1620 NULL, false, false);
1621 } else
1622 nasm_error(ERR_NONFATAL,
1623 "bad syntax for EQU");
1625 } else {
1627 * Special `..' EQUs get processed here, except
1628 * `..@' macro processor EQUs which are done above.
1630 if (output_ins.label[0] == '.' &&
1631 output_ins.label[1] == '.' &&
1632 output_ins.label[2] != '@') {
1633 if (output_ins.operands == 1 &&
1634 (output_ins.oprs[0].type & IMMEDIATE)) {
1635 define_label(output_ins.label,
1636 output_ins.oprs[0].segment,
1637 output_ins.oprs[0].offset,
1638 NULL, false, false);
1639 } else if (output_ins.operands == 2
1640 && (output_ins.oprs[0].type & IMMEDIATE)
1641 && (output_ins.oprs[0].type & COLON)
1642 && output_ins.oprs[0].segment == NO_SEG
1643 && (output_ins.oprs[1].type & IMMEDIATE)
1644 && output_ins.oprs[1].segment == NO_SEG) {
1645 define_label(output_ins.label,
1646 output_ins.oprs[0].offset | SEG_ABS,
1647 output_ins.oprs[1].offset,
1648 NULL, false, false);
1649 } else
1650 nasm_error(ERR_NONFATAL,
1651 "bad syntax for EQU");
1654 } else { /* instruction isn't an EQU */
1656 if (pass1 == 1) {
1658 int64_t l = insn_size(location.segment, offs, sb, cpu,
1659 &output_ins, nasm_error);
1661 /* if (using_debug_info) && output_ins.opcode != -1) */
1662 if (using_debug_info)
1663 { /* fbk 03/25/01 */
1664 /* this is done here so we can do debug type info */
1665 int32_t typeinfo =
1666 TYS_ELEMENTS(output_ins.operands);
1667 switch (output_ins.opcode) {
1668 case I_RESB:
1669 typeinfo =
1670 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;
1671 break;
1672 case I_RESW:
1673 typeinfo =
1674 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;
1675 break;
1676 case I_RESD:
1677 typeinfo =
1678 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;
1679 break;
1680 case I_RESQ:
1681 typeinfo =
1682 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;
1683 break;
1684 case I_REST:
1685 typeinfo =
1686 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;
1687 break;
1688 case I_RESO:
1689 typeinfo =
1690 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_OWORD;
1691 break;
1692 case I_RESY:
1693 typeinfo =
1694 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_YWORD;
1695 break;
1696 case I_DB:
1697 typeinfo |= TY_BYTE;
1698 break;
1699 case I_DW:
1700 typeinfo |= TY_WORD;
1701 break;
1702 case I_DD:
1703 if (output_ins.eops_float)
1704 typeinfo |= TY_FLOAT;
1705 else
1706 typeinfo |= TY_DWORD;
1707 break;
1708 case I_DQ:
1709 typeinfo |= TY_QWORD;
1710 break;
1711 case I_DT:
1712 typeinfo |= TY_TBYTE;
1713 break;
1714 case I_DO:
1715 typeinfo |= TY_OWORD;
1716 break;
1717 case I_DY:
1718 typeinfo |= TY_YWORD;
1719 break;
1720 default:
1721 typeinfo = TY_LABEL;
1725 dfmt->debug_typevalue(typeinfo);
1727 if (l != -1) {
1728 offs += l;
1729 SET_CURR_OFFS(offs);
1732 * else l == -1 => invalid instruction, which will be
1733 * flagged as an error on pass 2
1736 } else {
1737 offs += assemble(location.segment, offs, sb, cpu,
1738 &output_ins, ofmt, nasm_error,
1739 &nasmlist);
1740 SET_CURR_OFFS(offs);
1743 } /* not an EQU */
1744 cleanup_insn(&output_ins);
1746 nasm_free(line);
1747 location.offset = offs = GET_CURR_OFFS;
1748 } /* end while (line = preproc->getline... */
1750 if (pass0 == 2 && global_offset_changed && !terminate_after_phase)
1751 nasm_error(ERR_NONFATAL,
1752 "phase error detected at end of assembly.");
1754 if (pass1 == 1)
1755 preproc->cleanup(1);
1757 if ((passn > 1 && !global_offset_changed) || pass0 == 2) {
1758 pass0++;
1759 } else if (global_offset_changed &&
1760 global_offset_changed < prev_offset_changed) {
1761 prev_offset_changed = global_offset_changed;
1762 stall_count = 0;
1763 } else {
1764 stall_count++;
1767 if (terminate_after_phase)
1768 break;
1770 if ((stall_count > 997) || (passn >= pass_max)) {
1771 /* We get here if the labels don't converge
1772 * Example: FOO equ FOO + 1
1774 nasm_error(ERR_NONFATAL,
1775 "Can't find valid values for all labels "
1776 "after %d passes, giving up.", passn);
1777 nasm_error(ERR_NONFATAL,
1778 "Possible causes: recursive EQUs, macro abuse.");
1779 break;
1783 preproc->cleanup(0);
1784 nasmlist.cleanup();
1785 if (!terminate_after_phase && opt_verbose_info) {
1786 /* -On and -Ov switches */
1787 fprintf(stdout, "info: assembly required 1+%d+1 passes\n", passn-3);
1791 static enum directives getkw(char **directive, char **value)
1793 char *p, *q, *buf;
1795 buf = nasm_skip_spaces(*directive);
1797 /* it should be enclosed in [ ] */
1798 if (*buf != '[')
1799 return D_none;
1800 q = strchr(buf, ']');
1801 if (!q)
1802 return D_none;
1804 /* stip off the comments */
1805 p = strchr(buf, ';');
1806 if (p) {
1807 if (p < q) /* ouch! somwhere inside */
1808 return D_none;
1809 *p = '\0';
1812 /* no brace, no trailing spaces */
1813 *q = '\0';
1814 nasm_zap_spaces_rev(--q);
1816 /* directive */
1817 p = nasm_skip_spaces(++buf);
1818 q = nasm_skip_word(p);
1819 if (!q)
1820 return D_none; /* sigh... no value there */
1821 *q = '\0';
1822 *directive = p;
1824 /* and value finally */
1825 p = nasm_skip_spaces(++q);
1826 *value = p;
1828 return find_directive(*directive);
1832 * gnu style error reporting
1833 * This function prints an error message to error_file in the
1834 * style used by GNU. An example would be:
1835 * file.asm:50: error: blah blah blah
1836 * where file.asm is the name of the file, 50 is the line number on
1837 * which the error occurs (or is detected) and "error:" is one of
1838 * the possible optional diagnostics -- it can be "error" or "warning"
1839 * or something else. Finally the line terminates with the actual
1840 * error message.
1842 * @param severity the severity of the warning or error
1843 * @param fmt the printf style format string
1845 static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
1847 char *currentfile = NULL;
1848 int32_t lineno = 0;
1850 if (is_suppressed_warning(severity))
1851 return;
1853 if (!(severity & ERR_NOFILE))
1854 src_get(&lineno, &currentfile);
1856 if (currentfile) {
1857 fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno);
1858 nasm_free(currentfile);
1859 } else {
1860 fputs("nasm: ", error_file);
1863 nasm_verror_common(severity, fmt, ap);
1867 * MS style error reporting
1868 * This function prints an error message to error_file in the
1869 * style used by Visual C and some other Microsoft tools. An example
1870 * would be:
1871 * file.asm(50) : error: blah blah blah
1872 * where file.asm is the name of the file, 50 is the line number on
1873 * which the error occurs (or is detected) and "error:" is one of
1874 * the possible optional diagnostics -- it can be "error" or "warning"
1875 * or something else. Finally the line terminates with the actual
1876 * error message.
1878 * @param severity the severity of the warning or error
1879 * @param fmt the printf style format string
1881 static void nasm_verror_vc(int severity, const char *fmt, va_list ap)
1883 char *currentfile = NULL;
1884 int32_t lineno = 0;
1886 if (is_suppressed_warning(severity))
1887 return;
1889 if (!(severity & ERR_NOFILE))
1890 src_get(&lineno, &currentfile);
1892 if (currentfile) {
1893 fprintf(error_file, "%s(%"PRId32") : ", currentfile, lineno);
1894 nasm_free(currentfile);
1895 } else {
1896 fputs("nasm: ", error_file);
1899 nasm_verror_common(severity, fmt, ap);
1903 * check for supressed warning
1904 * checks for suppressed warning or pass one only warning and we're
1905 * not in pass 1
1907 * @param severity the severity of the warning or error
1908 * @return true if we should abort error/warning printing
1910 static bool is_suppressed_warning(int severity)
1913 * See if it's a suppressed warning.
1915 return (severity & ERR_MASK) == ERR_WARNING &&
1916 (((severity & ERR_WARN_MASK) != 0 &&
1917 !warning_on[(severity & ERR_WARN_MASK) >> ERR_WARN_SHR]) ||
1918 /* See if it's a pass-one only warning and we're not in pass one. */
1919 ((severity & ERR_PASS1) && pass0 != 1) ||
1920 ((severity & ERR_PASS2) && pass0 != 2));
1924 * common error reporting
1925 * This is the common back end of the error reporting schemes currently
1926 * implemented. It prints the nature of the warning and then the
1927 * specific error message to error_file and may or may not return. It
1928 * doesn't return if the error severity is a "panic" or "debug" type.
1930 * @param severity the severity of the warning or error
1931 * @param fmt the printf style format string
1933 static void nasm_verror_common(int severity, const char *fmt, va_list args)
1935 char msg[1024];
1936 const char *pfx;
1938 switch (severity & (ERR_MASK|ERR_NO_SEVERITY)) {
1939 case ERR_WARNING:
1940 pfx = "warning: ";
1941 break;
1942 case ERR_NONFATAL:
1943 pfx = "error: ";
1944 break;
1945 case ERR_FATAL:
1946 pfx = "fatal: ";
1947 break;
1948 case ERR_PANIC:
1949 pfx = "panic: ";
1950 break;
1951 case ERR_DEBUG:
1952 pfx = "debug: ";
1953 break;
1954 default:
1955 pfx = "";
1956 break;
1959 vsnprintf(msg, sizeof msg, fmt, args);
1961 fprintf(error_file, "%s%s\n", pfx, msg);
1963 if (*listname)
1964 nasmlist.error(severity, pfx, msg);
1966 if (severity & ERR_USAGE)
1967 want_usage = true;
1969 switch (severity & ERR_MASK) {
1970 case ERR_DEBUG:
1971 /* no further action, by definition */
1972 break;
1973 case ERR_WARNING:
1974 if (warning_on[0]) /* Treat warnings as errors */
1975 terminate_after_phase = true;
1976 break;
1977 case ERR_NONFATAL:
1978 terminate_after_phase = true;
1979 break;
1980 case ERR_FATAL:
1981 if (ofile) {
1982 fclose(ofile);
1983 remove(outname);
1984 ofile = NULL;
1986 if (want_usage)
1987 usage();
1988 exit(1); /* instantly die */
1989 break; /* placate silly compilers */
1990 case ERR_PANIC:
1991 fflush(NULL);
1992 /* abort(); *//* halt, catch fire, and dump core */
1993 exit(3);
1994 break;
1998 static void usage(void)
2000 fputs("type `nasm -h' for help\n", error_file);
2003 #define BUF_DELTA 512
2005 static FILE *no_pp_fp;
2006 static ListGen *no_pp_list;
2007 static int32_t no_pp_lineinc;
2009 static void no_pp_reset(char *file, int pass, ListGen * listgen,
2010 StrList **deplist)
2012 src_set_fname(nasm_strdup(file));
2013 src_set_linnum(0);
2014 no_pp_lineinc = 1;
2015 no_pp_fp = fopen(file, "r");
2016 if (!no_pp_fp)
2017 nasm_error(ERR_FATAL | ERR_NOFILE,
2018 "unable to open input file `%s'", file);
2019 no_pp_list = listgen;
2020 (void)pass; /* placate compilers */
2022 if (deplist) {
2023 StrList *sl = nasm_malloc(strlen(file)+1+sizeof sl->next);
2024 sl->next = NULL;
2025 strcpy(sl->str, file);
2026 *deplist = sl;
2030 static char *no_pp_getline(void)
2032 char *buffer, *p, *q;
2033 int bufsize;
2035 bufsize = BUF_DELTA;
2036 buffer = nasm_malloc(BUF_DELTA);
2037 src_set_linnum(src_get_linnum() + no_pp_lineinc);
2039 while (1) { /* Loop to handle %line */
2041 p = buffer;
2042 while (1) { /* Loop to handle long lines */
2043 q = fgets(p, bufsize - (p - buffer), no_pp_fp);
2044 if (!q)
2045 break;
2046 p += strlen(p);
2047 if (p > buffer && p[-1] == '\n')
2048 break;
2049 if (p - buffer > bufsize - 10) {
2050 int offset;
2051 offset = p - buffer;
2052 bufsize += BUF_DELTA;
2053 buffer = nasm_realloc(buffer, bufsize);
2054 p = buffer + offset;
2058 if (!q && p == buffer) {
2059 nasm_free(buffer);
2060 return NULL;
2064 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
2065 * them are present at the end of the line.
2067 buffer[strcspn(buffer, "\r\n\032")] = '\0';
2069 if (!nasm_strnicmp(buffer, "%line", 5)) {
2070 int32_t ln;
2071 int li;
2072 char *nm = nasm_malloc(strlen(buffer));
2073 if (sscanf(buffer + 5, "%"PRId32"+%d %s", &ln, &li, nm) == 3) {
2074 nasm_free(src_set_fname(nm));
2075 src_set_linnum(ln);
2076 no_pp_lineinc = li;
2077 continue;
2079 nasm_free(nm);
2081 break;
2084 no_pp_list->line(LIST_READ, buffer);
2086 return buffer;
2089 static void no_pp_cleanup(int pass)
2091 (void)pass; /* placate GCC */
2092 if (no_pp_fp) {
2093 fclose(no_pp_fp);
2094 no_pp_fp = NULL;
2098 static uint32_t get_cpu(char *value)
2100 if (!strcmp(value, "8086"))
2101 return IF_8086;
2102 if (!strcmp(value, "186"))
2103 return IF_186;
2104 if (!strcmp(value, "286"))
2105 return IF_286;
2106 if (!strcmp(value, "386"))
2107 return IF_386;
2108 if (!strcmp(value, "486"))
2109 return IF_486;
2110 if (!strcmp(value, "586") || !nasm_stricmp(value, "pentium"))
2111 return IF_PENT;
2112 if (!strcmp(value, "686") ||
2113 !nasm_stricmp(value, "ppro") ||
2114 !nasm_stricmp(value, "pentiumpro") || !nasm_stricmp(value, "p2"))
2115 return IF_P6;
2116 if (!nasm_stricmp(value, "p3") || !nasm_stricmp(value, "katmai"))
2117 return IF_KATMAI;
2118 if (!nasm_stricmp(value, "p4") || /* is this right? -- jrc */
2119 !nasm_stricmp(value, "willamette"))
2120 return IF_WILLAMETTE;
2121 if (!nasm_stricmp(value, "prescott"))
2122 return IF_PRESCOTT;
2123 if (!nasm_stricmp(value, "x64") ||
2124 !nasm_stricmp(value, "x86-64"))
2125 return IF_X86_64;
2126 if (!nasm_stricmp(value, "ia64") ||
2127 !nasm_stricmp(value, "ia-64") ||
2128 !nasm_stricmp(value, "itanium") ||
2129 !nasm_stricmp(value, "itanic") || !nasm_stricmp(value, "merced"))
2130 return IF_IA64;
2132 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2133 "unknown 'cpu' type");
2135 return IF_PLEVEL; /* the maximum level */
2138 static int get_bits(char *value)
2140 int i;
2142 if ((i = atoi(value)) == 16)
2143 return i; /* set for a 16-bit segment */
2144 else if (i == 32) {
2145 if (cpu < IF_386) {
2146 nasm_error(ERR_NONFATAL,
2147 "cannot specify 32-bit segment on processor below a 386");
2148 i = 16;
2150 } else if (i == 64) {
2151 if (cpu < IF_X86_64) {
2152 nasm_error(ERR_NONFATAL,
2153 "cannot specify 64-bit segment on processor below an x86-64");
2154 i = 16;
2156 if (i != maxbits) {
2157 nasm_error(ERR_NONFATAL,
2158 "%s output format does not support 64-bit code",
2159 ofmt->shortname);
2160 i = 16;
2162 } else {
2163 nasm_error(pass0 < 2 ? ERR_NONFATAL : ERR_FATAL,
2164 "`%s' is not a valid segment size; must be 16, 32 or 64",
2165 value);
2166 i = 16;
2168 return i;