1 /* The Netwide Assembler main program module
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the license given in the file "LICENSE"
6 * distributed in the NASM archive.
32 #include "output/outform.h"
35 struct forwrefinfo
{ /* info held on forward refs. */
40 static int get_bits(char *value
);
41 static uint32_t get_cpu(char *cpu_str
);
42 static void parse_cmdline(int, char **);
43 static void assemble_file(char *, StrList
**);
44 static void register_output_formats(void);
45 static void report_error_gnu(int severity
, const char *fmt
, ...);
46 static void report_error_vc(int severity
, const char *fmt
, ...);
47 static void report_error_common(int severity
, const char *fmt
,
49 static bool is_suppressed_warning(int severity
);
50 static void usage(void);
51 static efunc report_error
;
53 static int using_debug_info
, opt_verbose_info
;
54 bool tasm_compatible_mode
= false;
59 time_t official_compile_time
;
61 static char inname
[FILENAME_MAX
];
62 static char outname
[FILENAME_MAX
];
63 static char listname
[FILENAME_MAX
];
64 static char errname
[FILENAME_MAX
];
65 static int globallineno
; /* for forward-reference tracking */
66 /* static int pass = 0; */
67 static struct ofmt
*ofmt
= NULL
;
69 static FILE *error_file
; /* Where to write error messages */
71 static FILE *ofile
= NULL
;
72 int optimizing
= -1; /* number of optimization passes to take */
73 static int sb
, cmd_sb
= 16; /* by default */
74 static uint32_t cmd_cpu
= IF_PLEVEL
; /* highest level by default */
75 static uint32_t cpu
= IF_PLEVEL
; /* passed to insn_size & assemble.c */
76 int64_t global_offset_changed
; /* referenced in labels.c */
77 int64_t prev_offset_changed
;
80 static struct location location
;
81 int in_abs_seg
; /* Flag we are in ABSOLUTE seg */
82 int32_t abs_seg
; /* ABSOLUTE segment basis */
83 int32_t abs_offset
; /* ABSOLUTE offset */
85 static struct RAA
*offsets
;
87 static struct SAA
*forwrefs
; /* keep track of forward references */
88 static const struct forwrefinfo
*forwref
;
90 static Preproc
*preproc
;
92 op_normal
, /* Preprocess and assemble */
93 op_preprocess
, /* Preprocess only */
94 op_depend
, /* Generate dependencies */
96 static enum op_type operating_mode
;
97 /* Dependency flags */
98 static bool depend_emit_phony
= false;
99 static bool depend_missing_ok
= false;
100 static const char *depend_target
= NULL
;
101 static const char *depend_file
= NULL
;
104 * Which of the suppressible warnings are suppressed. Entry zero
105 * isn't an actual warning, but it used for -w+error/-Werror.
108 static bool warning_on
[ERR_WARN_MAX
+1]; /* Current state */
109 static bool warning_on_global
[ERR_WARN_MAX
+1]; /* Command-line state */
111 static const struct warning
{
115 } warnings
[ERR_WARN_MAX
+1] = {
116 {"error", "treat warnings as errors", false},
117 {"macro-params", "macro calls with wrong parameter count", true},
118 {"macro-selfref", "cyclic macro references", false},
119 {"macro-defaults", "macros with more default than optional parameters", true},
120 {"orphan-labels", "labels alone on lines without trailing `:'", true},
121 {"number-overflow", "numeric constant does not fit", true},
122 {"gnu-elf-extensions", "using 8- or 16-bit relocation in ELF32, a GNU extension", false},
123 {"float-overflow", "floating point overflow", true},
124 {"float-denorm", "floating point denormal", false},
125 {"float-underflow", "floating point underflow", false},
126 {"float-toolong", "too many digits in floating-point number", true},
127 {"user", "%warning directives", true},
131 * This is a null preprocessor which just copies lines from input
132 * to output. It's used when someone explicitly requests that NASM
133 * not preprocess their source file.
136 static void no_pp_reset(char *, int, efunc
, evalfunc
, ListGen
*, StrList
**);
137 static char *no_pp_getline(void);
138 static void no_pp_cleanup(int);
139 static Preproc no_pp
= {
146 * get/set current offset...
148 #define GET_CURR_OFFS (in_abs_seg?abs_offset:\
149 raa_read(offsets,location.segment))
150 #define SET_CURR_OFFS(x) (in_abs_seg?(void)(abs_offset=(x)):\
151 (void)(offsets=raa_write(offsets,location.segment,(x))))
153 static bool want_usage
;
154 static bool terminate_after_phase
;
155 int user_nolist
= 0; /* fbk 9/2/00 */
157 static void nasm_fputs(const char *line
, FILE * outfile
)
160 fputs(line
, outfile
);
166 /* Convert a struct tm to a POSIX-style time constant */
167 static int64_t posix_mktime(struct tm
*tm
)
170 int64_t y
= tm
->tm_year
;
172 /* See IEEE 1003.1:2004, section 4.14 */
174 t
= (y
-70)*365 + (y
-69)/4 - (y
-1)/100 + (y
+299)/400;
186 static void define_macros_early(void)
189 struct tm lt
, *lt_p
, gm
, *gm_p
;
192 lt_p
= localtime(&official_compile_time
);
196 strftime(temp
, sizeof temp
, "__DATE__=\"%Y-%m-%d\"", <
);
198 strftime(temp
, sizeof temp
, "__DATE_NUM__=%Y%m%d", <
);
200 strftime(temp
, sizeof temp
, "__TIME__=\"%H:%M:%S\"", <
);
202 strftime(temp
, sizeof temp
, "__TIME_NUM__=%H%M%S", <
);
206 gm_p
= gmtime(&official_compile_time
);
210 strftime(temp
, sizeof temp
, "__UTC_DATE__=\"%Y-%m-%d\"", &gm
);
212 strftime(temp
, sizeof temp
, "__UTC_DATE_NUM__=%Y%m%d", &gm
);
214 strftime(temp
, sizeof temp
, "__UTC_TIME__=\"%H:%M:%S\"", &gm
);
216 strftime(temp
, sizeof temp
, "__UTC_TIME_NUM__=%H%M%S", &gm
);
221 posix_time
= posix_mktime(&gm
);
223 posix_time
= posix_mktime(<
);
228 snprintf(temp
, sizeof temp
, "__POSIX_TIME__=%"PRId64
, posix_time
);
233 static void define_macros_late(void)
237 snprintf(temp
, sizeof(temp
), "__OUTPUT_FORMAT__=%s\n",
242 static void emit_dependencies(StrList
*list
)
248 if (depend_file
&& strcmp(depend_file
, "-")) {
249 deps
= fopen(depend_file
, "w");
251 report_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
252 "unable to write dependency file `%s'", depend_file
);
259 linepos
= fprintf(deps
, "%s:", depend_target
);
260 for (l
= list
; l
; l
= l
->next
) {
261 len
= strlen(l
->str
);
262 if (linepos
+ len
> 62) {
263 fprintf(deps
, " \\\n ");
266 fprintf(deps
, " %s", l
->str
);
269 fprintf(deps
, "\n\n");
271 for (l
= list
; l
; l
= nl
) {
272 if (depend_emit_phony
)
273 fprintf(deps
, "%s:\n\n", l
->str
);
283 int main(int argc
, char **argv
)
285 StrList
*depend_list
= NULL
, **depend_ptr
;
287 time(&official_compile_time
);
290 want_usage
= terminate_after_phase
= false;
291 report_error
= report_error_gnu
;
297 nasm_set_malloc_error(report_error
);
298 offsets
= raa_init();
299 forwrefs
= saa_init((int32_t)sizeof(struct forwrefinfo
));
302 operating_mode
= op_normal
;
306 register_output_formats();
308 /* Define some macros dependent on the runtime, but not
309 on the command line. */
310 define_macros_early();
312 parse_cmdline(argc
, argv
);
314 if (terminate_after_phase
) {
320 /* If debugging info is disabled, suppress any debug calls */
321 if (!using_debug_info
)
322 ofmt
->current_dfmt
= &null_debug_form
;
325 pp_extra_stdmac(ofmt
->stdmac
);
326 parser_global_info(ofmt
, &location
);
327 eval_global_info(ofmt
, lookup_label
, &location
);
329 /* define some macros dependent of command-line */
330 define_macros_late();
332 depend_ptr
= (depend_file
|| (operating_mode
== op_depend
))
333 ? &depend_list
: NULL
;
335 depend_target
= outname
;
337 switch (operating_mode
) {
342 if (depend_missing_ok
)
343 pp_include_path(NULL
); /* "assume generated" */
345 preproc
->reset(inname
, 0, report_error
, evaluate
, &nasmlist
,
347 if (outname
[0] == '\0')
348 ofmt
->filename(inname
, outname
, report_error
);
350 while ((line
= preproc
->getline()))
359 char *file_name
= NULL
;
360 int32_t prior_linnum
= 0;
364 ofile
= fopen(outname
, "w");
366 report_error(ERR_FATAL
| ERR_NOFILE
,
367 "unable to open output file `%s'",
372 location
.known
= false;
375 preproc
->reset(inname
, 3, report_error
, evaluate
, &nasmlist
,
378 while ((line
= preproc
->getline())) {
380 * We generate %line directives if needed for later programs
382 int32_t linnum
= prior_linnum
+= lineinc
;
383 int altline
= src_get(&linnum
, &file_name
);
385 if (altline
== 1 && lineinc
== 1)
386 nasm_fputs("", ofile
);
388 lineinc
= (altline
!= -1 || lineinc
!= 1);
389 fprintf(ofile
? ofile
: stdout
,
390 "%%line %"PRId32
"+%d %s\n", linnum
, lineinc
,
393 prior_linnum
= linnum
;
395 nasm_fputs(line
, ofile
);
398 nasm_free(file_name
);
402 if (ofile
&& terminate_after_phase
)
410 * We must call ofmt->filename _anyway_, even if the user
411 * has specified their own output file, because some
412 * formats (eg OBJ and COFF) use ofmt->filename to find out
413 * the name of the input file and then put that inside the
416 ofmt
->filename(inname
, outname
, report_error
);
418 ofile
= fopen(outname
, "wb");
420 report_error(ERR_FATAL
| ERR_NOFILE
,
421 "unable to open output file `%s'", outname
);
425 * We must call init_labels() before ofmt->init() since
426 * some object formats will want to define labels in their
427 * init routines. (eg OS/2 defines the FLAT group)
431 ofmt
->init(ofile
, report_error
, define_label
, evaluate
);
432 ofmt
->current_dfmt
->init(ofmt
, NULL
, ofile
, report_error
);
434 assemble_file(inname
, depend_ptr
);
436 if (!terminate_after_phase
) {
437 ofmt
->cleanup(using_debug_info
);
441 * Despite earlier comments, we need this fclose.
442 * The object output drivers only fclose on cleanup,
443 * and we just skipped that.
455 if (depend_list
&& !terminate_after_phase
)
456 emit_dependencies(depend_list
);
466 return terminate_after_phase
;
470 * Get a parameter for a command line option.
471 * First arg must be in the form of e.g. -f...
473 static char *get_param(char *p
, char *q
, bool *advance
)
476 if (p
[2]) { /* the parameter's in the option */
478 while (nasm_isspace(*p
))
486 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
487 "option `-%c' requires an argument", p
[1]);
494 static void copy_filename(char *dst
, const char *src
)
496 size_t len
= strlen(src
);
498 if (len
>= (size_t)FILENAME_MAX
) {
499 report_error(ERR_FATAL
| ERR_NOFILE
, "file name too long");
502 strncpy(dst
, src
, FILENAME_MAX
);
506 * Convert a string to Make-safe form
508 static char *quote_for_make(const char *str
)
513 size_t n
= 1; /* Terminating zero */
519 for (p
= str
; *p
; p
++) {
523 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
543 /* Convert N backslashes at the end of filename to 2N backslashes */
547 os
= q
= nasm_malloc(n
);
550 for (p
= str
; *p
; p
++) {
593 #define OPT_POSTFIX 1
594 struct textargs textopts
[] = {
595 {"prefix", OPT_PREFIX
},
596 {"postfix", OPT_POSTFIX
},
600 static bool stopoptions
= false;
601 static bool process_arg(char *p
, char *q
)
605 bool advance
= false;
611 if (p
[0] == '-' && !stopoptions
) {
612 if (strchr("oOfpPdDiIlFXuUZwW", p
[1])) {
613 /* These parameters take values */
614 if (!(param
= get_param(p
, q
, &advance
)))
623 case 'o': /* output file */
624 copy_filename(outname
, param
);
627 case 'f': /* output format */
628 ofmt
= ofmt_find(param
);
630 report_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
631 "unrecognised output format `%s' - "
632 "use -hf for a list", param
);
636 case 'O': /* Optimization level */
641 /* Naked -O == -Ox */
642 optimizing
= INT_MAX
>> 1; /* Almost unlimited */
646 case '0': case '1': case '2': case '3': case '4':
647 case '5': case '6': case '7': case '8': case '9':
648 opt
= strtoul(param
, ¶m
, 10);
650 /* -O0 -> optimizing == -1, 0.98 behaviour */
651 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
653 optimizing
= opt
- 1;
661 opt_verbose_info
= true;
666 optimizing
= INT_MAX
>> 1; /* Almost unlimited */
670 report_error(ERR_FATAL
,
671 "unknown optimization option -O%c\n",
680 case 'p': /* pre-include */
682 pp_pre_include(param
);
685 case 'd': /* pre-define */
687 pp_pre_define(param
);
690 case 'u': /* un-define */
692 pp_pre_undefine(param
);
695 case 'i': /* include search path */
697 pp_include_path(param
);
700 case 'l': /* listing file */
701 copy_filename(listname
, param
);
704 case 'Z': /* error messages file */
705 strcpy(errname
, param
);
708 case 'F': /* specify debug format */
709 ofmt
->current_dfmt
= dfmt_find(ofmt
, param
);
710 if (!ofmt
->current_dfmt
) {
711 report_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
712 "unrecognized debug format `%s' for"
713 " output format `%s'",
714 param
, ofmt
->shortname
);
716 using_debug_info
= true;
719 case 'X': /* specify error reporting format */
720 if (nasm_stricmp("vc", param
) == 0)
721 report_error
= report_error_vc
;
722 else if (nasm_stricmp("gnu", param
) == 0)
723 report_error
= report_error_gnu
;
725 report_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
726 "unrecognized error reporting format `%s'",
731 using_debug_info
= true;
736 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
738 " [options...] [--] filename\n"
739 " or nasm -v for version info\n\n"
740 " -t assemble in SciTech TASM compatible mode\n"
741 " -g generate debug information in selected format.\n");
743 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
744 " -a don't preprocess (assemble only)\n"
745 " -M generate Makefile dependencies on stdout\n"
746 " -MG d:o, missing files assumed generated\n\n"
747 " -Z<file> redirect error messages to file\n"
748 " -s redirect error messages to stdout\n\n"
749 " -F format select a debugging format\n\n"
750 " -I<path> adds a pathname to the include file path\n");
752 (" -O<digit> optimize branch offsets (-O0 disables, default)\n"
753 " -P<file> pre-includes a file\n"
754 " -D<macro>[=<value>] pre-defines a macro\n"
755 " -U<macro> undefines a macro\n"
756 " -X<format> specifies error reporting format (gnu or vc)\n"
757 " -w+foo enables warning foo (equiv. -Wfoo)\n"
758 " -w-foo disable warning foo (equiv. -Wno-foo)\n"
760 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
761 printf(" %-23s %s (default %s)\n",
762 warnings
[i
].name
, warnings
[i
].help
,
763 warnings
[i
].enabled
? "on" : "off");
765 ("\nresponse files should contain command line parameters"
766 ", one per line.\n");
768 printf("\nvalid output formats for -f are"
769 " (`*' denotes default):\n");
770 ofmt_list(ofmt
, stdout
);
772 printf("\nFor a list of valid output formats, use -hf.\n");
773 printf("For a list of debug formats, use -f <form> -y.\n");
775 exit(0); /* never need usage message here */
779 printf("\nvalid debug formats for '%s' output format are"
780 " ('*' denotes default):\n", ofmt
->shortname
);
781 dfmt_list(ofmt
, stdout
);
786 tasm_compatible_mode
= true;
790 printf("NASM version %s compiled on %s%s\n",
791 nasm_version
, nasm_date
, nasm_compile_options
);
792 exit(0); /* never need usage message here */
795 case 'e': /* preprocess only */
797 operating_mode
= op_preprocess
;
800 case 'a': /* assemble only - don't preprocess */
805 if (param
[0] == 'n' && param
[1] == 'o' && param
[2] == '-') {
814 if (param
[0] != '+' && param
[0] != '-') {
815 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
816 "invalid option to `-w'");
819 do_warn
= (param
[0] == '+');
823 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
824 if (!nasm_stricmp(param
, warnings
[i
].name
))
826 if (i
<= ERR_WARN_MAX
)
827 warning_on_global
[i
] = do_warn
;
828 else if (!nasm_stricmp(param
, "all"))
829 for (i
= 1; i
<= ERR_WARN_MAX
; i
++)
830 warning_on_global
[i
] = do_warn
;
831 else if (!nasm_stricmp(param
, "none"))
832 for (i
= 1; i
<= ERR_WARN_MAX
; i
++)
833 warning_on_global
[i
] = !do_warn
;
835 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
836 "invalid warning `%s'", param
);
842 operating_mode
= op_depend
;
845 operating_mode
= op_depend
;
846 depend_missing_ok
= true;
849 depend_emit_phony
= true;
860 depend_target
= quote_for_make(q
);
864 report_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
865 "unknown dependency option `-M%c'", p
[2]);
868 if (advance
&& (!q
|| !q
[0])) {
869 report_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
870 "option `-M%c' requires a parameter", p
[2]);
879 if (p
[2] == 0) { /* -- => stop processing options */
883 for (s
= 0; textopts
[s
].label
; s
++) {
884 if (!nasm_stricmp(p
+ 2, textopts
[s
].label
)) {
895 report_error(ERR_NONFATAL
| ERR_NOFILE
|
897 "option `--%s' requires an argument",
901 advance
= 1, param
= q
;
904 if (s
== OPT_PREFIX
) {
905 strncpy(lprefix
, param
, PREFIX_MAX
- 1);
906 lprefix
[PREFIX_MAX
- 1] = 0;
909 if (s
== OPT_POSTFIX
) {
910 strncpy(lpostfix
, param
, POSTFIX_MAX
- 1);
911 lpostfix
[POSTFIX_MAX
- 1] = 0;
918 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
919 "unrecognised option `--%s'", p
+ 2);
927 if (!ofmt
->setinfo(GI_SWITCH
, &p
))
928 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
929 "unrecognised option `-%c'", p
[1]);
934 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
935 "more than one input file specified");
937 copy_filename(inname
, p
);
944 #define ARG_BUF_DELTA 128
946 static void process_respfile(FILE * rfile
)
948 char *buffer
, *p
, *q
, *prevarg
;
949 int bufsize
, prevargsize
;
951 bufsize
= prevargsize
= ARG_BUF_DELTA
;
952 buffer
= nasm_malloc(ARG_BUF_DELTA
);
953 prevarg
= nasm_malloc(ARG_BUF_DELTA
);
956 while (1) { /* Loop to handle all lines in file */
958 while (1) { /* Loop to handle long lines */
959 q
= fgets(p
, bufsize
- (p
- buffer
), rfile
);
963 if (p
> buffer
&& p
[-1] == '\n')
965 if (p
- buffer
> bufsize
- 10) {
968 bufsize
+= ARG_BUF_DELTA
;
969 buffer
= nasm_realloc(buffer
, bufsize
);
974 if (!q
&& p
== buffer
) {
976 process_arg(prevarg
, NULL
);
983 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
984 * them are present at the end of the line.
986 *(p
= &buffer
[strcspn(buffer
, "\r\n\032")]) = '\0';
988 while (p
> buffer
&& nasm_isspace(p
[-1]))
992 while (nasm_isspace(*p
))
995 if (process_arg(prevarg
, p
))
998 if ((int) strlen(p
) > prevargsize
- 10) {
999 prevargsize
+= ARG_BUF_DELTA
;
1000 prevarg
= nasm_realloc(prevarg
, prevargsize
);
1002 strncpy(prevarg
, p
, prevargsize
);
1006 /* Function to process args from a string of args, rather than the
1007 * argv array. Used by the environment variable and response file
1010 static void process_args(char *args
)
1012 char *p
, *q
, *arg
, *prevarg
;
1013 char separator
= ' ';
1016 if (*p
&& *p
!= '-')
1021 while (*p
&& *p
!= separator
)
1023 while (*p
== separator
)
1027 if (process_arg(prevarg
, arg
))
1031 process_arg(arg
, NULL
);
1034 static void process_response_file(const char *file
)
1037 FILE *f
= fopen(file
, "r");
1042 while (fgets(str
, sizeof str
, f
)) {
1048 static void parse_cmdline(int argc
, char **argv
)
1051 char *envreal
, *envcopy
= NULL
, *p
, *arg
;
1054 *inname
= *outname
= *listname
= *errname
= '\0';
1055 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
1056 warning_on_global
[i
] = warnings
[i
].enabled
;
1059 * First, process the NASMENV environment variable.
1061 envreal
= getenv("NASMENV");
1064 envcopy
= nasm_strdup(envreal
);
1065 process_args(envcopy
);
1070 * Now process the actual command line.
1075 if (argv
[0][0] == '@') {
1076 /* We have a response file, so process this as a set of
1077 * arguments like the environment variable. This allows us
1078 * to have multiple arguments on a single line, which is
1079 * different to the -@resp file processing below for regular
1082 process_response_file(argv
[0]+1);
1086 if (!stopoptions
&& argv
[0][0] == '-' && argv
[0][1] == '@') {
1087 p
= get_param(argv
[0], argc
> 1 ? argv
[1] : NULL
, &advance
);
1089 rfile
= fopen(p
, "r");
1091 process_respfile(rfile
);
1094 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1095 "unable to open response file `%s'", p
);
1098 advance
= process_arg(argv
[0], argc
> 1 ? argv
[1] : NULL
);
1099 argv
+= advance
, argc
-= advance
;
1102 /* Look for basic command line typos. This definitely doesn't
1103 catch all errors, but it might help cases of fumbled fingers. */
1105 report_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1106 "no input file specified");
1107 else if (!strcmp(inname
, errname
) ||
1108 !strcmp(inname
, outname
) ||
1109 !strcmp(inname
, listname
) ||
1110 (depend_file
&& !strcmp(inname
, depend_file
)))
1111 report_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1112 "file `%s' is both input and output file",
1116 error_file
= fopen(errname
, "w");
1118 error_file
= stderr
; /* Revert to default! */
1119 report_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1120 "cannot open file `%s' for error messages",
1126 /* List of directives */
1128 D_NONE
, D_ABSOLUTE
, D_BITS
, D_COMMON
, D_CPU
, D_DEBUG
, D_DEFAULT
,
1129 D_EXTERN
, D_FLOAT
, D_GLOBAL
, D_LIST
, D_SECTION
, D_SEGMENT
, D_WARNING
1131 static const char *directives
[] = {
1132 "", "absolute", "bits", "common", "cpu", "debug", "default",
1133 "extern", "float", "global", "list", "section", "segment", "warning"
1135 static enum directives
getkw(char **directive
, char **value
);
1137 static void assemble_file(char *fname
, StrList
**depend_ptr
)
1139 char *directive
, *value
, *p
, *q
, *special
, *line
, debugid
[80];
1145 struct tokenval tokval
;
1149 if (cmd_sb
== 32 && cmd_cpu
< IF_386
)
1150 report_error(ERR_FATAL
, "command line: "
1151 "32-bit segment size requires a higher cpu");
1153 pass_max
= prev_offset_changed
= (INT_MAX
>> 1) + 2; /* Almost unlimited */
1154 for (passn
= 1; pass0
<= 2; passn
++) {
1158 pass1
= pass0
== 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1159 pass2
= passn
> 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1160 /* pass0 0, 0, 0, ..., 1, 2 */
1162 def_label
= passn
> 1 ? redefine_label
: define_label
;
1164 globalbits
= sb
= cmd_sb
; /* set 'bits' to command line default */
1168 nasmlist
.init(listname
, report_error
);
1171 global_offset_changed
= 0; /* set by redefine_label */
1172 location
.segment
= ofmt
->section(NULL
, pass2
, &sb
);
1175 saa_rewind(forwrefs
);
1176 forwref
= saa_rstruct(forwrefs
);
1178 offsets
= raa_init();
1180 preproc
->reset(fname
, pass1
, report_error
, evaluate
, &nasmlist
,
1181 pass1
== 2 ? depend_ptr
: NULL
);
1182 memcpy(warning_on
, warning_on_global
, (ERR_WARN_MAX
+1) * sizeof(bool));
1186 location
.known
= true;
1187 location
.offset
= offs
= GET_CURR_OFFS
;
1189 while ((line
= preproc
->getline())) {
1194 * Here we parse our directives; this is not handled by the
1195 * 'real' parser. This really should be a separate function.
1198 d
= getkw(&directive
, &value
);
1203 case D_SEGMENT
: /* [SEGMENT n] */
1205 seg
= ofmt
->section(value
, pass2
, &sb
);
1206 if (seg
== NO_SEG
) {
1207 report_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1208 "segment name `%s' not recognized",
1212 location
.segment
= seg
;
1215 case D_EXTERN
: /* [EXTERN label:special] */
1217 value
++; /* skip initial $ if present */
1220 while (*q
&& *q
!= ':')
1224 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1226 } else if (passn
== 1) {
1231 while (*q
&& *q
!= ':') {
1237 report_error(ERR_NONFATAL
,
1238 "identifier expected after EXTERN");
1246 if (!is_extern(value
)) { /* allow re-EXTERN to be ignored */
1248 pass0
= 1; /* fake pass 1 in labels.c */
1249 declare_as_global(value
, special
,
1251 define_label(value
, seg_alloc(), 0L, NULL
,
1252 false, true, ofmt
, report_error
);
1255 } /* else pass0 == 1 */
1257 case D_BITS
: /* [BITS bits] */
1258 globalbits
= sb
= get_bits(value
);
1260 case D_GLOBAL
: /* [GLOBAL symbol:special] */
1262 value
++; /* skip initial $ if present */
1263 if (pass0
== 2) { /* pass 2 */
1265 while (*q
&& *q
!= ':')
1269 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1271 } else if (pass2
== 1) { /* pass == 1 */
1276 while (*q
&& *q
!= ':') {
1282 report_error(ERR_NONFATAL
,
1283 "identifier expected after GLOBAL");
1291 declare_as_global(value
, special
, report_error
);
1294 case D_COMMON
: /* [COMMON symbol size:special] */
1299 value
++; /* skip initial $ if present */
1304 while (*p
&& !nasm_isspace(*p
)) {
1310 report_error(ERR_NONFATAL
,
1311 "identifier expected after COMMON");
1315 while (*p
&& nasm_isspace(*p
))
1318 while (*q
&& *q
!= ':')
1326 size
= readnum(p
, &rn_error
);
1328 report_error(ERR_NONFATAL
,
1329 "invalid size specified"
1330 " in COMMON declaration");
1334 report_error(ERR_NONFATAL
,
1335 "no size specified in"
1336 " COMMON declaration");
1341 define_common(value
, seg_alloc(), size
,
1342 special
, ofmt
, report_error
);
1343 } else if (pass0
== 2) {
1344 ofmt
->symdef(value
, 0L, 0L, 3, special
);
1348 case D_ABSOLUTE
: /* [ABSOLUTE address] */
1350 stdscan_bufptr
= value
;
1351 tokval
.t_type
= TOKEN_INVALID
;
1352 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
,
1353 report_error
, NULL
);
1356 report_error(pass0
==
1357 1 ? ERR_NONFATAL
: ERR_PANIC
,
1358 "cannot use non-relocatable expression as "
1359 "ABSOLUTE address");
1361 abs_seg
= reloc_seg(e
);
1362 abs_offset
= reloc_value(e
);
1364 } else if (passn
== 1)
1365 abs_offset
= 0x100; /* don't go near zero in case of / */
1367 report_error(ERR_PANIC
, "invalid ABSOLUTE address "
1370 location
.segment
= NO_SEG
;
1372 case D_DEBUG
: /* [DEBUG] */
1378 while (*p
&& !nasm_isspace(*p
)) {
1385 report_error(passn
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1386 "identifier expected after DEBUG");
1389 while (*p
&& nasm_isspace(*p
))
1392 ofmt
->current_dfmt
->debug_directive(debugid
, p
);
1394 case D_WARNING
: /* [WARNING {+|-|*}warn-name] */
1395 while (*value
&& nasm_isspace(*value
))
1399 case '-': validid
= 0; value
++; break;
1400 case '+': validid
= 1; value
++; break;
1401 case '*': validid
= 2; value
++; break;
1402 default: validid
= 1; break;
1405 for (i
= 1; i
<= ERR_WARN_MAX
; i
++)
1406 if (!nasm_stricmp(value
, warnings
[i
].name
))
1408 if (i
<= ERR_WARN_MAX
) {
1411 warning_on
[i
] = false;
1414 warning_on
[i
] = true;
1417 warning_on
[i
] = warning_on_global
[i
];
1422 report_error(ERR_NONFATAL
,
1423 "invalid warning id in WARNING directive");
1425 case D_CPU
: /* [CPU] */
1426 cpu
= get_cpu(value
);
1428 case D_LIST
: /* [LIST {+|-}] */
1429 while (*value
&& nasm_isspace(*value
))
1432 if (*value
== '+') {
1435 if (*value
== '-') {
1442 case D_DEFAULT
: /* [DEFAULT] */
1444 stdscan_bufptr
= value
;
1445 tokval
.t_type
= TOKEN_INVALID
;
1446 if (stdscan(NULL
, &tokval
) == TOKEN_SPECIAL
) {
1447 switch ((int)tokval
.t_integer
) {
1463 if (float_option(value
)) {
1464 report_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1465 "unknown 'float' directive: %s",
1470 if (!ofmt
->directive(directive
, value
, pass2
))
1471 report_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1472 "unrecognised directive [%s]",
1476 report_error(ERR_NONFATAL
,
1477 "invalid parameter to [%s] directive",
1480 } else { /* it isn't a directive */
1482 parse_line(pass1
, line
, &output_ins
,
1483 report_error
, evaluate
, def_label
);
1485 if (optimizing
> 0) {
1486 if (forwref
!= NULL
&& globallineno
== forwref
->lineno
) {
1487 output_ins
.forw_ref
= true;
1489 output_ins
.oprs
[forwref
->operand
].opflags
|=
1491 forwref
= saa_rstruct(forwrefs
);
1492 } while (forwref
!= NULL
1493 && forwref
->lineno
== globallineno
);
1495 output_ins
.forw_ref
= false;
1497 if (output_ins
.forw_ref
) {
1499 for (i
= 0; i
< output_ins
.operands
; i
++) {
1500 if (output_ins
.oprs
[i
].
1501 opflags
& OPFLAG_FORWARD
) {
1502 struct forwrefinfo
*fwinf
=
1503 (struct forwrefinfo
*)
1504 saa_wstruct(forwrefs
);
1505 fwinf
->lineno
= globallineno
;
1514 if (output_ins
.opcode
== I_EQU
) {
1517 * Special `..' EQUs get processed in pass two,
1518 * except `..@' macro-processor EQUs which are done
1519 * in the normal place.
1521 if (!output_ins
.label
)
1522 report_error(ERR_NONFATAL
,
1523 "EQU not preceded by label");
1525 else if (output_ins
.label
[0] != '.' ||
1526 output_ins
.label
[1] != '.' ||
1527 output_ins
.label
[2] == '@') {
1528 if (output_ins
.operands
== 1 &&
1529 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1530 output_ins
.oprs
[0].wrt
== NO_SEG
) {
1531 bool isext
= !!(output_ins
.oprs
[0].opflags
1533 def_label(output_ins
.label
,
1534 output_ins
.oprs
[0].segment
,
1535 output_ins
.oprs
[0].offset
, NULL
,
1538 } else if (output_ins
.operands
== 2
1539 && (output_ins
.oprs
[0].type
& IMMEDIATE
)
1540 && (output_ins
.oprs
[0].type
& COLON
)
1541 && output_ins
.oprs
[0].segment
== NO_SEG
1542 && output_ins
.oprs
[0].wrt
== NO_SEG
1543 && (output_ins
.oprs
[1].type
& IMMEDIATE
)
1544 && output_ins
.oprs
[1].segment
== NO_SEG
1545 && output_ins
.oprs
[1].wrt
== NO_SEG
) {
1546 def_label(output_ins
.label
,
1547 output_ins
.oprs
[0].offset
| SEG_ABS
,
1548 output_ins
.oprs
[1].offset
,
1549 NULL
, false, false, ofmt
,
1552 report_error(ERR_NONFATAL
,
1553 "bad syntax for EQU");
1557 * Special `..' EQUs get processed here, except
1558 * `..@' macro processor EQUs which are done above.
1560 if (output_ins
.label
[0] == '.' &&
1561 output_ins
.label
[1] == '.' &&
1562 output_ins
.label
[2] != '@') {
1563 if (output_ins
.operands
== 1 &&
1564 (output_ins
.oprs
[0].type
& IMMEDIATE
)) {
1565 define_label(output_ins
.label
,
1566 output_ins
.oprs
[0].segment
,
1567 output_ins
.oprs
[0].offset
,
1568 NULL
, false, false, ofmt
,
1570 } else if (output_ins
.operands
== 2
1571 && (output_ins
.oprs
[0].
1573 && (output_ins
.oprs
[0].type
& COLON
)
1574 && output_ins
.oprs
[0].segment
==
1576 && (output_ins
.oprs
[1].
1578 && output_ins
.oprs
[1].segment
==
1580 define_label(output_ins
.label
,
1583 output_ins
.oprs
[1].offset
,
1584 NULL
, false, false, ofmt
,
1587 report_error(ERR_NONFATAL
,
1588 "bad syntax for EQU");
1591 } else { /* instruction isn't an EQU */
1595 int64_t l
= insn_size(location
.segment
, offs
, sb
, cpu
,
1596 &output_ins
, report_error
);
1598 /* if (using_debug_info) && output_ins.opcode != -1) */
1599 if (using_debug_info
)
1600 { /* fbk 03/25/01 */
1601 /* this is done here so we can do debug type info */
1603 TYS_ELEMENTS(output_ins
.operands
);
1604 switch (output_ins
.opcode
) {
1607 TYS_ELEMENTS(output_ins
.oprs
[0].
1612 TYS_ELEMENTS(output_ins
.oprs
[0].
1617 TYS_ELEMENTS(output_ins
.oprs
[0].
1622 TYS_ELEMENTS(output_ins
.oprs
[0].
1627 TYS_ELEMENTS(output_ins
.oprs
[0].
1632 TYS_ELEMENTS(output_ins
.oprs
[0].
1637 TYS_ELEMENTS(output_ins
.oprs
[0].
1641 typeinfo
|= TY_BYTE
;
1644 typeinfo
|= TY_WORD
;
1647 if (output_ins
.eops_float
)
1648 typeinfo
|= TY_FLOAT
;
1650 typeinfo
|= TY_DWORD
;
1653 typeinfo
|= TY_QWORD
;
1656 typeinfo
|= TY_TBYTE
;
1659 typeinfo
|= TY_OWORD
;
1662 typeinfo
|= TY_YWORD
;
1665 typeinfo
= TY_LABEL
;
1669 ofmt
->current_dfmt
->debug_typevalue(typeinfo
);
1674 SET_CURR_OFFS(offs
);
1677 * else l == -1 => invalid instruction, which will be
1678 * flagged as an error on pass 2
1682 offs
+= assemble(location
.segment
, offs
, sb
, cpu
,
1683 &output_ins
, ofmt
, report_error
,
1685 SET_CURR_OFFS(offs
);
1689 cleanup_insn(&output_ins
);
1692 location
.offset
= offs
= GET_CURR_OFFS
;
1693 } /* end while (line = preproc->getline... */
1695 if (pass0
&& global_offset_changed
)
1696 report_error(ERR_NONFATAL
,
1697 "phase error detected at end of assembly.");
1700 preproc
->cleanup(1);
1702 if ((passn
> 1 && !global_offset_changed
) || pass0
== 2) {
1704 } else if (global_offset_changed
&&
1705 global_offset_changed
< prev_offset_changed
) {
1706 prev_offset_changed
= global_offset_changed
;
1712 if (terminate_after_phase
)
1715 if ((stall_count
> 997) || (passn
>= pass_max
)) {
1716 /* We get here if the labels don't converge
1717 * Example: FOO equ FOO + 1
1719 report_error(ERR_NONFATAL
,
1720 "Can't find valid values for all labels "
1721 "after %d passes, giving up.", passn
);
1722 report_error(ERR_NONFATAL
,
1723 "Possible causes: recursive EQUs, macro abuse.");
1724 terminate_after_phase
= true;
1729 preproc
->cleanup(0);
1731 if (!terminate_after_phase
&& opt_verbose_info
) {
1732 /* -On and -Ov switches */
1733 fprintf(stdout
, "info: assembly required 1+%d+1 passes\n", passn
-3);
1737 static enum directives
getkw(char **directive
, char **value
)
1743 /* allow leading spaces or tabs */
1744 while (*buf
== ' ' || *buf
== '\t')
1752 while (*p
&& *p
!= ']')
1760 while (*p
&& *p
!= ';') {
1761 if (!nasm_isspace(*p
))
1767 *directive
= p
= buf
+ 1;
1768 while (*buf
&& *buf
!= ' ' && *buf
!= ']' && *buf
!= '\t')
1775 while (nasm_isspace(*buf
))
1776 buf
++; /* beppu - skip leading whitespace */
1783 return bsii(*directive
, directives
, elements(directives
));
1787 * gnu style error reporting
1788 * This function prints an error message to error_file in the
1789 * style used by GNU. An example would be:
1790 * file.asm:50: error: blah blah blah
1791 * where file.asm is the name of the file, 50 is the line number on
1792 * which the error occurs (or is detected) and "error:" is one of
1793 * the possible optional diagnostics -- it can be "error" or "warning"
1794 * or something else. Finally the line terminates with the actual
1797 * @param severity the severity of the warning or error
1798 * @param fmt the printf style format string
1800 static void report_error_gnu(int severity
, const char *fmt
, ...)
1804 if (is_suppressed_warning(severity
))
1807 if (severity
& ERR_NOFILE
)
1808 fputs("nasm: ", error_file
);
1810 char *currentfile
= NULL
;
1812 src_get(&lineno
, ¤tfile
);
1813 fprintf(error_file
, "%s:%"PRId32
": ", currentfile
, lineno
);
1814 nasm_free(currentfile
);
1817 report_error_common(severity
, fmt
, ap
);
1822 * MS style error reporting
1823 * This function prints an error message to error_file in the
1824 * style used by Visual C and some other Microsoft tools. An example
1826 * file.asm(50) : error: blah blah blah
1827 * where file.asm is the name of the file, 50 is the line number on
1828 * which the error occurs (or is detected) and "error:" is one of
1829 * the possible optional diagnostics -- it can be "error" or "warning"
1830 * or something else. Finally the line terminates with the actual
1833 * @param severity the severity of the warning or error
1834 * @param fmt the printf style format string
1836 static void report_error_vc(int severity
, const char *fmt
, ...)
1840 if (is_suppressed_warning(severity
))
1843 if (severity
& ERR_NOFILE
)
1844 fputs("nasm: ", error_file
);
1846 char *currentfile
= NULL
;
1848 src_get(&lineno
, ¤tfile
);
1849 fprintf(error_file
, "%s(%"PRId32
") : ", currentfile
, lineno
);
1850 nasm_free(currentfile
);
1853 report_error_common(severity
, fmt
, ap
);
1858 * check for supressed warning
1859 * checks for suppressed warning or pass one only warning and we're
1862 * @param severity the severity of the warning or error
1863 * @return true if we should abort error/warning printing
1865 static bool is_suppressed_warning(int severity
)
1868 * See if it's a suppressed warning.
1870 return (severity
& ERR_MASK
) == ERR_WARNING
&&
1871 (((severity
& ERR_WARN_MASK
) != 0 &&
1872 !warning_on
[(severity
& ERR_WARN_MASK
) >> ERR_WARN_SHR
]) ||
1873 /* See if it's a pass-one only warning and we're not in pass one. */
1874 ((severity
& ERR_PASS1
) && pass0
!= 1) ||
1875 ((severity
& ERR_PASS2
) && pass0
!= 2));
1879 * common error reporting
1880 * This is the common back end of the error reporting schemes currently
1881 * implemented. It prints the nature of the warning and then the
1882 * specific error message to error_file and may or may not return. It
1883 * doesn't return if the error severity is a "panic" or "debug" type.
1885 * @param severity the severity of the warning or error
1886 * @param fmt the printf style format string
1888 static void report_error_common(int severity
, const char *fmt
,
1891 switch (severity
& (ERR_MASK
|ERR_NO_SEVERITY
)) {
1893 fputs("warning: ", error_file
);
1896 fputs("error: ", error_file
);
1899 fputs("fatal: ", error_file
);
1902 fputs("panic: ", error_file
);
1905 fputs("debug: ", error_file
);
1911 vfprintf(error_file
, fmt
, args
);
1912 putc('\n', error_file
);
1914 if (severity
& ERR_USAGE
)
1917 switch (severity
& ERR_MASK
) {
1919 /* no further action, by definition */
1922 if (warning_on
[0]) /* Treat warnings as errors */
1923 terminate_after_phase
= true;
1926 terminate_after_phase
= true;
1935 exit(1); /* instantly die */
1936 break; /* placate silly compilers */
1939 /* abort(); *//* halt, catch fire, and dump core */
1945 static void usage(void)
1947 fputs("type `nasm -h' for help\n", error_file
);
1950 static void register_output_formats(void)
1952 ofmt
= ofmt_register(report_error
);
1955 #define BUF_DELTA 512
1957 static FILE *no_pp_fp
;
1958 static efunc no_pp_err
;
1959 static ListGen
*no_pp_list
;
1960 static int32_t no_pp_lineinc
;
1962 static void no_pp_reset(char *file
, int pass
, efunc error
, evalfunc eval
,
1963 ListGen
* listgen
, StrList
**deplist
)
1965 src_set_fname(nasm_strdup(file
));
1969 no_pp_fp
= fopen(file
, "r");
1971 no_pp_err(ERR_FATAL
| ERR_NOFILE
,
1972 "unable to open input file `%s'", file
);
1973 no_pp_list
= listgen
;
1974 (void)pass
; /* placate compilers */
1975 (void)eval
; /* placate compilers */
1978 StrList
*sl
= nasm_malloc(strlen(file
)+1+sizeof sl
->next
);
1980 strcpy(sl
->str
, file
);
1985 static char *no_pp_getline(void)
1987 char *buffer
, *p
, *q
;
1990 bufsize
= BUF_DELTA
;
1991 buffer
= nasm_malloc(BUF_DELTA
);
1992 src_set_linnum(src_get_linnum() + no_pp_lineinc
);
1994 while (1) { /* Loop to handle %line */
1997 while (1) { /* Loop to handle long lines */
1998 q
= fgets(p
, bufsize
- (p
- buffer
), no_pp_fp
);
2002 if (p
> buffer
&& p
[-1] == '\n')
2004 if (p
- buffer
> bufsize
- 10) {
2006 offset
= p
- buffer
;
2007 bufsize
+= BUF_DELTA
;
2008 buffer
= nasm_realloc(buffer
, bufsize
);
2009 p
= buffer
+ offset
;
2013 if (!q
&& p
== buffer
) {
2019 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
2020 * them are present at the end of the line.
2022 buffer
[strcspn(buffer
, "\r\n\032")] = '\0';
2024 if (!nasm_strnicmp(buffer
, "%line", 5)) {
2027 char *nm
= nasm_malloc(strlen(buffer
));
2028 if (sscanf(buffer
+ 5, "%"PRId32
"+%d %s", &ln
, &li
, nm
) == 3) {
2029 nasm_free(src_set_fname(nm
));
2039 no_pp_list
->line(LIST_READ
, buffer
);
2044 static void no_pp_cleanup(int pass
)
2046 (void)pass
; /* placate GCC */
2050 static uint32_t get_cpu(char *value
)
2052 if (!strcmp(value
, "8086"))
2054 if (!strcmp(value
, "186"))
2056 if (!strcmp(value
, "286"))
2058 if (!strcmp(value
, "386"))
2060 if (!strcmp(value
, "486"))
2062 if (!strcmp(value
, "586") || !nasm_stricmp(value
, "pentium"))
2064 if (!strcmp(value
, "686") ||
2065 !nasm_stricmp(value
, "ppro") ||
2066 !nasm_stricmp(value
, "pentiumpro") || !nasm_stricmp(value
, "p2"))
2068 if (!nasm_stricmp(value
, "p3") || !nasm_stricmp(value
, "katmai"))
2070 if (!nasm_stricmp(value
, "p4") || /* is this right? -- jrc */
2071 !nasm_stricmp(value
, "willamette"))
2072 return IF_WILLAMETTE
;
2073 if (!nasm_stricmp(value
, "prescott"))
2075 if (!nasm_stricmp(value
, "x64") ||
2076 !nasm_stricmp(value
, "x86-64"))
2078 if (!nasm_stricmp(value
, "ia64") ||
2079 !nasm_stricmp(value
, "ia-64") ||
2080 !nasm_stricmp(value
, "itanium") ||
2081 !nasm_stricmp(value
, "itanic") || !nasm_stricmp(value
, "merced"))
2084 report_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2085 "unknown 'cpu' type");
2087 return IF_PLEVEL
; /* the maximum level */
2090 static int get_bits(char *value
)
2094 if ((i
= atoi(value
)) == 16)
2095 return i
; /* set for a 16-bit segment */
2098 report_error(ERR_NONFATAL
,
2099 "cannot specify 32-bit segment on processor below a 386");
2102 } else if (i
== 64) {
2103 if (cpu
< IF_X86_64
) {
2104 report_error(ERR_NONFATAL
,
2105 "cannot specify 64-bit segment on processor below an x86-64");
2109 report_error(ERR_NONFATAL
,
2110 "%s output format does not support 64-bit code",
2115 report_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2116 "`%s' is not a valid segment size; must be 16, 32 or 64",