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 licence given in the file "Licence"
6 * distributed in the NASM archive.
26 struct forwrefinfo
{ /* info held on forward refs. */
31 static int get_bits (char *value
);
32 static unsigned long get_cpu (char *cpu_str
);
33 static void report_error (int, char *, ...);
34 static void parse_cmdline (int, char **);
35 static void assemble_file (char *);
36 static int getkw (char *buf
, char **value
);
37 static void register_output_formats(void);
38 static void usage(void);
40 static int using_debug_info
;
41 int tasm_compatible_mode
= FALSE
;
44 static char inname
[FILENAME_MAX
];
45 static char outname
[FILENAME_MAX
];
46 static char listname
[FILENAME_MAX
];
47 static int globallineno
; /* for forward-reference tracking */
48 /* static int pass = 0; */
49 static struct ofmt
*ofmt
= NULL
;
51 static FILE *error_file
; /* Where to write error messages */
53 static FILE *ofile
= NULL
;
54 int optimizing
= -1; /* number of optimization passes to take */
55 static int sb
, cmd_sb
= 16; /* by default */
56 static unsigned long cmd_cpu
= IF_PLEVEL
; /* highest level by default */
57 static unsigned long cpu
= IF_PLEVEL
; /* passed to insn_size & assemble.c */
58 int global_offset_changed
; /* referenced in labels.c */
60 static loc_t location
;
61 int in_abs_seg
; /* Flag we are in ABSOLUTE seg */
64 static struct RAA
*offsets
;
65 static long abs_offset
;
67 static struct SAA
*forwrefs
; /* keep track of forward references */
68 static struct forwrefinfo
*forwref
;
70 static Preproc
*preproc
;
72 op_normal
, /* Preprocess and assemble */
73 op_preprocess
, /* Preprocess only */
74 op_depend
/* Generate dependencies */
76 static enum op_type operating_mode
;
79 * Which of the suppressible warnings are suppressed. Entry zero
80 * doesn't do anything. Initial defaults are given here.
82 static char suppressed
[1+ERR_WARN_MAX
] = {
83 0, TRUE
, TRUE
, TRUE
, FALSE
87 * The option names for the suppressible warnings. As before, entry
90 static char *suppressed_names
[1+ERR_WARN_MAX
] = {
91 NULL
, "macro-params", "macro-selfref", "orphan-labels", "number-overflow",
95 * The explanations for the suppressible warnings. As before, entry
98 static char *suppressed_what
[1+ERR_WARN_MAX
] = {
100 "macro calls with wrong no. of params",
101 "cyclic macro self-references",
102 "labels alone on lines without trailing `:'",
103 "numeric constants greater than 0xFFFFFFFF"
107 * This is a null preprocessor which just copies lines from input
108 * to output. It's used when someone explicitly requests that NASM
109 * not preprocess their source file.
112 static void no_pp_reset (char *, int, efunc
, evalfunc
, ListGen
*);
113 static char *no_pp_getline (void);
114 static void no_pp_cleanup (int);
115 static Preproc no_pp
= {
122 * get/set current offset...
124 #define GET_CURR_OFFS (in_abs_seg?abs_offset:\
125 raa_read(offsets,location.segment))
126 #define SET_CURR_OFFS(x) (in_abs_seg?(void)(abs_offset=(x)):\
127 (void)(offsets=raa_write(offsets,location.segment,(x))))
129 static int want_usage
;
130 static int terminate_after_phase
;
131 int user_nolist
= 0; /* fbk 9/2/00 */
133 static void nasm_fputs(char *line
, FILE *ofile
)
142 int main(int argc
, char **argv
)
145 want_usage
= terminate_after_phase
= FALSE
;
147 nasm_set_malloc_error (report_error
);
148 offsets
= raa_init();
149 forwrefs
= saa_init ((long)sizeof(struct forwrefinfo
));
152 operating_mode
= op_normal
;
158 register_output_formats();
160 parse_cmdline(argc
, argv
);
162 if (terminate_after_phase
)
170 pp_extra_stdmac (ofmt
->stdmac
);
171 parser_global_info (ofmt
, &location
);
172 eval_global_info (ofmt
, lookup_label
, &location
);
174 /* define some macros dependent of command-line */
177 sprintf (temp
, "__OUTPUT_FORMAT__=%s\n", ofmt
->shortname
);
178 pp_pre_define (temp
);
181 switch ( operating_mode
) {
185 preproc
->reset (inname
, 0, report_error
, evaluate
, &nasmlist
);
186 if (outname
[0] == '\0')
187 ofmt
->filename (inname
, outname
, report_error
);
189 fprintf(stdout
, "%s: %s", outname
, inname
);
190 while ( (line
= preproc
->getline()) )
200 char *file_name
= NULL
;
205 ofile
= fopen(outname
, "w");
207 report_error (ERR_FATAL
| ERR_NOFILE
,
208 "unable to open output file `%s'", outname
);
212 location
.known
= FALSE
;
215 preproc
->reset (inname
, 2, report_error
, evaluate
, &nasmlist
);
216 while ( (line
= preproc
->getline()) ) {
218 * We generate %line directives if needed for later programs
220 long linnum
= prior_linnum
+= lineinc
;
221 int altline
= src_get(&linnum
, &file_name
);
223 if (altline
==1 && lineinc
==1)
224 nasm_fputs("", ofile
);
226 lineinc
= (altline
!= -1 || lineinc
!=1);
227 fprintf(ofile
? ofile
: stdout
, "%%line %ld+%d %s\n",
228 linnum
, lineinc
, file_name
);
230 prior_linnum
= linnum
;
232 nasm_fputs(line
, ofile
);
235 nasm_free(file_name
);
239 if (ofile
&& terminate_after_phase
)
247 * We must call ofmt->filename _anyway_, even if the user
248 * has specified their own output file, because some
249 * formats (eg OBJ and COFF) use ofmt->filename to find out
250 * the name of the input file and then put that inside the
253 ofmt
->filename (inname
, outname
, report_error
);
255 ofile
= fopen(outname
, "wb");
257 report_error (ERR_FATAL
| ERR_NOFILE
,
258 "unable to open output file `%s'", outname
);
262 * We must call init_labels() before ofmt->init() since
263 * some object formats will want to define labels in their
264 * init routines. (eg OS/2 defines the FLAT group)
268 ofmt
->init (ofile
, report_error
, define_label
, evaluate
);
270 assemble_file (inname
);
272 if (!terminate_after_phase
) {
273 ofmt
->cleanup (using_debug_info
);
277 * We had an fclose on the output file here, but we
278 * actually do that in all the object file drivers as well,
279 * so we're leaving out the one here.
298 if (terminate_after_phase
)
306 * Get a parameter for a command line option.
307 * First arg must be in the form of e.g. -f...
309 static char *get_param (char *p
, char *q
, int *advance
)
312 if (p
[2]) /* the parameter's in the option */
324 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
325 "option `-%c' requires an argument",
337 #define OPT_POSTFIX 1
338 struct textargs textopts
[] =
340 {"prefix",OPT_PREFIX
},
341 {"postfix",OPT_POSTFIX
},
347 static int process_arg (char *p
, char *q
)
355 if (p
[0]=='-' && ! stopoptions
)
361 case 'o': /* these parameters take values */
373 if ( !(param
= get_param (p
, q
, &advance
)) )
375 if (p
[1]=='o') { /* output file */
376 strcpy (outname
, param
);
377 } else if (p
[1]=='f') { /* output format */
378 ofmt
= ofmt_find(param
);
380 report_error (ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
381 "unrecognised output format `%s' - "
382 "use -hf for a list",
386 ofmt
->current_dfmt
= ofmt
->debug_formats
[0];
387 } else if (p
[1]=='O') { /* Optimization level */
389 if (!isdigit(*param
)) report_error(ERR_FATAL
,
390 "command line optimization level must be 0..3 or <nn>");
392 if (opt
<=0) optimizing
= -1; /* 0.98 behaviour */
393 else if (opt
==1) optimizing
= 0; /* Two passes, 0.98.09 behavior */
394 else if (opt
<=3) optimizing
= opt
*5; /* Multiple passes */
395 else optimizing
= opt
; /* Multiple passes */
396 } else if (p
[1]=='P' || p
[1]=='p') { /* pre-include */
397 pp_pre_include (param
);
398 } else if (p
[1]=='D' || p
[1]=='d') { /* pre-define */
399 pp_pre_define (param
);
400 } else if (p
[1]=='U' || p
[1]=='u') { /* un-define */
401 pp_pre_undefine (param
);
402 } else if (p
[1]=='I' || p
[1]=='i') { /* include search path */
403 pp_include_path (param
);
404 } else if (p
[1]=='l') { /* listing file */
405 strcpy (listname
, param
);
406 } else if (p
[1]=='E') { /* error messages file */
407 error_file
= fopen(param
, "w");
409 error_file
= stderr
; /* Revert to default! */
410 report_error (ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
411 "cannot open file `%s' for error messages",
414 } else if (p
[1] == 'F') { /* specify debug format */
415 ofmt
->current_dfmt
= dfmt_find(ofmt
, param
);
416 if (!ofmt
->current_dfmt
) {
417 report_error (ERR_FATAL
| ERR_NOFILE
| ERR_USAGE
,
418 "unrecognized debug format `%s' for"
419 " output format `%s'",
420 param
, ofmt
->shortname
);
425 using_debug_info
= TRUE
;
428 printf("usage: nasm [-@ response file] [-o outfile] [-f format] "
430 " [options...] [--] filename\n"
431 " or nasm -r for version info (obsolete)\n"
432 " or nasm -v for version info (preferred)\n\n"
433 " -t Assemble in SciTech TASM compatible mode\n"
434 " -g Generate debug information in selected format.\n");
435 printf(" -e preprocess only (writes output to stdout by default)\n"
436 " -a don't preprocess (assemble only)\n"
437 " -M generate Makefile dependencies on stdout\n\n"
438 " -E<file> redirect error messages to file\n"
439 " -s redirect error messages to stdout\n\n"
440 " -F format select a debugging format\n\n"
441 " -I<path> adds a pathname to the include file path\n");
442 printf(" -O<digit> optimize branch offsets (-O0 disables, default)\n"
443 " -P<file> pre-includes a file\n"
444 " -D<macro>[=<value>] pre-defines a macro\n"
445 " -U<macro> undefines a macro\n"
446 " -w+foo enables warnings about foo; -w-foo disables them\n"
447 "where foo can be:\n");
448 for (i
=1; i
<=ERR_WARN_MAX
; i
++)
449 printf(" %-16s%s (default %s)\n",
450 suppressed_names
[i
], suppressed_what
[i
],
451 suppressed
[i
] ? "off" : "on");
452 printf ("\nresponse files should contain command line parameters"
453 ", one per line.\n");
455 printf("\nvalid output formats for -f are"
456 " (`*' denotes default):\n");
457 ofmt_list(ofmt
, stdout
);
460 printf ("\nFor a list of valid output formats, use -hf.\n");
461 printf ("For a list of debug formats, use -f <form> -y.\n");
463 exit (0); /* never need usage message here */
466 printf("\nvalid debug formats for '%s' output format are"
467 " ('*' denotes default):\n",
469 dfmt_list(ofmt
, stdout
);
473 tasm_compatible_mode
= TRUE
;
477 printf("NASM version %s compiled "
481 "on " __DATE__
"\n", NASM_VER
);
482 exit (0); /* never need usage message here */
484 case 'e': /* preprocess only */
485 operating_mode
= op_preprocess
;
487 case 'a': /* assemble only - don't preprocess */
491 if (p
[2] != '+' && p
[2] != '-') {
492 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
493 "invalid option to `-w'");
495 for (i
=1; i
<=ERR_WARN_MAX
; i
++)
496 if (!nasm_stricmp(p
+3, suppressed_names
[i
]))
498 if (i
<= ERR_WARN_MAX
)
499 suppressed
[i
] = (p
[2] == '-');
501 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
502 "invalid option to `-w'");
506 operating_mode
= op_depend
;
513 if (p
[2]==0) { /* -- => stop processing options */
517 for(s
=0; textopts
[s
].label
; s
++)
519 if(!nasm_stricmp(p
+2, textopts
[s
].label
))
533 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
534 "option `--%s' requires an argument",
540 advance
= 1, param
= q
;
545 strncpy(lprefix
,param
,PREFIX_MAX
-1);
546 lprefix
[PREFIX_MAX
-1]=0;
551 strncpy(lpostfix
,param
,POSTFIX_MAX
-1);
552 lpostfix
[POSTFIX_MAX
-1]=0;
559 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
560 "unrecognised option `--%s'",
569 if (!ofmt
->setinfo(GI_SWITCH
,&p
))
570 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
571 "unrecognised option `-%c'",
579 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
580 "more than one input file specified");
588 #define ARG_BUF_DELTA 128
590 static void process_respfile (FILE *rfile
)
592 char *buffer
, *p
, *q
, *prevarg
;
593 int bufsize
, prevargsize
;
595 bufsize
= prevargsize
= ARG_BUF_DELTA
;
596 buffer
= nasm_malloc(ARG_BUF_DELTA
);
597 prevarg
= nasm_malloc(ARG_BUF_DELTA
);
600 while (1) { /* Loop to handle all lines in file */
603 while (1) { /* Loop to handle long lines */
604 q
= fgets(p
, bufsize
-(p
-buffer
), rfile
);
608 if (p
> buffer
&& p
[-1] == '\n')
610 if (p
-buffer
> bufsize
-10) {
613 bufsize
+= ARG_BUF_DELTA
;
614 buffer
= nasm_realloc(buffer
, bufsize
);
619 if (!q
&& p
== buffer
) {
621 process_arg (prevarg
, NULL
);
628 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
629 * them are present at the end of the line.
631 *(p
= &buffer
[strcspn(buffer
, "\r\n\032")]) = '\0';
633 while (p
> buffer
&& isspace(p
[-1]))
640 if (process_arg (prevarg
, p
))
643 if (strlen(p
) > prevargsize
-10) {
644 prevargsize
+= ARG_BUF_DELTA
;
645 prevarg
= nasm_realloc(prevarg
, prevargsize
);
651 /* Function to process args from a string of args, rather than the
652 * argv array. Used by the environment variable and response file
655 static void process_args (char *args
) {
656 char *p
, *q
, *arg
, *prevarg
;
657 char separator
= ' ';
665 while (*p
&& *p
!= separator
) p
++;
666 while (*p
== separator
) *p
++ = '\0';
669 if (process_arg (prevarg
, arg
))
673 process_arg (arg
, NULL
);
676 static void parse_cmdline(int argc
, char **argv
)
679 char *envreal
, *envcopy
=NULL
, *p
, *arg
;
681 *inname
= *outname
= *listname
= '\0';
684 * First, process the NASM environment variable.
686 envreal
= getenv("NASM");
689 envcopy
= nasm_strdup(envreal
);
690 process_args(envcopy
);
695 * Now process the actual command line.
701 if (argv
[0][0] == '@') {
702 /* We have a response file, so process this as a set of
703 * arguments like the environment variable. This allows us
704 * to have multiple arguments on a single line, which is
705 * different to the -@resp file processing below for regular
708 char *str
= malloc(2048);
709 FILE *f
= fopen(&argv
[0][1],"r");
711 printf("out of memory");
715 while (fgets(str
,2048,f
)) {
724 if (!stopoptions
&& argv
[0][0] == '-' && argv
[0][1] == '@') {
725 if ((p
= get_param (argv
[0], argc
> 1 ? argv
[1] : NULL
, &i
))) {
726 if ((rfile
= fopen(p
, "r"))) {
727 process_respfile (rfile
);
730 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
731 "unable to open response file `%s'", p
);
734 i
= process_arg (argv
[0], argc
> 1 ? argv
[1] : NULL
);
735 argv
+= i
, argc
-= i
;
739 report_error (ERR_NONFATAL
| ERR_NOFILE
| ERR_USAGE
,
740 "no input file specified");
744 static void assemble_file (char *fname
)
746 char * value
, * p
, * q
, * special
, * line
, debugid
[80];
748 int i
, rn_error
, validid
;
750 struct tokenval tokval
;
753 int pass_cnt
= 0; /* count actual passes */
755 if (cmd_sb
== 32 && cmd_cpu
< IF_386
)
756 report_error(ERR_FATAL
, "command line: "
757 "32-bit segment size requires a higher cpu");
759 pass_max
= (optimizing
>0 ? optimizing
: 0) + 2; /* passes 1, optimizing, then 2 */
760 pass0
= !(optimizing
>0); /* start at 1 if not optimizing */
761 for (pass
= 1; pass
<= pass_max
&& pass0
<= 2; pass
++) {
765 pass1
= pass
< pass_max
? 1 : 2; /* seq is 1, 1, 1,..., 1, 2 */
766 pass2
= pass
> 1 ? 2 : 1; /* seq is 1, 2, 2,..., 2, 2 */
767 /* pass0 seq is 0, 0, 0,..., 1, 2 */
769 def_label
= pass
> 1 ? redefine_label
: define_label
;
772 sb
= cmd_sb
; /* set 'bits' to command line default */
776 nasmlist
.init(listname
, report_error
);
779 global_offset_changed
= FALSE
; /* set by redefine_label */
780 location
.segment
= ofmt
->section(NULL
, pass2
, &sb
);
782 saa_rewind (forwrefs
);
783 forwref
= saa_rstruct (forwrefs
);
785 offsets
= raa_init();
787 preproc
->reset(fname
, pass1
, report_error
, evaluate
, &nasmlist
);
789 if (pass
== 1) location
.known
= TRUE
;
790 location
.offset
= offs
= GET_CURR_OFFS
;
792 while ( (line
= preproc
->getline()) )
796 /* here we parse our directives; this is not handled by the 'real'
798 if ( (i
= getkw (line
, &value
)) )
801 case 1: /* [SEGMENT n] */
802 seg
= ofmt
->section (value
, pass2
, &sb
);
804 report_error (pass1
==1 ? ERR_NONFATAL
: ERR_PANIC
,
805 "segment name `%s' not recognised",
809 location
.segment
= seg
;
812 case 2: /* [EXTERN label:special] */
813 if (*value
== '$') value
++; /* skip initial $ if present */
816 while (*q
&& *q
!= ':')
820 ofmt
->symdef(value
, 0L, 0L, 3, q
);
822 } else if (pass
== 1) { /* pass == 1 */
827 while (*q
&& *q
!= ':') {
833 report_error (ERR_NONFATAL
,
834 "identifier expected after EXTERN");
842 if (!is_extern(value
)) { /* allow re-EXTERN to be ignored */
844 pass0
= 1; /* fake pass 1 in labels.c */
845 declare_as_global (value
, special
, report_error
);
846 define_label (value
, seg_alloc(), 0L, NULL
, FALSE
, TRUE
,
850 } /* else pass0 == 1 */
852 case 3: /* [BITS bits] */
853 sb
= get_bits(value
);
855 case 4: /* [GLOBAL symbol:special] */
856 if (*value
== '$') value
++; /* skip initial $ if present */
857 if (pass0
== 2) { /* pass 2 */
859 while (*q
&& *q
!= ':')
863 ofmt
->symdef(value
, 0L, 0L, 3, q
);
865 } else if (pass2
== 1) { /* pass == 1 */
870 while (*q
&& *q
!= ':') {
876 report_error (ERR_NONFATAL
,
877 "identifier expected after GLOBAL");
885 declare_as_global (value
, special
, report_error
);
888 case 5: /* [COMMON symbol size:special] */
889 if (*value
== '$') value
++; /* skip initial $ if present */
895 while (*p
&& !isspace(*p
)) {
901 report_error (ERR_NONFATAL
,
902 "identifier expected after COMMON");
908 while (*p
&& isspace(*p
))
911 while (*q
&& *q
!= ':')
918 size
= readnum (p
, &rn_error
);
920 report_error (ERR_NONFATAL
, "invalid size specified"
921 " in COMMON declaration");
923 define_common (value
, seg_alloc(), size
,
924 special
, ofmt
, report_error
);
926 report_error (ERR_NONFATAL
, "no size specified in"
927 " COMMON declaration");
928 } else if (pass0
== 2) { /* pass == 2 */
930 while (*q
&& *q
!= ':') {
937 ofmt
->symdef(value
, 0L, 0L, 3, q
);
941 case 6: /* [ABSOLUTE address] */
943 stdscan_bufptr
= value
;
944 tokval
.t_type
= TOKEN_INVALID
;
945 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, pass2
, report_error
,
949 report_error (pass0
==1 ? ERR_NONFATAL
: ERR_PANIC
,
950 "cannot use non-relocatable expression as "
953 abs_seg
= reloc_seg(e
);
954 abs_offset
= reloc_value(e
);
957 if (pass
==1) abs_offset
= 0x100;/* don't go near zero in case of / */
958 else report_error (ERR_PANIC
, "invalid ABSOLUTE address "
961 location
.segment
= abs_seg
;
969 while (*p
&& !isspace(*p
)) {
976 report_error (pass
==1 ? ERR_NONFATAL
: ERR_PANIC
,
977 "identifier expected after DEBUG");
980 while (*p
&& isspace(*p
)) p
++;
981 if (pass
==pass_max
) ofmt
->current_dfmt
->debug_directive (debugid
, p
);
983 case 8: /* [WARNING {+|-}warn-name] */
985 while (*value
&& isspace(*value
))
988 if (*value
== '+' || *value
== '-') {
989 validid
= (*value
== '-') ? TRUE
: FALSE
;
994 for (i
=1; i
<=ERR_WARN_MAX
; i
++)
995 if (!nasm_stricmp(value
, suppressed_names
[i
]))
997 if (i
<= ERR_WARN_MAX
)
998 suppressed
[i
] = validid
;
1000 report_error (ERR_NONFATAL
, "invalid warning id in WARNING directive");
1004 cpu
= get_cpu (value
);
1006 case 10: /* fbk 9/2/00 */ /* [LIST {+|-}] */
1007 while (*value
&& isspace(*value
))
1010 if (*value
== '+') {
1014 if (*value
== '-') {
1018 report_error (ERR_NONFATAL
, "invalid parameter to \"list\" directive");
1023 if (!ofmt
->directive (line
+1, value
, pass2
))
1024 report_error (pass1
==1 ? ERR_NONFATAL
: ERR_PANIC
,
1025 "unrecognised directive [%s]",
1029 else /* it isn't a directive */
1031 parse_line (pass1
, line
, &output_ins
,
1032 report_error
, evaluate
,
1035 if (!(optimizing
>0) && pass
== 2) {
1036 if (forwref
!= NULL
&& globallineno
== forwref
->lineno
) {
1037 output_ins
.forw_ref
= TRUE
;
1039 output_ins
.oprs
[forwref
->operand
].opflags
|= OPFLAG_FORWARD
;
1040 forwref
= saa_rstruct (forwrefs
);
1041 } while (forwref
!= NULL
&& forwref
->lineno
== globallineno
);
1043 output_ins
.forw_ref
= FALSE
;
1047 if (!(optimizing
>0) && output_ins
.forw_ref
)
1050 for(i
= 0; i
< output_ins
.operands
; i
++)
1052 if (output_ins
.oprs
[i
].opflags
& OPFLAG_FORWARD
)
1054 struct forwrefinfo
*fwinf
=
1055 (struct forwrefinfo
*)saa_wstruct(forwrefs
);
1056 fwinf
->lineno
= globallineno
;
1060 } else { /* pass == 2 */
1062 * Hack to prevent phase error in the code
1066 * If the second operand is a forward reference,
1067 * the UNITY property of the number 1 in that
1068 * operand is cancelled. Otherwise the above
1069 * sequence will cause a phase error.
1071 * This hack means that the above code will
1072 * generate 286+ code.
1074 * The forward reference will mean that the
1075 * operand will not have the UNITY property on
1076 * the first pass, so the pass behaviours will
1080 if (output_ins
.operands
>= 2 &&
1081 (output_ins
.oprs
[1].opflags
& OPFLAG_FORWARD
))
1083 output_ins
.oprs
[1].type
&= ~(ONENESS
|BYTENESS
);
1091 if (output_ins
.opcode
== I_EQU
) {
1095 * Special `..' EQUs get processed in pass two,
1096 * except `..@' macro-processor EQUs which are done
1097 * in the normal place.
1099 if (!output_ins
.label
)
1100 report_error (ERR_NONFATAL
,
1101 "EQU not preceded by label");
1103 else if (output_ins
.label
[0] != '.' ||
1104 output_ins
.label
[1] != '.' ||
1105 output_ins
.label
[2] == '@')
1107 if (output_ins
.operands
== 1 &&
1108 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1109 output_ins
.oprs
[0].wrt
== NO_SEG
)
1111 int isext
= output_ins
.oprs
[0].opflags
& OPFLAG_EXTERN
;
1112 def_label (output_ins
.label
,
1113 output_ins
.oprs
[0].segment
,
1114 output_ins
.oprs
[0].offset
,
1115 NULL
, FALSE
, isext
, ofmt
, report_error
);
1117 else if (output_ins
.operands
== 2 &&
1118 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1119 (output_ins
.oprs
[0].type
& COLON
) &&
1120 output_ins
.oprs
[0].segment
== NO_SEG
&&
1121 output_ins
.oprs
[0].wrt
== NO_SEG
&&
1122 (output_ins
.oprs
[1].type
& IMMEDIATE
) &&
1123 output_ins
.oprs
[1].segment
== NO_SEG
&&
1124 output_ins
.oprs
[1].wrt
== NO_SEG
)
1126 def_label (output_ins
.label
,
1127 output_ins
.oprs
[0].offset
| SEG_ABS
,
1128 output_ins
.oprs
[1].offset
,
1129 NULL
, FALSE
, FALSE
, ofmt
, report_error
);
1132 report_error(ERR_NONFATAL
, "bad syntax for EQU");
1134 } else { /* pass == 2 */
1136 * Special `..' EQUs get processed here, except
1137 * `..@' macro processor EQUs which are done above.
1139 if (output_ins
.label
[0] == '.' &&
1140 output_ins
.label
[1] == '.' &&
1141 output_ins
.label
[2] != '@')
1143 if (output_ins
.operands
== 1 &&
1144 (output_ins
.oprs
[0].type
& IMMEDIATE
)) {
1145 define_label (output_ins
.label
,
1146 output_ins
.oprs
[0].segment
,
1147 output_ins
.oprs
[0].offset
,
1148 NULL
, FALSE
, FALSE
, ofmt
, report_error
);
1150 else if (output_ins
.operands
== 2 &&
1151 (output_ins
.oprs
[0].type
& IMMEDIATE
) &&
1152 (output_ins
.oprs
[0].type
& COLON
) &&
1153 output_ins
.oprs
[0].segment
== NO_SEG
&&
1154 (output_ins
.oprs
[1].type
& IMMEDIATE
) &&
1155 output_ins
.oprs
[1].segment
== NO_SEG
)
1157 define_label (output_ins
.label
,
1158 output_ins
.oprs
[0].offset
| SEG_ABS
,
1159 output_ins
.oprs
[1].offset
,
1160 NULL
, FALSE
, FALSE
, ofmt
, report_error
);
1163 report_error(ERR_NONFATAL
, "bad syntax for EQU");
1166 } else { /* instruction isn't an EQU */
1170 long l
= insn_size (location
.segment
, offs
, sb
, cpu
,
1171 &output_ins
, report_error
);
1173 /* if (using_debug_info) && output_ins.opcode != -1)*/
1174 if (using_debug_info
) /* fbk 03/25/01 */
1177 /* this is done here so we can do debug type info */
1178 long typeinfo
= TYS_ELEMENTS(output_ins
.operands
);
1179 switch (output_ins
.opcode
) {
1181 typeinfo
= TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_BYTE
;
1184 typeinfo
= TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_WORD
;
1187 typeinfo
= TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_DWORD
;
1190 typeinfo
= TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_QWORD
;
1193 typeinfo
= TYS_ELEMENTS(output_ins
.oprs
[0].offset
) | TY_TBYTE
;
1196 typeinfo
|= TY_BYTE
;
1199 typeinfo
|= TY_WORD
;
1202 if (output_ins
.eops_float
)
1203 typeinfo
|= TY_FLOAT
;
1205 typeinfo
|= TY_DWORD
;
1208 typeinfo
|= TY_QWORD
;
1211 typeinfo
|= TY_TBYTE
;
1214 typeinfo
= TY_LABEL
;
1218 ofmt
->current_dfmt
->debug_typevalue(typeinfo
);
1223 SET_CURR_OFFS (offs
);
1226 * else l == -1 => invalid instruction, which will be
1227 * flagged as an error on pass 2
1230 } else { /* pass == 2 */
1231 offs
+= assemble (location
.segment
, offs
, sb
, cpu
,
1232 &output_ins
, ofmt
, report_error
, &nasmlist
);
1233 SET_CURR_OFFS (offs
);
1237 cleanup_insn (&output_ins
);
1240 location
.offset
= offs
= GET_CURR_OFFS
;
1241 } /* end while (line = preproc->getline... */
1243 if (pass1
==2 && global_offset_changed
)
1244 report_error(ERR_NONFATAL
, "phase error detected at end of assembly.");
1246 if (pass1
== 1) preproc
->cleanup(1);
1248 if (pass1
==1 && terminate_after_phase
) {
1256 if (pass
>1 && !global_offset_changed
) {
1258 if (pass0
==2) pass
= pass_max
- 1;
1259 } else if (!(optimizing
>0)) pass0
++;
1261 } /* for (pass=1; pass<=2; pass++) */
1263 preproc
->cleanup(0);
1266 if (optimizing
>0 && using_debug_info
) /* -On and -g switches */
1268 "info:: assembly required 1+%d+1 passes\n", pass_cnt
-2);
1270 } /* exit from assemble_file (...) */
1273 static int getkw (char *buf
, char **value
)
1277 /* allow leading spaces or tabs */
1278 while (*buf
==' ' || *buf
=='\t')
1286 while (*p
&& *p
!= ']') p
++;
1293 while (*p
&& *p
!= ';') {
1301 while (*buf
&& *buf
!=' ' && *buf
!=']' && *buf
!='\t')
1308 while (isspace(*buf
)) buf
++; /* beppu - skip leading whitespace */
1310 while (*buf
!=']') buf
++;
1317 if (!nasm_stricmp(p
, "segment") || !nasm_stricmp(p
, "section"))
1319 if (!nasm_stricmp(p
, "extern"))
1321 if (!nasm_stricmp(p
, "bits"))
1323 if (!nasm_stricmp(p
, "global"))
1325 if (!nasm_stricmp(p
, "common"))
1327 if (!nasm_stricmp(p
, "absolute"))
1329 if (!nasm_stricmp(p
, "debug"))
1331 if (!nasm_stricmp(p
, "warning"))
1333 if (!nasm_stricmp(p
, "cpu"))
1335 if (!nasm_stricmp(p
, "list")) /* fbk 9/2/00 */
1340 static void report_error (int severity
, char *fmt
, ...)
1345 * See if it's a suppressed warning.
1347 if ((severity
& ERR_MASK
) == ERR_WARNING
&&
1348 (severity
& ERR_WARN_MASK
) != 0 &&
1349 suppressed
[ (severity
& ERR_WARN_MASK
) >> ERR_WARN_SHR
])
1350 return; /* and bail out if so */
1353 * See if it's a pass-one only warning and we're not in pass one.
1355 if ((severity
& ERR_PASS1
) && pass0
== 2)
1358 if (severity
& ERR_NOFILE
)
1359 fputs ("nasm: ", error_file
);
1361 char * currentfile
= NULL
;
1363 src_get (&lineno
, ¤tfile
);
1364 fprintf (error_file
, "%s:%ld: ", currentfile
, lineno
);
1365 nasm_free (currentfile
);
1368 switch (severity
& ERR_MASK
) {
1370 fputs ("warning: ", error_file
); break;
1372 fputs ("error: ", error_file
); break;
1374 fputs ("fatal: ", error_file
); break;
1376 fputs ("panic: ", error_file
); break;
1378 fputs("debug: ", error_file
); break;
1382 vfprintf (error_file
, fmt
, ap
);
1383 fputc ('\n', error_file
);
1385 if (severity
& ERR_USAGE
)
1388 switch (severity
& ERR_MASK
) {
1389 case ERR_WARNING
: case ERR_DEBUG
:
1390 /* no further action, by definition */
1393 /* terminate_after_phase = TRUE; *//**//* hack enables listing(!) on errors */
1394 terminate_after_phase
= TRUE
;
1403 exit(1); /* instantly die */
1404 break; /* placate silly compilers */
1407 /* abort(); */ /* halt, catch fire, and dump core */
1413 static void usage(void)
1415 fputs("type `nasm -h' for help\n", error_file
);
1418 static void register_output_formats(void)
1420 ofmt
= ofmt_register (report_error
);
1423 #define BUF_DELTA 512
1425 static FILE *no_pp_fp
;
1426 static efunc no_pp_err
;
1427 static ListGen
*no_pp_list
;
1428 static long no_pp_lineinc
;
1430 static void no_pp_reset (char *file
, int pass
, efunc error
, evalfunc eval
,
1433 src_set_fname(nasm_strdup(file
));
1437 no_pp_fp
= fopen(file
, "r");
1439 no_pp_err (ERR_FATAL
| ERR_NOFILE
,
1440 "unable to open input file `%s'", file
);
1441 no_pp_list
= listgen
;
1442 (void) pass
; /* placate compilers */
1443 (void) eval
; /* placate compilers */
1446 static char *no_pp_getline (void)
1448 char *buffer
, *p
, *q
;
1451 bufsize
= BUF_DELTA
;
1452 buffer
= nasm_malloc(BUF_DELTA
);
1453 src_set_linnum(src_get_linnum() + no_pp_lineinc
);
1455 while (1) { /* Loop to handle %line */
1458 while (1) { /* Loop to handle long lines */
1459 q
= fgets(p
, bufsize
-(p
-buffer
), no_pp_fp
);
1463 if (p
> buffer
&& p
[-1] == '\n')
1465 if (p
-buffer
> bufsize
-10) {
1467 offset
= p
- buffer
;
1468 bufsize
+= BUF_DELTA
;
1469 buffer
= nasm_realloc(buffer
, bufsize
);
1470 p
= buffer
+ offset
;
1474 if (!q
&& p
== buffer
) {
1480 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1481 * them are present at the end of the line.
1483 buffer
[strcspn(buffer
, "\r\n\032")] = '\0';
1485 if (!strncmp(buffer
, "%line", 5)) {
1488 char *nm
= nasm_malloc(strlen(buffer
));
1489 if (sscanf(buffer
+5, "%ld+%d %s", &ln
, &li
, nm
) == 3) {
1490 nasm_free( src_set_fname(nm
) );
1500 no_pp_list
->line (LIST_READ
, buffer
);
1505 static void no_pp_cleanup (int pass
)
1510 static unsigned long get_cpu (char *value
)
1513 if (!strcmp(value
, "8086")) return IF_8086
;
1514 if (!strcmp(value
, "186")) return IF_186
;
1515 if (!strcmp(value
, "286")) return IF_286
;
1516 if (!strcmp(value
, "386")) return IF_386
;
1517 if (!strcmp(value
, "486")) return IF_486
;
1518 if (!strcmp(value
, "586") ||
1519 !nasm_stricmp(value
, "pentium") ) return IF_PENT
;
1520 if (!strcmp(value
, "686") ||
1521 !nasm_stricmp(value
, "ppro") ||
1522 !nasm_stricmp(value
, "p2") ) return IF_P6
;
1523 if (!nasm_stricmp(value
, "p3") ||
1524 !nasm_stricmp(value
, "katmai") ) return IF_KATMAI
;
1525 if (!nasm_stricmp(value
, "p4") || /* is this right? -- jrc */
1526 !nasm_stricmp(value
, "willamette") ) return IF_WILLAMETTE
;
1528 report_error (pass0
<2 ? ERR_NONFATAL
: ERR_FATAL
, "unknown 'cpu' type");
1530 return IF_PLEVEL
; /* the maximum level */
1534 static int get_bits (char *value
)
1538 if ((i
= atoi(value
)) == 16) return i
; /* set for a 16-bit segment */
1541 report_error(ERR_NONFATAL
,
1542 "cannot specify 32-bit segment on processor below a 386");
1546 report_error(pass0
<2 ? ERR_NONFATAL
: ERR_FATAL
,
1547 "`%s' is not a valid segment size; must be 16 or 32",