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