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"
66 * This is the maximum number of optimization passes to do. If we ever
67 * find a case where the optimizer doesn't naturally converge, we might
68 * have to drop this value so the assembler doesn't appear to just hang.
70 #define MAX_OPTIMIZE (INT_MAX >> 1)
72 struct forwrefinfo
{ /* info held on forward refs. */
77 static int get_bits(char *value
);
78 static iflag_t
get_cpu(char *cpu_str
);
79 static void parse_cmdline(int, char **);
80 static void assemble_file(char *, StrList
**);
81 static void nasm_verror_gnu(int severity
, const char *fmt
, va_list args
);
82 static void nasm_verror_vc(int severity
, const char *fmt
, va_list args
);
83 static void nasm_verror_common(int severity
, const char *fmt
, va_list args
);
84 static bool is_suppressed_warning(int severity
);
85 static void usage(void);
87 static int using_debug_info
, opt_verbose_info
;
88 bool tasm_compatible_mode
= false;
94 static time_t official_compile_time
;
96 static char inname
[FILENAME_MAX
];
97 static char outname
[FILENAME_MAX
];
98 static char listname
[FILENAME_MAX
];
99 static char errname
[FILENAME_MAX
];
100 static int globallineno
; /* for forward-reference tracking */
101 /* static int pass = 0; */
102 struct ofmt
*ofmt
= &OF_DEFAULT
;
103 struct ofmt_alias
*ofmt_alias
= NULL
;
104 const struct dfmt
*dfmt
;
106 static FILE *error_file
; /* Where to write error messages */
109 int optimizing
= MAX_OPTIMIZE
; /* number of optimization passes to take */
110 static int sb
, cmd_sb
= 16; /* by default */
113 static iflag_t cmd_cpu
;
115 int64_t global_offset_changed
; /* referenced in labels.c */
116 int64_t prev_offset_changed
;
119 static struct location location
;
120 int in_abs_seg
; /* Flag we are in ABSOLUTE seg */
121 int32_t abs_seg
; /* ABSOLUTE segment basis */
122 int32_t abs_offset
; /* ABSOLUTE offset */
124 static struct RAA
*offsets
;
126 static struct SAA
*forwrefs
; /* keep track of forward references */
127 static const struct forwrefinfo
*forwref
;
129 static struct preproc_ops
*preproc
;
131 #define OP_NORMAL (1u << 0)
132 #define OP_PREPROCESS (1u << 1)
133 #define OP_DEPEND (1u << 2)
135 static unsigned int operating_mode
;
137 /* Dependency flags */
138 static bool depend_emit_phony
= false;
139 static bool depend_missing_ok
= false;
140 static const char *depend_target
= NULL
;
141 static const char *depend_file
= NULL
;
144 * Which of the suppressible warnings are suppressed. Entry zero
145 * isn't an actual warning, but it used for -w+error/-Werror.
148 static bool warning_on
[ERR_WARN_MAX
+1]; /* Current state */
149 static bool warning_on_global
[ERR_WARN_MAX
+1]; /* Command-line state */
151 static const struct warning
{
155 } warnings
[ERR_WARN_MAX
+1] = {
156 {"error", "treat warnings as errors", false},
157 {"macro-params", "macro calls with wrong parameter count", true},
158 {"macro-selfref", "cyclic macro references", false},
159 {"macro-defaults", "macros with more default than optional parameters", true},
160 {"orphan-labels", "labels alone on lines without trailing `:'", true},
161 {"number-overflow", "numeric constant does not fit", true},
162 {"gnu-elf-extensions", "using 8- or 16-bit relocation in ELF32, a GNU extension", false},
163 {"float-overflow", "floating point overflow", true},
164 {"float-denorm", "floating point denormal", false},
165 {"float-underflow", "floating point underflow", false},
166 {"float-toolong", "too many digits in floating-point number", true},
167 {"user", "%warning directives", true},
168 {"lock", "lock prefix on unlockable instructions", true},
169 {"hle", "invalid hle prefixes", true},
170 {"bnd", "invalid bnd prefixes", true},
173 static bool want_usage
;
174 static bool terminate_after_phase
;
175 int user_nolist
= 0; /* fbk 9/2/00 */
177 static char *quote_for_make(const char *str
);
179 static int64_t get_curr_offs(void)
181 return in_abs_seg
? abs_offset
: raa_read(offsets
, location
.segment
);
184 static void set_curr_offs(int64_t l_off
)
189 offsets
= raa_write(offsets
, location
.segment
, l_off
);
192 static void nasm_fputs(const char *line
, FILE * outfile
)
195 fputs(line
, outfile
);
201 /* Convert a struct tm to a POSIX-style time constant */
202 static int64_t posix_mktime(struct tm
*tm
)
205 int64_t y
= tm
->tm_year
;
207 /* See IEEE 1003.1:2004, section 4.14 */
209 t
= (y
-70)*365 + (y
-69)/4 - (y
-1)/100 + (y
+299)/400;
221 static void define_macros_early(void)
224 struct tm lt
, *lt_p
, gm
, *gm_p
;
227 lt_p
= localtime(&official_compile_time
);
231 strftime(temp
, sizeof temp
, "__DATE__=\"%Y-%m-%d\"", <
);
232 preproc
->pre_define(temp
);
233 strftime(temp
, sizeof temp
, "__DATE_NUM__=%Y%m%d", <
);
234 preproc
->pre_define(temp
);
235 strftime(temp
, sizeof temp
, "__TIME__=\"%H:%M:%S\"", <
);
236 preproc
->pre_define(temp
);
237 strftime(temp
, sizeof temp
, "__TIME_NUM__=%H%M%S", <
);
238 preproc
->pre_define(temp
);
241 gm_p
= gmtime(&official_compile_time
);
245 strftime(temp
, sizeof temp
, "__UTC_DATE__=\"%Y-%m-%d\"", &gm
);
246 preproc
->pre_define(temp
);
247 strftime(temp
, sizeof temp
, "__UTC_DATE_NUM__=%Y%m%d", &gm
);
248 preproc
->pre_define(temp
);
249 strftime(temp
, sizeof temp
, "__UTC_TIME__=\"%H:%M:%S\"", &gm
);
250 preproc
->pre_define(temp
);
251 strftime(temp
, sizeof temp
, "__UTC_TIME_NUM__=%H%M%S", &gm
);
252 preproc
->pre_define(temp
);
256 posix_time
= posix_mktime(&gm
);
258 posix_time
= posix_mktime(<
);
263 snprintf(temp
, sizeof temp
, "__POSIX_TIME__=%"PRId64
, posix_time
);
264 preproc
->pre_define(temp
);
268 static void define_macros_late(void)
273 * In case if output format is defined by alias
274 * we have to put shortname of the alias itself here
275 * otherwise ABI backward compatibility gets broken.
277 snprintf(temp
, sizeof(temp
), "__OUTPUT_FORMAT__=%s",
278 ofmt_alias
? ofmt_alias
->shortname
: ofmt
->shortname
);
279 preproc
->pre_define(temp
);
282 static void emit_dependencies(StrList
*list
)
288 if (depend_file
&& strcmp(depend_file
, "-")) {
289 deps
= fopen(depend_file
, "w");
291 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
292 "unable to write dependency file `%s'", depend_file
);
299 linepos
= fprintf(deps
, "%s:", depend_target
);
300 list_for_each(l
, list
) {
301 char *file
= quote_for_make(l
->str
);
303 if (linepos
+ len
> 62 && linepos
> 1) {
304 fprintf(deps
, " \\\n ");
307 fprintf(deps
, " %s", file
);
311 fprintf(deps
, "\n\n");
313 list_for_each_safe(l
, nl
, list
) {
314 if (depend_emit_phony
)
315 fprintf(deps
, "%s:\n\n", l
->str
);
323 int main(int argc
, char **argv
)
325 StrList
*depend_list
= NULL
, **depend_ptr
;
327 time(&official_compile_time
);
329 iflag_set(&cpu
, IF_PLEVEL
);
330 iflag_set(&cmd_cpu
, IF_PLEVEL
);
333 want_usage
= terminate_after_phase
= false;
334 nasm_set_verror(nasm_verror_gnu
);
340 offsets
= raa_init();
341 forwrefs
= saa_init((int32_t)sizeof(struct forwrefinfo
));
344 operating_mode
= OP_NORMAL
;
348 /* Define some macros dependent on the runtime, but not
349 on the command line. */
350 define_macros_early();
352 parse_cmdline(argc
, argv
);
354 if (terminate_after_phase
) {
360 /* If debugging info is disabled, suppress any debug calls */
361 if (!using_debug_info
)
362 ofmt
->current_dfmt
= &null_debug_form
;
365 preproc
->extra_stdmac(ofmt
->stdmac
);
366 parser_global_info(&location
);
367 eval_global_info(ofmt
, lookup_label
, &location
);
369 /* define some macros dependent of command-line */
370 define_macros_late();
372 depend_ptr
= (depend_file
|| (operating_mode
& OP_DEPEND
)) ? &depend_list
: NULL
;
374 depend_target
= quote_for_make(outname
);
376 if (operating_mode
& OP_DEPEND
) {
379 if (depend_missing_ok
)
380 preproc
->include_path(NULL
); /* "assume generated" */
382 preproc
->reset(inname
, 0, &nasmlist
, depend_ptr
);
383 if (outname
[0] == '\0')
384 ofmt
->filename(inname
, outname
);
386 while ((line
= preproc
->getline()))
389 } else if (operating_mode
& OP_PREPROCESS
) {
391 char *file_name
= NULL
;
392 int32_t prior_linnum
= 0;
396 ofile
= fopen(outname
, "w");
398 nasm_error(ERR_FATAL
| ERR_NOFILE
,
399 "unable to open output file `%s'",
404 location
.known
= false;
407 preproc
->reset(inname
, 3, &nasmlist
, depend_ptr
);
408 memcpy(warning_on
, warning_on_global
, (ERR_WARN_MAX
+1) * sizeof(bool));
410 while ((line
= preproc
->getline())) {
412 * We generate %line directives if needed for later programs
414 int32_t linnum
= prior_linnum
+= lineinc
;
415 int altline
= src_get(&linnum
, &file_name
);
417 if (altline
== 1 && lineinc
== 1)
418 nasm_fputs("", ofile
);
420 lineinc
= (altline
!= -1 || lineinc
!= 1);
421 fprintf(ofile
? ofile
: stdout
,
422 "%%line %"PRId32
"+%d %s\n", linnum
, lineinc
,
425 prior_linnum
= linnum
;
427 nasm_fputs(line
, ofile
);
430 nasm_free(file_name
);
434 if (ofile
&& terminate_after_phase
)
439 if (operating_mode
& OP_NORMAL
) {
441 * We must call ofmt->filename _anyway_, even if the user
442 * has specified their own output file, because some
443 * formats (eg OBJ and COFF) use ofmt->filename to find out
444 * the name of the input file and then put that inside the
447 ofmt
->filename(inname
, outname
);
449 ofile
= fopen(outname
, (ofmt
->flags
& OFMT_TEXT
) ? "w" : "wb");
451 nasm_error(ERR_FATAL
| ERR_NOFILE
,
452 "unable to open output file `%s'", outname
);
455 * We must call init_labels() before ofmt->init() since
456 * some object formats will want to define labels in their
457 * init routines. (eg OS/2 defines the FLAT group)
462 dfmt
= ofmt
->current_dfmt
;
465 assemble_file(inname
, depend_ptr
);
467 if (!terminate_after_phase
) {
468 ofmt
->cleanup(using_debug_info
);
472 nasm_error(ERR_NONFATAL
|ERR_NOFILE
,
473 "write error on output file `%s'", outname
);
478 if (terminate_after_phase
)
484 if (depend_list
&& !terminate_after_phase
)
485 emit_dependencies(depend_list
);
495 return terminate_after_phase
;
499 * Get a parameter for a command line option.
500 * First arg must be in the form of e.g. -f...
502 static char *get_param(char *p
, char *q
, bool *advance
)
505 if (p
[2]) /* the parameter's in the option */
506 return nasm_skip_spaces(p
+ 2);
511 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
512 "option `-%c' requires an argument", p
[1]);
519 static void copy_filename(char *dst
, const char *src
)
521 size_t len
= strlen(src
);
523 if (len
>= (size_t)FILENAME_MAX
) {
524 nasm_error(ERR_FATAL
| ERR_NOFILE
, "file name too long");
527 strncpy(dst
, src
, FILENAME_MAX
);
531 * Convert a string to Make-safe form
533 static char *quote_for_make(const char *str
)
538 size_t n
= 1; /* Terminating zero */
544 for (p
= str
; *p
; p
++) {
548 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
568 /* Convert N backslashes at the end of filename to 2N backslashes */
572 os
= q
= nasm_malloc(n
);
575 for (p
= str
; *p
; p
++) {
618 #define OPT_POSTFIX 1
619 struct textargs textopts
[] = {
620 {"prefix", OPT_PREFIX
},
621 {"postfix", OPT_POSTFIX
},
625 static void show_version(void)
627 printf("NASM version %s compiled on %s%s\n",
628 nasm_version
, nasm_date
, nasm_compile_options
);
632 static bool stopoptions
= false;
633 static bool process_arg(char *p
, char *q
)
637 bool advance
= false;
643 if (p
[0] == '-' && !stopoptions
) {
644 if (strchr("oOfpPdDiIlFXuUZwW", p
[1])) {
645 /* These parameters take values */
646 if (!(param
= get_param(p
, q
, &advance
)))
655 case 'o': /* output file */
656 copy_filename(outname
, param
);
659 case 'f': /* output format */
660 ofmt
= ofmt_find(param
, &ofmt_alias
);
662 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
663 "unrecognised output format `%s' - "
664 "use -hf for a list", param
);
668 case 'O': /* Optimization level */
673 /* Naked -O == -Ox */
674 optimizing
= MAX_OPTIMIZE
;
678 case '0': case '1': case '2': case '3': case '4':
679 case '5': case '6': case '7': case '8': case '9':
680 opt
= strtoul(param
, ¶m
, 10);
682 /* -O0 -> optimizing == -1, 0.98 behaviour */
683 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
685 optimizing
= opt
- 1;
693 opt_verbose_info
= true;
698 optimizing
= MAX_OPTIMIZE
;
702 nasm_error(ERR_FATAL
,
703 "unknown optimization option -O%c\n",
708 if (optimizing
> MAX_OPTIMIZE
)
709 optimizing
= MAX_OPTIMIZE
;
714 case 'p': /* pre-include */
716 preproc
->pre_include(param
);
719 case 'd': /* pre-define */
721 preproc
->pre_define(param
);
724 case 'u': /* un-define */
726 preproc
->pre_undefine(param
);
729 case 'i': /* include search path */
731 preproc
->include_path(param
);
734 case 'l': /* listing file */
735 copy_filename(listname
, param
);
738 case 'Z': /* error messages file */
739 copy_filename(errname
, param
);
742 case 'F': /* specify debug format */
743 ofmt
->current_dfmt
= dfmt_find(ofmt
, param
);
744 if (!ofmt
->current_dfmt
) {
745 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
746 "unrecognized debug format `%s' for"
747 " output format `%s'",
748 param
, ofmt
->shortname
);
750 using_debug_info
= true;
753 case 'X': /* specify error reporting format */
754 if (nasm_stricmp("vc", param
) == 0)
755 nasm_set_verror(nasm_verror_vc
);
756 else if (nasm_stricmp("gnu", param
) == 0)
757 nasm_set_verror(nasm_verror_gnu
);
759 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
760 "unrecognized error reporting format `%s'",
765 using_debug_info
= true;
770 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
772 " [options...] [--] filename\n"
773 " or nasm -v (or --v) for version info\n\n"
774 " -t assemble in SciTech TASM compatible mode\n"
775 " -g generate debug information in selected format\n");
777 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
778 " -a don't preprocess (assemble only)\n"
779 " -M generate Makefile dependencies on stdout\n"
780 " -MG d:o, missing files assumed generated\n"
781 " -MF <file> set Makefile dependency file\n"
782 " -MD <file> assemble and generate dependencies\n"
783 " -MT <file> dependency target name\n"
784 " -MQ <file> dependency target name (quoted)\n"
785 " -MP emit phony target\n\n"
786 " -Z<file> redirect error messages to file\n"
787 " -s redirect error messages to stdout\n\n"
788 " -F format select a debugging format\n\n"
789 " -o outfile write output to an outfile\n\n"
790 " -f format select an output format\n\n"
791 " -l listfile write listing to a listfile\n\n"
792 " -I<path> adds a pathname to the include file path\n");
794 (" -O<digit> optimize branch offsets\n"
795 " -O0: No optimization\n"
796 " -O1: Minimal optimization\n"
797 " -Ox: Multipass optimization (default)\n\n"
798 " -P<file> pre-includes a file\n"
799 " -D<macro>[=<value>] pre-defines a macro\n"
800 " -U<macro> undefines a macro\n"
801 " -X<format> specifies error reporting format (gnu or vc)\n"
802 " -w+foo enables warning foo (equiv. -Wfoo)\n"
803 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
804 " -h show invocation summary and exit\n\n"
805 "--prefix,--postfix\n"
806 " this options prepend or append the given argument to all\n"
807 " extern and global variables\n\n"
809 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
810 printf(" %-23s %s (default %s)\n",
811 warnings
[i
].name
, warnings
[i
].help
,
812 warnings
[i
].enabled
? "on" : "off");
814 ("\nresponse files should contain command line parameters"
815 ", one per line.\n");
817 printf("\nvalid output formats for -f are"
818 " (`*' denotes default):\n");
819 ofmt_list(ofmt
, stdout
);
821 printf("\nFor a list of valid output formats, use -hf.\n");
822 printf("For a list of debug formats, use -f <form> -y.\n");
824 exit(0); /* never need usage message here */
828 printf("\nvalid debug formats for '%s' output format are"
829 " ('*' denotes default):\n", ofmt
->shortname
);
830 dfmt_list(ofmt
, stdout
);
835 tasm_compatible_mode
= true;
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;
901 operating_mode
= OP_DEPEND
| OP_NORMAL
;
914 depend_target
= quote_for_make(q
);
918 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
919 "unknown dependency option `-M%c'", p
[2]);
922 if (advance
&& (!q
|| !q
[0])) {
923 nasm_error(ERR_NONFATAL
|ERR_NOFILE
|ERR_USAGE
,
924 "option `-M%c' requires a parameter", p
[2]);
933 if (p
[2] == 0) { /* -- => stop processing options */
938 if (!nasm_stricmp(p
, "--v"))
941 for (s
= 0; textopts
[s
].label
; s
++) {
942 if (!nasm_stricmp(p
+ 2, textopts
[s
].label
)) {
953 nasm_error(ERR_NONFATAL
| ERR_NOFILE
|
955 "option `--%s' requires an argument",
959 advance
= 1, param
= q
;
962 if (s
== OPT_PREFIX
) {
963 strncpy(lprefix
, param
, PREFIX_MAX
- 1);
964 lprefix
[PREFIX_MAX
- 1] = 0;
967 if (s
== OPT_POSTFIX
) {
968 strncpy(lpostfix
, param
, POSTFIX_MAX
- 1);
969 lpostfix
[POSTFIX_MAX
- 1] = 0;
976 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
977 "unrecognised option `--%s'", p
+ 2);
985 if (!ofmt
->setinfo(GI_SWITCH
, &p
))
986 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
987 "unrecognised option `-%c'", p
[1]);
992 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
993 "more than one input file specified");
995 copy_filename(inname
, p
);
1002 #define ARG_BUF_DELTA 128
1004 static void process_respfile(FILE * rfile
)
1006 char *buffer
, *p
, *q
, *prevarg
;
1007 int bufsize
, prevargsize
;
1009 bufsize
= prevargsize
= ARG_BUF_DELTA
;
1010 buffer
= nasm_malloc(ARG_BUF_DELTA
);
1011 prevarg
= nasm_malloc(ARG_BUF_DELTA
);
1014 while (1) { /* Loop to handle all lines in file */
1016 while (1) { /* Loop to handle long lines */
1017 q
= fgets(p
, bufsize
- (p
- buffer
), rfile
);
1021 if (p
> buffer
&& p
[-1] == '\n')
1023 if (p
- buffer
> bufsize
- 10) {
1025 offset
= p
- buffer
;
1026 bufsize
+= ARG_BUF_DELTA
;
1027 buffer
= nasm_realloc(buffer
, bufsize
);
1028 p
= buffer
+ offset
;
1032 if (!q
&& p
== buffer
) {
1034 process_arg(prevarg
, NULL
);
1041 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1042 * them are present at the end of the line.
1044 *(p
= &buffer
[strcspn(buffer
, "\r\n\032")]) = '\0';
1046 while (p
> buffer
&& nasm_isspace(p
[-1]))
1049 p
= nasm_skip_spaces(buffer
);
1051 if (process_arg(prevarg
, p
))
1054 if ((int) strlen(p
) > prevargsize
- 10) {
1055 prevargsize
+= ARG_BUF_DELTA
;
1056 prevarg
= nasm_realloc(prevarg
, prevargsize
);
1058 strncpy(prevarg
, p
, prevargsize
);
1062 /* Function to process args from a string of args, rather than the
1063 * argv array. Used by the environment variable and response file
1066 static void process_args(char *args
)
1068 char *p
, *q
, *arg
, *prevarg
;
1069 char separator
= ' ';
1072 if (*p
&& *p
!= '-')
1077 while (*p
&& *p
!= separator
)
1079 while (*p
== separator
)
1083 if (process_arg(prevarg
, arg
))
1087 process_arg(arg
, NULL
);
1090 static void process_response_file(const char *file
)
1093 FILE *f
= fopen(file
, "r");
1098 while (fgets(str
, sizeof str
, f
)) {
1104 static void parse_cmdline(int argc
, char **argv
)
1107 char *envreal
, *envcopy
= NULL
, *p
;
1110 *inname
= *outname
= *listname
= *errname
= '\0';
1112 for (i
= 0; i
<= ERR_WARN_MAX
; i
++)
1113 warning_on_global
[i
] = warnings
[i
].enabled
;
1116 * First, process the NASMENV environment variable.
1118 envreal
= getenv("NASMENV");
1120 envcopy
= nasm_strdup(envreal
);
1121 process_args(envcopy
);
1126 * Now process the actual command line.
1131 if (argv
[0][0] == '@') {
1133 * We have a response file, so process this as a set of
1134 * arguments like the environment variable. This allows us
1135 * to have multiple arguments on a single line, which is
1136 * different to the -@resp file processing below for regular
1139 process_response_file(argv
[0]+1);
1143 if (!stopoptions
&& argv
[0][0] == '-' && argv
[0][1] == '@') {
1144 p
= get_param(argv
[0], argc
> 1 ? argv
[1] : NULL
, &advance
);
1146 rfile
= fopen(p
, "r");
1148 process_respfile(rfile
);
1151 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1152 "unable to open response file `%s'", p
);
1155 advance
= process_arg(argv
[0], argc
> 1 ? argv
[1] : NULL
);
1156 argv
+= advance
, argc
-= advance
;
1160 * Look for basic command line typos. This definitely doesn't
1161 * catch all errors, but it might help cases of fumbled fingers.
1164 nasm_error(ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
1165 "no input file specified");
1166 else if (!strcmp(inname
, errname
) ||
1167 !strcmp(inname
, outname
) ||
1168 !strcmp(inname
, listname
) ||
1169 (depend_file
&& !strcmp(inname
, depend_file
)))
1170 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1171 "file `%s' is both input and output file",
1175 error_file
= fopen(errname
, "w");
1177 error_file
= stderr
; /* Revert to default! */
1178 nasm_error(ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
1179 "cannot open file `%s' for error messages",
1185 static enum directives
getkw(char **directive
, char **value
);
1187 static void assemble_file(char *fname
, StrList
**depend_ptr
)
1189 char *directive
, *value
, *p
, *q
, *special
, *line
;
1195 struct tokenval tokval
;
1199 if (cmd_sb
== 32 && iflag_ffs(&cmd_cpu
) < IF_386
)
1200 nasm_error(ERR_FATAL
, "command line: "
1201 "32-bit segment size requires a higher cpu");
1203 pass_max
= prev_offset_changed
= (INT_MAX
>> 1) + 2; /* Almost unlimited */
1204 for (passn
= 1; pass0
<= 2; passn
++) {
1208 pass1
= pass0
== 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
1209 pass2
= passn
> 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1210 /* pass0 0, 0, 0, ..., 1, 2 */
1212 def_label
= passn
> 1 ? redefine_label
: define_label
;
1214 globalbits
= sb
= cmd_sb
; /* set 'bits' to command line default */
1218 nasmlist
.init(listname
, nasm_error
);
1221 global_offset_changed
= 0; /* set by redefine_label */
1222 location
.segment
= ofmt
->section(NULL
, pass2
, &sb
);
1225 saa_rewind(forwrefs
);
1226 forwref
= saa_rstruct(forwrefs
);
1228 offsets
= raa_init();
1230 preproc
->reset(fname
, pass1
, &nasmlist
,
1231 pass1
== 2 ? depend_ptr
: NULL
);
1232 memcpy(warning_on
, warning_on_global
, (ERR_WARN_MAX
+1) * sizeof(bool));
1236 location
.known
= true;
1237 location
.offset
= offs
= get_curr_offs();
1239 while ((line
= preproc
->getline())) {
1244 * Here we parse our directives; this is not handled by the
1245 * 'real' parser. This really should be a separate function.
1248 d
= getkw(&directive
, &value
);
1253 case D_SEGMENT
: /* [SEGMENT n] */
1255 seg
= ofmt
->section(value
, pass2
, &sb
);
1256 if (seg
== NO_SEG
) {
1257 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1258 "segment name `%s' not recognized",
1262 location
.segment
= seg
;
1265 case D_SECTALIGN
: /* [SECTALIGN n] */
1269 tokval
.t_type
= TOKEN_INVALID
;
1270 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
, nasm_error
, NULL
);
1272 unsigned int align
= (unsigned int)e
->value
;
1273 if ((uint64_t)e
->value
> 0x7fffffff) {
1275 * FIXME: Please make some sane message here
1276 * ofmt should have some 'check' method which
1277 * would report segment alignment bounds.
1279 nasm_error(ERR_FATAL
,
1280 "incorrect segment alignment `%s'", value
);
1281 } else if (!is_power2(align
)) {
1282 nasm_error(ERR_NONFATAL
,
1283 "segment alignment `%s' is not power of two",
1286 /* callee should be able to handle all details */
1287 ofmt
->sectalign(location
.segment
, align
);
1291 case D_EXTERN
: /* [EXTERN label:special] */
1293 value
++; /* skip initial $ if present */
1296 while (*q
&& *q
!= ':')
1300 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1302 } else if (passn
== 1) {
1307 while (*q
&& *q
!= ':') {
1313 nasm_error(ERR_NONFATAL
,
1314 "identifier expected after EXTERN");
1322 if (!is_extern(value
)) { /* allow re-EXTERN to be ignored */
1324 pass0
= 1; /* fake pass 1 in labels.c */
1325 declare_as_global(value
, special
);
1326 define_label(value
, seg_alloc(), 0L, NULL
,
1330 } /* else pass0 == 1 */
1332 case D_BITS
: /* [BITS bits] */
1333 globalbits
= sb
= get_bits(value
);
1335 case D_GLOBAL
: /* [GLOBAL symbol:special] */
1337 value
++; /* skip initial $ if present */
1338 if (pass0
== 2) { /* pass 2 */
1340 while (*q
&& *q
!= ':')
1344 ofmt
->symdef(value
, 0L, 0L, 3, q
);
1346 } else if (pass2
== 1) { /* pass == 1 */
1351 while (*q
&& *q
!= ':') {
1357 nasm_error(ERR_NONFATAL
,
1358 "identifier expected after GLOBAL");
1366 declare_as_global(value
, special
);
1369 case D_COMMON
: /* [COMMON symbol size:special] */
1374 value
++; /* skip initial $ if present */
1379 while (*p
&& !nasm_isspace(*p
)) {
1385 nasm_error(ERR_NONFATAL
,
1386 "identifier expected after COMMON");
1390 p
= nasm_zap_spaces_fwd(p
);
1392 while (*q
&& *q
!= ':')
1400 size
= readnum(p
, &rn_error
);
1402 nasm_error(ERR_NONFATAL
,
1403 "invalid size specified"
1404 " in COMMON declaration");
1408 nasm_error(ERR_NONFATAL
,
1409 "no size specified in"
1410 " COMMON declaration");
1415 define_common(value
, seg_alloc(), size
, special
);
1416 } else if (pass0
== 2) {
1418 ofmt
->symdef(value
, 0L, 0L, 3, special
);
1422 case D_ABSOLUTE
: /* [ABSOLUTE address] */
1425 tokval
.t_type
= TOKEN_INVALID
;
1426 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
,
1431 1 ? ERR_NONFATAL
: ERR_PANIC
,
1432 "cannot use non-relocatable expression as "
1433 "ABSOLUTE address");
1435 abs_seg
= reloc_seg(e
);
1436 abs_offset
= reloc_value(e
);
1438 } else if (passn
== 1)
1439 abs_offset
= 0x100; /* don't go near zero in case of / */
1441 nasm_error(ERR_PANIC
, "invalid ABSOLUTE address "
1444 location
.segment
= NO_SEG
;
1446 case D_DEBUG
: /* [DEBUG] */
1449 bool badid
, overlong
;
1453 badid
= overlong
= false;
1454 if (!isidstart(*p
)) {
1457 while (*p
&& !nasm_isspace(*p
)) {
1458 if (q
>= debugid
+ sizeof debugid
- 1) {
1469 nasm_error(passn
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1470 "identifier expected after DEBUG");
1474 nasm_error(passn
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1475 "DEBUG identifier too long");
1478 p
= nasm_skip_spaces(p
);
1480 dfmt
->debug_directive(debugid
, p
);
1483 case D_WARNING
: /* [WARNING {+|-|*}warn-name] */
1484 value
= nasm_skip_spaces(value
);
1486 case '-': validid
= 0; value
++; break;
1487 case '+': validid
= 1; value
++; break;
1488 case '*': validid
= 2; value
++; break;
1489 default: validid
= 1; break;
1492 for (i
= 1; i
<= ERR_WARN_MAX
; i
++)
1493 if (!nasm_stricmp(value
, warnings
[i
].name
))
1495 if (i
<= ERR_WARN_MAX
) {
1498 warning_on
[i
] = false;
1501 warning_on
[i
] = true;
1504 warning_on
[i
] = warning_on_global
[i
];
1508 nasm_error(ERR_NONFATAL
,
1509 "invalid warning id in WARNING directive");
1511 case D_CPU
: /* [CPU] */
1512 cpu
= get_cpu(value
);
1514 case D_LIST
: /* [LIST {+|-}] */
1515 value
= nasm_skip_spaces(value
);
1516 if (*value
== '+') {
1519 if (*value
== '-') {
1526 case D_DEFAULT
: /* [DEFAULT] */
1529 tokval
.t_type
= TOKEN_INVALID
;
1530 if (stdscan(NULL
, &tokval
) != TOKEN_INVALID
) {
1531 switch ((int)tokval
.t_integer
) {
1553 if (float_option(value
)) {
1554 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1555 "unknown 'float' directive: %s",
1560 if (ofmt
->directive(d
, value
, pass2
))
1562 /* else fall through */
1564 nasm_error(pass1
== 1 ? ERR_NONFATAL
: ERR_PANIC
,
1565 "unrecognised directive [%s]",
1570 nasm_error(ERR_NONFATAL
,
1571 "invalid parameter to [%s] directive",
1574 } else { /* it isn't a directive */
1575 parse_line(pass1
, line
, &output_ins
, def_label
);
1577 if (optimizing
> 0) {
1578 if (forwref
!= NULL
&& globallineno
== forwref
->lineno
) {
1579 output_ins
.forw_ref
= true;
1581 output_ins
.oprs
[forwref
->operand
].opflags
|= OPFLAG_FORWARD
;
1582 forwref
= saa_rstruct(forwrefs
);
1583 } while (forwref
!= NULL
1584 && forwref
->lineno
== globallineno
);
1586 output_ins
.forw_ref
= false;
1588 if (output_ins
.forw_ref
) {
1590 for (i
= 0; i
< output_ins
.operands
; i
++) {
1591 if (output_ins
.oprs
[i
].opflags
& OPFLAG_FORWARD
) {
1592 struct forwrefinfo
*fwinf
= (struct forwrefinfo
*)saa_wstruct(forwrefs
);
1593 fwinf
->lineno
= globallineno
;
1602 if (output_ins
.opcode
== I_EQU
) {
1605 * Special `..' EQUs get processed in pass two,
1606 * except `..@' macro-processor EQUs which are done
1607 * in the normal place.
1609 if (!output_ins
.label
)
1610 nasm_error(ERR_NONFATAL
,
1611 "EQU not preceded by label");
1613 else if (output_ins
.label
[0] != '.' ||
1614 output_ins
.label
[1] != '.' ||
1615 output_ins
.label
[2] == '@') {
1616 if (output_ins
.operands
== 1 &&
1617 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1618 output_ins
.oprs
[0].wrt
== NO_SEG
) {
1619 bool isext
= !!(output_ins
.oprs
[0].opflags
& OPFLAG_EXTERN
);
1620 def_label(output_ins
.label
,
1621 output_ins
.oprs
[0].segment
,
1622 output_ins
.oprs
[0].offset
, NULL
,
1624 } else if (output_ins
.operands
== 2
1625 && (output_ins
.oprs
[0].type
& IMMEDIATE
)
1626 && (output_ins
.oprs
[0].type
& COLON
)
1627 && output_ins
.oprs
[0].segment
== NO_SEG
1628 && output_ins
.oprs
[0].wrt
== NO_SEG
1629 && (output_ins
.oprs
[1].type
& IMMEDIATE
)
1630 && output_ins
.oprs
[1].segment
== NO_SEG
1631 && output_ins
.oprs
[1].wrt
== NO_SEG
) {
1632 def_label(output_ins
.label
,
1633 output_ins
.oprs
[0].offset
| SEG_ABS
,
1634 output_ins
.oprs
[1].offset
,
1635 NULL
, false, false);
1637 nasm_error(ERR_NONFATAL
,
1638 "bad syntax for EQU");
1642 * Special `..' EQUs get processed here, except
1643 * `..@' macro processor EQUs which are done above.
1645 if (output_ins
.label
[0] == '.' &&
1646 output_ins
.label
[1] == '.' &&
1647 output_ins
.label
[2] != '@') {
1648 if (output_ins
.operands
== 1 &&
1649 (output_ins
.oprs
[0].type
& IMMEDIATE
)) {
1650 define_label(output_ins
.label
,
1651 output_ins
.oprs
[0].segment
,
1652 output_ins
.oprs
[0].offset
,
1653 NULL
, false, false);
1654 } else if (output_ins
.operands
== 2
1655 && (output_ins
.oprs
[0].type
& IMMEDIATE
)
1656 && (output_ins
.oprs
[0].type
& COLON
)
1657 && output_ins
.oprs
[0].segment
== NO_SEG
1658 && (output_ins
.oprs
[1].type
& IMMEDIATE
)
1659 && output_ins
.oprs
[1].segment
== NO_SEG
) {
1660 define_label(output_ins
.label
,
1661 output_ins
.oprs
[0].offset
| SEG_ABS
,
1662 output_ins
.oprs
[1].offset
,
1663 NULL
, false, false);
1665 nasm_error(ERR_NONFATAL
,
1666 "bad syntax for EQU");
1669 } else { /* instruction isn't an EQU */
1673 int64_t l
= insn_size(location
.segment
, offs
, sb
, cpu
,
1674 &output_ins
, nasm_error
);
1676 /* if (using_debug_info) && output_ins.opcode != -1) */
1677 if (using_debug_info
)
1678 { /* fbk 03/25/01 */
1679 /* this is done here so we can do debug type info */
1681 TYS_ELEMENTS(output_ins
.operands
);
1682 switch (output_ins
.opcode
) {
1685 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_BYTE
;
1689 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_WORD
;
1693 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_DWORD
;
1697 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_QWORD
;
1701 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_TBYTE
;
1705 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_OWORD
;
1709 TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_YWORD
;
1712 typeinfo
|= TY_BYTE
;
1715 typeinfo
|= TY_WORD
;
1718 if (output_ins
.eops_float
)
1719 typeinfo
|= TY_FLOAT
;
1721 typeinfo
|= TY_DWORD
;
1724 typeinfo
|= TY_QWORD
;
1727 typeinfo
|= TY_TBYTE
;
1730 typeinfo
|= TY_OWORD
;
1733 typeinfo
|= TY_YWORD
;
1736 typeinfo
= TY_LABEL
;
1740 dfmt
->debug_typevalue(typeinfo
);
1744 set_curr_offs(offs
);
1747 * else l == -1 => invalid instruction, which will be
1748 * flagged as an error on pass 2
1752 offs
+= assemble(location
.segment
, offs
, sb
, cpu
,
1753 &output_ins
, ofmt
, nasm_error
,
1755 set_curr_offs(offs
);
1759 cleanup_insn(&output_ins
);
1762 location
.offset
= offs
= get_curr_offs();
1763 } /* end while (line = preproc->getline... */
1765 if (pass0
== 2 && global_offset_changed
&& !terminate_after_phase
)
1766 nasm_error(ERR_NONFATAL
,
1767 "phase error detected at end of assembly.");
1770 preproc
->cleanup(1);
1772 if ((passn
> 1 && !global_offset_changed
) || pass0
== 2) {
1774 } else if (global_offset_changed
&&
1775 global_offset_changed
< prev_offset_changed
) {
1776 prev_offset_changed
= global_offset_changed
;
1782 if (terminate_after_phase
)
1785 if ((stall_count
> 997) || (passn
>= pass_max
)) {
1786 /* We get here if the labels don't converge
1787 * Example: FOO equ FOO + 1
1789 nasm_error(ERR_NONFATAL
,
1790 "Can't find valid values for all labels "
1791 "after %d passes, giving up.", passn
);
1792 nasm_error(ERR_NONFATAL
,
1793 "Possible causes: recursive EQUs, macro abuse.");
1798 preproc
->cleanup(0);
1800 if (!terminate_after_phase
&& opt_verbose_info
) {
1801 /* -On and -Ov switches */
1802 fprintf(stdout
, "info: assembly required 1+%d+1 passes\n", passn
-3);
1806 static enum directives
getkw(char **directive
, char **value
)
1810 buf
= nasm_skip_spaces(*directive
);
1812 /* it should be enclosed in [ ] */
1815 q
= strchr(buf
, ']');
1819 /* stip off the comments */
1820 p
= strchr(buf
, ';');
1822 if (p
< q
) /* ouch! somwhere inside */
1827 /* no brace, no trailing spaces */
1829 nasm_zap_spaces_rev(--q
);
1832 p
= nasm_skip_spaces(++buf
);
1833 q
= nasm_skip_word(p
);
1835 return D_none
; /* sigh... no value there */
1839 /* and value finally */
1840 p
= nasm_skip_spaces(++q
);
1843 return find_directive(*directive
);
1847 * gnu style error reporting
1848 * This function prints an error message to error_file in the
1849 * style used by GNU. An example would be:
1850 * file.asm:50: error: blah blah blah
1851 * where file.asm is the name of the file, 50 is the line number on
1852 * which the error occurs (or is detected) and "error:" is one of
1853 * the possible optional diagnostics -- it can be "error" or "warning"
1854 * or something else. Finally the line terminates with the actual
1857 * @param severity the severity of the warning or error
1858 * @param fmt the printf style format string
1860 static void nasm_verror_gnu(int severity
, const char *fmt
, va_list ap
)
1862 char *currentfile
= NULL
;
1865 if (is_suppressed_warning(severity
))
1868 if (!(severity
& ERR_NOFILE
))
1869 src_get(&lineno
, ¤tfile
);
1872 fprintf(error_file
, "%s:%"PRId32
": ", currentfile
, lineno
);
1873 nasm_free(currentfile
);
1875 fputs("nasm: ", error_file
);
1878 nasm_verror_common(severity
, fmt
, ap
);
1882 * MS style error reporting
1883 * This function prints an error message to error_file in the
1884 * style used by Visual C and some other Microsoft tools. An example
1886 * file.asm(50) : error: blah blah blah
1887 * where file.asm is the name of the file, 50 is the line number on
1888 * which the error occurs (or is detected) and "error:" is one of
1889 * the possible optional diagnostics -- it can be "error" or "warning"
1890 * or something else. Finally the line terminates with the actual
1893 * @param severity the severity of the warning or error
1894 * @param fmt the printf style format string
1896 static void nasm_verror_vc(int severity
, const char *fmt
, va_list ap
)
1898 char *currentfile
= NULL
;
1901 if (is_suppressed_warning(severity
))
1904 if (!(severity
& ERR_NOFILE
))
1905 src_get(&lineno
, ¤tfile
);
1908 fprintf(error_file
, "%s(%"PRId32
") : ", currentfile
, lineno
);
1909 nasm_free(currentfile
);
1911 fputs("nasm: ", error_file
);
1914 nasm_verror_common(severity
, fmt
, ap
);
1918 * check for supressed warning
1919 * checks for suppressed warning or pass one only warning and we're
1922 * @param severity the severity of the warning or error
1923 * @return true if we should abort error/warning printing
1925 static bool is_suppressed_warning(int severity
)
1927 /* Not a warning at all */
1928 if ((severity
& ERR_MASK
) != ERR_WARNING
)
1931 /* See if it's a pass-one only warning and we're not in pass one. */
1932 if (((severity
& ERR_PASS1
) && pass0
!= 1) ||
1933 ((severity
& ERR_PASS2
) && pass0
!= 2))
1936 /* Might be a warning but suppresed explicitly */
1937 if (severity
& ERR_WARN_MASK
)
1938 return !warning_on
[WARN_IDX(severity
)];
1944 * common error reporting
1945 * This is the common back end of the error reporting schemes currently
1946 * implemented. It prints the nature of the warning and then the
1947 * specific error message to error_file and may or may not return. It
1948 * doesn't return if the error severity is a "panic" or "debug" type.
1950 * @param severity the severity of the warning or error
1951 * @param fmt the printf style format string
1953 static void nasm_verror_common(int severity
, const char *fmt
, va_list args
)
1958 switch (severity
& (ERR_MASK
|ERR_NO_SEVERITY
)) {
1979 vsnprintf(msg
, sizeof msg
, fmt
, args
);
1981 fprintf(error_file
, "%s%s\n", pfx
, msg
);
1984 nasmlist
.error(severity
, pfx
, msg
);
1986 if (severity
& ERR_USAGE
)
1989 switch (severity
& ERR_MASK
) {
1991 /* no further action, by definition */
1994 /* Treat warnings as errors */
1995 if (warning_on
[WARN_IDX(ERR_WARN_TERM
)])
1996 terminate_after_phase
= true;
1999 terminate_after_phase
= true;
2009 exit(1); /* instantly die */
2010 break; /* placate silly compilers */
2013 /* abort(); */ /* halt, catch fire, and dump core */
2019 static void usage(void)
2021 fputs("type `nasm -h' for help\n", error_file
);
2024 static iflag_t
get_cpu(char *value
)
2028 iflag_clear_all(&r
);
2030 if (!strcmp(value
, "8086"))
2031 iflag_set(&r
, IF_8086
);
2032 else if (!strcmp(value
, "186"))
2033 iflag_set(&r
, IF_186
);
2034 else if (!strcmp(value
, "286"))
2035 iflag_set(&r
, IF_286
);
2036 else if (!strcmp(value
, "386"))
2037 iflag_set(&r
, IF_386
);
2038 else if (!strcmp(value
, "486"))
2039 iflag_set(&r
, IF_486
);
2040 else if (!strcmp(value
, "586") ||
2041 !nasm_stricmp(value
, "pentium"))
2042 iflag_set(&r
, IF_PENT
);
2043 else if (!strcmp(value
, "686") ||
2044 !nasm_stricmp(value
, "ppro") ||
2045 !nasm_stricmp(value
, "pentiumpro") ||
2046 !nasm_stricmp(value
, "p2"))
2047 iflag_set(&r
, IF_P6
);
2048 else if (!nasm_stricmp(value
, "p3") ||
2049 !nasm_stricmp(value
, "katmai"))
2050 iflag_set(&r
, IF_KATMAI
);
2051 else if (!nasm_stricmp(value
, "p4") || /* is this right? -- jrc */
2052 !nasm_stricmp(value
, "willamette"))
2053 iflag_set(&r
, IF_WILLAMETTE
);
2054 else if (!nasm_stricmp(value
, "prescott"))
2055 iflag_set(&r
, IF_PRESCOTT
);
2056 else if (!nasm_stricmp(value
, "x64") ||
2057 !nasm_stricmp(value
, "x86-64"))
2058 iflag_set(&r
, IF_X86_64
);
2059 else if (!nasm_stricmp(value
, "ia64") ||
2060 !nasm_stricmp(value
, "ia-64") ||
2061 !nasm_stricmp(value
, "itanium")||
2062 !nasm_stricmp(value
, "itanic") ||
2063 !nasm_stricmp(value
, "merced"))
2064 iflag_set(&r
, IF_IA64
);
2066 iflag_set(&r
, IF_PLEVEL
);
2067 nasm_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2068 "unknown 'cpu' type");
2073 static int get_bits(char *value
)
2077 if ((i
= atoi(value
)) == 16)
2078 return i
; /* set for a 16-bit segment */
2080 if (iflag_ffs(&cpu
) < IF_386
) {
2081 nasm_error(ERR_NONFATAL
,
2082 "cannot specify 32-bit segment on processor below a 386");
2085 } else if (i
== 64) {
2086 if (iflag_ffs(&cpu
) < IF_X86_64
) {
2087 nasm_error(ERR_NONFATAL
,
2088 "cannot specify 64-bit segment on processor below an x86-64");
2092 nasm_error(ERR_NONFATAL
,
2093 "%s output format does not support 64-bit code",
2098 nasm_error(pass0
< 2 ? ERR_NONFATAL
: ERR_FATAL
,
2099 "`%s' is not a valid segment size; must be 16, 32 or 64",