1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2017 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
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
67 * This is the maximum number of optimization passes to do. If we ever
68 * find a case where the optimizer doesn't naturally converge, we might
69 * have to drop this value so the assembler doesn't appear to just hang.
71 #define MAX_OPTIMIZE (INT_MAX >> 1)
73 struct forwrefinfo
{ /* info held on forward refs. */
78 static void parse_cmdline(int, char **, int);
79 static void assemble_file(char *, StrList
**);
80 static bool is_suppressed_warning(int severity
);
81 static bool skip_this_pass(int severity
);
82 static void nasm_verror_gnu(int severity
, const char *fmt
, va_list args
);
83 static void nasm_verror_vc(int severity
, const char *fmt
, va_list args
);
84 static void nasm_verror_common(int severity
, const char *fmt
, va_list args
);
85 static void usage(void);
87 static bool using_debug_info
, opt_verbose_info
;
88 static const char *debug_format
;
90 bool tasm_compatible_mode
= false;
92 static int pass1
, pass2
; /* XXX: Get rid of these, they are redundant */
96 static time_t official_compile_time
;
98 static char inname
[FILENAME_MAX
];
99 static char outname
[FILENAME_MAX
];
100 static char listname
[FILENAME_MAX
];
101 static char errname
[FILENAME_MAX
];
102 static int globallineno
; /* for forward-reference tracking */
103 /* static int pass = 0; */
104 const struct ofmt
*ofmt
= &OF_DEFAULT
;
105 const struct ofmt_alias
*ofmt_alias
= NULL
;
106 const struct dfmt
*dfmt
;
108 static FILE *error_file
; /* Where to write error messages */
111 int optimizing
= MAX_OPTIMIZE
; /* number of optimization passes to take */
112 static int cmd_sb
= 16; /* by default */
115 static iflag_t cmd_cpu
;
117 struct location location
;
118 bool in_absolute
; /* Flag we are in ABSOLUTE seg */
119 struct location absolute
; /* Segment/offset inside ABSOLUTE */
121 static struct RAA
*offsets
;
123 static struct SAA
*forwrefs
; /* keep track of forward references */
124 static const struct forwrefinfo
*forwref
;
126 static const struct preproc_ops
*preproc
;
128 #define OP_NORMAL (1u << 0)
129 #define OP_PREPROCESS (1u << 1)
130 #define OP_DEPEND (1u << 2)
132 static unsigned int operating_mode
;
134 /* Dependency flags */
135 static bool depend_emit_phony
= false;
136 static bool depend_missing_ok
= false;
137 static const char *depend_target
= NULL
;
138 static const char *depend_file
= NULL
;
140 static bool want_usage
;
141 static bool terminate_after_phase
;
142 bool user_nolist
= false;
144 static char *quote_for_make(const char *str
);
146 static int64_t get_curr_offs(void)
148 return in_absolute
? absolute
.offset
: raa_read(offsets
, location
.segment
);
151 static void set_curr_offs(int64_t l_off
)
154 absolute
.offset
= l_off
;
156 offsets
= raa_write(offsets
, location
.segment
, l_off
);
159 static void nasm_fputs(const char *line
, FILE * outfile
)
162 fputs(line
, outfile
);
168 /* Convert a struct tm to a POSIX-style time constant */
169 static int64_t make_posix_time(struct tm
*tm
)
172 int64_t y
= tm
->tm_year
;
174 /* See IEEE 1003.1:2004, section 4.14 */
176 t
= (y
-70)*365 + (y
-69)/4 - (y
-1)/100 + (y
+299)/400;
188 static void define_macros_early(void)
191 struct tm lt
, *lt_p
, gm
, *gm_p
;
194 lt_p
= localtime(&official_compile_time
);
198 strftime(temp
, sizeof temp
, "__DATE__=\"%Y-%m-%d\"", <
);
199 preproc
->pre_define(temp
);
200 strftime(temp
, sizeof temp
, "__DATE_NUM__=%Y%m%d", <
);
201 preproc
->pre_define(temp
);
202 strftime(temp
, sizeof temp
, "__TIME__=\"%H:%M:%S\"", <
);
203 preproc
->pre_define(temp
);
204 strftime(temp
, sizeof temp
, "__TIME_NUM__=%H%M%S", <
);
205 preproc
->pre_define(temp
);
208 gm_p
= gmtime(&official_compile_time
);
212 strftime(temp
, sizeof temp
, "__UTC_DATE__=\"%Y-%m-%d\"", &gm
);
213 preproc
->pre_define(temp
);
214 strftime(temp
, sizeof temp
, "__UTC_DATE_NUM__=%Y%m%d", &gm
);
215 preproc
->pre_define(temp
);
216 strftime(temp
, sizeof temp
, "__UTC_TIME__=\"%H:%M:%S\"", &gm
);
217 preproc
->pre_define(temp
);
218 strftime(temp
, sizeof temp
, "__UTC_TIME_NUM__=%H%M%S", &gm
);
219 preproc
->pre_define(temp
);
223 posix_time
= make_posix_time(&gm
);
225 posix_time
= make_posix_time(<
);
230 snprintf(temp
, sizeof temp
, "__POSIX_TIME__=%"PRId64
, posix_time
);
231 preproc
->pre_define(temp
);
235 static void define_macros_late(void)
240 * In case if output format is defined by alias
241 * we have to put shortname of the alias itself here
242 * otherwise ABI backward compatibility gets broken.
244 snprintf(temp
, sizeof(temp
), "__OUTPUT_FORMAT__=%s",
245 ofmt_alias
? ofmt_alias
->shortname
: ofmt
->shortname
);
246 preproc
->pre_define(temp
);
249 static void emit_dependencies(StrList
*list
)
255 if (depend_file
&& strcmp(depend_file
, "-")) {
256 deps
= nasm_open_write(depend_file
, NF_TEXT
);
258 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
259 "unable to write dependency file `%s'", depend_file
);
266 linepos
= fprintf(deps
, "%s:", depend_target
);
267 list_for_each(l
, list
) {
268 char *file
= quote_for_make(l
->str
);
270 if (linepos
+ len
> 62 && linepos
> 1) {
271 fprintf(deps
, " \\\n ");
274 fprintf(deps
, " %s", file
);
278 fprintf(deps
, "\n\n");
280 list_for_each_safe(l
, nl
, list
) {
281 if (depend_emit_phony
)
282 fprintf(deps
, "%s:\n\n", l
->str
);
290 int main(int argc
, char **argv
)
292 StrList
*depend_list
= NULL
, **depend_ptr
;
294 time(&official_compile_time
);
296 iflag_set(&cpu
, IF_PLEVEL
);
297 iflag_set(&cmd_cpu
, IF_PLEVEL
);
300 want_usage
= terminate_after_phase
= false;
301 nasm_set_verror(nasm_verror_gnu
);
308 offsets
= raa_init();
309 forwrefs
= saa_init((int32_t)sizeof(struct forwrefinfo
));
312 operating_mode
= OP_NORMAL
;
314 parse_cmdline(argc
, argv
, 1);
315 if (terminate_after_phase
) {
322 * Define some macros dependent on the runtime, but not
323 * on the command line (as those are scanned in cmdline pass 2.)
326 define_macros_early();
328 parse_cmdline(argc
, argv
, 2);
329 if (terminate_after_phase
) {
335 /* Save away the default state of warnings */
336 memcpy(warning_state_init
, warning_state
, sizeof warning_state
);
338 if (!using_debug_info
) {
339 /* No debug info, redirect to the null backend (empty stubs) */
340 dfmt
= &null_debug_form
;
341 } else if (!debug_format
) {
342 /* Default debug format for this backend */
343 dfmt
= ofmt
->default_dfmt
;
345 dfmt
= dfmt_find(ofmt
, debug_format
);
347 nasm_fatal(ERR_NOFILE
| ERR_USAGE
,
348 "unrecognized debug format `%s' for"
349 " output format `%s'",
350 debug_format
, ofmt
->shortname
);
355 preproc
->extra_stdmac(ofmt
->stdmac
);
357 /* define some macros dependent of command-line */
358 define_macros_late();
360 depend_ptr
= (depend_file
|| (operating_mode
& OP_DEPEND
)) ? &depend_list
: NULL
;
362 depend_target
= quote_for_make(outname
);
364 if (operating_mode
& OP_DEPEND
) {
367 if (depend_missing_ok
)
368 preproc
->include_path(NULL
); /* "assume generated" */
370 preproc
->reset(inname
, 0, depend_ptr
);
371 if (outname
[0] == '\0')
372 ofmt
->filename(inname
, outname
);
374 while ((line
= preproc
->getline()))
377 } else if (operating_mode
& OP_PREPROCESS
) {
379 const char *file_name
= NULL
;
380 int32_t prior_linnum
= 0;
384 ofile
= nasm_open_write(outname
, NF_TEXT
);
386 nasm_fatal(ERR_NOFILE
,
387 "unable to open output file `%s'",
392 location
.known
= false;
395 preproc
->reset(inname
, 3, depend_ptr
);
397 /* Revert all warnings to the default state */
398 memcpy(warning_state
, warning_state_init
, sizeof warning_state
);
400 while ((line
= preproc
->getline())) {
402 * We generate %line directives if needed for later programs
404 int32_t linnum
= prior_linnum
+= lineinc
;
405 int altline
= src_get(&linnum
, &file_name
);
407 if (altline
== 1 && lineinc
== 1)
408 nasm_fputs("", ofile
);
410 lineinc
= (altline
!= -1 || lineinc
!= 1);
411 fprintf(ofile
? ofile
: stdout
,
412 "%%line %"PRId32
"+%d %s\n", linnum
, lineinc
,
415 prior_linnum
= linnum
;
417 nasm_fputs(line
, ofile
);
423 if (ofile
&& terminate_after_phase
)
428 if (operating_mode
& OP_NORMAL
) {
430 * We must call ofmt->filename _anyway_, even if the user
431 * has specified their own output file, because some
432 * formats (eg OBJ and COFF) use ofmt->filename to find out
433 * the name of the input file and then put that inside the
436 ofmt
->filename(inname
, outname
);
438 ofile
= nasm_open_write(outname
, (ofmt
->flags
& OFMT_TEXT
) ? NF_TEXT
: NF_BINARY
);
440 nasm_fatal(ERR_NOFILE
,
441 "unable to open output file `%s'", outname
);
444 * We must call init_labels() before ofmt->init() since
445 * some object formats will want to define labels in their
446 * init routines. (eg OS/2 defines the FLAT group)
453 assemble_file(inname
, depend_ptr
);
455 if (!terminate_after_phase
) {
460 nasm_error(ERR_NONFATAL
|ERR_NOFILE
,
461 "write error on output file `%s'", outname
);
462 terminate_after_phase
= true;
468 if (terminate_after_phase
)
474 if (depend_list
&& !terminate_after_phase
)
475 emit_dependencies(depend_list
);
486 return terminate_after_phase
;
490 * Get a parameter for a command line option.
491 * First arg must be in the form of e.g. -f...
493 static char *get_param(char *p
, char *q
, bool *advance
)
496 if (p
[2]) /* the parameter's in the option */
497 return nasm_skip_spaces(p
+ 2);
502 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
503 "option `-%c' requires an argument", p
[1]);
510 static void copy_filename(char *dst
, const char *src
)
512 size_t len
= strlen(src
);
514 if (len
>= (size_t)FILENAME_MAX
) {
515 nasm_fatal(ERR_NOFILE
, "file name too long");
518 strncpy(dst
, src
, FILENAME_MAX
);
522 * Convert a string to Make-safe form
524 static char *quote_for_make(const char *str
)
529 size_t n
= 1; /* Terminating zero */
535 for (p
= str
; *p
; p
++) {
539 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
559 /* Convert N backslashes at the end of filename to 2N backslashes */
563 os
= q
= nasm_malloc(n
);
566 for (p
= str
; *p
; p
++) {
612 static const struct textargs textopts
[] = {
613 {"prefix", OPT_PREFIX
},
614 {"postfix", OPT_POSTFIX
},
618 static void show_version(void)
620 printf("NASM version %s compiled on %s%s\n",
621 nasm_version
, nasm_date
, nasm_compile_options
);
625 static bool stopoptions
= false;
626 static bool process_arg(char *p
, char *q
, int pass
)
630 bool advance
= false;
635 if (p
[0] == '-' && !stopoptions
) {
636 if (strchr("oOfpPdDiIlFXuUZwW", p
[1])) {
637 /* These parameters take values */
638 if (!(param
= get_param(p
, q
, &advance
)))
648 case 'o': /* output file */
650 copy_filename(outname
, param
);
653 case 'f': /* output format */
655 ofmt
= ofmt_find(param
, &ofmt_alias
);
657 nasm_fatal(ERR_NOFILE
| ERR_USAGE
,
658 "unrecognised output format `%s' - "
659 "use -hf for a list", param
);
664 case 'O': /* Optimization level */
669 /* Naked -O == -Ox */
670 optimizing
= MAX_OPTIMIZE
;
674 case '0': case '1': case '2': case '3': case '4':
675 case '5': case '6': case '7': case '8': case '9':
676 opt
= strtoul(param
, ¶m
, 10);
678 /* -O0 -> optimizing == -1, 0.98 behaviour */
679 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
681 optimizing
= opt
- 1;
689 opt_verbose_info
= true;
694 optimizing
= MAX_OPTIMIZE
;
699 "unknown optimization option -O%c\n",
704 if (optimizing
> MAX_OPTIMIZE
)
705 optimizing
= MAX_OPTIMIZE
;
710 case 'p': /* pre-include */
713 preproc
->pre_include(param
);
716 case 'd': /* pre-define */
719 preproc
->pre_define(param
);
722 case 'u': /* un-define */
725 preproc
->pre_undefine(param
);
728 case 'i': /* include search path */
731 preproc
->include_path(param
);
734 case 'l': /* listing file */
736 copy_filename(listname
, param
);
739 case 'Z': /* error messages file */
741 copy_filename(errname
, param
);
744 case 'F': /* specify debug format */
746 using_debug_info
= true;
747 debug_format
= param
;
751 case 'X': /* specify error reporting format */
753 if (nasm_stricmp("vc", param
) == 0)
754 nasm_set_verror(nasm_verror_vc
);
755 else if (nasm_stricmp("gnu", param
) == 0)
756 nasm_set_verror(nasm_verror_gnu
);
758 nasm_fatal(ERR_NOFILE
| ERR_USAGE
,
759 "unrecognized error reporting format `%s'",
766 using_debug_info
= true;
768 debug_format
= nasm_skip_spaces(p
+ 2);
774 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
776 " [options...] [--] filename\n"
777 " or nasm -v (or --v) for version info\n\n"
778 " -t assemble in SciTech TASM compatible mode\n");
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 " -g generate debugging information\n\n"
792 " -F format select a debugging format\n\n"
793 " -gformat same as -g -F format\n\n"
794 " -o outfile write output to an outfile\n\n"
795 " -f format select an output format\n\n"
796 " -l listfile write listing to a listfile\n\n"
797 " -I<path> adds a pathname to the include file path\n");
799 (" -O<digit> optimize branch offsets\n"
800 " -O0: No optimization\n"
801 " -O1: Minimal optimization\n"
802 " -Ox: Multipass optimization (default)\n\n"
803 " -P<file> pre-includes a file\n"
804 " -D<macro>[=<value>] pre-defines a macro\n"
805 " -U<macro> undefines a macro\n"
806 " -X<format> specifies error reporting format (gnu or vc)\n"
807 " -w+foo enables warning foo (equiv. -Wfoo)\n"
808 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
809 " -w[+-]error[=foo] can be used to promote warnings to errors\n"
810 " -h show invocation summary and exit\n\n"
811 "--prefix,--postfix\n"
812 " these options prepend or append the given string\n"
813 " to all extern and global variables\n"
815 "Response files should contain command line parameters,\n"
818 "Warnings for the -W/-w options:\n");
819 for (i
= 0; i
<= ERR_WARN_ALL
; i
++)
820 printf(" %-23s %s%s\n",
821 warnings
[i
].name
, warnings
[i
].help
,
822 i
== ERR_WARN_ALL
? "\n" :
823 warnings
[i
].enabled
? " (default on)" :
826 printf("valid output formats for -f are"
827 " (`*' denotes default):\n");
828 ofmt_list(ofmt
, stdout
);
830 printf("For a list of valid output formats, use -hf.\n");
831 printf("For a list of debug formats, use -f <form> -y.\n");
833 exit(0); /* never need usage message here */
837 printf("\nvalid debug formats for '%s' output format are"
838 " ('*' denotes default):\n", ofmt
->shortname
);
839 dfmt_list(ofmt
, stdout
);
845 tasm_compatible_mode
= true;
852 case 'e': /* preprocess only */
855 operating_mode
= OP_PREPROCESS
;
858 case 'a': /* assemble only - don't preprocess */
860 preproc
= &preproc_nop
;
866 if (!set_warning_status(param
)) {
867 nasm_error(ERR_WARNING
|ERR_NOFILE
|ERR_WARN_UNK_WARNING
,
868 "unknown warning option: %s", param
);
877 operating_mode
= OP_DEPEND
;
880 operating_mode
= OP_DEPEND
;
881 depend_missing_ok
= true;
884 depend_emit_phony
= true;
887 operating_mode
= OP_NORMAL
;
900 depend_target
= quote_for_make(q
);
904 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
905 "unknown dependency option `-M%c'", p
[2]);
908 if (advance
&& (!q
|| !q
[0])) {
909 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
910 "option `-M%c' requires a parameter", p
[2]);
920 if (p
[2] == 0) { /* -- => stop processing options */
925 if (!nasm_stricmp(p
, "--v"))
928 if (!nasm_stricmp(p
, "--version"))
931 for (s
= 0; textopts
[s
].label
; s
++) {
932 if (!nasm_stricmp(p
+ 2, textopts
[s
].label
)) {
942 nasm_error(ERR_NONFATAL
| ERR_NOFILE
|
944 "option `--%s' requires an argument",
948 advance
= 1, param
= q
;
954 strlcpy(lprefix
, param
, PREFIX_MAX
);
958 strlcpy(lpostfix
, param
, POSTFIX_MAX
);
969 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
970 "unrecognised option `--%s'", p
+ 2);
978 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
979 "unrecognised option `-%c'", p
[1]);
982 } else if (pass
== 2) {
984 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
985 "more than one input file specified");
987 copy_filename(inname
, p
);
994 #define ARG_BUF_DELTA 128
996 static void process_respfile(FILE * rfile
, int pass
)
998 char *buffer
, *p
, *q
, *prevarg
;
999 int bufsize
, prevargsize
;
1001 bufsize
= prevargsize
= ARG_BUF_DELTA
;
1002 buffer
= nasm_malloc(ARG_BUF_DELTA
);
1003 prevarg
= nasm_malloc(ARG_BUF_DELTA
);
1006 while (1) { /* Loop to handle all lines in file */
1008 while (1) { /* Loop to handle long lines */
1009 q
= fgets(p
, bufsize
- (p
- buffer
), rfile
);
1013 if (p
> buffer
&& p
[-1] == '\n')
1015 if (p
- buffer
> bufsize
- 10) {
1017 offset
= p
- buffer
;
1018 bufsize
+= ARG_BUF_DELTA
;
1019 buffer
= nasm_realloc(buffer
, bufsize
);
1020 p
= buffer
+ offset
;
1024 if (!q
&& p
== buffer
) {
1026 process_arg(prevarg
, NULL
, pass
);
1033 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1034 * them are present at the end of the line.
1036 *(p
= &buffer
[strcspn(buffer
, "\r\n\032")]) = '\0';
1038 while (p
> buffer
&& nasm_isspace(p
[-1]))
1041 p
= nasm_skip_spaces(buffer
);
1043 if (process_arg(prevarg
, p
, pass
))
1046 if ((int) strlen(p
) > prevargsize
- 10) {
1047 prevargsize
+= ARG_BUF_DELTA
;
1048 prevarg
= nasm_realloc(prevarg
, prevargsize
);
1050 strncpy(prevarg
, p
, prevargsize
);
1054 /* Function to process args from a string of args, rather than the
1055 * argv array. Used by the environment variable and response file
1058 static void process_args(char *args
, int pass
)
1060 char *p
, *q
, *arg
, *prevarg
;
1061 char separator
= ' ';
1064 if (*p
&& *p
!= '-')
1069 while (*p
&& *p
!= separator
)
1071 while (*p
== separator
)
1075 if (process_arg(prevarg
, arg
, pass
))
1079 process_arg(arg
, NULL
, pass
);
1082 static void process_response_file(const char *file
, int pass
)
1085 FILE *f
= nasm_open_read(file
, NF_TEXT
);
1090 while (fgets(str
, sizeof str
, f
)) {
1091 process_args(str
, pass
);
1096 static void parse_cmdline(int argc
, char **argv
, int pass
)
1099 char *envreal
, *envcopy
= NULL
, *p
;
1102 *inname
= *outname
= *listname
= *errname
= '\0';
1104 /* Initialize all the warnings to their default state */
1105 for (i
= 0; i
< ERR_WARN_ALL
; i
++) {
1106 warning_state_init
[i
] = warning_state
[i
] =
1107 warnings
[i
].enabled
? WARN_ST_ENABLED
: 0;
1111 * First, process the NASMENV environment variable.
1113 envreal
= getenv("NASMENV");
1115 envcopy
= nasm_strdup(envreal
);
1116 process_args(envcopy
, pass
);
1121 * Now process the actual command line.
1126 if (argv
[0][0] == '@') {
1128 * We have a response file, so process this as a set of
1129 * arguments like the environment variable. This allows us
1130 * to have multiple arguments on a single line, which is
1131 * different to the -@resp file processing below for regular
1134 process_response_file(argv
[0]+1, pass
);
1138 if (!stopoptions
&& argv
[0][0] == '-' && argv
[0][1] == '@') {
1139 p
= get_param(argv
[0], argc
> 1 ? argv
[1] : NULL
, &advance
);
1141 rfile
= nasm_open_read(p
, NF_TEXT
);
1143 process_respfile(rfile
, pass
);
1146 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1147 "unable to open response file `%s'", p
);
1150 advance
= process_arg(argv
[0], argc
> 1 ? argv
[1] : NULL
, pass
);
1151 argv
+= advance
, argc
-= advance
;
1155 * Look for basic command line typos. This definitely doesn't
1156 * catch all errors, but it might help cases of fumbled fingers.
1162 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1163 "no input file specified");
1164 else if (!strcmp(inname
, errname
) ||
1165 !strcmp(inname
, outname
) ||
1166 !strcmp(inname
, listname
) ||
1167 (depend_file
&& !strcmp(inname
, depend_file
)))
1168 nasm_fatal(ERR_NOFILE
| ERR_USAGE
,
1169 "file `%s' is both input and output file",
1173 error_file
= nasm_open_write(errname
, NF_TEXT
);
1175 error_file
= stderr
; /* Revert to default! */
1176 nasm_fatal(ERR_NOFILE
| ERR_USAGE
,
1177 "cannot open file `%s' for error messages",
1183 static void assemble_file(char *fname
, StrList
**depend_ptr
)
1190 uint64_t prev_offset_changed
;
1191 unsigned int stall_count
= 0; /* Make sure we make forward progress... */
1193 if (cmd_sb
== 32 && iflag_ffs(&cmd_cpu
) < IF_386
)
1194 nasm_fatal(0, "command line: 32-bit segment size requires a higher cpu");
1196 pass_max
= prev_offset_changed
= (INT_MAX
>> 1) + 2; /* Almost unlimited */
1197 for (passn
= 1; pass0
<= 2; passn
++) {
1200 pass1
= pass0
== 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1201 pass2
= passn
> 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1202 /* pass0 0, 0, 0, ..., 1, 2 */
1204 def_label
= passn
> 1 ? redefine_label
: define_label
;
1206 globalbits
= cmd_sb
; /* set 'bits' to command line default */
1209 lfmt
->init(listname
);
1210 } else if (passn
== 1 && *listname
) {
1211 /* Remove the list file in case we die before the output pass */
1214 in_absolute
= false;
1215 global_offset_changed
= 0; /* set by redefine_label */
1216 location
.segment
= ofmt
->section(NULL
, pass2
, &globalbits
);
1218 saa_rewind(forwrefs
);
1219 forwref
= saa_rstruct(forwrefs
);
1221 offsets
= raa_init();
1223 preproc
->reset(fname
, pass1
, pass1
== 2 ? depend_ptr
: NULL
);
1225 /* Revert all warnings to the default state */
1226 memcpy(warning_state
, warning_state_init
, sizeof warning_state
);
1230 location
.known
= true;
1231 location
.offset
= offs
= get_curr_offs();
1233 while ((line
= preproc
->getline())) {
1237 * Here we parse our directives; this is not handled by the
1240 if (process_directives(line
))
1241 goto end_of_line
; /* Just do final cleanup */
1243 /* Not a directive, or even something that starts with [ */
1245 parse_line(pass1
, line
, &output_ins
, def_label
);
1247 if (optimizing
> 0) {
1248 if (forwref
!= NULL
&& globallineno
== forwref
->lineno
) {
1249 output_ins
.forw_ref
= true;
1251 output_ins
.oprs
[forwref
->operand
].opflags
|= OPFLAG_FORWARD
;
1252 forwref
= saa_rstruct(forwrefs
);
1253 } while (forwref
!= NULL
1254 && forwref
->lineno
== globallineno
);
1256 output_ins
.forw_ref
= false;
1258 if (output_ins
.forw_ref
) {
1260 for (i
= 0; i
< output_ins
.operands
; i
++) {
1261 if (output_ins
.oprs
[i
].opflags
& OPFLAG_FORWARD
) {
1262 struct forwrefinfo
*fwinf
= (struct forwrefinfo
*)saa_wstruct(forwrefs
);
1263 fwinf
->lineno
= globallineno
;
1272 if (output_ins
.opcode
== I_EQU
) {
1275 * Special `..' EQUs get processed in pass two,
1276 * except `..@' macro-processor EQUs which are done
1277 * in the normal place.
1279 if (!output_ins
.label
)
1280 nasm_error(ERR_NONFATAL
,
1281 "EQU not preceded by label");
1283 else if (output_ins
.label
[0] != '.' ||
1284 output_ins
.label
[1] != '.' ||
1285 output_ins
.label
[2] == '@') {
1286 if (output_ins
.operands
== 1 &&
1287 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1288 output_ins
.oprs
[0].wrt
== NO_SEG
) {
1289 bool isext
= !!(output_ins
.oprs
[0].opflags
& OPFLAG_EXTERN
);
1290 def_label(output_ins
.label
,
1291 output_ins
.oprs
[0].segment
,
1292 output_ins
.oprs
[0].offset
, NULL
,
1294 } else if (output_ins
.operands
== 2
1295 && (output_ins
.oprs
[0].type
& IMMEDIATE
)
1296 && (output_ins
.oprs
[0].type
& COLON
)
1297 && output_ins
.oprs
[0].segment
== NO_SEG
1298 && output_ins
.oprs
[0].wrt
== NO_SEG
1299 && (output_ins
.oprs
[1].type
& IMMEDIATE
)
1300 && output_ins
.oprs
[1].segment
== NO_SEG
1301 && output_ins
.oprs
[1].wrt
== NO_SEG
) {
1302 def_label(output_ins
.label
,
1303 output_ins
.oprs
[0].offset
| SEG_ABS
,
1304 output_ins
.oprs
[1].offset
,
1305 NULL
, false, false);
1307 nasm_error(ERR_NONFATAL
,
1308 "bad syntax for EQU");
1312 * Special `..' EQUs get processed here, except
1313 * `..@' macro processor EQUs which are done above.
1315 if (output_ins
.label
[0] == '.' &&
1316 output_ins
.label
[1] == '.' &&
1317 output_ins
.label
[2] != '@') {
1318 if (output_ins
.operands
== 1 &&
1319 (output_ins
.oprs
[0].type
& IMMEDIATE
)) {
1320 define_label(output_ins
.label
,
1321 output_ins
.oprs
[0].segment
,
1322 output_ins
.oprs
[0].offset
,
1323 NULL
, false, false);
1324 } else if (output_ins
.operands
== 2
1325 && (output_ins
.oprs
[0].type
& IMMEDIATE
)
1326 && (output_ins
.oprs
[0].type
& COLON
)
1327 && output_ins
.oprs
[0].segment
== NO_SEG
1328 && (output_ins
.oprs
[1].type
& IMMEDIATE
)
1329 && output_ins
.oprs
[1].segment
== NO_SEG
) {
1330 define_label(output_ins
.label
,
1331 output_ins
.oprs
[0].offset
| SEG_ABS
,
1332 output_ins
.oprs
[1].offset
,
1333 NULL
, false, false);
1335 nasm_error(ERR_NONFATAL
,
1336 "bad syntax for EQU");
1339 } else { /* instruction isn't an EQU */
1342 nasm_assert(output_ins
.times
>= 0);
1344 for (n
= 1; n
<= output_ins
.times
; n
++) {
1346 int64_t l
= insn_size(location
.segment
, offs
,
1347 globalbits
, &output_ins
);
1349 /* if (using_debug_info) && output_ins.opcode != -1) */
1350 if (using_debug_info
)
1351 { /* fbk 03/25/01 */
1352 /* this is done here so we can do debug type info */
1354 TYS_ELEMENTS(output_ins
.operands
);
1355 switch (output_ins
.opcode
) {
1358 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_BYTE
;
1362 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_WORD
;
1366 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_DWORD
;
1370 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_QWORD
;
1374 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_TBYTE
;
1378 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_OWORD
;
1382 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_YWORD
;
1386 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_ZWORD
;
1389 typeinfo
|= TY_BYTE
;
1392 typeinfo
|= TY_WORD
;
1395 if (output_ins
.eops_float
)
1396 typeinfo
|= TY_FLOAT
;
1398 typeinfo
|= TY_DWORD
;
1401 typeinfo
|= TY_QWORD
;
1404 typeinfo
|= TY_TBYTE
;
1407 typeinfo
|= TY_OWORD
;
1410 typeinfo
|= TY_YWORD
;
1413 typeinfo
|= TY_ZWORD
;
1416 typeinfo
= TY_LABEL
;
1420 dfmt
->debug_typevalue(typeinfo
);
1424 * For INCBIN, let the code in assemble
1425 * handle TIMES, so we don't have to read the
1426 * input file over and over.
1430 set_curr_offs(offs
);
1433 * else l == -1 => invalid instruction, which will be
1434 * flagged as an error on pass 2
1438 lfmt
->uplevel(LIST_TIMES
);
1439 offs
+= assemble(location
.segment
, offs
,
1440 globalbits
, &output_ins
);
1441 set_curr_offs(offs
);
1445 if (output_ins
.times
> 1)
1446 lfmt
->downlevel(LIST_TIMES
);
1448 cleanup_insn(&output_ins
);
1452 location
.offset
= offs
= get_curr_offs();
1453 } /* end while (line = preproc->getline... */
1455 if (pass0
== 2 && global_offset_changed
&& !terminate_after_phase
)
1456 nasm_error(ERR_NONFATAL
,
1457 "phase error detected at end of assembly.");
1460 preproc
->cleanup(1);
1462 if ((passn
> 1 && !global_offset_changed
) || pass0
== 2) {
1464 } else if (global_offset_changed
&&
1465 global_offset_changed
< prev_offset_changed
) {
1466 prev_offset_changed
= global_offset_changed
;
1472 if (terminate_after_phase
)
1475 if ((stall_count
> 997U) || (passn
>= pass_max
)) {
1476 /* We get here if the labels don't converge
1477 * Example: FOO equ FOO + 1
1479 nasm_error(ERR_NONFATAL
,
1480 "Can't find valid values for all labels "
1481 "after %d passes, giving up.", passn
);
1482 nasm_error(ERR_NONFATAL
,
1483 "Possible causes: recursive EQUs, macro abuse.");
1488 preproc
->cleanup(0);
1490 if (!terminate_after_phase
&& opt_verbose_info
) {
1491 /* -On and -Ov switches */
1492 fprintf(stdout
, "info: assembly required 1+%d+1 passes\n", passn
-3);
1497 * gnu style error reporting
1498 * This function prints an error message to error_file in the
1499 * style used by GNU. An example would be:
1500 * file.asm:50: error: blah blah blah
1501 * where file.asm is the name of the file, 50 is the line number on
1502 * which the error occurs (or is detected) and "error:" is one of
1503 * the possible optional diagnostics -- it can be "error" or "warning"
1504 * or something else. Finally the line terminates with the actual
1507 * @param severity the severity of the warning or error
1508 * @param fmt the printf style format string
1510 static void nasm_verror_gnu(int severity
, const char *fmt
, va_list ap
)
1512 const char *currentfile
= NULL
;
1515 if (is_suppressed_warning(severity
))
1518 if (!(severity
& ERR_NOFILE
))
1519 src_get(&lineno
, ¤tfile
);
1521 if (!skip_this_pass(severity
)) {
1523 fprintf(error_file
, "%s:%"PRId32
": ", currentfile
, lineno
);
1525 fputs("nasm: ", error_file
);
1529 nasm_verror_common(severity
, fmt
, ap
);
1533 * MS style error reporting
1534 * This function prints an error message to error_file in the
1535 * style used by Visual C and some other Microsoft tools. An example
1537 * file.asm(50) : error: blah blah blah
1538 * where file.asm is the name of the file, 50 is the line number on
1539 * which the error occurs (or is detected) and "error:" is one of
1540 * the possible optional diagnostics -- it can be "error" or "warning"
1541 * or something else. Finally the line terminates with the actual
1544 * @param severity the severity of the warning or error
1545 * @param fmt the printf style format string
1547 static void nasm_verror_vc(int severity
, const char *fmt
, va_list ap
)
1549 const char *currentfile
= NULL
;
1552 if (is_suppressed_warning(severity
))
1555 if (!(severity
& ERR_NOFILE
))
1556 src_get(&lineno
, ¤tfile
);
1558 if (!skip_this_pass(severity
)) {
1560 fprintf(error_file
, "%s(%"PRId32
") : ", currentfile
, lineno
);
1562 fputs("nasm: ", error_file
);
1566 nasm_verror_common(severity
, fmt
, ap
);
1570 * check to see if this is a suppressable warning
1572 static inline bool is_valid_warning(int severity
)
1574 /* Not a warning at all */
1575 if ((severity
& ERR_MASK
) != ERR_WARNING
)
1578 return WARN_IDX(severity
) < ERR_WARN_ALL
;
1582 * check for suppressed warning
1583 * checks for suppressed warning or pass one only warning and we're
1586 * @param severity the severity of the warning or error
1587 * @return true if we should abort error/warning printing
1589 static bool is_suppressed_warning(int severity
)
1591 /* Might be a warning but suppresed explicitly */
1592 if (is_valid_warning(severity
))
1593 return !(warning_state
[WARN_IDX(severity
)] & WARN_ST_ENABLED
);
1598 static bool warning_is_error(int severity
)
1600 if (is_valid_warning(severity
))
1601 return !!(warning_state
[WARN_IDX(severity
)] & WARN_ST_ERROR
);
1606 static bool skip_this_pass(int severity
)
1609 * See if it's a pass-specific error or warning which should be skipped.
1610 * We cannot skip errors stronger than ERR_NONFATAL as by definition
1611 * they cannot be resumed from.
1613 if ((severity
& ERR_MASK
) > ERR_NONFATAL
)
1617 * passn is 1 on the very first pass only.
1618 * pass0 is 2 on the code-generation (final) pass only.
1619 * These are the passes we care about in this case.
1621 return (((severity
& ERR_PASS1
) && passn
!= 1) ||
1622 ((severity
& ERR_PASS2
) && pass0
!= 2));
1626 * common error reporting
1627 * This is the common back end of the error reporting schemes currently
1628 * implemented. It prints the nature of the warning and then the
1629 * specific error message to error_file and may or may not return. It
1630 * doesn't return if the error severity is a "panic" or "debug" type.
1632 * @param severity the severity of the warning or error
1633 * @param fmt the printf style format string
1635 static void nasm_verror_common(int severity
, const char *fmt
, va_list args
)
1640 switch (severity
& (ERR_MASK
|ERR_NO_SEVERITY
)) {
1661 vsnprintf(msg
, sizeof msg
- 64, fmt
, args
);
1662 if (is_valid_warning(severity
) && WARN_IDX(severity
) != ERR_WARN_OTHER
) {
1663 char *p
= strchr(msg
, '\0');
1664 snprintf(p
, 64, " [-w+%s]", warnings
[WARN_IDX(severity
)].name
);
1667 if (!skip_this_pass(severity
))
1668 fprintf(error_file
, "%s%s\n", pfx
, msg
);
1670 /* Are we recursing from error_list_macros? */
1671 if (severity
& ERR_PP_LISTMACRO
)
1675 * Don't suppress this with skip_this_pass(), or we don't get
1676 * pass1 or preprocessor warnings in the list file
1678 lfmt
->error(severity
, pfx
, msg
);
1680 if (skip_this_pass(severity
))
1683 if (severity
& ERR_USAGE
)
1686 preproc
->error_list_macros(severity
);
1688 switch (severity
& ERR_MASK
) {
1690 /* no further action, by definition */
1693 /* Treat warnings as errors */
1694 if (warning_is_error(severity
))
1695 terminate_after_phase
= true;
1698 terminate_after_phase
= true;
1708 exit(1); /* instantly die */
1709 break; /* placate silly compilers */
1712 /* abort(); */ /* halt, catch fire, and dump core */
1723 static void usage(void)
1725 fputs("type `nasm -h' for help\n", error_file
);