]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/as.c
libsframe: fix error code in sframe_decode
[thirdparty/binutils-gdb.git] / gas / as.c
CommitLineData
252b5132 1/* as.c - GAS main program.
e8e7cf2a 2 Copyright (C) 1987-2025 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
9 any later version.
10
ec2655a6
NC
11 GAS is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
252b5132
RH
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
252b5132 20
76b0a8c0 21/* Main program for AS; a 32-bit assembler of GNU.
33948635
NC
22 Understands command arguments.
23 Has a few routines that don't fit in other modules because they
24 are shared.
34bca508 25
33948635 26 bugs
34bca508 27
33948635
NC
28 : initialisers
29 Since no-one else says they will support them in future: I
30 don't support them now. */
252b5132 31
252b5132
RH
32#define COMMON
33
5f71e59e
JW
34/* Disable code to set FAKE_LABEL_NAME in obj-multi.h, to avoid circular
35 reference. */
36#define INITIALIZING_EMULS
37
252b5132
RH
38#include "as.h"
39#include "subsegs.h"
40#include "output-file.h"
41#include "sb.h"
42#include "macro.h"
bccba5f0 43#include "dwarf2dbg.h"
54cfded0 44#include "dw2gencfi.h"
ba646820 45#include "codeview.h"
b95d15c6 46#include "bfdver.h"
2469b3c5 47#include "write.h"
c7defc53 48#include "ginsn.h"
b95d15c6 49
84be4d71
ILT
50#ifdef HAVE_ITBL_CPU
51#include "itbl-ops.h"
52#else
252b5132
RH
53#define itbl_init()
54#endif
55
9cc92a36
NC
56#ifdef USING_CGEN
57/* Perform any cgen specific initialisation for gas. */
33948635 58extern void gas_cgen_begin (void);
9cc92a36 59#endif
252b5132 60
33948635
NC
61/* We build a list of defsyms as we read the options, and then define
62 them after we have initialized everything. */
63struct defsym_list
64{
65 struct defsym_list *next;
66 char *name;
67 valueT value;
68};
69
70
76b0a8c0
KH
71/* True if a listing is wanted. */
72int listing;
252b5132 73
252b5132 74/* Type of debugging to generate. */
4dc7ead9 75enum debug_info_type debug_type = DEBUG_UNSPECIFIED;
05da4302 76int use_gnu_debug_info_extensions = 0;
252b5132 77
329e276d
NC
78#ifndef MD_DEBUG_FORMAT_SELECTOR
79#define MD_DEBUG_FORMAT_SELECTOR NULL
80#endif
81static enum debug_info_type (*md_debug_format_selector) (int *) = MD_DEBUG_FORMAT_SELECTOR;
82
252b5132 83/* Maximum level of macro nesting. */
252b5132
RH
84int max_macro_nest = 100;
85
76b0a8c0 86/* argv[0] */
87c245cc 87static char * myname;
252b5132
RH
88
89/* The default obstack chunk size. If we set this to zero, the
90 obstack code will use whatever will fit in a 4096 byte block. */
91int chunksize = 0;
92
93/* To monitor memory allocation more effectively, make this non-zero.
94 Then the chunk sizes for gas and bfd will be reduced. */
95int debug_memory = 0;
96
54cfded0
AM
97/* Enable verbose mode. */
98int verbose = 0;
99
0ac2b354
AB
100/* Which version of DWARF CIE to produce. This default value of -1
101 indicates that this value has not been set yet, a default value is
102 provided in dwarf2_init. A different value can also be supplied by the
103 command line flag --gdwarf-cie-version, or by a target in
104 MD_AFTER_PARSE_ARGS. */
105int flag_dwarf_cie_version = -1;
66f8b2cb 106
3f853ba3
NC
107/* The maximum level of DWARF DEBUG information we should manufacture.
108 This defaults to 3 unless overridden by a command line option. */
109unsigned int dwarf_level = 3;
31bf1864 110
b8871f35
L
111#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
112int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;
5b7c81bd 113bool flag_generate_build_notes = DEFAULT_GENERATE_BUILD_NOTES;
b8871f35
L
114#endif
115
33948635
NC
116segT reg_section;
117segT expr_section;
118segT text_section;
119segT data_section;
120segT bss_section;
252b5132 121
33948635
NC
122/* Name of listing file. */
123static char *listing_filename = NULL;
252b5132
RH
124
125static struct defsym_list *defsyms;
126
33948635 127static long start_time;
252b5132 128
252b5132 129\f
252b5132
RH
130#ifdef USE_EMULATIONS
131#define EMULATION_ENVIRON "AS_EMULATION"
132
252b5132
RH
133static struct emulation *const emulations[] = { EMULATIONS };
134static const int n_emulations = sizeof (emulations) / sizeof (emulations[0]);
135
252b5132 136static void
33948635 137select_emulation_mode (int argc, char **argv)
252b5132
RH
138{
139 int i;
e0471c16
TS
140 char *p;
141 const char *em = NULL;
252b5132
RH
142
143 for (i = 1; i < argc; i++)
d34049e8 144 if (startswith (argv[i], "--em"))
252b5132
RH
145 break;
146
147 if (i == argc)
148 goto do_default;
149
150 p = strchr (argv[i], '=');
151 if (p)
152 p++;
153 else
76b0a8c0 154 p = argv[i + 1];
252b5132
RH
155
156 if (!p || !*p)
157 as_fatal (_("missing emulation mode name"));
158 em = p;
159
160 do_default:
161 if (em == 0)
162 em = getenv (EMULATION_ENVIRON);
163 if (em == 0)
164 em = DEFAULT_EMULATION;
165
166 if (em)
167 {
168 for (i = 0; i < n_emulations; i++)
169 if (!strcmp (emulations[i]->name, em))
170 break;
171 if (i == n_emulations)
172 as_fatal (_("unrecognized emulation name `%s'"), em);
173 this_emulation = emulations[i];
174 }
175 else
176 this_emulation = emulations[0];
177
178 this_emulation->init ();
179}
180
252b5132 181void
33948635 182common_emul_init (void)
252b5132
RH
183{
184 this_format = this_emulation->format;
185
186 if (this_emulation->leading_underscore == 2)
187 this_emulation->leading_underscore = this_format->dfl_leading_underscore;
188
189 if (this_emulation->default_endian != 2)
190 target_big_endian = this_emulation->default_endian;
191
192 if (this_emulation->fake_label_name == 0)
193 {
194 if (this_emulation->leading_underscore)
2469b3c5 195 this_emulation->fake_label_name = FAKE_LABEL_NAME;
252b5132
RH
196 else
197 /* What other parameters should we test? */
2469b3c5 198 this_emulation->fake_label_name = "." FAKE_LABEL_NAME;
252b5132
RH
199 }
200}
201#endif
202
4c63da97 203void
33948635 204print_version_id (void)
4c63da97
AM
205{
206 static int printed;
33948635 207
4c63da97
AM
208 if (printed)
209 return;
210 printed = 1;
211
7be1c489 212 fprintf (stderr, _("GNU assembler version %s (%s) using BFD version %s\n"),
403487ec 213 VERSION, TARGET_ALIAS, BFD_VERSION_STRING);
4c63da97
AM
214}
215
e12fe555
NC
216#ifdef DEFAULT_FLAG_COMPRESS_DEBUG
217enum compressed_debug_section_type flag_compress_debug
b0c295e1 218 = DEFAULT_COMPRESSED_DEBUG_ALGORITHM;
e9339bee
JB
219#define DEFAULT_COMPRESSED_DEBUG_ALGORITHM_HELP \
220 DEFAULT_COMPRESSED_DEBUG_ALGORITHM
221#else
222#define DEFAULT_COMPRESSED_DEBUG_ALGORITHM_HELP COMPRESS_DEBUG_NONE
e12fe555
NC
223#endif
224
4c63da97 225static void
33948635 226show_usage (FILE * stream)
4c63da97
AM
227{
228 fprintf (stream, _("Usage: %s [option...] [asmfile...]\n"), myname);
229
230 fprintf (stream, _("\
231Options:\n\
232 -a[sub-option...] turn on listings\n\
233 Sub-options [default hls]:\n\
234 c omit false conditionals\n\
235 d omit debugging directives\n\
83f10cb2 236 g include general info\n\
4c63da97 237 h include high-level source\n\
c7defc53 238 i include ginsn and synthesized CFI info\n\
4c63da97
AM
239 l include assembly\n\
240 m include macro expansions\n\
241 n omit forms processing\n\
242 s include symbols\n\
4c63da97
AM
243 =FILE list to FILE (must be last sub-option)\n"));
244
caa32fe5
NC
245 fprintf (stream, _("\
246 --alternate initially turn on alternate macro syntax\n"));
4c63da97 247 fprintf (stream, _("\
2cac01e3 248 --compress-debug-sections[={none|zlib|zlib-gnu|zlib-gabi|zstd}]\n\
857bddbe 249 compress DWARF debug sections\n")),
e12fe555 250 fprintf (stream, _("\
857bddbe 251 Default: %s\n"),
e9339bee
JB
252 bfd_get_compression_algorithm_name
253 (DEFAULT_COMPRESSED_DEBUG_ALGORITHM_HELP));
857bddbe 254
e12fe555
NC
255 fprintf (stream, _("\
256 --nocompress-debug-sections\n\
857bddbe 257 don't compress DWARF debug sections\n"));
700c4060 258 fprintf (stream, _("\
4c63da97
AM
259 -D produce assembler debugging messages\n"));
260 fprintf (stream, _("\
7ebd68d1
NC
261 --dump-config display how the assembler is configured and then exit\n"));
262 fprintf (stream, _("\
700c4060
CC
263 --debug-prefix-map OLD=NEW\n\
264 map OLD to NEW in debug information\n"));
3d6b762c 265 fprintf (stream, _("\
4c63da97
AM
266 --defsym SYM=VAL define symbol SYM to given value\n"));
267#ifdef USE_EMULATIONS
268 {
269 int i;
e0471c16 270 const char *def_em;
4c63da97
AM
271
272 fprintf (stream, "\
7ebd68d1 273 --emulation=[");
76b0a8c0 274 for (i = 0; i < n_emulations - 1; i++)
4c63da97
AM
275 fprintf (stream, "%s | ", emulations[i]->name);
276 fprintf (stream, "%s]\n", emulations[i]->name);
277
278 def_em = getenv (EMULATION_ENVIRON);
76b0a8c0 279 if (!def_em)
4c63da97
AM
280 def_em = DEFAULT_EMULATION;
281 fprintf (stream, _("\
282 emulate output (default %s)\n"), def_em);
283 }
68d55fe3 284#endif
7be1c489 285#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
286 fprintf (stream, _("\
287 --execstack require executable stack for this object\n"));
288 fprintf (stream, _("\
289 --noexecstack don't require executable stack for this object\n"));
21be61f5
L
290 fprintf (stream, _("\
291 --size-check=[error|warning]\n\
292 ELF .size directive check (default --size-check=error)\n"));
451133ce 293 fprintf (stream, _("\
3a53fb12
L
294 --elf-stt-common=[no|yes] "));
295 if (DEFAULT_GENERATE_ELF_STT_COMMON)
296 fprintf (stream, _("(default: yes)\n"));
297 else
298 fprintf (stream, _("(default: no)\n"));
299 fprintf (stream, _("\
b8871f35
L
300 generate ELF common symbols with STT_COMMON type\n"));
301 fprintf (stream, _("\
451133ce 302 --sectname-subst enable section name substitution sequences\n"));
0df8ad28
NC
303
304 fprintf (stream, _("\
305 --generate-missing-build-notes=[no|yes] "));
306#if DEFAULT_GENERATE_BUILD_NOTES
307 fprintf (stream, _("(default: yes)\n"));
308#else
309 fprintf (stream, _("(default: no)\n"));
4c63da97 310#endif
0df8ad28
NC
311 fprintf (stream, _("\
312 generate GNU Build notes if none are present in the input\n"));
b07a2978 313 fprintf (stream, _("\
3e3e792a 314 --gsframe generate SFrame stack trace information\n"));
ad9bd833
IB
315# if defined (TARGET_USE_SCFI) && defined (TARGET_USE_GINSN)
316 fprintf (stream, _("\
317 --scfi=experimental Synthesize DWARF CFI for hand-written asm\n\
318 (experimental support)\n"));
319# endif
0df8ad28
NC
320#endif /* OBJ_ELF */
321
4c63da97
AM
322 fprintf (stream, _("\
323 -f skip whitespace and comment preprocessing\n"));
324 fprintf (stream, _("\
05974f24 325 -g, --gen-debug generate debugging information\n"));
329e276d
NC
326 fprintf (stream, _("\
327 --gstabs generate STABS debugging information\n"));
4c63da97 328 fprintf (stream, _("\
329e276d 329 --gstabs+ generate STABS debug info with GNU extensions\n"));
05da4302 330 fprintf (stream, _("\
31bf1864 331 --gdwarf-<N> generate DWARF<N> debugging information. 2 <= <N> <= 5\n"));
4c63da97 332 fprintf (stream, _("\
7ebd68d1
NC
333 --gdwarf-cie-version=<N> generate version 1, 3 or 4 DWARF CIEs\n"));
334 fprintf (stream, _("\
b40bf0a2 335 --gdwarf-sections generate per-function section names for DWARF line information\n"));
0b7186b9 336#if defined (TE_PE) && defined (O_secrel)
ba646820
MH
337 fprintf (stream, _("\
338 --gcodeview generate CodeView debugging information\n"));
339#endif
b40bf0a2 340 fprintf (stream, _("\
7ebd68d1
NC
341 --hash-size=<N> ignored\n"));
342 fprintf (stream, _("\
343 --help show all assembler options\n"));
344 fprintf (stream, _("\
ea20a7da
CC
345 --target-help show target specific options\n"));
346 fprintf (stream, _("\
4c63da97
AM
347 -I DIR add DIR to search list for .include directives\n"));
348 fprintf (stream, _("\
349 -J don't warn about signed overflow\n"));
350 fprintf (stream, _("\
351 -K warn when differences altered for long displacements\n"));
352 fprintf (stream, _("\
05974f24 353 -L, --keep-locals keep local symbols (e.g. starting with `L')\n"));
4c63da97 354 fprintf (stream, _("\
05974f24 355 -M, --mri assemble in MRI compatibility mode\n"));
4c63da97
AM
356 fprintf (stream, _("\
357 --MD FILE write dependency information in FILE (default none)\n"));
358 fprintf (stream, _("\
7ebd68d1
NC
359 --multibyte-handling=<method>\n\
360 what to do with multibyte characters encountered in the input\n"));
361 fprintf (stream, _("\
4c63da97
AM
362 -nocpp ignored\n"));
363 fprintf (stream, _("\
2edb36e7
NC
364 -no-pad-sections do not pad the end of sections to alignment boundaries\n"));
365 fprintf (stream, _("\
4c63da97
AM
366 -o OBJFILE name the object-file output OBJFILE (default a.out)\n"));
367 fprintf (stream, _("\
368 -R fold data section into text section\n"));
369 fprintf (stream, _("\
7ebd68d1
NC
370 --reduce-memory-overheads ignored\n"));
371 fprintf (stream, _("\
4c63da97
AM
372 --statistics print various measured statistics from execution\n"));
373 fprintf (stream, _("\
374 --strip-local-absolute strip local absolute symbols\n"));
375 fprintf (stream, _("\
376 --traditional-format Use same format as native assembler when possible\n"));
377 fprintf (stream, _("\
378 --version print assembler version number and exit\n"));
379 fprintf (stream, _("\
05974f24 380 -W, --no-warn suppress warnings\n"));
4c63da97
AM
381 fprintf (stream, _("\
382 --warn don't suppress warnings\n"));
383 fprintf (stream, _("\
384 --fatal-warnings treat warnings as errors\n"));
63e8e1a1
ML
385 fprintf (stream, _("\
386 --no-info suppress information messages\n"));
387 fprintf (stream, _("\
388 --info don't suppress information messages\n"));
732f54cd 389#ifdef HAVE_ITBL_CPU
4c63da97
AM
390 fprintf (stream, _("\
391 --itbl INSTTBL extend instruction set to include instructions\n\
392 matching the specifications defined in file INSTTBL\n"));
732f54cd 393#endif
4c63da97
AM
394 fprintf (stream, _("\
395 -w ignored\n"));
396 fprintf (stream, _("\
397 -X ignored\n"));
398 fprintf (stream, _("\
399 -Z generate object file even after errors\n"));
400 fprintf (stream, _("\
401 --listing-lhs-width set the width in words of the output data column of\n\
402 the listing\n"));
403 fprintf (stream, _("\
404 --listing-lhs-width2 set the width in words of the continuation lines\n\
405 of the output data column; ignored if smaller than\n\
406 the width of the first line\n"));
407 fprintf (stream, _("\
408 --listing-rhs-width set the max width in characters of the lines from\n\
409 the source file\n"));
410 fprintf (stream, _("\
411 --listing-cont-lines set the maximum number of continuation lines used\n\
412 for the output data column of the listing\n"));
a55ff675 413 fprintf (stream, _("\
34bca508 414 @FILE read options from FILE\n"));
4c63da97
AM
415
416 md_show_usage (stream);
417
c20f4f8c 418 fputc ('\n', stream);
92f01d61
JM
419
420 if (REPORT_BUGS_TO[0] && stream == stdout)
421 fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
4c63da97
AM
422}
423
76b0a8c0
KH
424/* Since it is easy to do here we interpret the special arg "-"
425 to mean "use stdin" and we set that argv[] pointing to "".
426 After we have munged argv[], the only things left are source file
427 name(s) and ""(s) denoting stdin. These file names are used
428 (perhaps more than once) later.
429
430 check for new machine-dep cmdline options in
431 md_parse_option definitions in config/tc-*.c. */
252b5132
RH
432
433static void
33948635 434parse_args (int * pargc, char *** pargv)
252b5132 435{
33948635
NC
436 int old_argc;
437 int new_argc;
438 char ** old_argv;
439 char ** new_argv;
252b5132
RH
440 /* Starting the short option string with '-' is for programs that
441 expect options and other ARGV-elements in any order and that care about
442 the ordering of the two. We describe each non-option ARGV-element
443 as if it were the argument of an option with character code 1. */
252b5132 444 char *shortopts;
33948635
NC
445 static const char std_shortopts[] =
446 {
30a2b4ef 447 '-', 'J',
252b5132 448#ifndef WORKING_DOT_WORD
30a2b4ef
KH
449 /* -K is not meaningful if .word is not being hacked. */
450 'K',
252b5132 451#endif
b962d73b
JB
452 'L', 'M', 'R', 'W', 'Z', 'a', ':', ':', 'D', 'f', 'g', ':',':', 'I', ':',
453 'o', ':', 'v', 'w', 'X',
732f54cd 454#ifdef HAVE_ITBL_CPU
33948635 455 /* New option for extending instruction set (see also --itbl below). */
30a2b4ef 456 't', ':',
732f54cd 457#endif
30a2b4ef
KH
458 '\0'
459 };
252b5132 460 struct option *longopts;
33948635
NC
461 /* Codes used for the long options with no short synonyms. */
462 enum option_values
463 {
464 OPTION_HELP = OPTION_STD_BASE,
465 OPTION_NOCPP,
466 OPTION_STATISTICS,
467 OPTION_VERSION,
468 OPTION_DUMPCONFIG,
33948635 469 OPTION_EMULATION,
3d6b762c 470 OPTION_DEBUG_PREFIX_MAP,
33948635 471 OPTION_DEFSYM,
2df22dd3 472#ifndef NO_LISTING
33948635 473 OPTION_LISTING_LHS_WIDTH,
578c64a4 474 OPTION_LISTING_LHS_WIDTH2, /* = STD_BASE + 10 */
33948635
NC
475 OPTION_LISTING_RHS_WIDTH,
476 OPTION_LISTING_CONT_LINES,
2df22dd3 477#endif
33948635
NC
478 OPTION_DEPFILE,
479 OPTION_GSTABS,
05da4302 480 OPTION_GSTABS_PLUS,
31bf1864
NC
481 OPTION_GDWARF_2,
482 OPTION_GDWARF_3,
483 OPTION_GDWARF_4,
484 OPTION_GDWARF_5,
578c64a4 485 OPTION_GDWARF_SECTIONS, /* = STD_BASE + 20 */
66f8b2cb 486 OPTION_GDWARF_CIE_VERSION,
ba646820 487 OPTION_GCODEVIEW,
33948635 488 OPTION_STRIP_LOCAL_ABSOLUTE,
7b40f4c6 489 OPTION_EMIT_LOCAL_ABSOLUTE,
33948635 490 OPTION_TRADITIONAL_FORMAT,
33948635
NC
491 OPTION_WARN,
492 OPTION_TARGET_HELP,
493 OPTION_EXECSTACK,
494 OPTION_NOEXECSTACK,
21be61f5 495 OPTION_SIZE_CHECK,
b8871f35 496 OPTION_ELF_STT_COMMON,
578c64a4 497 OPTION_ELF_BUILD_NOTES, /* = STD_BASE + 30 */
451133ce 498 OPTION_SECTNAME_SUBST,
caa32fe5 499 OPTION_ALTERNATE,
5a14ab23 500 OPTION_AL,
4bdd3565
NC
501 OPTION_HASH_TABLE_SIZE,
502 OPTION_REDUCE_MEMORY_OVERHEADS,
0acf065b
CC
503 OPTION_WARN_FATAL,
504 OPTION_COMPRESS_DEBUG,
2edb36e7 505 OPTION_NOCOMPRESS_DEBUG,
578c64a4 506 OPTION_NO_PAD_SECTIONS,
b07a2978 507 OPTION_MULTIBYTE_HANDLING, /* = STD_BASE + 40 */
ad9bd833 508 OPTION_SFRAME,
63e8e1a1
ML
509 OPTION_SCFI,
510 OPTION_INFO,
511 OPTION_NOINFO
329e276d
NC
512 /* When you add options here, check that they do
513 not collide with OPTION_MD_BASE. See as.h. */
33948635 514 };
34bca508 515
33948635
NC
516 static const struct option std_longopts[] =
517 {
329e276d 518 /* Note: commas are placed at the start of the line rather than
cc643b88 519 the end of the preceding line so that it is simpler to
329e276d
NC
520 selectively add and remove lines from this list. */
521 {"alternate", no_argument, NULL, OPTION_ALTERNATE}
fb767913
NC
522 /* The entry for "a" is here to prevent getopt_long_only() from
523 considering that -a is an abbreviation for --alternate. This is
524 necessary because -a=<FILE> is a valid switch but getopt would
525 normally reject it since --alternate does not take an argument. */
526 ,{"a", optional_argument, NULL, 'a'}
5a14ab23
L
527 /* Handle -al=<FILE>. */
528 ,{"al", optional_argument, NULL, OPTION_AL}
151411f8 529 ,{"compress-debug-sections", optional_argument, NULL, OPTION_COMPRESS_DEBUG}
0acf065b 530 ,{"nocompress-debug-sections", no_argument, NULL, OPTION_NOCOMPRESS_DEBUG}
3d6b762c 531 ,{"debug-prefix-map", required_argument, NULL, OPTION_DEBUG_PREFIX_MAP}
329e276d
NC
532 ,{"defsym", required_argument, NULL, OPTION_DEFSYM}
533 ,{"dump-config", no_argument, NULL, OPTION_DUMPCONFIG}
534 ,{"emulation", required_argument, NULL, OPTION_EMULATION}
7be1c489 535#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
329e276d
NC
536 ,{"execstack", no_argument, NULL, OPTION_EXECSTACK}
537 ,{"noexecstack", no_argument, NULL, OPTION_NOEXECSTACK}
21be61f5 538 ,{"size-check", required_argument, NULL, OPTION_SIZE_CHECK}
b8871f35 539 ,{"elf-stt-common", required_argument, NULL, OPTION_ELF_STT_COMMON}
451133ce 540 ,{"sectname-subst", no_argument, NULL, OPTION_SECTNAME_SUBST}
0df8ad28 541 ,{"generate-missing-build-notes", required_argument, NULL, OPTION_ELF_BUILD_NOTES}
b07a2978 542 ,{"gsframe", no_argument, NULL, OPTION_SFRAME}
ad9bd833
IB
543# if defined (TARGET_USE_SCFI) && defined (TARGET_USE_GINSN)
544 ,{"scfi", required_argument, NULL, OPTION_SCFI}
545# endif
546#endif /* OBJ_ELF || OBJ_MAYBE_ELF. */
329e276d 547 ,{"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL}
31bf1864
NC
548 ,{"gdwarf-2", no_argument, NULL, OPTION_GDWARF_2}
549 ,{"gdwarf-3", no_argument, NULL, OPTION_GDWARF_3}
550 ,{"gdwarf-4", no_argument, NULL, OPTION_GDWARF_4}
551 ,{"gdwarf-5", no_argument, NULL, OPTION_GDWARF_5}
552 /* GCC uses --gdwarf-2 but GAS used to to use --gdwarf2,
329e276d 553 so we keep it here for backwards compatibility. */
31bf1864 554 ,{"gdwarf2", no_argument, NULL, OPTION_GDWARF_2}
b40bf0a2 555 ,{"gdwarf-sections", no_argument, NULL, OPTION_GDWARF_SECTIONS}
66f8b2cb 556 ,{"gdwarf-cie-version", required_argument, NULL, OPTION_GDWARF_CIE_VERSION}
0b7186b9 557#if defined (TE_PE) && defined (O_secrel)
ba646820
MH
558 ,{"gcodeview", no_argument, NULL, OPTION_GCODEVIEW}
559#endif
329e276d
NC
560 ,{"gen-debug", no_argument, NULL, 'g'}
561 ,{"gstabs", no_argument, NULL, OPTION_GSTABS}
562 ,{"gstabs+", no_argument, NULL, OPTION_GSTABS_PLUS}
4bdd3565 563 ,{"hash-size", required_argument, NULL, OPTION_HASH_TABLE_SIZE}
329e276d 564 ,{"help", no_argument, NULL, OPTION_HELP}
732f54cd 565#ifdef HAVE_ITBL_CPU
252b5132
RH
566 /* New option for extending instruction set (see also -t above).
567 The "-t file" or "--itbl file" option extends the basic set of
568 valid instructions by reading "file", a text file containing a
569 list of instruction formats. The additional opcodes and their
570 formats are added to the built-in set of instructions, and
571 mnemonics for new registers may also be defined. */
732f54cd
JB
572 ,{"itbl", required_argument, NULL, 't'}
573#endif
329e276d
NC
574 /* getopt allows abbreviations, so we do this to stop it from
575 treating -k as an abbreviation for --keep-locals. Some
576 ports use -k to enable PIC assembly. */
577 ,{"keep-locals", no_argument, NULL, 'L'}
578 ,{"keep-locals", no_argument, NULL, 'L'}
2df22dd3 579#ifndef NO_LISTING
329e276d
NC
580 ,{"listing-lhs-width", required_argument, NULL, OPTION_LISTING_LHS_WIDTH}
581 ,{"listing-lhs-width2", required_argument, NULL, OPTION_LISTING_LHS_WIDTH2}
582 ,{"listing-rhs-width", required_argument, NULL, OPTION_LISTING_RHS_WIDTH}
583 ,{"listing-cont-lines", required_argument, NULL, OPTION_LISTING_CONT_LINES}
2df22dd3 584#endif
329e276d
NC
585 ,{"MD", required_argument, NULL, OPTION_DEPFILE}
586 ,{"mri", no_argument, NULL, 'M'}
587 ,{"nocpp", no_argument, NULL, OPTION_NOCPP}
2edb36e7 588 ,{"no-pad-sections", no_argument, NULL, OPTION_NO_PAD_SECTIONS}
63e8e1a1 589 ,{"no-info", no_argument, NULL, OPTION_NOINFO}
329e276d 590 ,{"no-warn", no_argument, NULL, 'W'}
4bdd3565 591 ,{"reduce-memory-overheads", no_argument, NULL, OPTION_REDUCE_MEMORY_OVERHEADS}
329e276d
NC
592 ,{"statistics", no_argument, NULL, OPTION_STATISTICS}
593 ,{"strip-local-absolute", no_argument, NULL, OPTION_STRIP_LOCAL_ABSOLUTE}
7b40f4c6 594 ,{"emit-local-absolute", no_argument, NULL, OPTION_EMIT_LOCAL_ABSOLUTE}
329e276d 595 ,{"version", no_argument, NULL, OPTION_VERSION}
b962d73b 596 ,{"verbose", no_argument, NULL, 'v'}
329e276d
NC
597 ,{"target-help", no_argument, NULL, OPTION_TARGET_HELP}
598 ,{"traditional-format", no_argument, NULL, OPTION_TRADITIONAL_FORMAT}
63e8e1a1 599 ,{"info", no_argument, NULL, OPTION_INFO}
329e276d 600 ,{"warn", no_argument, NULL, OPTION_WARN}
578c64a4 601 ,{"multibyte-handling", required_argument, NULL, OPTION_MULTIBYTE_HANDLING}
252b5132
RH
602 };
603
beb2de9b
AC
604 /* Construct the option lists from the standard list and the target
605 dependent list. Include space for an extra NULL option and
76b0a8c0 606 always NULL terminate. */
252b5132 607 shortopts = concat (std_shortopts, md_shortopts, (char *) NULL);
1e9cc1c2
NC
608 longopts = (struct option *) xmalloc (sizeof (std_longopts)
609 + md_longopts_size + sizeof (struct option));
252b5132 610 memcpy (longopts, std_longopts, sizeof (std_longopts));
33948635
NC
611 memcpy (((char *) longopts) + sizeof (std_longopts), md_longopts, md_longopts_size);
612 memset (((char *) longopts) + sizeof (std_longopts) + md_longopts_size,
beb2de9b 613 0, sizeof (struct option));
252b5132
RH
614
615 /* Make a local copy of the old argv. */
616 old_argc = *pargc;
617 old_argv = *pargv;
618
619 /* Initialize a new argv that contains no options. */
af3d7ab7 620 new_argv = notes_alloc (sizeof (char *) * (old_argc + 1));
252b5132
RH
621 new_argv[0] = old_argv[0];
622 new_argc = 1;
623 new_argv[new_argc] = NULL;
624
625 while (1)
626 {
627 /* getopt_long_only is like getopt_long, but '-' as well as '--' can
628 indicate a long option. */
629 int longind;
630 int optc = getopt_long_only (old_argc, old_argv, shortopts, longopts,
631 &longind);
632
633 if (optc == -1)
634 break;
635
636 switch (optc)
637 {
638 default:
639 /* md_parse_option should return 1 if it recognizes optc,
640 0 if not. */
641 if (md_parse_option (optc, optarg) != 0)
642 break;
643 /* `-v' isn't included in the general short_opts list, so check for
47eebc20 644 it explicitly here before deciding we've gotten a bad argument. */
252b5132
RH
645 if (optc == 'v')
646 {
b962d73b
JB
647 case 'v':
648 print_version_id ();
649 verbose = 1;
252b5132
RH
650 break;
651 }
544248c0
JB
652 else if (is_a_char (optc))
653 as_bad (_("unrecognized option `-%c%s'"), optc, optarg ? optarg : "");
654 else if (optarg)
655 as_bad (_("unrecognized option `--%s=%s'"), longopts[longind].name, optarg);
329e276d 656 else
544248c0 657 as_bad (_("unrecognized option `--%s'"), longopts[longind].name);
76b0a8c0 658 /* Fall through. */
252b5132
RH
659
660 case '?':
661 exit (EXIT_FAILURE);
662
663 case 1: /* File name. */
664 if (!strcmp (optarg, "-"))
97830986 665 optarg = (char *) "";
252b5132
RH
666 new_argv[new_argc++] = optarg;
667 new_argv[new_argc] = NULL;
668 break;
ef99799a 669
ea20a7da 670 case OPTION_TARGET_HELP:
411863a4
KH
671 md_show_usage (stdout);
672 exit (EXIT_SUCCESS);
252b5132
RH
673
674 case OPTION_HELP:
675 show_usage (stdout);
676 exit (EXIT_SUCCESS);
677
678 case OPTION_NOCPP:
679 break;
680
2edb36e7
NC
681 case OPTION_NO_PAD_SECTIONS:
682 do_not_pad_sections_to_alignment = 1;
683 break;
684
252b5132
RH
685 case OPTION_STATISTICS:
686 flag_print_statistics = 1;
687 break;
688
689 case OPTION_STRIP_LOCAL_ABSOLUTE:
690 flag_strip_local_absolute = 1;
691 break;
692
7b40f4c6
JB
693 case OPTION_EMIT_LOCAL_ABSOLUTE:
694 flag_strip_local_absolute = -1;
695 break;
696
252b5132
RH
697 case OPTION_TRADITIONAL_FORMAT:
698 flag_traditional_format = 1;
699 break;
700
578c64a4
NC
701 case OPTION_MULTIBYTE_HANDLING:
702 if (strcmp (optarg, "allow") == 0)
703 multibyte_handling = multibyte_allow;
704 else if (strcmp (optarg, "warn") == 0)
705 multibyte_handling = multibyte_warn;
706 else if (strcmp (optarg, "warn-sym-only") == 0)
707 multibyte_handling = multibyte_warn_syms;
708 else if (strcmp (optarg, "warn_sym_only") == 0)
709 multibyte_handling = multibyte_warn_syms;
710 else
711 as_fatal (_("unexpected argument to --multibyte-input-option: '%s'"), optarg);
712 break;
713
252b5132
RH
714 case OPTION_VERSION:
715 /* This output is intended to follow the GNU standards document. */
6c19f338 716 printf (_("GNU assembler %s\n"), BFD_VERSION_STRING);
e8e7cf2a 717 printf (_("Copyright (C) 2025 Free Software Foundation, Inc.\n"));
252b5132
RH
718 printf (_("\
719This program is free software; you may redistribute it under the terms of\n\
ec2655a6
NC
720the GNU General Public License version 3 or later.\n\
721This program has absolutely no warranty.\n"));
9004b6bd
AB
722#ifdef TARGET_WITH_CPU
723 printf (_("This assembler was configured for a target of `%s' "
724 "and default,\ncpu type `%s'.\n"),
725 TARGET_ALIAS, TARGET_WITH_CPU);
726#else
252b5132
RH
727 printf (_("This assembler was configured for a target of `%s'.\n"),
728 TARGET_ALIAS);
9004b6bd 729#endif
252b5132
RH
730 exit (EXIT_SUCCESS);
731
732 case OPTION_EMULATION:
733#ifdef USE_EMULATIONS
734 if (strcmp (optarg, this_emulation->name))
735 as_fatal (_("multiple emulation names specified"));
736#else
737 as_fatal (_("emulations not handled in this configuration"));
738#endif
739 break;
740
741 case OPTION_DUMPCONFIG:
742 fprintf (stderr, _("alias = %s\n"), TARGET_ALIAS);
743 fprintf (stderr, _("canonical = %s\n"), TARGET_CANONICAL);
744 fprintf (stderr, _("cpu-type = %s\n"), TARGET_CPU);
745#ifdef TARGET_OBJ_FORMAT
746 fprintf (stderr, _("format = %s\n"), TARGET_OBJ_FORMAT);
747#endif
748#ifdef TARGET_FORMAT
749 fprintf (stderr, _("bfd-target = %s\n"), TARGET_FORMAT);
750#endif
751 exit (EXIT_SUCCESS);
752
0acf065b 753 case OPTION_COMPRESS_DEBUG:
151411f8
L
754 if (optarg)
755 {
756#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
857bddbe
ML
757 flag_compress_debug = bfd_get_compression_algorithm (optarg);
758#ifndef HAVE_ZSTD
759 if (flag_compress_debug == COMPRESS_DEBUG_ZSTD)
2cac01e3
FS
760 as_fatal (_ ("--compress-debug-sections=zstd: gas is not "
761 "built with zstd support"));
762#endif
857bddbe 763 if (flag_compress_debug == COMPRESS_UNKNOWN)
151411f8
L
764 as_fatal (_("Invalid --compress-debug-sections option: `%s'"),
765 optarg);
766#else
767 as_fatal (_("--compress-debug-sections=%s is unsupported"),
768 optarg);
769#endif
770 }
771 else
e9339bee 772 flag_compress_debug = DEFAULT_COMPRESSED_DEBUG_ALGORITHM;
0acf065b
CC
773 break;
774
775 case OPTION_NOCOMPRESS_DEBUG:
151411f8 776 flag_compress_debug = COMPRESS_DEBUG_NONE;
0acf065b
CC
777 break;
778
3d6b762c
JM
779 case OPTION_DEBUG_PREFIX_MAP:
780 add_debug_prefix_map (optarg);
781 break;
782
252b5132
RH
783 case OPTION_DEFSYM:
784 {
785 char *s;
a38cf1db 786 valueT i;
252b5132
RH
787 struct defsym_list *n;
788
789 for (s = optarg; *s != '\0' && *s != '='; s++)
790 ;
791 if (*s == '\0')
792 as_fatal (_("bad defsym; format is --defsym name=value"));
793 *s++ = '\0';
a38cf1db 794 i = bfd_scan_vma (s, (const char **) NULL, 0);
add39d23 795 n = XNEW (struct defsym_list);
252b5132
RH
796 n->next = defsyms;
797 n->name = optarg;
798 n->value = i;
799 defsyms = n;
800 }
801 break;
802
732f54cd 803#ifdef HAVE_ITBL_CPU
252b5132
RH
804 case 't':
805 {
76b0a8c0
KH
806 /* optarg is the name of the file containing the instruction
807 formats, opcodes, register names, etc. */
252b5132
RH
808 if (optarg == NULL)
809 {
0e389e77 810 as_warn (_("no file name following -t option"));
252b5132
RH
811 break;
812 }
76b0a8c0 813
252b5132 814 /* Parse the file and add the new instructions to our internal
76b0a8c0
KH
815 table. If multiple instruction tables are specified, the
816 information from this table gets appended onto the existing
817 internal table. */
f1307e43 818 if (itbl_parse (optarg) != 0)
0e389e77 819 as_fatal (_("failed to read instruction table %s\n"),
f1307e43 820 optarg);
252b5132
RH
821 }
822 break;
732f54cd 823#endif
252b5132
RH
824
825 case OPTION_DEPFILE:
826 start_dependencies (optarg);
827 break;
828
329e276d 829 case 'g':
8f94ae4d
NC
830 /* Some backends, eg Alpha and Mips, use the -g switch for their
831 own purposes. So we check here for an explicit -g and allow
329e276d
NC
832 the backend to decide if it wants to process it. */
833 if ( old_argv[optind - 1][1] == 'g'
329e276d
NC
834 && md_parse_option (optc, optarg))
835 continue;
836
4a5700b6
MW
837 /* We end up here for any -gsomething-not-already-a-long-option.
838 give some useful feedback on not (yet) supported -gdwarfxxx
839 versions/sections/options. */
d34049e8 840 if (startswith (old_argv[optind - 1], "-gdwarf"))
4a5700b6 841 as_fatal (_("unknown DWARF option %s\n"), old_argv[optind - 1]);
6ea673e2
L
842 else if (old_argv[optind - 1][1] == 'g' && optarg != NULL)
843 as_fatal (_("unknown option `%s'"), old_argv[optind - 1]);
4a5700b6 844
329e276d
NC
845 if (md_debug_format_selector)
846 debug_type = md_debug_format_selector (& use_gnu_debug_info_extensions);
847 else if (IS_ELF)
31bf1864
NC
848 {
849 debug_type = DEBUG_DWARF2;
850 dwarf_level = 2;
851 }
329e276d
NC
852 else
853 debug_type = DEBUG_STABS;
854 break;
855
05da4302
NC
856 case OPTION_GSTABS_PLUS:
857 use_gnu_debug_info_extensions = 1;
858 /* Fall through. */
252b5132
RH
859 case OPTION_GSTABS:
860 debug_type = DEBUG_STABS;
861 break;
76b0a8c0 862
31bf1864
NC
863 case OPTION_GDWARF_2:
864 debug_type = DEBUG_DWARF2;
865 dwarf_level = 2;
866 break;
867
868 case OPTION_GDWARF_3:
869 debug_type = DEBUG_DWARF2;
870 dwarf_level = 3;
871 break;
872
873 case OPTION_GDWARF_4:
fac0d250 874 debug_type = DEBUG_DWARF2;
31bf1864
NC
875 dwarf_level = 4;
876 break;
877
878 case OPTION_GDWARF_5:
879 debug_type = DEBUG_DWARF2;
880 dwarf_level = 5;
fac0d250
RH
881 break;
882
b40bf0a2 883 case OPTION_GDWARF_SECTIONS:
5b7c81bd 884 flag_dwarf_sections = true;
b40bf0a2
NC
885 break;
886
0b7186b9 887#if defined (TE_PE) && defined (O_secrel)
ba646820
MH
888 case OPTION_GCODEVIEW:
889 debug_type = DEBUG_CODEVIEW;
890 break;
891#endif
892
66f8b2cb
AB
893 case OPTION_GDWARF_CIE_VERSION:
894 flag_dwarf_cie_version = atoi (optarg);
895 /* The available CIE versions are 1 (DWARF 2), 3 (DWARF 3), and 4
896 (DWARF 4 and 5). */
897 if (flag_dwarf_cie_version < 1
898 || flag_dwarf_cie_version == 2
899 || flag_dwarf_cie_version > 4)
900 as_fatal (_("Invalid --gdwarf-cie-version `%s'"), optarg);
31bf1864
NC
901 switch (flag_dwarf_cie_version)
902 {
903 case 1:
904 if (dwarf_level < 2)
905 dwarf_level = 2;
906 break;
907 case 3:
908 if (dwarf_level < 3)
909 dwarf_level = 3;
910 break;
911 default:
912 if (dwarf_level < 4)
913 dwarf_level = 4;
914 break;
915 }
66f8b2cb
AB
916 break;
917
252b5132
RH
918 case 'J':
919 flag_signed_overflow_ok = 1;
920 break;
921
922#ifndef WORKING_DOT_WORD
923 case 'K':
924 flag_warn_displacement = 1;
925 break;
926#endif
252b5132
RH
927 case 'L':
928 flag_keep_locals = 1;
929 break;
930
2df22dd3 931#ifndef NO_LISTING
252b5132 932 case OPTION_LISTING_LHS_WIDTH:
76b0a8c0 933 listing_lhs_width = atoi (optarg);
252b5132
RH
934 if (listing_lhs_width_second < listing_lhs_width)
935 listing_lhs_width_second = listing_lhs_width;
936 break;
937 case OPTION_LISTING_LHS_WIDTH2:
938 {
a259da93 939 unsigned int tmp = atoi (optarg);
329e276d 940
252b5132
RH
941 if (tmp > listing_lhs_width)
942 listing_lhs_width_second = tmp;
943 }
944 break;
945 case OPTION_LISTING_RHS_WIDTH:
76b0a8c0 946 listing_rhs_width = atoi (optarg);
252b5132
RH
947 break;
948 case OPTION_LISTING_CONT_LINES:
76b0a8c0 949 listing_lhs_cont_lines = atoi (optarg);
252b5132 950 break;
2df22dd3 951#endif /* NO_LISTING */
252b5132
RH
952
953 case 'M':
954 flag_mri = 1;
955#ifdef TC_M68K
956 flag_m68k_mri = 1;
957#endif
958 break;
959
960 case 'R':
961 flag_readonly_data_in_text = 1;
962 break;
963
964 case 'W':
965 flag_no_warnings = 1;
966 break;
967
2bdd6cf5
GK
968 case OPTION_WARN:
969 flag_no_warnings = 0;
970 flag_fatal_warnings = 0;
971 break;
972
973 case OPTION_WARN_FATAL:
974 flag_no_warnings = 0;
975 flag_fatal_warnings = 1;
976 break;
977
63e8e1a1
ML
978 case OPTION_NOINFO:
979 flag_no_information = true;
980 break;
981
982 case OPTION_INFO:
983 flag_no_information = false;
984 break;
985
7be1c489 986#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
987 case OPTION_EXECSTACK:
988 flag_execstack = 1;
989 flag_noexecstack = 0;
990 break;
991
992 case OPTION_NOEXECSTACK:
993 flag_noexecstack = 1;
994 flag_execstack = 0;
995 break;
21be61f5 996
ad9bd833
IB
997# if defined (TARGET_USE_SCFI) && defined (TARGET_USE_GINSN)
998 case OPTION_SCFI:
999 if (optarg && strcasecmp (optarg, "experimental") == 0)
1000 flag_synth_cfi = SYNTH_CFI_EXPERIMENTAL;
1001 else
1002 as_fatal (_("Invalid --scfi= option: `%s'; suggested option: experimental"),
1003 optarg);
1004 break;
1005# endif
1006
21be61f5
L
1007 case OPTION_SIZE_CHECK:
1008 if (strcasecmp (optarg, "error") == 0)
5b7c81bd 1009 flag_allow_nonconst_size = false;
21be61f5 1010 else if (strcasecmp (optarg, "warning") == 0)
5b7c81bd 1011 flag_allow_nonconst_size = true;
21be61f5
L
1012 else
1013 as_fatal (_("Invalid --size-check= option: `%s'"), optarg);
1014 break;
451133ce 1015
b8871f35
L
1016 case OPTION_ELF_STT_COMMON:
1017 if (strcasecmp (optarg, "no") == 0)
1018 flag_use_elf_stt_common = 0;
1019 else if (strcasecmp (optarg, "yes") == 0)
1020 flag_use_elf_stt_common = 1;
1021 else
1022 as_fatal (_("Invalid --elf-stt-common= option: `%s'"),
1023 optarg);
1024 break;
1025
451133ce
NP
1026 case OPTION_SECTNAME_SUBST:
1027 flag_sectname_subst = 1;
1028 break;
0df8ad28
NC
1029
1030 case OPTION_ELF_BUILD_NOTES:
1031 if (strcasecmp (optarg, "no") == 0)
5b7c81bd 1032 flag_generate_build_notes = false;
0df8ad28 1033 else if (strcasecmp (optarg, "yes") == 0)
5b7c81bd 1034 flag_generate_build_notes = true;
0df8ad28
NC
1035 else
1036 as_fatal (_("Invalid --generate-missing-build-notes option: `%s'"),
1037 optarg);
1038 break;
1039
b07a2978
IB
1040 case OPTION_SFRAME:
1041 flag_gen_sframe = 1;
1042 break;
1043
0df8ad28
NC
1044#endif /* OBJ_ELF */
1045
252b5132
RH
1046 case 'Z':
1047 flag_always_generate_output = 1;
1048 break;
1049
5a14ab23
L
1050 case OPTION_AL:
1051 listing |= LISTING_LISTING;
1052 if (optarg)
af3d7ab7 1053 listing_filename = notes_strdup (optarg);
5a14ab23
L
1054 break;
1055
caa32fe5
NC
1056 case OPTION_ALTERNATE:
1057 optarg = old_argv [optind - 1];
1058 while (* optarg == '-')
1059 optarg ++;
1060
1061 if (strcmp (optarg, "alternate") == 0)
1062 {
1063 flag_macro_alternate = 1;
1064 break;
1065 }
1066 optarg ++;
1067 /* Fall through. */
1068
252b5132
RH
1069 case 'a':
1070 if (optarg)
1071 {
fb767913
NC
1072 if (optarg != old_argv[optind] && optarg[-1] == '=')
1073 --optarg;
1074
7f6d05e8
CP
1075 if (md_parse_option (optc, optarg) != 0)
1076 break;
1077
252b5132
RH
1078 while (*optarg)
1079 {
1080 switch (*optarg)
1081 {
1082 case 'c':
1083 listing |= LISTING_NOCOND;
1084 break;
1085 case 'd':
1086 listing |= LISTING_NODEBUG;
1087 break;
83f10cb2
NC
1088 case 'g':
1089 listing |= LISTING_GENERAL;
1090 break;
252b5132
RH
1091 case 'h':
1092 listing |= LISTING_HLL;
1093 break;
c7defc53
IB
1094 case 'i':
1095 listing |= LISTING_GINSN_SCFI;
1096 break;
252b5132
RH
1097 case 'l':
1098 listing |= LISTING_LISTING;
1099 break;
1100 case 'm':
1101 listing |= LISTING_MACEXP;
1102 break;
1103 case 'n':
1104 listing |= LISTING_NOFORM;
1105 break;
1106 case 's':
1107 listing |= LISTING_SYMBOLS;
1108 break;
1109 case '=':
af3d7ab7 1110 listing_filename = notes_strdup (optarg + 1);
252b5132
RH
1111 optarg += strlen (listing_filename);
1112 break;
1113 default:
1114 as_fatal (_("invalid listing option `%c'"), *optarg);
1115 break;
1116 }
1117 optarg++;
1118 }
1119 }
1120 if (!listing)
1121 listing = LISTING_DEFAULT;
1122 break;
1123
1124 case 'D':
76b0a8c0
KH
1125 /* DEBUG is implemented: it debugs different
1126 things from other people's assemblers. */
252b5132
RH
1127 flag_debug = 1;
1128 break;
1129
1130 case 'f':
1131 flag_no_comments = 1;
1132 break;
1133
1134 case 'I':
76b0a8c0 1135 { /* Include file directory. */
af3d7ab7 1136 char *temp = notes_strdup (optarg);
329e276d 1137
252b5132
RH
1138 add_include_dir (temp);
1139 break;
1140 }
1141
1142 case 'o':
af3d7ab7 1143 out_file_name = notes_strdup (optarg);
252b5132
RH
1144 break;
1145
1146 case 'w':
1147 break;
1148
1149 case 'X':
76b0a8c0 1150 /* -X means treat warnings as errors. */
252b5132 1151 break;
4bdd3565
NC
1152
1153 case OPTION_REDUCE_MEMORY_OVERHEADS:
4bdd3565
NC
1154 break;
1155
1156 case OPTION_HASH_TABLE_SIZE:
a0522545 1157 break;
252b5132
RH
1158 }
1159 }
1160
1161 free (shortopts);
1162 free (longopts);
1163
1164 *pargc = new_argc;
1165 *pargv = new_argv;
acebd4ce
AS
1166
1167#ifdef md_after_parse_args
1168 md_after_parse_args ();
1169#endif
252b5132
RH
1170}
1171
7b40f4c6
JB
1172/* Pre-define a symbol with its name derived from TMPL (wrapping in
1173 GAS(...)), to value VAL. */
1174
1175void
1176predefine_symbol (const char *tmpl, valueT val)
1177{
1178 char *name = xasprintf ("GAS(%s)", tmpl);
1179 symbolS *s;
1180
1181 /* Also put the symbol in the symbol table, if requested. */
1182 if (flag_strip_local_absolute < 0)
1183 s = symbol_new (name, absolute_section, &zero_address_frag, val);
1184 else
1185 s = symbol_create (name, absolute_section, &zero_address_frag, val);
1186 S_CLEAR_EXTERNAL (s);
1187 symbol_table_insert (s);
1188
1189 xfree (name);
1190}
1191
33948635
NC
1192static void
1193dump_statistics (void)
1194{
33948635
NC
1195 long run_time = get_run_time () - start_time;
1196
1197 fprintf (stderr, _("%s: total time in assembly: %ld.%06ld\n"),
1198 myname, run_time / 1000000, run_time % 1000000);
252b5132 1199
33948635
NC
1200 subsegs_print_statistics (stderr);
1201 write_print_statistics (stderr);
1202 symbol_print_statistics (stderr);
1203 read_print_statistics (stderr);
1204
1205#ifdef tc_print_statistics
1206 tc_print_statistics (stderr);
1207#endif
1208
1209#ifdef obj_print_statistics
1210 obj_print_statistics (stderr);
1211#endif
1212}
33948635
NC
1213\f
1214/* Here to attempt 1 pass over each input file.
1215 We scan argv[*] looking for filenames or exactly "" which is
1216 shorthand for stdin. Any argv that is NULL is not a file-name.
1217 We set need_pass_2 TRUE if, after this, we still have unresolved
1218 expressions of the form (unknown value)+-(unknown value).
1219
1220 Note the un*x semantics: there is only 1 logical input file, but it
1221 may be a catenation of many 'physical' input files. */
1222
1223static void
1224perform_an_assembly_pass (int argc, char ** argv)
1225{
1226 int saw_a_file = 0;
33948635
NC
1227
1228 need_pass_2 = 0;
1229
bcf0aac6 1230#ifndef OBJ_MACH_O
33948635 1231 subseg_set (text_section, 0);
bcf0aac6 1232#endif
33948635 1233
7b40f4c6
JB
1234 predefine_symbol ("version", BFD_VERSION);
1235 if (strstr (BFD_VERSION_STRING, "." XSTRING (BFD_VERSION_DATE)) != NULL)
1236 predefine_symbol ("date", BFD_VERSION_DATE);
1237
33948635 1238 /* This may add symbol table entries, which requires having an open BFD,
7be1c489 1239 and sections already created. */
33948635
NC
1240 md_begin ();
1241
1242#ifdef USING_CGEN
1243 gas_cgen_begin ();
1244#endif
1245#ifdef obj_begin
1246 obj_begin ();
1247#endif
1248
1249 /* Skip argv[0]. */
1250 argv++;
1251 argc--;
1252
1253 while (argc--)
1254 {
1255 if (*argv)
1256 { /* Is it a file-name argument? */
33948635
NC
1257 saw_a_file++;
1258 /* argv->"" if stdin desired, else->filename. */
1259 read_a_source_file (*argv);
1260 }
1261 argv++; /* Completed that argv. */
1262 }
1263 if (!saw_a_file)
1264 read_a_source_file ("");
1265}
af3d7ab7
AM
1266
1267static void
1268free_notes (void)
1269{
1270 _obstack_free (&notes, NULL);
1271}
a80076a1 1272
103357fb 1273/* Early initialisation, before gas prints messages. */
252b5132 1274
103357fb
AM
1275static void
1276gas_early_init (int *argcp, char ***argvp)
1277{
252b5132 1278 start_time = get_run_time ();
1ec4b9f2 1279 signal_init ();
252b5132 1280
23d61380 1281#ifdef HAVE_LC_MESSAGES
252b5132 1282 setlocale (LC_MESSAGES, "");
3882b010 1283#endif
3882b010 1284 setlocale (LC_CTYPE, "");
252b5132
RH
1285 bindtextdomain (PACKAGE, LOCALEDIR);
1286 textdomain (PACKAGE);
1287
1288 if (debug_memory)
091e58c1 1289 chunksize = 64;
252b5132 1290
252b5132
RH
1291#ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
1292#define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"
1293#endif
1294
1295 out_file_name = OBJ_DEFAULT_OUTPUT_FILE_NAME;
1296
1297 hex_init ();
bf2dd8d7
AM
1298 if (bfd_init () != BFD_INIT_MAGIC)
1299 as_fatal (_("libbfd ABI mismatch"));
103357fb
AM
1300
1301 obstack_begin (&notes, chunksize);
1302 xatexit (free_notes);
1303
1304 myname = **argvp;
1305 xmalloc_set_program_name (myname);
252b5132 1306 bfd_set_error_program_name (myname);
103357fb
AM
1307
1308 expandargv (argcp, argvp);
1309
adb9ac5f
AM
1310 init_include_dir ();
1311
103357fb
AM
1312#ifdef HOST_SPECIAL_INIT
1313 HOST_SPECIAL_INIT (*argcp, *argvp);
1314#endif
252b5132
RH
1315
1316#ifdef USE_EMULATIONS
103357fb 1317 select_emulation_mode (*argcp, *argvp);
252b5132 1318#endif
103357fb 1319}
af3d7ab7 1320
35701ef3
AM
1321/* Tack on format specific section data and create a proper section
1322 symbol for one of the standard bfd sections. */
1323
1324static void
1325bfd_std_section_init (const char *name)
1326{
1327 asection *sec = bfd_make_section_old_way (stdoutput, name);
1328 gas_assert (BFD_SEND (stdoutput, _new_section_hook, (stdoutput, sec)));
1329 subseg_new (name, 0);
1330}
1331
7f27b6b1 1332/* The bulk of gas initialisation. This is after args are parsed. */
103357fb
AM
1333
1334static void
7f27b6b1 1335gas_init (void)
103357fb
AM
1336{
1337 symbol_begin ();
1338 frag_init ();
1339 subsegs_begin ();
1340 read_begin ();
1341 input_scrub_begin ();
1342 expr_begin ();
4148b4fe 1343 eh_begin ();
103357fb 1344
1250cd63 1345 macro_init ();
252b5132 1346
103357fb
AM
1347 dwarf2_init ();
1348
7f27b6b1
AM
1349 local_symbol_make (".gasversion.", absolute_section,
1350 &predefined_address_frag, BFD_VERSION / 10000UL);
1351
1352 /* Note: Put new initialisation calls that don't depend on stdoutput
1353 being open above this point. stdoutput must be open for anything
1354 that might use stdoutput objalloc memory, eg. calling bfd_alloc
1355 or creating global symbols (via bfd_make_empty_symbol). */
1356 xatexit (output_file_close);
1357 output_file_create (out_file_name);
1358 gas_assert (stdoutput != 0);
1359
1360 /* Must be called before output_file_close. xexit calls the xatexit
1361 list in reverse order. */
1362 if (flag_print_statistics)
1363 xatexit (dump_statistics);
1364
103357fb
AM
1365 dot_symbol_init ();
1366
1367#ifdef tc_init_after_args
1368 tc_init_after_args ();
1369#endif
1370
1371 itbl_init ();
1372
103357fb
AM
1373 /* Now that we have fully initialized, and have created the output
1374 file, define any symbols requested by --defsym command line
1375 arguments. */
1376 while (defsyms != NULL)
1377 {
1378 symbolS *sym;
1379 struct defsym_list *next;
1380
1381 sym = symbol_new (defsyms->name, absolute_section,
1382 &zero_address_frag, defsyms->value);
1383 /* Make symbols defined on the command line volatile, so that they
1384 can be redefined inside a source file. This makes this assembler's
1385 behaviour compatible with earlier versions, but it may not be
1386 completely intuitive. */
1387 S_SET_VOLATILE (sym);
1388 symbol_table_insert (sym);
1389 next = defsyms->next;
1390 free (defsyms);
1391 defsyms = next;
1392 }
35701ef3
AM
1393
1394#ifndef OBJ_MACH_O
1395 /* Create the standard sections, and those the assembler uses
1396 internally. */
1397 text_section = subseg_new (TEXT_SECTION_NAME, 0);
1398 data_section = subseg_new (DATA_SECTION_NAME, 0);
1399 bss_section = subseg_new (BSS_SECTION_NAME, 0);
1400 /* @@ FIXME -- we're setting the RELOC flag so that sections are assumed
1401 to have relocs, otherwise we don't find out in time. */
1402 flagword applicable = bfd_applicable_section_flags (stdoutput);
1403 bfd_set_section_flags (text_section,
1404 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1405 | SEC_CODE | SEC_READONLY));
1406 bfd_set_section_flags (data_section,
1407 applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
1408 | SEC_DATA));
1409 bfd_set_section_flags (bss_section, applicable & SEC_ALLOC);
1410 seg_info (bss_section)->bss = 1;
1411#endif
1412 bfd_std_section_init (BFD_ABS_SECTION_NAME);
1413 bfd_std_section_init (BFD_UND_SECTION_NAME);
1414 reg_section = subseg_new ("*GAS `reg' section*", 0);
1415 expr_section = subseg_new ("*GAS `expr' section*", 0);
103357fb
AM
1416}
1417
1418int
1419main (int argc, char ** argv)
1420{
2df22dd3 1421#ifndef NO_LISTING
103357fb 1422 char ** argv_orig = argv;
2df22dd3 1423#endif
103357fb
AM
1424 struct stat sob;
1425
1426 gas_early_init (&argc, &argv);
103357fb 1427
7f27b6b1 1428 /* Call parse_args before gas_init so that switches like
103357fb 1429 --hash-size can be honored. */
f7a568ea 1430 parse_args (&argc, &argv);
67f846b5
JD
1431
1432 if (argc > 1 && stat (out_file_name, &sob) == 0)
1433 {
1434 int i;
1435
1436 for (i = 1; i < argc; ++i)
1437 {
1438 struct stat sib;
1439
2a50366d
RY
1440 /* Check that the input file and output file are different. */
1441 if (stat (argv[i], &sib) == 0
1442 && sib.st_ino == sob.st_ino
1443 /* POSIX emulating systems may support stat() but if the
1444 underlying file system does not support a file serial number
1445 of some kind then they will return 0 for the inode. So
1446 two files with an inode of 0 may not actually be the same.
1447 On real POSIX systems no ordinary file will ever have an
1448 inode of 0. */
1449 && sib.st_ino != 0
1450 /* Different files may have the same inode number if they
1451 reside on different devices, so check the st_dev field as
1452 well. */
3c968de5
NC
1453 && sib.st_dev == sob.st_dev
1454 /* PR 25572: Only check regular files. Devices, sockets and so
1455 on might actually work as both input and output. Plus there
1456 is a use case for using /dev/null as both input and output
1457 when checking for command line option support in a script:
1458 as --foo /dev/null -o /dev/null; if $? then ... */
1459 && S_ISREG (sib.st_mode))
67f846b5 1460 {
2a50366d
RY
1461 const char *saved_out_file_name = out_file_name;
1462
1463 /* Don't let as_fatal remove the output file! */
1464 out_file_name = NULL;
1465 as_fatal (_("The input '%s' and output '%s' files are the same"),
1466 argv[i], saved_out_file_name);
67f846b5
JD
1467 }
1468 }
1469 }
1470
7f27b6b1 1471 gas_init ();
252b5132 1472
76b0a8c0
KH
1473 /* Assemble it. */
1474 perform_an_assembly_pass (argc, argv);
252b5132
RH
1475
1476 cond_finish_check (-1);
1477
ed2917de
AM
1478#ifdef md_finish
1479 md_finish ();
252b5132 1480#endif
104d59d1 1481
7be1c489 1482#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
68d55fe3
JJ
1483 if ((flag_execstack || flag_noexecstack)
1484 && OUTPUT_FLAVOR == bfd_target_elf_flavour)
1485 {
1486 segT gnustack;
1487
1488 gnustack = subseg_new (".note.GNU-stack", 0);
fd361982 1489 bfd_set_section_flags (gnustack,
68d55fe3 1490 SEC_READONLY | (flag_execstack ? SEC_CODE : 0));
34bca508 1491
68d55fe3
JJ
1492 }
1493#endif
1494
ba646820
MH
1495 codeview_finish ();
1496
43ad3147 1497 /* If we've been collecting dwarf2 .debug_line info, either for
39bb5fe6
RH
1498 assembly debugging or on behalf of the compiler, emit it now. */
1499 dwarf2_finish ();
1500
34bca508 1501 /* If we constructed dwarf2 .eh_frame info, either via .cfi
a4447b93 1502 directives from the user or by the backend, emit it now. */
54cfded0 1503 cfi_finish ();
54cfded0 1504
85024cd8
AM
1505 keep_it = 0;
1506 if (seen_at_least_1_file ())
1507 {
1508 int n_warns, n_errs;
1509 char warn_msg[50];
1510 char err_msg[50];
1511
1512 write_object_file ();
1513
1514 n_warns = had_warnings ();
1515 n_errs = had_errors ();
1516
992a06ee
AM
1517 sprintf (warn_msg,
1518 ngettext ("%d warning", "%d warnings", n_warns), n_warns);
1519 sprintf (err_msg,
1520 ngettext ("%d error", "%d errors", n_errs), n_errs);
85024cd8
AM
1521 if (flag_fatal_warnings && n_warns != 0)
1522 {
1523 if (n_errs == 0)
1524 as_bad (_("%s, treating warnings as errors"), warn_msg);
1525 n_errs += n_warns;
1526 }
252b5132 1527
85024cd8
AM
1528 if (n_errs == 0)
1529 keep_it = 1;
1530 else if (flag_always_generate_output)
1531 {
1532 /* The -Z flag indicates that an object file should be generated,
1533 regardless of warnings and errors. */
1534 keep_it = 1;
1535 fprintf (stderr, _("%s, %s, generating bad object file\n"),
1536 err_msg, warn_msg);
1537 }
1538 }
252b5132 1539
7f6a71ff
JM
1540 fflush (stderr);
1541
252b5132 1542#ifndef NO_LISTING
83f10cb2 1543 listing_print (listing_filename, argv_orig);
252b5132
RH
1544#endif
1545
252b5132
RH
1546 input_scrub_end ();
1547
252b5132
RH
1548 /* Use xexit instead of return, because under VMS environments they
1549 may not place the same interpretation on the value given. */
85024cd8 1550 if (had_errors () != 0)
252b5132
RH
1551 xexit (EXIT_FAILURE);
1552
1553 /* Only generate dependency file if assembler was successful. */
1554 print_dependencies ();
1555
1556 xexit (EXIT_SUCCESS);
1557}