1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2013 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
61 #include "output/outform.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. */
76 static int get_bits(char *value
);
77 static iflags_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;
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 */
107 int optimizing
= MAX_OPTIMIZE
; /* number of optimization passes to take */
108 static int sb
, cmd_sb
= 16; /* by default */
109 static iflags_t cmd_cpu
= IF_PLEVEL
; /* highest level by default */
110 static iflags_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
;
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
;
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
{
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},
164 {"lock", "lock prefix on unlockable instructions", true},
165 {"hle", "invalid hle prefixes", true},
168 static bool want_usage
;
169 static bool terminate_after_phase
;
170 int user_nolist
= 0; /* fbk 9/2/00 */
172 static char *quote_for_make(const char *str
);
174 static int64_t get_curr_offs(void)
176 return in_abs_seg
? abs_offset
: raa_read(offsets
, location
.segment
);
179 static void set_curr_offs(int64_t l_off
)
184 offsets
= raa_write(offsets
, location
.segment
, l_off
);
187 static void nasm_fputs(const char *line
, FILE * outfile
)
190 fputs(line
, outfile
);
196 /* Convert a struct tm to a POSIX-style time constant */
197 static int64_t posix_mktime(struct tm
*tm
)
200 int64_t y
= tm
->tm_year
;
202 /* See IEEE 1003.1:2004, section 4.14 */
204 t
= (y
-70)*365 + (y
-69)/4 - (y
-1)/100 + (y
+299)/400;
216 static void define_macros_early(void)
219 struct tm lt
, *lt_p
, gm
, *gm_p
;
222 lt_p
= localtime(&official_compile_time
);
226 strftime(temp
, sizeof temp
, "__DATE__=\"%Y-%m-%d\"", <
);
227 preproc
->pre_define(temp
);
228 strftime(temp
, sizeof temp
, "__DATE_NUM__=%Y%m%d", <
);
229 preproc
->pre_define(temp
);
230 strftime(temp
, sizeof temp
, "__TIME__=\"%H:%M:%S\"", <
);
231 preproc
->pre_define(temp
);
232 strftime(temp
, sizeof temp
, "__TIME_NUM__=%H%M%S", <
);
233 preproc
->pre_define(temp
);
236 gm_p
= gmtime(&official_compile_time
);
240 strftime(temp
, sizeof temp
, "__UTC_DATE__=\"%Y-%m-%d\"", &gm
);
241 preproc
->pre_define(temp
);
242 strftime(temp
, sizeof temp
, "__UTC_DATE_NUM__=%Y%m%d", &gm
);
243 preproc
->pre_define(temp
);
244 strftime(temp
, sizeof temp
, "__UTC_TIME__=\"%H:%M:%S\"", &gm
);
245 preproc
->pre_define(temp
);
246 strftime(temp
, sizeof temp
, "__UTC_TIME_NUM__=%H%M%S", &gm
);
247 preproc
->pre_define(temp
);
251 posix_time
= posix_mktime(&gm
);
253 posix_time
= posix_mktime(<
);
258 snprintf(temp
, sizeof temp
, "__POSIX_TIME__=%"PRId64
, posix_time
);
259 preproc
->pre_define(temp
);
263 static void define_macros_late(void)
268 * In case if output format is defined by alias
269 * we have to put shortname of the alias itself here
270 * otherwise ABI backward compatibility gets broken.
272 snprintf(temp
, sizeof(temp
), "__OUTPUT_FORMAT__=%s",
273 ofmt_alias
? ofmt_alias
->shortname
: ofmt
->shortname
);
274 preproc
->pre_define(temp
);
277 static void emit_dependencies(StrList
*list
)
283 if (depend_file
&& strcmp(depend_file
, "-")) {
284 deps
= fopen(depend_file
, "w");
286 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
287 "unable to write dependency file `%s'", depend_file
);
294 linepos
= fprintf(deps
, "%s:", depend_target
);
295 list_for_each(l
, list
) {
296 char *file
= quote_for_make(l
->str
);
298 if (linepos
+ len
> 62 && linepos
> 1) {
299 fprintf(deps
, " \\\n ");
302 fprintf(deps
, " %s", file
);
306 fprintf(deps
, "\n\n");
308 list_for_each_safe(l
, nl
, list
) {
309 if (depend_emit_phony
)
310 fprintf(deps
, "%s:\n\n", l
->str
);
318 int main(int argc
, char **argv
)
320 StrList
*depend_list
= NULL
, **depend_ptr
;
322 time(&official_compile_time
);
325 want_usage
= terminate_after_phase
= false;
326 nasm_set_verror(nasm_verror_gnu
);
332 nasm_init_malloc_error();
333 offsets
= raa_init();
334 forwrefs
= saa_init((int32_t)sizeof(struct forwrefinfo
));
337 operating_mode
= op_normal
;
341 /* Define some macros dependent on the runtime, but not
342 on the command line. */
343 define_macros_early();
345 parse_cmdline(argc
, argv
);
347 if (terminate_after_phase
) {
353 /* If debugging info is disabled, suppress any debug calls */
354 if (!using_debug_info
)
355 ofmt
->current_dfmt
= &null_debug_form
;
358 preproc
->extra_stdmac(ofmt
->stdmac
);
359 parser_global_info(&location
);
360 eval_global_info(ofmt
, lookup_label
, &location
);
362 /* define some macros dependent of command-line */
363 define_macros_late();
365 depend_ptr
= (depend_file
|| (operating_mode
== op_depend
)) ? &depend_list
: NULL
;
367 depend_target
= quote_for_make(outname
);
369 switch (operating_mode
) {
374 if (depend_missing_ok
)
375 preproc
->include_path(NULL
); /* "assume generated" */
377 preproc
->reset(inname
, 0, &nasmlist
, depend_ptr
);
378 if (outname
[0] == '\0')
379 ofmt
->filename(inname
, outname
);
381 while ((line
= preproc
->getline()))
390 char *file_name
= NULL
;
391 int32_t prior_linnum
= 0;
395 ofile
= fopen(outname
, "w");
397 nasm_error(ERR_FATAL
| ERR_NOFILE
,
398 "unable to open output file `%s'",
403 location
.known
= false;
406 preproc
->reset(inname
, 3, &nasmlist
, depend_ptr
);
407 memcpy(warning_on
, warning_on_global
, (ERR_WARN_MAX
+1) * sizeof(bool));
409 while ((line
= preproc
->getline())) {
411 * We generate %line directives if needed for later programs
413 int32_t linnum
= prior_linnum
+= lineinc
;
414 int altline
= src_get(&linnum
, &file_name
);
416 if (altline
== 1 && lineinc
== 1)
417 nasm_fputs("", ofile
);
419 lineinc
= (altline
!= -1 || lineinc
!= 1);
420 fprintf(ofile
? ofile
: stdout
,
421 "%%line %"PRId32
"+%d %s\n", linnum
, lineinc
,
424 prior_linnum
= linnum
;
426 nasm_fputs(line
, ofile
);
429 nasm_free(file_name
);
433 if (ofile
&& terminate_after_phase
)
442 * We must call ofmt->filename _anyway_, even if the user
443 * has specified their own output file, because some
444 * formats (eg OBJ and COFF) use ofmt->filename to find out
445 * the name of the input file and then put that inside the
448 ofmt
->filename(inname
, outname
);
450 ofile
= fopen(outname
, (ofmt
->flags
& OFMT_TEXT
) ? "w" : "wb");
452 nasm_error(ERR_FATAL
| ERR_NOFILE
,
453 "unable to open output file `%s'", outname
);
457 * We must call init_labels() before ofmt->init() since
458 * some object formats will want to define labels in their
459 * init routines. (eg OS/2 defines the FLAT group)
464 dfmt
= ofmt
->current_dfmt
;
467 assemble_file(inname
, depend_ptr
);
469 if (!terminate_after_phase
) {
470 ofmt
->cleanup(using_debug_info
);
474 nasm_error(ERR_NONFATAL
|ERR_NOFILE
,
475 "write error on output file `%s'", outname
);
481 if (terminate_after_phase
)
489 if (depend_list
&& !terminate_after_phase
)
490 emit_dependencies(depend_list
);
500 return terminate_after_phase
;
504 * Get a parameter for a command line option.
505 * First arg must be in the form of e.g. -f...
507 static char *get_param(char *p
, char *q
, bool *advance
)
510 if (p
[2]) /* the parameter's in the option */
511 return nasm_skip_spaces(p
+ 2);
516 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
517 "option `-%c' requires an argument", p
[1]);
524 static void copy_filename(char *dst
, const char *src
)
526 size_t len
= strlen(src
);
528 if (len
>= (size_t)FILENAME_MAX
) {
529 nasm_error(ERR_FATAL
| ERR_NOFILE
, "file name too long");
532 strncpy(dst
, src
, FILENAME_MAX
);
536 * Convert a string to Make-safe form
538 static char *quote_for_make(const char *str
)
543 size_t n
= 1; /* Terminating zero */
549 for (p
= str
; *p
; p
++) {
553 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
573 /* Convert N backslashes at the end of filename to 2N backslashes */
577 os
= q
= nasm_malloc(n
);
580 for (p
= str
; *p
; p
++) {
623 #define OPT_POSTFIX 1
624 struct textargs textopts
[] = {
625 {"prefix", OPT_PREFIX
},
626 {"postfix", OPT_POSTFIX
},
630 static bool stopoptions
= false;
631 static bool process_arg(char *p
, char *q
)
635 bool advance
= false;
641 if (p
[0] == '-' && !stopoptions
) {
642 if (strchr("oOfpPdDiIlFXuUZwW", p
[1])) {
643 /* These parameters take values */
644 if (!(param
= get_param(p
, q
, &advance
)))
653 case 'o': /* output file */
654 copy_filename(outname
, param
);
657 case 'f': /* output format */
658 ofmt
= ofmt_find(param
, &ofmt_alias
);
660 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
661 "unrecognised output format `%s' - "
662 "use -hf for a list", param
);
666 case 'O': /* Optimization level */
671 /* Naked -O == -Ox */
672 optimizing
= MAX_OPTIMIZE
;
676 case '0': case '1': case '2': case '3': case '4':
677 case '5': case '6': case '7': case '8': case '9':
678 opt
= strtoul(param
, ¶m
, 10);
680 /* -O0 -> optimizing == -1, 0.98 behaviour */
681 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
683 optimizing
= opt
- 1;
691 opt_verbose_info
= true;
696 optimizing
= MAX_OPTIMIZE
;
700 nasm_error(ERR_FATAL
,
701 "unknown optimization option -O%c\n",
706 if (optimizing
> MAX_OPTIMIZE
)
707 optimizing
= MAX_OPTIMIZE
;
712 case 'p': /* pre-include */
714 preproc
->pre_include(param
);
717 case 'd': /* pre-define */
719 preproc
->pre_define(param
);
722 case 'u': /* un-define */
724 preproc
->pre_undefine(param
);
727 case 'i': /* include search path */
729 preproc
->include_path(param
);
732 case 'l': /* listing file */
733 copy_filename(listname
, param
);
736 case 'Z': /* error messages file */
737 copy_filename(errname
, param
);
740 case 'F': /* specify debug format */
741 ofmt
->current_dfmt
= dfmt_find(ofmt
, param
);
742 if (!ofmt
->current_dfmt
) {
743 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
744 "unrecognized debug format `%s' for"
745 " output format `%s'",
746 param
, ofmt
->shortname
);
748 using_debug_info
= true;
751 case 'X': /* specify error reporting format */
752 if (nasm_stricmp("vc", param
) == 0)
753 nasm_set_verror(nasm_verror_vc
);
754 else if (nasm_stricmp("gnu", param
) == 0)
755 nasm_set_verror(nasm_verror_gnu
);
757 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
758 "unrecognized error reporting format `%s'",
763 using_debug_info
= true;
768 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
770 " [options...] [--] filename\n"
771 " or nasm -v for version info\n\n"
772 " -t assemble in SciTech TASM compatible mode\n"
773 " -g generate debug information in selected format\n");
775 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
776 " -a don't preprocess (assemble only)\n"
777 " -M generate Makefile dependencies on stdout\n"
778 " -MG d:o, missing files assumed generated\n"
779 " -MF <file> set Makefile dependency file\n"
780 " -MD <file> assemble and generate dependencies\n"
781 " -MT <file> dependency target name\n"
782 " -MQ <file> dependency target name (quoted)\n"
783 " -MP emit phony target\n\n"
784 " -Z<file> redirect error messages to file\n"
785 " -s redirect error messages to stdout\n\n"
786 " -F format select a debugging format\n\n"
787 " -o outfile write output to an outfile\n\n"
788 " -f format select an output format\n\n"
789 " -l listfile write listing to a listfile\n\n"
790 " -I<path> adds a pathname to the include file path\n");
792 (" -O<digit> optimize branch offsets\n"
793 " -O0: No optimization\n"
794 " -O1: Minimal optimization\n"
795 " -Ox: Multipass optimization (default)\n\n"
796 " -P<file> pre-includes a file\n"
797 " -D<macro>[=<value>] pre-defines a macro\n"
798 " -U<macro> undefines a macro\n"
799 " -X<format> specifies error reporting format (gnu or vc)\n"
800 " -w+foo enables warning foo (equiv. -Wfoo)\n"
801 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
802 " -h show invocation summary and exit\n\n"
803 "--prefix,--postfix\n"
804 " this options prepend or append the given argument to all\n"
805 " extern and global variables\n\n"
807 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
808 printf(" %-23s %s (default %s)\n",
809 warnings
[i
].name
, warnings
[i
].help
,
810 warnings
[i
].enabled
? "on" : "off");
812 ("\nresponse files should contain command line parameters"
813 ", one per line.\n");
815 printf("\nvalid output formats for -f are"
816 " (`*' denotes default):\n");
817 ofmt_list(ofmt
, stdout
);
819 printf("\nFor a list of valid output formats, use -hf.\n");
820 printf("For a list of debug formats, use -f <form> -y.\n");
822 exit(0); /* never need usage message here */
826 printf("\nvalid debug formats for '%s' output format are"
827 " ('*' denotes default):\n", ofmt
->shortname
);
828 dfmt_list(ofmt
, stdout
);
833 tasm_compatible_mode
= true;
837 printf("NASM version %s compiled on %s%s\n",
838 nasm_version
, nasm_date
, nasm_compile_options
);
839 exit(0); /* never need usage message here */
842 case 'e': /* preprocess only */
844 operating_mode
= op_preprocess
;
847 case 'a': /* assemble only - don't preprocess */
848 preproc
= &preproc_nop
;
852 if (param
[0] == 'n' && param
[1] == 'o' && param
[2] == '-') {
861 if (param
[0] != '+' && param
[0] != '-') {
862 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
863 "invalid option to `-w'");
866 do_warn
= (param
[0] == '+');
870 for (i
= 0; i
<= ERR_WARN_MAX
; i
++) {
871 if (!nasm_stricmp(param
, warnings
[i
].name
))
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
;
883 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
884 "invalid warning `%s'", param
);
891 operating_mode
= op_depend
;
894 operating_mode
= op_depend
;
895 depend_missing_ok
= true;
898 depend_emit_phony
= true;
909 depend_target
= quote_for_make(q
);
913 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
914 "unknown dependency option `-M%c'", p
[2]);
917 if (advance
&& (!q
|| !q
[0])) {
918 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
919 "option `-M%c' requires a parameter", p
[2]);
928 if (p
[2] == 0) { /* -- => stop processing options */
932 for (s
= 0; textopts
[s
].label
; s
++) {
933 if (!nasm_stricmp(p
+ 2, textopts
[s
].label
)) {
944 nasm_error(ERR_NONFATAL
| ERR_NOFILE
|
946 "option `--%s' requires an argument",
950 advance
= 1, param
= q
;
953 if (s
== OPT_PREFIX
) {
954 strncpy(lprefix
, param
, PREFIX_MAX
- 1);
955 lprefix
[PREFIX_MAX
- 1] = 0;
958 if (s
== OPT_POSTFIX
) {
959 strncpy(lpostfix
, param
, POSTFIX_MAX
- 1);
960 lpostfix
[POSTFIX_MAX
- 1] = 0;
967 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
968 "unrecognised option `--%s'", p
+ 2);
976 if (!ofmt
->setinfo(GI_SWITCH
, &p
))
977 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
978 "unrecognised option `-%c'", p
[1]);
983 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
984 "more than one input file specified");
986 copy_filename(inname
, p
);
993 #define ARG_BUF_DELTA 128
995 static void process_respfile(FILE * rfile
)
997 char *buffer
, *p
, *q
, *prevarg
;
998 int bufsize
, prevargsize
;
1000 bufsize
= prevargsize
= ARG_BUF_DELTA
;
1001 buffer
= nasm_malloc(ARG_BUF_DELTA
);
1002 prevarg
= nasm_malloc(ARG_BUF_DELTA
);
1005 while (1) { /* Loop to handle all lines in file */
1007 while (1) { /* Loop to handle long lines */
1008 q
= fgets(p
, bufsize
- (p
- buffer
), rfile
);
1012 if (p
> buffer
&& p
[-1] == '\n')
1014 if (p
- buffer
> bufsize
- 10) {
1016 offset
= p
- buffer
;
1017 bufsize
+= ARG_BUF_DELTA
;
1018 buffer
= nasm_realloc(buffer
, bufsize
);
1019 p
= buffer
+ offset
;
1023 if (!q
&& p
== buffer
) {
1025 process_arg(prevarg
, NULL
);
1032 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1033 * them are present at the end of the line.
1035 *(p
= &buffer
[strcspn(buffer
, "\r\n\032")]) = '\0';
1037 while (p
> buffer
&& nasm_isspace(p
[-1]))
1040 p
= nasm_skip_spaces(buffer
);
1042 if (process_arg(prevarg
, p
))
1045 if ((int) strlen(p
) > prevargsize
- 10) {
1046 prevargsize
+= ARG_BUF_DELTA
;
1047 prevarg
= nasm_realloc(prevarg
, prevargsize
);
1049 strncpy(prevarg
, p
, prevargsize
);
1053 /* Function to process args from a string of args, rather than the
1054 * argv array. Used by the environment variable and response file
1057 static void process_args(char *args
)
1059 char *p
, *q
, *arg
, *prevarg
;
1060 char separator
= ' ';
1063 if (*p
&& *p
!= '-')
1068 while (*p
&& *p
!= separator
)
1070 while (*p
== separator
)
1074 if (process_arg(prevarg
, arg
))
1078 process_arg(arg
, NULL
);
1081 static void process_response_file(const char *file
)
1084 FILE *f
= fopen(file
, "r");
1089 while (fgets(str
, sizeof str
, f
)) {
1095 static void parse_cmdline(int argc
, char **argv
)
1098 char *envreal
, *envcopy
= NULL
, *p
;
1101 *inname
= *outname
= *listname
= *errname
= '\0';
1103 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
1104 warning_on_global
[i
] = warnings
[i
].enabled
;
1107 * First, process the NASMENV environment variable.
1109 envreal
= getenv("NASMENV");
1111 envcopy
= nasm_strdup(envreal
);
1112 process_args(envcopy
);
1117 * Now process the actual command line.
1122 if (argv
[0][0] == '@') {
1124 * We have a response file, so process this as a set of
1125 * arguments like the environment variable. This allows us
1126 * to have multiple arguments on a single line, which is
1127 * different to the -@resp file processing below for regular
1130 process_response_file(argv
[0]+1);
1134 if (!stopoptions
&& argv
[0][0] == '-' && argv
[0][1] == '@') {
1135 p
= get_param(argv
[0], argc
> 1 ? argv
[1] : NULL
, &advance
);
1137 rfile
= fopen(p
, "r");
1139 process_respfile(rfile
);
1142 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1143 "unable to open response file `%s'", p
);
1146 advance
= process_arg(argv
[0], argc
> 1 ? argv
[1] : NULL
);
1147 argv
+= advance
, argc
-= advance
;
1151 * Look for basic command line typos. This definitely doesn't
1152 * catch all errors, but it might help cases of fumbled fingers.
1155 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1156 "no input file specified");
1157 else if (!strcmp(inname
, errname
) ||
1158 !strcmp(inname
, outname
) ||
1159 !strcmp(inname
, listname
) ||
1160 (depend_file
&& !strcmp(inname
, depend_file
)))
1161 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1162 "file `%s' is both input and output file",
1166 error_file
= fopen(errname
, "w");
1168 error_file
= stderr
; /* Revert to default! */
1169 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1170 "cannot open file `%s' for error messages",
1176 static enum directives
getkw(char **directive
, char **value
);
1178 static void assemble_file(char *fname
, StrList
**depend_ptr
)
1180 char *directive
, *value
, *p
, *q
, *special
, *line
;
1186 struct tokenval tokval
;
1190 if (cmd_sb
== 32 && cmd_cpu
< IF_386
)
1191 nasm_error(ERR_FATAL
, "command line: "
1192 "32-bit segment size requires a higher cpu");
1194 pass_max
= prev_offset_changed
= (INT_MAX
>> 1) + 2; /* Almost unlimited */
1195 for (passn
= 1; pass0
<= 2; passn
++) {
1199 pass1
= pass0
== 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1200 pass2
= passn
> 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1201 /* pass0 0, 0, 0, ..., 1, 2 */
1203 def_label
= passn
> 1 ? redefine_label
: define_label
;
1205 globalbits
= sb
= cmd_sb
; /* set 'bits' to command line default */
1209 nasmlist
.init(listname
, nasm_error
);
1212 global_offset_changed
= 0; /* set by redefine_label */
1213 location
.segment
= ofmt
->section(NULL
, pass2
, &sb
);
1216 saa_rewind(forwrefs
);
1217 forwref
= saa_rstruct(forwrefs
);
1219 offsets
= raa_init();
1221 preproc
->reset(fname
, pass1
, &nasmlist
,
1222 pass1
== 2 ? depend_ptr
: NULL
);
1223 memcpy(warning_on
, warning_on_global
, (ERR_WARN_MAX
+1) * sizeof(bool));
1227 location
.known
= true;
1228 location
.offset
= offs
= get_curr_offs();
1230 while ((line
= preproc
->getline())) {
1235 * Here we parse our directives; this is not handled by the
1236 * 'real' parser. This really should be a separate function.
1239 d
= getkw(&directive
, &value
);
1244 case D_SEGMENT
: /* [SEGMENT n] */
1246 seg
= ofmt
->section(value
, pass2
, &sb
);
1247 if (seg
== NO_SEG
) {
1248 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1249 "segment name `%s' not recognized",
1253 location
.segment
= seg
;
1256 case D_SECTALIGN
: /* [SECTALIGN n] */
1260 tokval
.t_type
= TOKEN_INVALID
;
1261 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
, nasm_error
, NULL
);
1263 unsigned int align
= (unsigned int)e
->value
;
1264 if ((uint64_t)e
->value
> 0x7fffffff) {
1266 * FIXME: Please make some sane message here
1267 * ofmt should have some 'check' method which
1268 * would report segment alignment bounds.
1270 nasm_error(ERR_FATAL
,
1271 "incorrect segment alignment `%s'", value
);
1272 } else if (!is_power2(align
)) {
1273 nasm_error(ERR_NONFATAL
,
1274 "segment alignment `%s' is not power of two",
1277 /* callee should be able to handle all details */
1278 ofmt
->sectalign(location
.segment
, align
);
1282 case D_EXTERN
: /* [EXTERN label:special] */
1284 value
++; /* skip initial $ if present */
1287 while (*q
&& *q
!= ':')
1291 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1293 } else if (passn
== 1) {
1298 while (*q
&& *q
!= ':') {
1304 nasm_error(ERR_NONFATAL
,
1305 "identifier expected after EXTERN");
1313 if (!is_extern(value
)) { /* allow re-EXTERN to be ignored */
1315 pass0
= 1; /* fake pass 1 in labels.c */
1316 declare_as_global(value
, special
);
1317 define_label(value
, seg_alloc(), 0L, NULL
,
1321 } /* else pass0 == 1 */
1323 case D_BITS
: /* [BITS bits] */
1324 globalbits
= sb
= get_bits(value
);
1326 case D_GLOBAL
: /* [GLOBAL symbol:special] */
1328 value
++; /* skip initial $ if present */
1329 if (pass0
== 2) { /* pass 2 */
1331 while (*q
&& *q
!= ':')
1335 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1337 } else if (pass2
== 1) { /* pass == 1 */
1342 while (*q
&& *q
!= ':') {
1348 nasm_error(ERR_NONFATAL
,
1349 "identifier expected after GLOBAL");
1357 declare_as_global(value
, special
);
1360 case D_COMMON
: /* [COMMON symbol size:special] */
1365 value
++; /* skip initial $ if present */
1370 while (*p
&& !nasm_isspace(*p
)) {
1376 nasm_error(ERR_NONFATAL
,
1377 "identifier expected after COMMON");
1381 p
= nasm_zap_spaces_fwd(p
);
1383 while (*q
&& *q
!= ':')
1391 size
= readnum(p
, &rn_error
);
1393 nasm_error(ERR_NONFATAL
,
1394 "invalid size specified"
1395 " in COMMON declaration");
1399 nasm_error(ERR_NONFATAL
,
1400 "no size specified in"
1401 " COMMON declaration");
1406 define_common(value
, seg_alloc(), size
, special
);
1407 } else if (pass0
== 2) {
1409 ofmt
->symdef(value
, 0L, 0L, 3, special
);
1413 case D_ABSOLUTE
: /* [ABSOLUTE address] */
1416 tokval
.t_type
= TOKEN_INVALID
;
1417 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
,
1422 1 ? ERR_NONFATAL
: ERR_PANIC
,
1423 "cannot use non-relocatable expression as "
1424 "ABSOLUTE address");
1426 abs_seg
= reloc_seg(e
);
1427 abs_offset
= reloc_value(e
);
1429 } else if (passn
== 1)
1430 abs_offset
= 0x100; /* don't go near zero in case of / */
1432 nasm_error(ERR_PANIC
, "invalid ABSOLUTE address "
1435 location
.segment
= NO_SEG
;
1437 case D_DEBUG
: /* [DEBUG] */
1440 bool badid
, overlong
;
1444 badid
= overlong
= false;
1445 if (!isidstart(*p
)) {
1448 while (*p
&& !nasm_isspace(*p
)) {
1449 if (q
>= debugid
+ sizeof debugid
- 1) {
1460 nasm_error(passn
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1461 "identifier expected after DEBUG");
1465 nasm_error(passn
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1466 "DEBUG identifier too long");
1469 p
= nasm_skip_spaces(p
);
1471 dfmt
->debug_directive(debugid
, p
);
1474 case D_WARNING
: /* [WARNING {+|-|*}warn-name] */
1475 value
= nasm_skip_spaces(value
);
1477 case '-': validid
= 0; value
++; break;
1478 case '+': validid
= 1; value
++; break;
1479 case '*': validid
= 2; value
++; break;
1480 default: validid
= 1; break;
1483 for (i
= 1; i
<= ERR_WARN_MAX
; i
++)
1484 if (!nasm_stricmp(value
, warnings
[i
].name
))
1486 if (i
<= ERR_WARN_MAX
) {
1489 warning_on
[i
] = false;
1492 warning_on
[i
] = true;
1495 warning_on
[i
] = warning_on_global
[i
];
1499 nasm_error(ERR_NONFATAL
,
1500 "invalid warning id in WARNING directive");
1502 case D_CPU
: /* [CPU] */
1503 cpu
= get_cpu(value
);
1505 case D_LIST
: /* [LIST {+|-}] */
1506 value
= nasm_skip_spaces(value
);
1507 if (*value
== '+') {
1510 if (*value
== '-') {
1517 case D_DEFAULT
: /* [DEFAULT] */
1520 tokval
.t_type
= TOKEN_INVALID
;
1521 if (stdscan(NULL
, &tokval
) == TOKEN_SPECIAL
) {
1522 switch ((int)tokval
.t_integer
) {
1538 if (float_option(value
)) {
1539 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1540 "unknown 'float' directive: %s",
1545 if (ofmt
->directive(d
, value
, pass2
))
1547 /* else fall through */
1549 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1550 "unrecognised directive [%s]",
1555 nasm_error(ERR_NONFATAL
,
1556 "invalid parameter to [%s] directive",
1559 } else { /* it isn't a directive */
1560 parse_line(pass1
, line
, &output_ins
, def_label
);
1562 if (optimizing
> 0) {
1563 if (forwref
!= NULL
&& globallineno
== forwref
->lineno
) {
1564 output_ins
.forw_ref
= true;
1566 output_ins
.oprs
[forwref
->operand
].opflags
|= OPFLAG_FORWARD
;
1567 forwref
= saa_rstruct(forwrefs
);
1568 } while (forwref
!= NULL
1569 && forwref
->lineno
== globallineno
);
1571 output_ins
.forw_ref
= false;
1573 if (output_ins
.forw_ref
) {
1575 for (i
= 0; i
< output_ins
.operands
; i
++) {
1576 if (output_ins
.oprs
[i
].opflags
& OPFLAG_FORWARD
) {
1577 struct forwrefinfo
*fwinf
= (struct forwrefinfo
*)saa_wstruct(forwrefs
);
1578 fwinf
->lineno
= globallineno
;
1587 if (output_ins
.opcode
== I_EQU
) {
1590 * Special `..' EQUs get processed in pass two,
1591 * except `..@' macro-processor EQUs which are done
1592 * in the normal place.
1594 if (!output_ins
.label
)
1595 nasm_error(ERR_NONFATAL
,
1596 "EQU not preceded by label");
1598 else if (output_ins
.label
[0] != '.' ||
1599 output_ins
.label
[1] != '.' ||
1600 output_ins
.label
[2] == '@') {
1601 if (output_ins
.operands
== 1 &&
1602 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1603 output_ins
.oprs
[0].wrt
== NO_SEG
) {
1604 bool isext
= !!(output_ins
.oprs
[0].opflags
& OPFLAG_EXTERN
);
1605 def_label(output_ins
.label
,
1606 output_ins
.oprs
[0].segment
,
1607 output_ins
.oprs
[0].offset
, NULL
,
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);
1622 nasm_error(ERR_NONFATAL
,
1623 "bad syntax for EQU");
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);
1650 nasm_error(ERR_NONFATAL
,
1651 "bad syntax for EQU");
1654 } else { /* instruction isn't an EQU */
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 */
1666 TYS_ELEMENTS(output_ins
.operands
);
1667 switch (output_ins
.opcode
) {
1670 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_BYTE
;
1674 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_WORD
;
1678 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_DWORD
;
1682 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_QWORD
;
1686 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_TBYTE
;
1690 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_OWORD
;
1694 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_YWORD
;
1697 typeinfo
|= TY_BYTE
;
1700 typeinfo
|= TY_WORD
;
1703 if (output_ins
.eops_float
)
1704 typeinfo
|= TY_FLOAT
;
1706 typeinfo
|= TY_DWORD
;
1709 typeinfo
|= TY_QWORD
;
1712 typeinfo
|= TY_TBYTE
;
1715 typeinfo
|= TY_OWORD
;
1718 typeinfo
|= TY_YWORD
;
1721 typeinfo
= TY_LABEL
;
1725 dfmt
->debug_typevalue(typeinfo
);
1729 set_curr_offs(offs
);
1732 * else l == -1 => invalid instruction, which will be
1733 * flagged as an error on pass 2
1737 offs
+= assemble(location
.segment
, offs
, sb
, cpu
,
1738 &output_ins
, ofmt
, nasm_error
,
1740 set_curr_offs(offs
);
1744 cleanup_insn(&output_ins
);
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.");
1755 preproc
->cleanup(1);
1757 if ((passn
> 1 && !global_offset_changed
) || pass0
== 2) {
1759 } else if (global_offset_changed
&&
1760 global_offset_changed
< prev_offset_changed
) {
1761 prev_offset_changed
= global_offset_changed
;
1767 if (terminate_after_phase
)
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.");
1783 preproc
->cleanup(0);
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
)
1795 buf
= nasm_skip_spaces(*directive
);
1797 /* it should be enclosed in [ ] */
1800 q
= strchr(buf
, ']');
1804 /* stip off the comments */
1805 p
= strchr(buf
, ';');
1807 if (p
< q
) /* ouch! somwhere inside */
1812 /* no brace, no trailing spaces */
1814 nasm_zap_spaces_rev(--q
);
1817 p
= nasm_skip_spaces(++buf
);
1818 q
= nasm_skip_word(p
);
1820 return D_none
; /* sigh... no value there */
1824 /* and value finally */
1825 p
= nasm_skip_spaces(++q
);
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
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
;
1850 if (is_suppressed_warning(severity
))
1853 if (!(severity
& ERR_NOFILE
))
1854 src_get(&lineno
, ¤tfile
);
1857 fprintf(error_file
, "%s:%"PRId32
": ", currentfile
, lineno
);
1858 nasm_free(currentfile
);
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
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
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
;
1886 if (is_suppressed_warning(severity
))
1889 if (!(severity
& ERR_NOFILE
))
1890 src_get(&lineno
, ¤tfile
);
1893 fprintf(error_file
, "%s(%"PRId32
") : ", currentfile
, lineno
);
1894 nasm_free(currentfile
);
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
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
)
1912 /* Not a warning at all */
1913 if ((severity
& ERR_MASK
) != ERR_WARNING
)
1916 /* See if it's a pass-one only warning and we're not in pass one. */
1917 if (((severity
& ERR_PASS1
) && pass0
!= 1) ||
1918 ((severity
& ERR_PASS2
) && pass0
!= 2))
1921 /* Might be a warning but suppresed explicitly */
1922 if (severity
& ERR_WARN_MASK
)
1923 return !warning_on
[WARN_IDX(severity
)];
1929 * common error reporting
1930 * This is the common back end of the error reporting schemes currently
1931 * implemented. It prints the nature of the warning and then the
1932 * specific error message to error_file and may or may not return. It
1933 * doesn't return if the error severity is a "panic" or "debug" type.
1935 * @param severity the severity of the warning or error
1936 * @param fmt the printf style format string
1938 static void nasm_verror_common(int severity
, const char *fmt
, va_list args
)
1943 switch (severity
& (ERR_MASK
|ERR_NO_SEVERITY
)) {
1964 vsnprintf(msg
, sizeof msg
, fmt
, args
);
1966 fprintf(error_file
, "%s%s\n", pfx
, msg
);
1969 nasmlist
.error(severity
, pfx
, msg
);
1971 if (severity
& ERR_USAGE
)
1974 switch (severity
& ERR_MASK
) {
1976 /* no further action, by definition */
1979 /* Treat warnings as errors */
1980 if (warning_on
[WARN_IDX(ERR_WARN_TERM
)])
1981 terminate_after_phase
= true;
1984 terminate_after_phase
= true;
1994 exit(1); /* instantly die */
1995 break; /* placate silly compilers */
1998 /* abort(); */ /* halt, catch fire, and dump core */
2004 static void usage(void)
2006 fputs("type `nasm -h' for help\n", error_file
);
2009 static iflags_t
get_cpu(char *value
)
2011 if (!strcmp(value
, "8086"))
2013 if (!strcmp(value
, "186"))
2015 if (!strcmp(value
, "286"))
2017 if (!strcmp(value
, "386"))
2019 if (!strcmp(value
, "486"))
2021 if (!strcmp(value
, "586") || !nasm_stricmp(value
, "pentium"))
2023 if (!strcmp(value
, "686") ||
2024 !nasm_stricmp(value
, "ppro") ||
2025 !nasm_stricmp(value
, "pentiumpro") || !nasm_stricmp(value
, "p2"))
2027 if (!nasm_stricmp(value
, "p3") || !nasm_stricmp(value
, "katmai"))
2029 if (!nasm_stricmp(value
, "p4") || /* is this right? -- jrc */
2030 !nasm_stricmp(value
, "willamette"))
2031 return IF_WILLAMETTE
;
2032 if (!nasm_stricmp(value
, "prescott"))
2034 if (!nasm_stricmp(value
, "x64") ||
2035 !nasm_stricmp(value
, "x86-64"))
2037 if (!nasm_stricmp(value
, "ia64") ||
2038 !nasm_stricmp(value
, "ia-64") ||
2039 !nasm_stricmp(value
, "itanium") ||
2040 !nasm_stricmp(value
, "itanic") || !nasm_stricmp(value
, "merced"))
2043 nasm_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2044 "unknown 'cpu' type");
2046 return IF_PLEVEL
; /* the maximum level */
2049 static int get_bits(char *value
)
2053 if ((i
= atoi(value
)) == 16)
2054 return i
; /* set for a 16-bit segment */
2057 nasm_error(ERR_NONFATAL
,
2058 "cannot specify 32-bit segment on processor below a 386");
2061 } else if (i
== 64) {
2062 if (cpu
< IF_X86_64
) {
2063 nasm_error(ERR_NONFATAL
,
2064 "cannot specify 64-bit segment on processor below an x86-64");
2068 nasm_error(ERR_NONFATAL
,
2069 "%s output format does not support 64-bit code",
2074 nasm_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2075 "`%s' is not a valid segment size; must be 16, 32 or 64",