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