blob: 9e3c2344d41ddbe9f2298e767e4e52a5ecbaad1a [file] [log] [blame]
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07001/* ----------------------------------------------------------------------- *
H. Peter Anvin323fcff2009-07-12 12:04:56 -07002 *
H. Peter Anvinc7131682017-03-07 17:45:01 -08003 * Copyright 1996-2017 The NASM Authors - All Rights Reserved
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07004 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00006 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -07007 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
9 * conditions are met:
10 *
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.
H. Peter Anvin323fcff2009-07-12 12:04:56 -070017 *
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070018 * 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.
31 *
32 * ----------------------------------------------------------------------- */
33
H. Peter Anvin323fcff2009-07-12 12:04:56 -070034/*
H. Peter Anvin9e6747c2009-06-28 17:13:04 -070035 * The Netwide Assembler main program module
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000036 */
37
H. Peter Anvinfe501952007-10-02 21:53:51 -070038#include "compiler.h"
39
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000040#include <stdio.h>
41#include <stdarg.h>
42#include <stdlib.h>
43#include <string.h>
44#include <ctype.h>
H. Peter Anvinfd7dd112007-10-10 14:06:59 -070045#include <limits.h>
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -080046#include <time.h>
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000047
48#include "nasm.h"
49#include "nasmlib.h"
H. Peter Anvinb20bc732017-03-07 19:23:03 -080050#include "error.h"
H. Peter Anvin1803ded2008-06-09 17:32:43 -070051#include "saa.h"
H. Peter Anvinfcb89092008-06-09 17:40:16 -070052#include "raa.h"
H. Peter Anvinf6c9e652007-10-16 14:40:27 -070053#include "float.h"
H. Peter Anvin74cc5e52007-08-30 22:35:34 +000054#include "stdscan.h"
H. Peter Anvinaf535c12002-04-30 20:59:21 +000055#include "insns.h"
H. Peter Anvind7ed89e2002-04-30 20:52:08 +000056#include "preproc.h"
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000057#include "parser.h"
H. Peter Anvin76690a12002-04-30 20:52:49 +000058#include "eval.h"
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000059#include "assemble.h"
60#include "labels.h"
H. Peter Anvine1f985c2016-05-25 12:06:29 -070061#include "outform.h"
H. Peter Anvin6768eb72002-04-30 20:52:26 +000062#include "listing.h"
Cyrill Gorcunov08359152013-11-09 22:16:11 +040063#include "iflag.h"
H. Peter Anvin2bc0ab32016-03-08 02:17:36 -080064#include "ver.h"
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000065
H. Peter Anvin31387b22010-07-15 18:28:52 -070066/*
67 * This is the maximum number of optimization passes to do. If we ever
68 * find a case where the optimizer doesn't naturally converge, we might
69 * have to drop this value so the assembler doesn't appear to just hang.
70 */
71#define MAX_OPTIMIZE (INT_MAX >> 1)
72
H. Peter Anvine2c80182005-01-15 22:15:51 +000073struct forwrefinfo { /* info held on forward refs. */
H. Peter Anvineba20a72002-04-30 20:53:55 +000074 int lineno;
75 int operand;
76};
77
H. Peter Anvin55568c12016-10-03 19:46:49 -070078static void parse_cmdline(int, char **, int);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -070079static void assemble_file(char *, StrList **);
H. Peter Anvin130736c2016-02-17 20:27:41 -080080static bool is_suppressed_warning(int severity);
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -080081static bool skip_this_pass(int severity);
H. Peter Anvin9bd15062009-07-18 21:07:17 -040082static void nasm_verror_gnu(int severity, const char *fmt, va_list args);
83static void nasm_verror_vc(int severity, const char *fmt, va_list args);
84static void nasm_verror_common(int severity, const char *fmt, va_list args);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +000085static void usage(void);
86
H. Peter Anvin283b3fb2016-03-07 23:18:30 -080087static bool using_debug_info, opt_verbose_info;
88static const char *debug_format;
89
H. Peter Anvin6867acc2007-10-10 14:58:45 -070090bool tasm_compatible_mode = false;
H. Peter Anvin00835fe2008-01-08 23:03:57 -080091int pass0, passn;
H. Peter Anvinc7131682017-03-07 17:45:01 -080092static int pass1, pass2; /* XXX: Get rid of these, they are redundant */
H. Peter Anvin99c4ecd2007-08-28 23:06:00 +000093int globalrel = 0;
Jin Kyu Songb287ff02013-12-04 20:05:55 -080094int globalbnd = 0;
H. Peter Anvineba20a72002-04-30 20:53:55 +000095
H. Peter Anvin9bd15062009-07-18 21:07:17 -040096static time_t official_compile_time;
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -080097
Keith Kaniosa6dfa782007-04-13 16:47:53 +000098static char inname[FILENAME_MAX];
99static char outname[FILENAME_MAX];
100static char listname[FILENAME_MAX];
Charles Craynefcce07f2007-09-30 22:15:36 -0700101static char errname[FILENAME_MAX];
H. Peter Anvine2c80182005-01-15 22:15:51 +0000102static int globallineno; /* for forward-reference tracking */
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000103/* static int pass = 0; */
H. Peter Anvin338656c2016-02-17 20:59:22 -0800104const struct ofmt *ofmt = &OF_DEFAULT;
105const struct ofmt_alias *ofmt_alias = NULL;
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400106const struct dfmt *dfmt;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000107
H. Peter Anvine2c80182005-01-15 22:15:51 +0000108static FILE *error_file; /* Where to write error messages */
H. Peter Anvin620515a2002-04-30 20:57:38 +0000109
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400110FILE *ofile = NULL;
H. Peter Anvin31387b22010-07-15 18:28:52 -0700111int optimizing = MAX_OPTIMIZE; /* number of optimization passes to take */
Martin Lindhe8cc93f52016-11-16 16:48:13 +0100112static int cmd_sb = 16; /* by default */
Cyrill Gorcunov08359152013-11-09 22:16:11 +0400113
H. Peter Anvinb20bc732017-03-07 19:23:03 -0800114iflag_t cpu;
Cyrill Gorcunov08359152013-11-09 22:16:11 +0400115static iflag_t cmd_cpu;
116
H. Peter Anvincd7893d2016-02-18 01:25:46 -0800117struct location location;
H. Peter Anvinb20bc732017-03-07 19:23:03 -0800118bool in_absolute; /* Flag we are in ABSOLUTE seg */
119struct location absolute; /* Segment/offset inside ABSOLUTE */
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000120
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000121static struct RAA *offsets;
H. Peter Anvinea838272002-04-30 20:51:53 +0000122
H. Peter Anvine2c80182005-01-15 22:15:51 +0000123static struct SAA *forwrefs; /* keep track of forward references */
H. Peter Anvin9d637df2007-10-04 13:42:56 -0700124static const struct forwrefinfo *forwref;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000125
H. Peter Anvine7469712016-02-18 02:20:59 -0800126static const struct preproc_ops *preproc;
Cyrill Gorcunov86b2ad02011-07-01 10:38:25 +0400127
Cyrill Gorcunove9fc88c2014-06-23 02:22:02 +0400128#define OP_NORMAL (1u << 0)
129#define OP_PREPROCESS (1u << 1)
130#define OP_DEPEND (1u << 2)
131
132static unsigned int operating_mode;
Cyrill Gorcunov3ed32cb2014-06-22 20:53:12 +0400133
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700134/* Dependency flags */
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700135static bool depend_emit_phony = false;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700136static bool depend_missing_ok = false;
137static const char *depend_target = NULL;
138static const char *depend_file = NULL;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000139
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -0700140static bool want_usage;
141static bool terminate_after_phase;
H. Peter Anvin130736c2016-02-17 20:27:41 -0800142bool user_nolist = false;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000143
H. Peter Anvin55340992012-09-09 17:09:00 -0700144static char *quote_for_make(const char *str);
145
Cyrill Gorcunov190232f2013-02-15 12:35:04 +0400146static int64_t get_curr_offs(void)
147{
H. Peter Anvinb20bc732017-03-07 19:23:03 -0800148 return in_absolute ? absolute.offset : raa_read(offsets, location.segment);
Cyrill Gorcunov190232f2013-02-15 12:35:04 +0400149}
150
151static void set_curr_offs(int64_t l_off)
152{
H. Peter Anvinb20bc732017-03-07 19:23:03 -0800153 if (in_absolute)
154 absolute.offset = l_off;
Cyrill Gorcunov190232f2013-02-15 12:35:04 +0400155 else
156 offsets = raa_write(offsets, location.segment, l_off);
157}
158
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000159static void nasm_fputs(const char *line, FILE * outfile)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000160{
H. Peter Anvin310b3e12002-05-14 22:38:55 +0000161 if (outfile) {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000162 fputs(line, outfile);
H. Peter Anvind1fb15c2007-11-13 09:37:59 -0800163 putc('\n', outfile);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000164 } else
H. Peter Anvine2c80182005-01-15 22:15:51 +0000165 puts(line);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000166}
167
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800168/* Convert a struct tm to a POSIX-style time constant */
H. Peter Anvin724719b2015-01-05 15:17:56 -0800169static int64_t make_posix_time(struct tm *tm)
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800170{
171 int64_t t;
172 int64_t y = tm->tm_year;
173
174 /* See IEEE 1003.1:2004, section 4.14 */
175
176 t = (y-70)*365 + (y-69)/4 - (y-1)/100 + (y+299)/400;
177 t += tm->tm_yday;
178 t *= 24;
179 t += tm->tm_hour;
180 t *= 60;
181 t += tm->tm_min;
182 t *= 60;
183 t += tm->tm_sec;
184
185 return t;
186}
187
188static void define_macros_early(void)
189{
190 char temp[128];
191 struct tm lt, *lt_p, gm, *gm_p;
192 int64_t posix_time;
193
194 lt_p = localtime(&official_compile_time);
195 if (lt_p) {
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400196 lt = *lt_p;
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800197
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400198 strftime(temp, sizeof temp, "__DATE__=\"%Y-%m-%d\"", &lt);
199 preproc->pre_define(temp);
200 strftime(temp, sizeof temp, "__DATE_NUM__=%Y%m%d", &lt);
201 preproc->pre_define(temp);
202 strftime(temp, sizeof temp, "__TIME__=\"%H:%M:%S\"", &lt);
203 preproc->pre_define(temp);
204 strftime(temp, sizeof temp, "__TIME_NUM__=%H%M%S", &lt);
205 preproc->pre_define(temp);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800206 }
207
208 gm_p = gmtime(&official_compile_time);
209 if (gm_p) {
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400210 gm = *gm_p;
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800211
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400212 strftime(temp, sizeof temp, "__UTC_DATE__=\"%Y-%m-%d\"", &gm);
213 preproc->pre_define(temp);
214 strftime(temp, sizeof temp, "__UTC_DATE_NUM__=%Y%m%d", &gm);
215 preproc->pre_define(temp);
216 strftime(temp, sizeof temp, "__UTC_TIME__=\"%H:%M:%S\"", &gm);
217 preproc->pre_define(temp);
218 strftime(temp, sizeof temp, "__UTC_TIME_NUM__=%H%M%S", &gm);
219 preproc->pre_define(temp);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800220 }
H. Peter Anvind85d2502008-05-04 17:53:31 -0700221
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800222 if (gm_p)
H. Peter Anvin724719b2015-01-05 15:17:56 -0800223 posix_time = make_posix_time(&gm);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800224 else if (lt_p)
H. Peter Anvin724719b2015-01-05 15:17:56 -0800225 posix_time = make_posix_time(&lt);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800226 else
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400227 posix_time = 0;
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800228
229 if (posix_time) {
Cyrill Gorcunovcdaae1a2013-02-15 02:16:58 +0400230 snprintf(temp, sizeof temp, "__POSIX_TIME__=%"PRId64, posix_time);
231 preproc->pre_define(temp);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800232 }
233}
234
235static void define_macros_late(void)
236{
237 char temp[128];
238
Cyrill Gorcunovc1936da2011-04-06 18:32:15 +0400239 /*
240 * In case if output format is defined by alias
241 * we have to put shortname of the alias itself here
242 * otherwise ABI backward compatibility gets broken.
243 */
Cyrill Gorcunov69ce7502010-07-12 15:19:17 +0400244 snprintf(temp, sizeof(temp), "__OUTPUT_FORMAT__=%s",
Cyrill Gorcunovc1936da2011-04-06 18:32:15 +0400245 ofmt_alias ? ofmt_alias->shortname : ofmt->shortname);
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +0400246 preproc->pre_define(temp);
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800247}
248
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700249static void emit_dependencies(StrList *list)
250{
251 FILE *deps;
252 int linepos, len;
253 StrList *l, *nl;
254
255 if (depend_file && strcmp(depend_file, "-")) {
H. Peter Anvin3e83cec2016-05-25 04:28:46 -0700256 deps = nasm_open_write(depend_file, NF_TEXT);
Cyrill Gorcunov52405e32013-02-15 12:25:04 +0400257 if (!deps) {
258 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
259 "unable to write dependency file `%s'", depend_file);
260 return;
261 }
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700262 } else {
Cyrill Gorcunov52405e32013-02-15 12:25:04 +0400263 deps = stdout;
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700264 }
H. Peter Anvin323fcff2009-07-12 12:04:56 -0700265
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700266 linepos = fprintf(deps, "%s:", depend_target);
Cyrill Gorcunovfcd0a742009-07-27 16:26:26 +0400267 list_for_each(l, list) {
H. Peter Anvin55340992012-09-09 17:09:00 -0700268 char *file = quote_for_make(l->str);
Cyrill Gorcunov52405e32013-02-15 12:25:04 +0400269 len = strlen(file);
270 if (linepos + len > 62 && linepos > 1) {
271 fprintf(deps, " \\\n ");
272 linepos = 1;
273 }
274 fprintf(deps, " %s", file);
275 linepos += len+1;
H. Peter Anvin55340992012-09-09 17:09:00 -0700276 nasm_free(file);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700277 }
278 fprintf(deps, "\n\n");
H. Peter Anvin323fcff2009-07-12 12:04:56 -0700279
Cyrill Gorcunovfcd0a742009-07-27 16:26:26 +0400280 list_for_each_safe(l, nl, list) {
Cyrill Gorcunov52405e32013-02-15 12:25:04 +0400281 if (depend_emit_phony)
282 fprintf(deps, "%s:\n\n", l->str);
283 nasm_free(l);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700284 }
285
286 if (deps != stdout)
Cyrill Gorcunov52405e32013-02-15 12:25:04 +0400287 fclose(deps);
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700288}
289
H. Peter Anvin038d8612007-04-12 16:54:50 +0000290int main(int argc, char **argv)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000291{
H. Peter Anvin9e1f5282008-05-29 21:38:00 -0700292 StrList *depend_list = NULL, **depend_ptr;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700293
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800294 time(&official_compile_time);
295
Cyrill Gorcunov08359152013-11-09 22:16:11 +0400296 iflag_set(&cpu, IF_PLEVEL);
297 iflag_set(&cmd_cpu, IF_PLEVEL);
298
Charles Crayne2581c862008-09-10 19:21:52 -0700299 pass0 = 0;
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700300 want_usage = terminate_after_phase = false;
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400301 nasm_set_verror(nasm_verror_gnu);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000302
H. Peter Anvin97e15752007-09-25 08:47:47 -0700303 error_file = stderr;
304
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -0700305 tolower_init();
H. Peter Anvin274cda82016-05-10 02:56:29 -0700306 src_init();
H. Peter Anvinac8f8fc2008-06-11 15:49:41 -0700307
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000308 offsets = raa_init();
Keith Kaniosb7a89542007-04-12 02:40:54 +0000309 forwrefs = saa_init((int32_t)sizeof(struct forwrefinfo));
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000310
H. Peter Anvind7ed89e2002-04-30 20:52:08 +0000311 preproc = &nasmpp;
Cyrill Gorcunov3ed32cb2014-06-22 20:53:12 +0400312 operating_mode = OP_NORMAL;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000313
H. Peter Anvin55568c12016-10-03 19:46:49 -0700314 parse_cmdline(argc, argv, 1);
315 if (terminate_after_phase) {
316 if (want_usage)
317 usage();
318 return 1;
319 }
320
H. Peter Anvin169ac7c2016-09-25 17:08:05 -0700321 /*
322 * Define some macros dependent on the runtime, but not
H. Peter Anvin55568c12016-10-03 19:46:49 -0700323 * on the command line (as those are scanned in cmdline pass 2.)
H. Peter Anvin169ac7c2016-09-25 17:08:05 -0700324 */
325 preproc->init();
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800326 define_macros_early();
327
H. Peter Anvin55568c12016-10-03 19:46:49 -0700328 parse_cmdline(argc, argv, 2);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000329 if (terminate_after_phase) {
330 if (want_usage)
331 usage();
332 return 1;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000333 }
334
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800335 if (!using_debug_info) {
336 /* No debug info, redirect to the null backend (empty stubs) */
H. Peter Anvina7bc15d2016-02-17 20:55:08 -0800337 dfmt = &null_debug_form;
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800338 } else if (!debug_format) {
339 /* Default debug format for this backend */
H. Peter Anvina7bc15d2016-02-17 20:55:08 -0800340 dfmt = ofmt->default_dfmt;
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800341 } else {
342 dfmt = dfmt_find(ofmt, debug_format);
343 if (!dfmt) {
344 nasm_fatal(ERR_NOFILE | ERR_USAGE,
345 "unrecognized debug format `%s' for"
346 " output format `%s'",
347 debug_format, ofmt->shortname);
348 }
349 }
H. Peter Anvinbb88d012003-09-10 23:34:23 +0000350
H. Peter Anvin76690a12002-04-30 20:52:49 +0000351 if (ofmt->stdmac)
Cyrill Gorcunov0b78bff2012-05-07 01:57:55 +0400352 preproc->extra_stdmac(ofmt->stdmac);
H. Peter Anvin76690a12002-04-30 20:52:49 +0000353
H. Peter Anvinaf535c12002-04-30 20:59:21 +0000354 /* define some macros dependent of command-line */
H. Peter Anvin6b18bcc2008-02-16 14:54:10 -0800355 define_macros_late();
H. Peter Anvinaf535c12002-04-30 20:59:21 +0000356
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400357 depend_ptr = (depend_file || (operating_mode & OP_DEPEND)) ? &depend_list : NULL;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700358 if (!depend_target)
Cyrill Gorcunov9f563692013-02-15 12:24:11 +0400359 depend_target = quote_for_make(outname);
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700360
Cyrill Gorcunove9fc88c2014-06-23 02:22:02 +0400361 if (operating_mode & OP_DEPEND) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000362 char *line;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700363
Cyrill Gorcunov9f563692013-02-15 12:24:11 +0400364 if (depend_missing_ok)
365 preproc->include_path(NULL); /* "assume generated" */
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700366
H. Peter Anvin130736c2016-02-17 20:27:41 -0800367 preproc->reset(inname, 0, depend_ptr);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000368 if (outname[0] == '\0')
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400369 ofmt->filename(inname, outname);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000370 ofile = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000371 while ((line = preproc->getline()))
372 nasm_free(line);
373 preproc->cleanup(0);
Cyrill Gorcunove9fc88c2014-06-23 02:22:02 +0400374 } else if (operating_mode & OP_PREPROCESS) {
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000375 char *line;
H. Peter Anvin274cda82016-05-10 02:56:29 -0700376 const char *file_name = NULL;
Keith Kaniosb7a89542007-04-12 02:40:54 +0000377 int32_t prior_linnum = 0;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000378 int lineinc = 0;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000379
H. Peter Anvine2c80182005-01-15 22:15:51 +0000380 if (*outname) {
H. Peter Anvin3e83cec2016-05-25 04:28:46 -0700381 ofile = nasm_open_write(outname, NF_TEXT);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000382 if (!ofile)
H. Peter Anvin41087062016-03-03 14:27:34 -0800383 nasm_fatal(ERR_NOFILE,
H. Peter Anvine2c80182005-01-15 22:15:51 +0000384 "unable to open output file `%s'",
385 outname);
386 } else
387 ofile = NULL;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000388
H. Peter Anvin6867acc2007-10-10 14:58:45 -0700389 location.known = false;
H. Peter Anvin734b1882002-04-30 21:01:08 +0000390
Cyrill Gorcunovb574b072011-12-05 01:56:40 +0400391 /* pass = 1; */
H. Peter Anvin130736c2016-02-17 20:27:41 -0800392 preproc->reset(inname, 3, depend_ptr);
393 memcpy(warning_on, warning_on_global,
394 (ERR_WARN_MAX+1) * sizeof(bool));
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700395
H. Peter Anvine2c80182005-01-15 22:15:51 +0000396 while ((line = preproc->getline())) {
397 /*
398 * We generate %line directives if needed for later programs
399 */
Keith Kaniosb7a89542007-04-12 02:40:54 +0000400 int32_t linnum = prior_linnum += lineinc;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000401 int altline = src_get(&linnum, &file_name);
402 if (altline) {
403 if (altline == 1 && lineinc == 1)
404 nasm_fputs("", ofile);
405 else {
406 lineinc = (altline != -1 || lineinc != 1);
407 fprintf(ofile ? ofile : stdout,
Keith Kanios93f2e9a2007-04-14 00:10:59 +0000408 "%%line %"PRId32"+%d %s\n", linnum, lineinc,
H. Peter Anvine2c80182005-01-15 22:15:51 +0000409 file_name);
410 }
411 prior_linnum = linnum;
412 }
413 nasm_fputs(line, ofile);
414 nasm_free(line);
415 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000416 preproc->cleanup(0);
417 if (ofile)
418 fclose(ofile);
419 if (ofile && terminate_after_phase)
420 remove(outname);
Cyrill Gorcunov9f563692013-02-15 12:24:11 +0400421 ofile = NULL;
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400422 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000423
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400424 if (operating_mode & OP_NORMAL) {
425 /*
426 * We must call ofmt->filename _anyway_, even if the user
427 * has specified their own output file, because some
428 * formats (eg OBJ and COFF) use ofmt->filename to find out
429 * the name of the input file and then put that inside the
430 * file.
431 */
432 ofmt->filename(inname, outname);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000433
H. Peter Anvin3e83cec2016-05-25 04:28:46 -0700434 ofile = nasm_open_write(outname, (ofmt->flags & OFMT_TEXT) ? NF_TEXT : NF_BINARY);
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400435 if (!ofile)
H. Peter Anvin41087062016-03-03 14:27:34 -0800436 nasm_fatal(ERR_NOFILE,
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400437 "unable to open output file `%s'", outname);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000438
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400439 /*
440 * We must call init_labels() before ofmt->init() since
441 * some object formats will want to define labels in their
442 * init routines. (eg OS/2 defines the FLAT group)
443 */
444 init_labels();
H. Peter Anvine2c80182005-01-15 22:15:51 +0000445
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400446 ofmt->init();
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400447 dfmt->init();
H. Peter Anvine2c80182005-01-15 22:15:51 +0000448
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400449 assemble_file(inname, depend_ptr);
Victor van den Elzenc82c3722008-06-04 15:24:20 +0200450
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400451 if (!terminate_after_phase) {
H. Peter Anvin477ae442016-03-07 22:53:06 -0800452 ofmt->cleanup();
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400453 cleanup_labels();
454 fflush(ofile);
H. Peter Anvin274cda82016-05-10 02:56:29 -0700455 if (ferror(ofile)) {
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400456 nasm_error(ERR_NONFATAL|ERR_NOFILE,
457 "write error on output file `%s'", outname);
H. Peter Anvin274cda82016-05-10 02:56:29 -0700458 terminate_after_phase = true;
459 }
Cyrill Gorcunov599a9822014-06-24 00:55:17 +0400460 }
461
462 if (ofile) {
463 fclose(ofile);
464 if (terminate_after_phase)
465 remove(outname);
466 ofile = NULL;
467 }
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000468 }
H. Peter Anvin734b1882002-04-30 21:01:08 +0000469
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -0700470 if (depend_list && !terminate_after_phase)
Cyrill Gorcunov9f563692013-02-15 12:24:11 +0400471 emit_dependencies(depend_list);
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700472
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000473 if (want_usage)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000474 usage();
H. Peter Anvin734b1882002-04-30 21:01:08 +0000475
H. Peter Anvine2c80182005-01-15 22:15:51 +0000476 raa_free(offsets);
477 saa_free(forwrefs);
478 eval_cleanup();
H. Peter Anvin74cc5e52007-08-30 22:35:34 +0000479 stdscan_cleanup();
H. Peter Anvin274cda82016-05-10 02:56:29 -0700480 src_free();
H. Peter Anvinea6e34d2002-04-30 20:51:32 +0000481
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -0700482 return terminate_after_phase;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000483}
484
H. Peter Anvineba20a72002-04-30 20:53:55 +0000485/*
486 * Get a parameter for a command line option.
487 * First arg must be in the form of e.g. -f...
488 */
H. Peter Anvin423e3812007-11-15 17:12:29 -0800489static char *get_param(char *p, char *q, bool *advance)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000490{
H. Peter Anvin423e3812007-11-15 17:12:29 -0800491 *advance = false;
Cyrill Gorcunovd61debf2009-10-13 19:38:52 +0400492 if (p[2]) /* the parameter's in the option */
493 return nasm_skip_spaces(p + 2);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000494 if (q && q[0]) {
H. Peter Anvin423e3812007-11-15 17:12:29 -0800495 *advance = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000496 return q;
H. Peter Anvineba20a72002-04-30 20:53:55 +0000497 }
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400498 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
H. Peter Anvine2c80182005-01-15 22:15:51 +0000499 "option `-%c' requires an argument", p[1]);
H. Peter Anvineba20a72002-04-30 20:53:55 +0000500 return NULL;
501}
502
H. Peter Anvindc242712007-11-18 11:55:10 -0800503/*
504 * Copy a filename
505 */
506static void copy_filename(char *dst, const char *src)
507{
508 size_t len = strlen(src);
509
510 if (len >= (size_t)FILENAME_MAX) {
H. Peter Anvin41087062016-03-03 14:27:34 -0800511 nasm_fatal(ERR_NOFILE, "file name too long");
Cyrill Gorcunov45aa1182013-02-15 12:22:59 +0400512 return;
H. Peter Anvindc242712007-11-18 11:55:10 -0800513 }
514 strncpy(dst, src, FILENAME_MAX);
515}
516
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700517/*
518 * Convert a string to Make-safe form
519 */
520static char *quote_for_make(const char *str)
521{
522 const char *p;
523 char *os, *q;
524
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400525 size_t n = 1; /* Terminating zero */
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700526 size_t nbs = 0;
527
528 if (!str)
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400529 return NULL;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700530
531 for (p = str; *p; p++) {
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400532 switch (*p) {
533 case ' ':
534 case '\t':
535 /* Convert N backslashes + ws -> 2N+1 backslashes + ws */
536 n += nbs + 2;
537 nbs = 0;
538 break;
539 case '$':
540 case '#':
541 nbs = 0;
542 n += 2;
543 break;
544 case '\\':
545 nbs++;
546 n++;
547 break;
548 default:
549 nbs = 0;
550 n++;
551 break;
552 }
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700553 }
554
555 /* Convert N backslashes at the end of filename to 2N backslashes */
556 if (nbs)
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400557 n += nbs;
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700558
559 os = q = nasm_malloc(n);
560
561 nbs = 0;
562 for (p = str; *p; p++) {
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400563 switch (*p) {
564 case ' ':
565 case '\t':
566 while (nbs--)
567 *q++ = '\\';
568 *q++ = '\\';
569 *q++ = *p;
570 break;
571 case '$':
572 *q++ = *p;
573 *q++ = *p;
574 nbs = 0;
575 break;
576 case '#':
577 *q++ = '\\';
578 *q++ = *p;
579 nbs = 0;
580 break;
581 case '\\':
582 *q++ = *p;
583 nbs++;
584 break;
585 default:
586 *q++ = *p;
587 nbs = 0;
588 break;
589 }
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700590 }
591 while (nbs--)
Cyrill Gorcunovf8316452013-02-15 12:22:27 +0400592 *q++ = '\\';
H. Peter Anvin07b7b9e2008-05-29 19:09:11 -0700593
594 *q = '\0';
595
596 return os;
597}
598
H. Peter Anvine2c80182005-01-15 22:15:51 +0000599struct textargs {
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000600 const char *label;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000601 int value;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000602};
603
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100604enum text_options {
605 OPT_PREFIX,
H. Peter Anvin7214d182016-03-01 22:43:51 -0800606 OPT_POSTFIX
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100607};
H. Peter Anvin2530a102016-02-18 02:28:15 -0800608static const struct textargs textopts[] = {
H. Peter Anvine2c80182005-01-15 22:15:51 +0000609 {"prefix", OPT_PREFIX},
610 {"postfix", OPT_POSTFIX},
611 {NULL, 0}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000612};
613
Cyrill Gorcunove7438432014-05-09 22:34:34 +0400614static void show_version(void)
615{
616 printf("NASM version %s compiled on %s%s\n",
617 nasm_version, nasm_date, nasm_compile_options);
618 exit(0);
619}
620
H. Peter Anvin423e3812007-11-15 17:12:29 -0800621static bool stopoptions = false;
H. Peter Anvin55568c12016-10-03 19:46:49 -0700622static bool process_arg(char *p, char *q, int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +0000623{
Keith Kaniosa6dfa782007-04-13 16:47:53 +0000624 char *param;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800625 int i;
626 bool advance = false;
H. Peter Anvin972079f2008-09-30 17:01:23 -0700627 bool do_warn;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000628
629 if (!p || !p[0])
H. Peter Anvin423e3812007-11-15 17:12:29 -0800630 return false;
H. Peter Anvin6768eb72002-04-30 20:52:26 +0000631
H. Peter Anvine2c80182005-01-15 22:15:51 +0000632 if (p[0] == '-' && !stopoptions) {
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400633 if (strchr("oOfpPdDiIlFXuUZwW", p[1])) {
634 /* These parameters take values */
635 if (!(param = get_param(p, q, &advance)))
636 return advance;
637 }
H. Peter Anvin423e3812007-11-15 17:12:29 -0800638
H. Peter Anvine2c80182005-01-15 22:15:51 +0000639 switch (p[1]) {
640 case 's':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700641 if (pass == 1)
642 error_file = stdout;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000643 break;
H. Peter Anvin70653092007-10-19 14:42:29 -0700644
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400645 case 'o': /* output file */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700646 if (pass == 2)
647 copy_filename(outname, param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400648 break;
H. Peter Anvinfd7dd112007-10-10 14:06:59 -0700649
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400650 case 'f': /* output format */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700651 if (pass == 1) {
652 ofmt = ofmt_find(param, &ofmt_alias);
653 if (!ofmt) {
654 nasm_fatal(ERR_NOFILE | ERR_USAGE,
655 "unrecognised output format `%s' - "
656 "use -hf for a list", param);
657 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400658 }
659 break;
H. Peter Anvin70653092007-10-19 14:42:29 -0700660
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400661 case 'O': /* Optimization level */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700662 if (pass == 2) {
663 int opt;
H. Peter Anvind85d2502008-05-04 17:53:31 -0700664
H. Peter Anvin55568c12016-10-03 19:46:49 -0700665 if (!*param) {
666 /* Naked -O == -Ox */
667 optimizing = MAX_OPTIMIZE;
668 } else {
669 while (*param) {
670 switch (*param) {
671 case '0': case '1': case '2': case '3': case '4':
672 case '5': case '6': case '7': case '8': case '9':
673 opt = strtoul(param, &param, 10);
H. Peter Anvind85d2502008-05-04 17:53:31 -0700674
H. Peter Anvin55568c12016-10-03 19:46:49 -0700675 /* -O0 -> optimizing == -1, 0.98 behaviour */
676 /* -O1 -> optimizing == 0, 0.98.09 behaviour */
677 if (opt < 2)
678 optimizing = opt - 1;
679 else
680 optimizing = opt;
681 break;
H. Peter Anvind85d2502008-05-04 17:53:31 -0700682
H. Peter Anvin55568c12016-10-03 19:46:49 -0700683 case 'v':
684 case '+':
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400685 param++;
686 opt_verbose_info = true;
687 break;
H. Peter Anvind85d2502008-05-04 17:53:31 -0700688
H. Peter Anvin55568c12016-10-03 19:46:49 -0700689 case 'x':
690 param++;
691 optimizing = MAX_OPTIMIZE;
692 break;
H. Peter Anvind85d2502008-05-04 17:53:31 -0700693
H. Peter Anvin55568c12016-10-03 19:46:49 -0700694 default:
695 nasm_fatal(0,
696 "unknown optimization option -O%c\n",
697 *param);
698 break;
699 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400700 }
H. Peter Anvin55568c12016-10-03 19:46:49 -0700701 if (optimizing > MAX_OPTIMIZE)
702 optimizing = MAX_OPTIMIZE;
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400703 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400704 }
705 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800706
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400707 case 'p': /* pre-include */
708 case 'P':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700709 if (pass == 2)
710 preproc->pre_include(param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400711 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800712
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400713 case 'd': /* pre-define */
714 case 'D':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700715 if (pass == 2)
716 preproc->pre_define(param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400717 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800718
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400719 case 'u': /* un-define */
720 case 'U':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700721 if (pass == 2)
722 preproc->pre_undefine(param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400723 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800724
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400725 case 'i': /* include search path */
726 case 'I':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700727 if (pass == 2)
728 preproc->include_path(param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400729 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800730
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400731 case 'l': /* listing file */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700732 if (pass == 2)
733 copy_filename(listname, param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400734 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800735
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400736 case 'Z': /* error messages file */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700737 if (pass == 1)
738 copy_filename(errname, param);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400739 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800740
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400741 case 'F': /* specify debug format */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700742 if (pass == 2) {
743 using_debug_info = true;
744 debug_format = param;
745 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400746 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800747
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400748 case 'X': /* specify error reporting format */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700749 if (pass == 1) {
750 if (nasm_stricmp("vc", param) == 0)
751 nasm_set_verror(nasm_verror_vc);
752 else if (nasm_stricmp("gnu", param) == 0)
753 nasm_set_verror(nasm_verror_gnu);
754 else
755 nasm_fatal(ERR_NOFILE | ERR_USAGE,
756 "unrecognized error reporting format `%s'",
757 param);
758 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000759 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800760
H. Peter Anvine2c80182005-01-15 22:15:51 +0000761 case 'g':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700762 if (pass == 2) {
763 using_debug_info = true;
764 if (p[2])
765 debug_format = nasm_skip_spaces(p + 2);
766 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000767 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800768
H. Peter Anvine2c80182005-01-15 22:15:51 +0000769 case 'h':
770 printf
771 ("usage: nasm [-@ response file] [-o outfile] [-f format] "
772 "[-l listfile]\n"
773 " [options...] [--] filename\n"
Cyrill Gorcunove7438432014-05-09 22:34:34 +0400774 " or nasm -v (or --v) for version info\n\n"
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800775 " -t assemble in SciTech TASM compatible mode\n");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000776 printf
H. Peter Anvin413fb902007-09-26 15:19:28 -0700777 (" -E (or -e) preprocess only (writes output to stdout by default)\n"
H. Peter Anvine2c80182005-01-15 22:15:51 +0000778 " -a don't preprocess (assemble only)\n"
H. Peter Anvin37a321f2007-09-24 13:41:58 -0700779 " -M generate Makefile dependencies on stdout\n"
Cyrill Gorcunov984c4db2009-07-31 00:32:17 +0400780 " -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"
H. Peter Anvin413fb902007-09-26 15:19:28 -0700786 " -Z<file> redirect error messages to file\n"
H. Peter Anvine2c80182005-01-15 22:15:51 +0000787 " -s redirect error messages to stdout\n\n"
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800788 " -g generate debugging information\n\n"
H. Peter Anvine2c80182005-01-15 22:15:51 +0000789 " -F format select a debugging format\n\n"
H. Peter Anvin283b3fb2016-03-07 23:18:30 -0800790 " -gformat same as -g -F format\n\n"
Cyrill Gorcunovdeb082d2013-04-20 20:37:17 +0400791 " -o outfile write output to an outfile\n\n"
792 " -f format select an output format\n\n"
793 " -l listfile write listing to a listfile\n\n"
H. Peter Anvine2c80182005-01-15 22:15:51 +0000794 " -I<path> adds a pathname to the include file path\n");
795 printf
H. Peter Anvinab5bd052010-07-25 12:43:30 -0700796 (" -O<digit> optimize branch offsets\n"
Cyrill Gorcunov5bc6d8e2012-03-11 14:19:17 +0400797 " -O0: No optimization\n"
Cyrill Gorcunov73b87c62009-07-31 10:26:55 +0400798 " -O1: Minimal optimization\n"
Cyrill Gorcunov5bc6d8e2012-03-11 14:19:17 +0400799 " -Ox: Multipass optimization (default)\n\n"
H. Peter Anvine2c80182005-01-15 22:15:51 +0000800 " -P<file> pre-includes a file\n"
801 " -D<macro>[=<value>] pre-defines a macro\n"
802 " -U<macro> undefines a macro\n"
803 " -X<format> specifies error reporting format (gnu or vc)\n"
H. Peter Anvinb030c922007-11-13 11:31:15 -0800804 " -w+foo enables warning foo (equiv. -Wfoo)\n"
Cyrill Gorcunov984c4db2009-07-31 00:32:17 +0400805 " -w-foo disable warning foo (equiv. -Wno-foo)\n\n"
Cyrill Gorcunovdeb082d2013-04-20 20:37:17 +0400806 " -h show invocation summary and exit\n\n"
Cyrill Gorcunov984c4db2009-07-31 00:32:17 +0400807 "--prefix,--postfix\n"
808 " this options prepend or append the given argument to all\n"
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100809 " extern and global variables\n"
H. Peter Anvinb030c922007-11-13 11:31:15 -0800810 "Warnings:\n");
811 for (i = 0; i <= ERR_WARN_MAX; i++)
H. Peter Anvine2c80182005-01-15 22:15:51 +0000812 printf(" %-23s %s (default %s)\n",
H. Peter Anvin972079f2008-09-30 17:01:23 -0700813 warnings[i].name, warnings[i].help,
814 warnings[i].enabled ? "on" : "off");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000815 printf
816 ("\nresponse files should contain command line parameters"
817 ", one per line.\n");
818 if (p[2] == 'f') {
819 printf("\nvalid output formats for -f are"
820 " (`*' denotes default):\n");
821 ofmt_list(ofmt, stdout);
822 } else {
823 printf("\nFor a list of valid output formats, use -hf.\n");
824 printf("For a list of debug formats, use -f <form> -y.\n");
825 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400826 exit(0); /* never need usage message here */
H. Peter Anvine2c80182005-01-15 22:15:51 +0000827 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800828
H. Peter Anvine2c80182005-01-15 22:15:51 +0000829 case 'y':
830 printf("\nvalid debug formats for '%s' output format are"
831 " ('*' denotes default):\n", ofmt->shortname);
832 dfmt_list(ofmt, stdout);
833 exit(0);
834 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800835
H. Peter Anvine2c80182005-01-15 22:15:51 +0000836 case 't':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700837 if (pass == 2)
838 tasm_compatible_mode = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000839 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800840
H. Peter Anvine2c80182005-01-15 22:15:51 +0000841 case 'v':
Cyrill Gorcunove7438432014-05-09 22:34:34 +0400842 show_version();
H. Peter Anvine2c80182005-01-15 22:15:51 +0000843 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800844
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400845 case 'e': /* preprocess only */
846 case 'E':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700847 if (pass == 1)
848 operating_mode = OP_PREPROCESS;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000849 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800850
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400851 case 'a': /* assemble only - don't preprocess */
H. Peter Anvin55568c12016-10-03 19:46:49 -0700852 if (pass == 1)
853 preproc = &preproc_nop;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000854 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800855
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400856 case 'W':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700857 if (pass == 2) {
858 if (param[0] == 'n' && param[1] == 'o' && param[2] == '-') {
859 do_warn = false;
860 param += 3;
861 } else {
862 do_warn = true;
863 }
864 goto set_warning;
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400865 }
H. Peter Anvin55568c12016-10-03 19:46:49 -0700866 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800867
H. Peter Anvine2c80182005-01-15 22:15:51 +0000868 case 'w':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700869 if (pass == 2) {
870 if (param[0] != '+' && param[0] != '-') {
871 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
872 "invalid option to `-w'");
873 break;
874 }
875 do_warn = (param[0] == '+');
876 param++;
877 goto set_warning;
H. Peter Anvine2c80182005-01-15 22:15:51 +0000878 }
H. Peter Anvin55568c12016-10-03 19:46:49 -0700879 break;
Cyrill Gorcunov66206e72010-04-20 14:53:44 +0400880
881set_warning:
Cyrill Gorcunov3b8c2972011-12-05 01:39:04 +0400882 for (i = 0; i <= ERR_WARN_MAX; i++) {
883 if (!nasm_stricmp(param, warnings[i].name))
884 break;
885 }
886 if (i <= ERR_WARN_MAX) {
887 warning_on_global[i] = do_warn;
888 } else if (!nasm_stricmp(param, "all")) {
889 for (i = 1; i <= ERR_WARN_MAX; i++)
890 warning_on_global[i] = do_warn;
891 } else if (!nasm_stricmp(param, "none")) {
892 for (i = 1; i <= ERR_WARN_MAX; i++)
893 warning_on_global[i] = !do_warn;
894 } else {
H. Peter Anvinb4f734f2016-05-09 12:13:08 -0700895 /* Ignore invalid warning names; forward compatibility */
Cyrill Gorcunov3b8c2972011-12-05 01:39:04 +0400896 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000897 break;
H. Peter Anvin423e3812007-11-15 17:12:29 -0800898
H. Peter Anvine2c80182005-01-15 22:15:51 +0000899 case 'M':
H. Peter Anvin55568c12016-10-03 19:46:49 -0700900 if (pass == 2) {
901 switch (p[2]) {
902 case 0:
903 operating_mode = OP_DEPEND;
904 break;
905 case 'G':
906 operating_mode = OP_DEPEND;
907 depend_missing_ok = true;
908 break;
909 case 'P':
910 depend_emit_phony = true;
911 break;
912 case 'D':
913 operating_mode = OP_NORMAL;
914 depend_file = q;
915 advance = true;
916 break;
917 case 'F':
918 depend_file = q;
919 advance = true;
920 break;
921 case 'T':
922 depend_target = q;
923 advance = true;
924 break;
925 case 'Q':
926 depend_target = quote_for_make(q);
927 advance = true;
928 break;
929 default:
930 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
931 "unknown dependency option `-M%c'", p[2]);
932 break;
933 }
934 if (advance && (!q || !q[0])) {
935 nasm_error(ERR_NONFATAL|ERR_NOFILE|ERR_USAGE,
936 "option `-M%c' requires a parameter", p[2]);
937 break;
938 }
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +0400939 }
H. Peter Anvine2c80182005-01-15 22:15:51 +0000940 break;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000941
H. Peter Anvine2c80182005-01-15 22:15:51 +0000942 case '-':
943 {
944 int s;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000945
H. Peter Anvine2c80182005-01-15 22:15:51 +0000946 if (p[2] == 0) { /* -- => stop processing options */
947 stopoptions = 1;
948 break;
949 }
Cyrill Gorcunove7438432014-05-09 22:34:34 +0400950
951 if (!nasm_stricmp(p, "--v"))
952 show_version();
953
Andy Willis3f546032016-09-13 00:02:21 +0300954 if (!nasm_stricmp(p, "--version"))
955 show_version();
956
H. Peter Anvine2c80182005-01-15 22:15:51 +0000957 for (s = 0; textopts[s].label; s++) {
958 if (!nasm_stricmp(p + 2, textopts[s].label)) {
959 break;
960 }
961 }
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +0000962
H. Peter Anvine2c80182005-01-15 22:15:51 +0000963 switch (s) {
964
965 case OPT_PREFIX:
966 case OPT_POSTFIX:
967 {
968 if (!q) {
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400969 nasm_error(ERR_NONFATAL | ERR_NOFILE |
H. Peter Anvine2c80182005-01-15 22:15:51 +0000970 ERR_USAGE,
971 "option `--%s' requires an argument",
972 p + 2);
973 break;
974 } else {
975 advance = 1, param = q;
976 }
977
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100978 switch (s) {
979 case OPT_PREFIX:
H. Peter Anvin55568c12016-10-03 19:46:49 -0700980 if (pass == 2)
981 strlcpy(lprefix, param, PREFIX_MAX);
H. Peter Anvine2c80182005-01-15 22:15:51 +0000982 break;
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100983 case OPT_POSTFIX:
H. Peter Anvin55568c12016-10-03 19:46:49 -0700984 if (pass == 2)
985 strlcpy(lpostfix, param, POSTFIX_MAX);
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100986 break;
987 default:
H. Peter Anvin41087062016-03-03 14:27:34 -0800988 nasm_panic(ERR_NOFILE,
Knut St. Osmundsen3c72a1b2015-11-10 22:07:20 +0100989 "internal error");
H. Peter Anvine2c80182005-01-15 22:15:51 +0000990 break;
991 }
992 break;
993 }
H. Peter Anvind24dd5f2016-02-08 10:32:13 -0800994
H. Peter Anvine2c80182005-01-15 22:15:51 +0000995 default:
996 {
H. Peter Anvin9bd15062009-07-18 21:07:17 -0400997 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
H. Peter Anvine2c80182005-01-15 22:15:51 +0000998 "unrecognised option `--%s'", p + 2);
999 break;
1000 }
1001 }
1002 break;
1003 }
1004
1005 default:
1006 if (!ofmt->setinfo(GI_SWITCH, &p))
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001007 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001008 "unrecognised option `-%c'", p[1]);
1009 break;
1010 }
H. Peter Anvin55568c12016-10-03 19:46:49 -07001011 } else if (pass == 2) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001012 if (*inname) {
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001013 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001014 "more than one input file specified");
H. Peter Anvindc242712007-11-18 11:55:10 -08001015 } else {
1016 copy_filename(inname, p);
Cyrill Gorcunov331fd7c2013-02-15 12:20:58 +04001017 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001018 }
1019
1020 return advance;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001021}
1022
H. Peter Anvineba20a72002-04-30 20:53:55 +00001023#define ARG_BUF_DELTA 128
1024
H. Peter Anvin55568c12016-10-03 19:46:49 -07001025static void process_respfile(FILE * rfile, int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001026{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001027 char *buffer, *p, *q, *prevarg;
H. Peter Anvineba20a72002-04-30 20:53:55 +00001028 int bufsize, prevargsize;
1029
1030 bufsize = prevargsize = ARG_BUF_DELTA;
1031 buffer = nasm_malloc(ARG_BUF_DELTA);
1032 prevarg = nasm_malloc(ARG_BUF_DELTA);
1033 prevarg[0] = '\0';
1034
H. Peter Anvine2c80182005-01-15 22:15:51 +00001035 while (1) { /* Loop to handle all lines in file */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001036 p = buffer;
1037 while (1) { /* Loop to handle long lines */
1038 q = fgets(p, bufsize - (p - buffer), rfile);
1039 if (!q)
1040 break;
1041 p += strlen(p);
1042 if (p > buffer && p[-1] == '\n')
1043 break;
1044 if (p - buffer > bufsize - 10) {
1045 int offset;
1046 offset = p - buffer;
1047 bufsize += ARG_BUF_DELTA;
1048 buffer = nasm_realloc(buffer, bufsize);
1049 p = buffer + offset;
1050 }
1051 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001052
H. Peter Anvine2c80182005-01-15 22:15:51 +00001053 if (!q && p == buffer) {
1054 if (prevarg[0])
H. Peter Anvin55568c12016-10-03 19:46:49 -07001055 process_arg(prevarg, NULL, pass);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001056 nasm_free(buffer);
1057 nasm_free(prevarg);
1058 return;
1059 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001060
H. Peter Anvine2c80182005-01-15 22:15:51 +00001061 /*
1062 * Play safe: remove CRs, LFs and any spurious ^Zs, if any of
1063 * them are present at the end of the line.
1064 */
1065 *(p = &buffer[strcspn(buffer, "\r\n\032")]) = '\0';
H. Peter Anvineba20a72002-04-30 20:53:55 +00001066
H. Peter Anvinbda7a6e2008-06-21 10:23:17 -07001067 while (p > buffer && nasm_isspace(p[-1]))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001068 *--p = '\0';
H. Peter Anvineba20a72002-04-30 20:53:55 +00001069
Cyrill Gorcunovd61debf2009-10-13 19:38:52 +04001070 p = nasm_skip_spaces(buffer);
H. Peter Anvineba20a72002-04-30 20:53:55 +00001071
H. Peter Anvin55568c12016-10-03 19:46:49 -07001072 if (process_arg(prevarg, p, pass))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001073 *p = '\0';
H. Peter Anvineba20a72002-04-30 20:53:55 +00001074
Charles Crayne192d5b52007-10-18 19:02:42 -07001075 if ((int) strlen(p) > prevargsize - 10) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001076 prevargsize += ARG_BUF_DELTA;
1077 prevarg = nasm_realloc(prevarg, prevargsize);
1078 }
H. Peter Anvindc242712007-11-18 11:55:10 -08001079 strncpy(prevarg, p, prevargsize);
H. Peter Anvineba20a72002-04-30 20:53:55 +00001080 }
1081}
1082
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001083/* Function to process args from a string of args, rather than the
1084 * argv array. Used by the environment variable and response file
1085 * processing.
1086 */
H. Peter Anvin55568c12016-10-03 19:46:49 -07001087static void process_args(char *args, int pass)
H. Peter Anvine2c80182005-01-15 22:15:51 +00001088{
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001089 char *p, *q, *arg, *prevarg;
1090 char separator = ' ';
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001091
1092 p = args;
1093 if (*p && *p != '-')
H. Peter Anvine2c80182005-01-15 22:15:51 +00001094 separator = *p++;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001095 arg = NULL;
1096 while (*p) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001097 q = p;
1098 while (*p && *p != separator)
1099 p++;
1100 while (*p == separator)
1101 *p++ = '\0';
1102 prevarg = arg;
1103 arg = q;
H. Peter Anvin55568c12016-10-03 19:46:49 -07001104 if (process_arg(prevarg, arg, pass))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001105 arg = NULL;
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001106 }
1107 if (arg)
H. Peter Anvin55568c12016-10-03 19:46:49 -07001108 process_arg(arg, NULL, pass);
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001109}
H. Peter Anvin1cd0e2d2002-04-30 21:00:33 +00001110
H. Peter Anvin55568c12016-10-03 19:46:49 -07001111static void process_response_file(const char *file, int pass)
H. Peter Anvinbe2678c2008-01-21 16:23:59 -08001112{
1113 char str[2048];
H. Peter Anvin3e83cec2016-05-25 04:28:46 -07001114 FILE *f = nasm_open_read(file, NF_TEXT);
H. Peter Anvinbe2678c2008-01-21 16:23:59 -08001115 if (!f) {
Cyrill Gorcunovf1964512013-02-15 12:14:06 +04001116 perror(file);
1117 exit(-1);
H. Peter Anvinbe2678c2008-01-21 16:23:59 -08001118 }
1119 while (fgets(str, sizeof str, f)) {
H. Peter Anvin55568c12016-10-03 19:46:49 -07001120 process_args(str, pass);
H. Peter Anvinbe2678c2008-01-21 16:23:59 -08001121 }
1122 fclose(f);
1123}
1124
H. Peter Anvin55568c12016-10-03 19:46:49 -07001125static void parse_cmdline(int argc, char **argv, int pass)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001126{
1127 FILE *rfile;
Cyrill Gorcunovf4941892011-07-17 13:55:25 +04001128 char *envreal, *envcopy = NULL, *p;
H. Peter Anvin972079f2008-09-30 17:01:23 -07001129 int i;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001130
Charles Craynefcce07f2007-09-30 22:15:36 -07001131 *inname = *outname = *listname = *errname = '\0';
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001132
H. Peter Anvin972079f2008-09-30 17:01:23 -07001133 for (i = 0; i <= ERR_WARN_MAX; i++)
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001134 warning_on_global[i] = warnings[i].enabled;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001135
1136 /*
H. Peter Anvinff7ccc02002-05-06 19:41:57 +00001137 * First, process the NASMENV environment variable.
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001138 */
H. Peter Anvinff7ccc02002-05-06 19:41:57 +00001139 envreal = getenv("NASMENV");
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001140 if (envreal) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001141 envcopy = nasm_strdup(envreal);
H. Peter Anvin55568c12016-10-03 19:46:49 -07001142 process_args(envcopy, pass);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001143 nasm_free(envcopy);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001144 }
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001145
1146 /*
1147 * Now process the actual command line.
1148 */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001149 while (--argc) {
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001150 bool advance;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001151 argv++;
1152 if (argv[0][0] == '@') {
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001153 /*
1154 * We have a response file, so process this as a set of
H. Peter Anvine2c80182005-01-15 22:15:51 +00001155 * arguments like the environment variable. This allows us
1156 * to have multiple arguments on a single line, which is
1157 * different to the -@resp file processing below for regular
1158 * NASM.
1159 */
H. Peter Anvin55568c12016-10-03 19:46:49 -07001160 process_response_file(argv[0]+1, pass);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001161 argc--;
1162 argv++;
1163 }
1164 if (!stopoptions && argv[0][0] == '-' && argv[0][1] == '@') {
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001165 p = get_param(argv[0], argc > 1 ? argv[1] : NULL, &advance);
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001166 if (p) {
H. Peter Anvin3e83cec2016-05-25 04:28:46 -07001167 rfile = nasm_open_read(p, NF_TEXT);
Keith Kaniosa6dfa782007-04-13 16:47:53 +00001168 if (rfile) {
H. Peter Anvin55568c12016-10-03 19:46:49 -07001169 process_respfile(rfile, pass);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001170 fclose(rfile);
1171 } else
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001172 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
H. Peter Anvine2c80182005-01-15 22:15:51 +00001173 "unable to open response file `%s'", p);
1174 }
1175 } else
H. Peter Anvin55568c12016-10-03 19:46:49 -07001176 advance = process_arg(argv[0], argc > 1 ? argv[1] : NULL, pass);
H. Peter Anvin423e3812007-11-15 17:12:29 -08001177 argv += advance, argc -= advance;
H. Peter Anvin6768eb72002-04-30 20:52:26 +00001178 }
1179
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001180 /*
1181 * Look for basic command line typos. This definitely doesn't
1182 * catch all errors, but it might help cases of fumbled fingers.
1183 */
H. Peter Anvin55568c12016-10-03 19:46:49 -07001184 if (pass != 2)
1185 return;
1186
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001187 if (!*inname)
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001188 nasm_error(ERR_NONFATAL | ERR_NOFILE | ERR_USAGE,
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001189 "no input file specified");
1190 else if (!strcmp(inname, errname) ||
1191 !strcmp(inname, outname) ||
1192 !strcmp(inname, listname) ||
1193 (depend_file && !strcmp(inname, depend_file)))
H. Peter Anvin41087062016-03-03 14:27:34 -08001194 nasm_fatal(ERR_NOFILE | ERR_USAGE,
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001195 "file `%s' is both input and output file",
1196 inname);
H. Peter Anvin59ddd262007-10-01 11:26:31 -07001197
H. Peter Anvin70653092007-10-19 14:42:29 -07001198 if (*errname) {
H. Peter Anvin3e83cec2016-05-25 04:28:46 -07001199 error_file = nasm_open_write(errname, NF_TEXT);
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001200 if (!error_file) {
1201 error_file = stderr; /* Revert to default! */
H. Peter Anvin41087062016-03-03 14:27:34 -08001202 nasm_fatal(ERR_NOFILE | ERR_USAGE,
Cyrill Gorcunovd64b8092011-12-05 01:44:43 +04001203 "cannot open file `%s' for error messages",
1204 errname);
1205 }
Charles Craynefcce07f2007-09-30 22:15:36 -07001206 }
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001207}
1208
H. Peter Anvin9e1f5282008-05-29 21:38:00 -07001209static void assemble_file(char *fname, StrList **depend_ptr)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001210{
H. Peter Anvinc7131682017-03-07 17:45:01 -08001211 char *line;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001212 insn output_ins;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001213 int i;
Charles Crayne5fbbc8c2007-11-07 19:03:46 -08001214 int64_t offs;
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001215 int pass_max;
Martin Lindhe8cc93f52016-11-16 16:48:13 +01001216 int sb;
H. Peter Anvin9c595b62017-03-07 19:44:21 -08001217 uint64_t prev_offset_changed;
1218 unsigned int stall_count = 0; /* Make sure we make forward progress... */
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001219
Cyrill Gorcunov08359152013-11-09 22:16:11 +04001220 if (cmd_sb == 32 && iflag_ffs(&cmd_cpu) < IF_386)
H. Peter Anvin130736c2016-02-17 20:27:41 -08001221 nasm_fatal(0, "command line: 32-bit segment size requires a higher cpu");
H. Peter Anvineba20a72002-04-30 20:53:55 +00001222
Charles Craynec1905c22008-09-11 18:54:06 -07001223 pass_max = prev_offset_changed = (INT_MAX >> 1) + 2; /* Almost unlimited */
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001224 for (passn = 1; pass0 <= 2; passn++) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001225 ldfunc def_label;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001226
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001227 pass1 = pass0 == 2 ? 2 : 1; /* 1, 1, 1, ..., 1, 2 */
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001228 pass2 = passn > 1 ? 2 : 1; /* 1, 2, 2, ..., 2, 2 */
1229 /* pass0 0, 0, 0, ..., 1, 2 */
H. Peter Anvin734b1882002-04-30 21:01:08 +00001230
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001231 def_label = passn > 1 ? redefine_label : define_label;
H. Peter Anvin734b1882002-04-30 21:01:08 +00001232
Keith Kaniosb7a89542007-04-12 02:40:54 +00001233 globalbits = sb = cmd_sb; /* set 'bits' to command line default */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001234 cpu = cmd_cpu;
1235 if (pass0 == 2) {
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08001236 lfmt->init(listname);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001237 }
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001238 in_absolute = false;
Charles Craynec1905c22008-09-11 18:54:06 -07001239 global_offset_changed = 0; /* set by redefine_label */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001240 location.segment = ofmt->section(NULL, pass2, &sb);
Keith Kaniosb7a89542007-04-12 02:40:54 +00001241 globalbits = sb;
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001242 if (passn > 1) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001243 saa_rewind(forwrefs);
1244 forwref = saa_rstruct(forwrefs);
1245 raa_free(offsets);
1246 offsets = raa_init();
1247 }
H. Peter Anvin130736c2016-02-17 20:27:41 -08001248 preproc->reset(fname, pass1, pass1 == 2 ? depend_ptr : NULL);
H. Peter Anvin972079f2008-09-30 17:01:23 -07001249 memcpy(warning_on, warning_on_global, (ERR_WARN_MAX+1) * sizeof(bool));
Victor van den Elzen819703a2008-07-16 15:20:56 +02001250
H. Peter Anvine2c80182005-01-15 22:15:51 +00001251 globallineno = 0;
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001252 if (passn == 1)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001253 location.known = true;
Cyrill Gorcunov190232f2013-02-15 12:35:04 +04001254 location.offset = offs = get_curr_offs();
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001255
H. Peter Anvine2c80182005-01-15 22:15:51 +00001256 while ((line = preproc->getline())) {
1257 globallineno++;
H. Peter Anvind7ed89e2002-04-30 20:52:08 +00001258
H. Peter Anvinaeb0e0e2009-06-27 16:30:00 -07001259 /*
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001260 * Here we parse our directives; this is not handled by the
H. Peter Anvinc7131682017-03-07 17:45:01 -08001261 * main parser.
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001262 */
H. Peter Anvinc7131682017-03-07 17:45:01 -08001263 if (process_directives(line) != D_none)
1264 goto end_of_line; /* Just do final cleanup */
H. Peter Anvin62b24d72007-08-29 16:38:05 +00001265
H. Peter Anvinc7131682017-03-07 17:45:01 -08001266 /* Not a directive, or even something that starts with [ */
1267
1268 parse_line(pass1, line, &output_ins, def_label);
1269
1270 if (optimizing > 0) {
1271 if (forwref != NULL && globallineno == forwref->lineno) {
1272 output_ins.forw_ref = true;
1273 do {
1274 output_ins.oprs[forwref->operand].opflags |= OPFLAG_FORWARD;
1275 forwref = saa_rstruct(forwrefs);
1276 } while (forwref != NULL
1277 && forwref->lineno == globallineno);
1278 } else
1279 output_ins.forw_ref = false;
1280
1281 if (output_ins.forw_ref) {
1282 if (passn == 1) {
1283 for (i = 0; i < output_ins.operands; i++) {
1284 if (output_ins.oprs[i].opflags & OPFLAG_FORWARD) {
1285 struct forwrefinfo *fwinf = (struct forwrefinfo *)saa_wstruct(forwrefs);
1286 fwinf->lineno = globallineno;
1287 fwinf->operand = i;
Cyrill Gorcunovd5f2aef2010-04-20 15:33:45 +04001288 }
1289 }
1290 }
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001291 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001292 }
H. Peter Anvin8bec2c72009-08-08 13:49:00 -07001293
H. Peter Anvinc7131682017-03-07 17:45:01 -08001294 /* forw_ref */
1295 if (output_ins.opcode == I_EQU) {
1296 if (pass1 == 1) {
1297 /*
1298 * Special `..' EQUs get processed in pass two,
1299 * except `..@' macro-processor EQUs which are done
1300 * in the normal place.
1301 */
1302 if (!output_ins.label)
1303 nasm_error(ERR_NONFATAL,
1304 "EQU not preceded by label");
1305
1306 else if (output_ins.label[0] != '.' ||
1307 output_ins.label[1] != '.' ||
1308 output_ins.label[2] == '@') {
1309 if (output_ins.operands == 1 &&
1310 (output_ins.oprs[0].type & IMMEDIATE) &&
1311 output_ins.oprs[0].wrt == NO_SEG) {
1312 bool isext = !!(output_ins.oprs[0].opflags & OPFLAG_EXTERN);
1313 def_label(output_ins.label,
1314 output_ins.oprs[0].segment,
1315 output_ins.oprs[0].offset, NULL,
1316 false, isext);
1317 } else if (output_ins.operands == 2
1318 && (output_ins.oprs[0].type & IMMEDIATE)
1319 && (output_ins.oprs[0].type & COLON)
1320 && output_ins.oprs[0].segment == NO_SEG
1321 && output_ins.oprs[0].wrt == NO_SEG
1322 && (output_ins.oprs[1].type & IMMEDIATE)
1323 && output_ins.oprs[1].segment == NO_SEG
1324 && output_ins.oprs[1].wrt == NO_SEG) {
1325 def_label(output_ins.label,
1326 output_ins.oprs[0].offset | SEG_ABS,
1327 output_ins.oprs[1].offset,
1328 NULL, false, false);
1329 } else
1330 nasm_error(ERR_NONFATAL,
1331 "bad syntax for EQU");
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001332 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001333 } else {
1334 /*
1335 * Special `..' EQUs get processed here, except
1336 * `..@' macro processor EQUs which are done above.
1337 */
1338 if (output_ins.label[0] == '.' &&
1339 output_ins.label[1] == '.' &&
1340 output_ins.label[2] != '@') {
1341 if (output_ins.operands == 1 &&
1342 (output_ins.oprs[0].type & IMMEDIATE)) {
1343 define_label(output_ins.label,
1344 output_ins.oprs[0].segment,
1345 output_ins.oprs[0].offset,
1346 NULL, false, false);
1347 } else if (output_ins.operands == 2
1348 && (output_ins.oprs[0].type & IMMEDIATE)
1349 && (output_ins.oprs[0].type & COLON)
1350 && output_ins.oprs[0].segment == NO_SEG
1351 && (output_ins.oprs[1].type & IMMEDIATE)
1352 && output_ins.oprs[1].segment == NO_SEG) {
1353 define_label(output_ins.label,
1354 output_ins.oprs[0].offset | SEG_ABS,
1355 output_ins.oprs[1].offset,
1356 NULL, false, false);
1357 } else
1358 nasm_error(ERR_NONFATAL,
1359 "bad syntax for EQU");
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001360 }
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001361 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001362 } else { /* instruction isn't an EQU */
H. Peter Anvine2c80182005-01-15 22:15:51 +00001363
H. Peter Anvinc7131682017-03-07 17:45:01 -08001364 if (pass1 == 1) {
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001365 int64_t l = insn_size(location.segment, offs, sb,
H. Peter Anvinc7131682017-03-07 17:45:01 -08001366 &output_ins);
1367 l *= output_ins.times;
1368
1369 /* if (using_debug_info) && output_ins.opcode != -1) */
1370 if (using_debug_info)
1371 { /* fbk 03/25/01 */
1372 /* this is done here so we can do debug type info */
1373 int32_t typeinfo =
1374 TYS_ELEMENTS(output_ins.operands);
1375 switch (output_ins.opcode) {
1376 case I_RESB:
1377 typeinfo =
1378 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_BYTE;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001379 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001380 case I_RESW:
1381 typeinfo =
1382 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_WORD;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001383 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001384 case I_RESD:
1385 typeinfo =
1386 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_DWORD;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001387 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001388 case I_RESQ:
1389 typeinfo =
1390 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_QWORD;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001391 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001392 case I_REST:
1393 typeinfo =
1394 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_TBYTE;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001395 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001396 case I_RESO:
1397 typeinfo =
1398 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_OWORD;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001399 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001400 case I_RESY:
1401 typeinfo =
1402 TYS_ELEMENTS(output_ins.oprs[0].offset) | TY_YWORD;
Jin Kyu Songb287ff02013-12-04 20:05:55 -08001403 break;
H. Peter Anvinc7131682017-03-07 17:45:01 -08001404 case I_DB:
1405 typeinfo |= TY_BYTE;
1406 break;
1407 case I_DW:
1408 typeinfo |= TY_WORD;
1409 break;
1410 case I_DD:
1411 if (output_ins.eops_float)
1412 typeinfo |= TY_FLOAT;
1413 else
1414 typeinfo |= TY_DWORD;
1415 break;
1416 case I_DQ:
1417 typeinfo |= TY_QWORD;
1418 break;
1419 case I_DT:
1420 typeinfo |= TY_TBYTE;
1421 break;
1422 case I_DO:
1423 typeinfo |= TY_OWORD;
1424 break;
1425 case I_DY:
1426 typeinfo |= TY_YWORD;
Jin Kyu Songb287ff02013-12-04 20:05:55 -08001427 break;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001428 default:
H. Peter Anvinc7131682017-03-07 17:45:01 -08001429 typeinfo = TY_LABEL;
1430
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001431 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001432
1433 dfmt->debug_typevalue(typeinfo);
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001434 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001435 if (l != -1) {
1436 offs += l;
Cyrill Gorcunov190232f2013-02-15 12:35:04 +04001437 set_curr_offs(offs);
H. Peter Anvine2c80182005-01-15 22:15:51 +00001438 }
H. Peter Anvinc7131682017-03-07 17:45:01 -08001439 /*
1440 * else l == -1 => invalid instruction, which will be
1441 * flagged as an error on pass 2
1442 */
1443
1444 } else {
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001445 offs += assemble(location.segment, offs, sb, &output_ins);
H. Peter Anvinc7131682017-03-07 17:45:01 -08001446 set_curr_offs(offs);
1447
1448 }
1449 } /* not an EQU */
1450 cleanup_insn(&output_ins);
1451
1452 end_of_line:
H. Peter Anvine2c80182005-01-15 22:15:51 +00001453 nasm_free(line);
Cyrill Gorcunov190232f2013-02-15 12:35:04 +04001454 location.offset = offs = get_curr_offs();
H. Peter Anvine2c80182005-01-15 22:15:51 +00001455 } /* end while (line = preproc->getline... */
H. Peter Anvinaeb0e0e2009-06-27 16:30:00 -07001456
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001457 if (pass0 == 2 && global_offset_changed && !terminate_after_phase)
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001458 nasm_error(ERR_NONFATAL,
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001459 "phase error detected at end of assembly.");
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001460
H. Peter Anvine2c80182005-01-15 22:15:51 +00001461 if (pass1 == 1)
1462 preproc->cleanup(1);
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001463
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -07001464 if ((passn > 1 && !global_offset_changed) || pass0 == 2) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001465 pass0++;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001466 } else if (global_offset_changed &&
1467 global_offset_changed < prev_offset_changed) {
Charles Craynec1905c22008-09-11 18:54:06 -07001468 prev_offset_changed = global_offset_changed;
1469 stall_count = 0;
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001470 } else {
1471 stall_count++;
1472 }
Victor van den Elzen42528232008-09-11 15:07:05 +02001473
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001474 if (terminate_after_phase)
1475 break;
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -07001476
H. Peter Anvin9c595b62017-03-07 19:44:21 -08001477 if ((stall_count > 997U) || (passn >= pass_max)) {
Victor van den Elzen42528232008-09-11 15:07:05 +02001478 /* We get here if the labels don't converge
1479 * Example: FOO equ FOO + 1
1480 */
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001481 nasm_error(ERR_NONFATAL,
Victor van den Elzen42528232008-09-11 15:07:05 +02001482 "Can't find valid values for all labels "
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -07001483 "after %d passes, giving up.", passn);
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001484 nasm_error(ERR_NONFATAL,
1485 "Possible causes: recursive EQUs, macro abuse.");
1486 break;
1487 }
H. Peter Anvin00835fe2008-01-08 23:03:57 -08001488 }
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001489
H. Peter Anvine2c80182005-01-15 22:15:51 +00001490 preproc->cleanup(0);
H. Peter Anvin8ac25aa2016-02-18 01:16:18 -08001491 lfmt->cleanup();
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -07001492 if (!terminate_after_phase && opt_verbose_info) {
Cyrill Gorcunov14763192013-02-15 12:13:09 +04001493 /* -On and -Ov switches */
H. Peter Anvinf7a9eca2009-06-27 15:34:32 -07001494 fprintf(stdout, "info: assembly required 1+%d+1 passes\n", passn-3);
1495 }
1496}
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001497
Ed Berosetfa771012002-06-09 20:56:40 +00001498/**
1499 * gnu style error reporting
1500 * This function prints an error message to error_file in the
1501 * style used by GNU. An example would be:
1502 * file.asm:50: error: blah blah blah
H. Peter Anvin70653092007-10-19 14:42:29 -07001503 * where file.asm is the name of the file, 50 is the line number on
Ed Berosetfa771012002-06-09 20:56:40 +00001504 * which the error occurs (or is detected) and "error:" is one of
1505 * the possible optional diagnostics -- it can be "error" or "warning"
H. Peter Anvin70653092007-10-19 14:42:29 -07001506 * or something else. Finally the line terminates with the actual
Ed Berosetfa771012002-06-09 20:56:40 +00001507 * error message.
H. Peter Anvin70653092007-10-19 14:42:29 -07001508 *
1509 * @param severity the severity of the warning or error
Ed Berosetfa771012002-06-09 20:56:40 +00001510 * @param fmt the printf style format string
1511 */
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001512static void nasm_verror_gnu(int severity, const char *fmt, va_list ap)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001513{
H. Peter Anvin274cda82016-05-10 02:56:29 -07001514 const char *currentfile = NULL;
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001515 int32_t lineno = 0;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001516
Ed Berosetfa771012002-06-09 20:56:40 +00001517 if (is_suppressed_warning(severity))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001518 return;
H. Peter Anvin76690a12002-04-30 20:52:49 +00001519
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001520 if (!(severity & ERR_NOFILE))
H. Peter Anvin4def1a82016-05-09 13:59:44 -07001521 src_get(&lineno, &currentfile);
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001522
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001523 if (!skip_this_pass(severity)) {
1524 if (currentfile) {
1525 fprintf(error_file, "%s:%"PRId32": ", currentfile, lineno);
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001526 } else {
1527 fputs("nasm: ", error_file);
1528 }
H. Peter Anvineba20a72002-04-30 20:53:55 +00001529 }
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001530
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001531 nasm_verror_common(severity, fmt, ap);
Ed Berosetfa771012002-06-09 20:56:40 +00001532}
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001533
Ed Berosetfa771012002-06-09 20:56:40 +00001534/**
1535 * MS style error reporting
1536 * This function prints an error message to error_file in the
H. Peter Anvin70653092007-10-19 14:42:29 -07001537 * style used by Visual C and some other Microsoft tools. An example
Ed Berosetfa771012002-06-09 20:56:40 +00001538 * would be:
Ed Beroset6e61d0d2002-06-11 03:29:36 +00001539 * file.asm(50) : error: blah blah blah
H. Peter Anvin70653092007-10-19 14:42:29 -07001540 * where file.asm is the name of the file, 50 is the line number on
Ed Beroset6e61d0d2002-06-11 03:29:36 +00001541 * which the error occurs (or is detected) and "error:" is one of
1542 * the possible optional diagnostics -- it can be "error" or "warning"
H. Peter Anvin70653092007-10-19 14:42:29 -07001543 * or something else. Finally the line terminates with the actual
Ed Beroset6e61d0d2002-06-11 03:29:36 +00001544 * error message.
H. Peter Anvin70653092007-10-19 14:42:29 -07001545 *
1546 * @param severity the severity of the warning or error
Ed Berosetfa771012002-06-09 20:56:40 +00001547 * @param fmt the printf style format string
1548 */
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001549static void nasm_verror_vc(int severity, const char *fmt, va_list ap)
Ed Berosetfa771012002-06-09 20:56:40 +00001550{
H. Peter Anvin274cda82016-05-10 02:56:29 -07001551 const char *currentfile = NULL;
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001552 int32_t lineno = 0;
Ed Berosetfa771012002-06-09 20:56:40 +00001553
H. Peter Anvine2c80182005-01-15 22:15:51 +00001554 if (is_suppressed_warning(severity))
1555 return;
Ed Berosetfa771012002-06-09 20:56:40 +00001556
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001557 if (!(severity & ERR_NOFILE))
H. Peter Anvine2c80182005-01-15 22:15:51 +00001558 src_get(&lineno, &currentfile);
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001559
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001560 if (!skip_this_pass(severity)) {
1561 if (currentfile) {
1562 fprintf(error_file, "%s(%"PRId32") : ", currentfile, lineno);
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001563 } else {
1564 fputs("nasm: ", error_file);
1565 }
Ed Berosetfa771012002-06-09 20:56:40 +00001566 }
H. Peter Anvin48ef4192009-07-01 22:12:59 -07001567
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001568 nasm_verror_common(severity, fmt, ap);
Ed Berosetfa771012002-06-09 20:56:40 +00001569}
1570
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001571/*
1572 * check to see if this is a suppressable warning
1573 */
1574static inline bool is_suppressable_warning(int severity)
1575{
1576 int index;
1577
1578 /* Not a warning at all */
1579 if ((severity & ERR_MASK) != ERR_WARNING)
1580 return false;
1581
1582 index = WARN_IDX(severity);
1583
1584 return index && index <= ERR_WARN_MAX;
1585}
1586
Ed Berosetfa771012002-06-09 20:56:40 +00001587/**
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001588 * check for suppressed warning
H. Peter Anvin70653092007-10-19 14:42:29 -07001589 * checks for suppressed warning or pass one only warning and we're
Ed Berosetfa771012002-06-09 20:56:40 +00001590 * not in pass 1
1591 *
1592 * @param severity the severity of the warning or error
1593 * @return true if we should abort error/warning printing
1594 */
H. Peter Anvin2b046cf2008-01-22 14:08:36 -08001595static bool is_suppressed_warning(int severity)
Ed Berosetfa771012002-06-09 20:56:40 +00001596{
H. Peter Anvin442a05a2012-02-24 21:50:53 -08001597 /* Might be a warning but suppresed explicitly */
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001598 if (is_suppressable_warning(severity))
1599 return !warning_on[WARN_IDX(severity)];
H. Peter Anvin442a05a2012-02-24 21:50:53 -08001600 else
1601 return false;
Ed Berosetfa771012002-06-09 20:56:40 +00001602}
1603
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001604static bool skip_this_pass(int severity)
1605{
H. Peter Anvin934f0472016-05-09 12:00:19 -07001606 /* See if it's a pass-specific warning which should be skipped. */
1607
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001608 if ((severity & ERR_MASK) > ERR_WARNING)
1609 return false;
1610
H. Peter Anvin934f0472016-05-09 12:00:19 -07001611 /*
1612 * passn is 1 on the very first pass only.
1613 * pass0 is 2 on the code-generation (final) pass only.
1614 * These are the passes we care about in this case.
1615 */
1616 return (((severity & ERR_PASS1) && passn != 1) ||
1617 ((severity & ERR_PASS2) && pass0 != 2));
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001618}
1619
Ed Berosetfa771012002-06-09 20:56:40 +00001620/**
1621 * common error reporting
1622 * This is the common back end of the error reporting schemes currently
H. Peter Anvin70653092007-10-19 14:42:29 -07001623 * implemented. It prints the nature of the warning and then the
Ed Berosetfa771012002-06-09 20:56:40 +00001624 * specific error message to error_file and may or may not return. It
1625 * doesn't return if the error severity is a "panic" or "debug" type.
H. Peter Anvin70653092007-10-19 14:42:29 -07001626 *
1627 * @param severity the severity of the warning or error
Ed Berosetfa771012002-06-09 20:56:40 +00001628 * @param fmt the printf style format string
1629 */
H. Peter Anvin9bd15062009-07-18 21:07:17 -04001630static void nasm_verror_common(int severity, const char *fmt, va_list args)
Ed Berosetfa771012002-06-09 20:56:40 +00001631{
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001632 char msg[1024];
1633 const char *pfx;
H. Peter Anvin323fcff2009-07-12 12:04:56 -07001634
H. Peter Anvin7df04172008-06-10 18:27:38 -07001635 switch (severity & (ERR_MASK|ERR_NO_SEVERITY)) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001636 case ERR_WARNING:
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001637 pfx = "warning: ";
H. Peter Anvine2c80182005-01-15 22:15:51 +00001638 break;
1639 case ERR_NONFATAL:
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001640 pfx = "error: ";
H. Peter Anvine2c80182005-01-15 22:15:51 +00001641 break;
1642 case ERR_FATAL:
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001643 pfx = "fatal: ";
H. Peter Anvine2c80182005-01-15 22:15:51 +00001644 break;
1645 case ERR_PANIC:
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001646 pfx = "panic: ";
H. Peter Anvine2c80182005-01-15 22:15:51 +00001647 break;
1648 case ERR_DEBUG:
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001649 pfx = "debug: ";
H. Peter Anvine2c80182005-01-15 22:15:51 +00001650 break;
H. Peter Anvin7df04172008-06-10 18:27:38 -07001651 default:
Cyrill Gorcunov22ad9042013-02-15 02:20:26 +04001652 pfx = "";
1653 break;
H. Peter Anvinaf535c12002-04-30 20:59:21 +00001654 }
H. Peter Anvin734b1882002-04-30 21:01:08 +00001655
H. Peter Anvin934f0472016-05-09 12:00:19 -07001656 vsnprintf(msg, sizeof msg - 64, fmt, args);
H. Peter Anvinb20bc732017-03-07 19:23:03 -08001657 if (is_suppressable_warning(severity)) {
1658 char *p = strchr(msg, '\0');
H. Peter Anvin934f0472016-05-09 12:00:19 -07001659 snprintf(p, 64, " [-w+%s]", warnings[WARN_IDX(severity)].name);
1660 }
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001661
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001662 if (!skip_this_pass(severity))
1663 fprintf(error_file, "%s%s\n", pfx, msg);
H. Peter Anvina23aa4a2009-07-07 12:04:12 -07001664
H. Peter Anvin4def1a82016-05-09 13:59:44 -07001665 /* Are we recursing from error_list_macros? */
1666 if (severity & ERR_PP_LISTMACRO)
1667 return;
1668
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001669 /*
1670 * Don't suppress this with skip_this_pass(), or we don't get
H. Peter Anvin934f0472016-05-09 12:00:19 -07001671 * pass1 or preprocessor warnings in the list file
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001672 */
H. Peter Anvin0fcb4882016-07-06 11:55:25 -07001673 lfmt->error(severity, pfx, msg);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001674
1675 if (severity & ERR_USAGE)
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001676 want_usage = true;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001677
H. Peter Anvin4def1a82016-05-09 13:59:44 -07001678 preproc->error_list_macros(severity);
1679
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001680 switch (severity & ERR_MASK) {
H. Peter Anvine2c80182005-01-15 22:15:51 +00001681 case ERR_DEBUG:
1682 /* no further action, by definition */
1683 break;
H. Peter Anvinb030c922007-11-13 11:31:15 -08001684 case ERR_WARNING:
Cyrill Gorcunov22ad9042013-02-15 02:20:26 +04001685 /* Treat warnings as errors */
1686 if (warning_on[WARN_IDX(ERR_WARN_TERM)])
1687 terminate_after_phase = true;
1688 break;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001689 case ERR_NONFATAL:
H. Peter Anvin6867acc2007-10-10 14:58:45 -07001690 terminate_after_phase = true;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001691 break;
1692 case ERR_FATAL:
1693 if (ofile) {
1694 fclose(ofile);
1695 remove(outname);
Cyrill Gorcunov22ad9042013-02-15 02:20:26 +04001696 ofile = NULL;
H. Peter Anvine2c80182005-01-15 22:15:51 +00001697 }
1698 if (want_usage)
1699 usage();
1700 exit(1); /* instantly die */
1701 break; /* placate silly compilers */
1702 case ERR_PANIC:
1703 fflush(NULL);
Cyrill Gorcunov22ad9042013-02-15 02:20:26 +04001704 /* abort(); */ /* halt, catch fire, and dump core */
H. Peter Anvin4a8d10c2016-02-17 20:47:01 -08001705 if (ofile) {
1706 fclose(ofile);
1707 remove(outname);
1708 ofile = NULL;
1709 }
H. Peter Anvine2c80182005-01-15 22:15:51 +00001710 exit(3);
1711 break;
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001712 }
1713}
1714
H. Peter Anvin734b1882002-04-30 21:01:08 +00001715static void usage(void)
H. Peter Anvineba20a72002-04-30 20:53:55 +00001716{
H. Peter Anvin620515a2002-04-30 20:57:38 +00001717 fputs("type `nasm -h' for help\n", error_file);
H. Peter Anvinea6e34d2002-04-30 20:51:32 +00001718}