Coverage Report

Created: 2025-07-08 11:15

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