1999-05-03 15:29:11 +08:00
|
|
|
/* output-file.c - Deal with the output file
|
2024-01-04 19:52:08 +08:00
|
|
|
Copyright (C) 1987-2024 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 19:01:12 +08:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 15:29:11 +08:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GAS; see the file COPYING. If not, write to
|
2005-05-05 17:13:19 +08:00
|
|
|
the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#include "as.h"
|
2022-07-04 11:15:47 +08:00
|
|
|
#include "subsegs.h"
|
2022-07-05 11:30:41 +08:00
|
|
|
#include "sb.h"
|
|
|
|
#include "macro.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
#include "output-file.h"
|
|
|
|
|
|
|
|
#ifndef TARGET_MACH
|
|
|
|
#define TARGET_MACH 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bfd *stdoutput;
|
|
|
|
|
|
|
|
void
|
2016-02-22 22:11:27 +08:00
|
|
|
output_file_create (const char *name)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
if (name[0] == '-' && name[1] == '\0')
|
* read.c: Standardize error/warning messages - don't capitalise, no
final period or newline, don't say "ignored" or "zero assumed" for
as_bad messages. In some cases, change the wording to that used
elsewhere for similar messages.
* app.c, as.c, atof-generic.c, cgen.c, cond.c, depend.c, dwarf2dbg.c,
ecoff.c, expr.c, frags.c, input-file.c, input-scrub.c, listing.c,
output-file.c, stabs.c, subsegs.c, symbols.c, write.c: Likewise.
* ecoff.c (ecoff_directive_end): Test for missing name by
comparing input line pointers rather than reading string.
(ecoff_directive_ent): Likewise.
* read.c (s_set): Likewise.
(s_align): Report a warning rather than an error for
alignment too large.
(s_comm): Check for missing symbol name.
(s_lcomm_internal): Likewise.
(s_lsym): Likewise.
(s_globl): Use is_end_of_line instead of looking for '\n'.
(s_lcomm_internal): Likewise.
(ignore_rest_of_line): Report a warning rather than an error.
2001-08-01 09:44:25 +08:00
|
|
|
as_fatal (_("can't open a bfd on stdout %s"), name);
|
2001-07-10 17:45:50 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
else if (!(stdoutput = bfd_openw (name, TARGET_FORMAT)))
|
|
|
|
{
|
2006-09-22 19:35:14 +08:00
|
|
|
bfd_error_type err = bfd_get_error ();
|
|
|
|
|
|
|
|
if (err == bfd_error_invalid_target)
|
|
|
|
as_fatal (_("selected target format '%s' unknown"), TARGET_FORMAT);
|
2004-07-07 00:42:04 +08:00
|
|
|
else
|
2006-09-22 19:35:14 +08:00
|
|
|
as_fatal (_("can't create %s: %s"), name, bfd_errmsg (err));
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|
2001-07-10 17:45:50 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
bfd_set_format (stdoutput, bfd_object);
|
|
|
|
bfd_set_arch_mach (stdoutput, TARGET_ARCH, TARGET_MACH);
|
|
|
|
if (flag_traditional_format)
|
|
|
|
stdoutput->flags |= BFD_TRADITIONAL_FORMAT;
|
|
|
|
}
|
|
|
|
|
2022-07-04 11:15:47 +08:00
|
|
|
static void
|
|
|
|
stash_frchain_obs (asection *sec)
|
|
|
|
{
|
|
|
|
segment_info_type *info = seg_info (sec);
|
|
|
|
if (info)
|
|
|
|
{
|
|
|
|
struct frchain *frchp;
|
|
|
|
for (frchp = info->frchainP; frchp; frchp = frchp->frch_next)
|
|
|
|
obstack_ptr_grow (¬es, &frchp->frch_obstack);
|
|
|
|
info->frchainP = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
void
|
2022-07-07 18:26:10 +08:00
|
|
|
output_file_close (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
Use bool in gas
* as.h (POISON_BFD_BOOLEAN): Define.
* as.c, * as.h, * atof-generic.c, * config/atof-ieee.c,
* config/bfin-aux.h, * config/obj-coff.c, * config/obj-ecoff.c,
* config/obj-elf.c, * config/obj-elf.h, * config/obj-som.c,
* config/tc-aarch64.c, * config/tc-alpha.c, * config/tc-arc.c,
* config/tc-arc.h, * config/tc-arm.c, * config/tc-arm.h,
* config/tc-avr.c, * config/tc-avr.h, * config/tc-bfin.c,
* config/tc-bfin.h, * config/tc-bpf.c, * config/tc-cris.c,
* config/tc-csky.c, * config/tc-csky.h, * config/tc-d10v.c,
* config/tc-d10v.h, * config/tc-d30v.c, * config/tc-d30v.h,
* config/tc-dlx.c, * config/tc-dlx.h, * config/tc-epiphany.c,
* config/tc-epiphany.h, * config/tc-fr30.c, * config/tc-fr30.h,
* config/tc-frv.c, * config/tc-frv.h, * config/tc-ft32.c,
* config/tc-ft32.h, * config/tc-h8300.c, * config/tc-hppa.c,
* config/tc-i386-intel.c, * config/tc-i386.c, * config/tc-ia64.c,
* config/tc-ip2k.c, * config/tc-iq2000.c, * config/tc-iq2000.h,
* config/tc-lm32.c, * config/tc-lm32.h, * config/tc-m32c.c,
* config/tc-m32c.h, * config/tc-m32r.c, * config/tc-m32r.h,
* config/tc-m68hc11.c, * config/tc-m68k.c, * config/tc-mcore.c,
* config/tc-mcore.h, * config/tc-mep.c, * config/tc-mep.h,
* config/tc-metag.c, * config/tc-metag.h,
* config/tc-microblaze.c, * config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mn10200.c, * config/tc-mn10300.c,
* config/tc-mn10300.h, * config/tc-moxie.c, * config/tc-msp430.c,
* config/tc-msp430.h, * config/tc-mt.c, * config/tc-mt.h,
* config/tc-nds32.c, * config/tc-nds32.h, * config/tc-nios2.c,
* config/tc-ns32k.c, * config/tc-or1k.c, * config/tc-or1k.h,
* config/tc-pdp11.c, * config/tc-ppc.c, * config/tc-pru.c,
* config/tc-pru.h, * config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-rx.c, * config/tc-rx.h, * config/tc-s12z.c,
* config/tc-s12z.h, * config/tc-s390.c, * config/tc-score.c,
* config/tc-score.h, * config/tc-score7.c, * config/tc-sh.c,
* config/tc-sh.h, * config/tc-spu.c, * config/tc-tic54x.c,
* config/tc-tic6x.c, * config/tc-tic6x.h, * config/tc-tilegx.c,
* config/tc-tilepro.c, * config/tc-v850.c, * config/tc-v850.h,
* config/tc-visium.c, * config/tc-visium.h, * config/tc-wasm32.c,
* config/tc-wasm32.h, * config/tc-xc16x.c, * config/tc-xgate.c,
* config/tc-xstormy16.c, * config/tc-xstormy16.h,
* config/tc-xtensa.c, * config/tc-xtensa.h, * config/tc-z80.c,
* config/tc-z8k.c, * config/xtensa-istack.h,
* config/xtensa-relax.c, * config/xtensa-relax.h, * dw2gencfi.c,
* dwarf2dbg.c, * dwarf2dbg.h, * expr.c, * expr.h, * frags.c,
* frags.h, * listing.c, * macro.c, * output-file.c, * read.c,
* read.h, * stabs.c, * symbols.c, * write.c: Replace bfd_boolean
with bool, FALSE with false, and TRUE with true.
2021-03-31 08:12:05 +08:00
|
|
|
bool res;
|
2022-07-04 11:15:47 +08:00
|
|
|
bfd *obfd = stdoutput;
|
|
|
|
struct obstack **obs;
|
|
|
|
asection *sec;
|
2022-07-07 18:26:10 +08:00
|
|
|
const char *filename;
|
2006-09-27 19:14:59 +08:00
|
|
|
|
2022-07-04 11:15:47 +08:00
|
|
|
if (obfd == NULL)
|
2006-09-27 19:14:59 +08:00
|
|
|
return;
|
2013-01-11 03:51:55 +08:00
|
|
|
|
2022-07-04 11:15:47 +08:00
|
|
|
/* Prevent an infinite loop - if the close failed we will call as_fatal
|
|
|
|
which will call xexit() which may call this function again... */
|
|
|
|
stdoutput = NULL;
|
|
|
|
|
|
|
|
/* We can't free obstacks attached to the output bfd sections before
|
|
|
|
closing the output bfd since data in those obstacks may need to
|
|
|
|
be accessed, but we can't access anything in the output bfd after
|
|
|
|
it is closed.. */
|
|
|
|
for (sec = obfd->sections; sec; sec = sec->next)
|
|
|
|
stash_frchain_obs (sec);
|
|
|
|
stash_frchain_obs (reg_section);
|
|
|
|
stash_frchain_obs (expr_section);
|
|
|
|
stash_frchain_obs (bfd_abs_section_ptr);
|
|
|
|
stash_frchain_obs (bfd_und_section_ptr);
|
|
|
|
obstack_ptr_grow (¬es, NULL);
|
|
|
|
obs = obstack_finish (¬es);
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
/* Close the bfd. */
|
2020-02-10 08:57:16 +08:00
|
|
|
if (!flag_always_generate_output && had_errors ())
|
2023-01-27 10:01:27 +08:00
|
|
|
res = bfd_close_all_done (obfd);
|
2011-08-05 04:53:58 +08:00
|
|
|
else
|
2022-07-04 11:15:47 +08:00
|
|
|
res = bfd_close (obfd);
|
2023-01-11 13:01:06 +08:00
|
|
|
now_seg = NULL;
|
|
|
|
now_subseg = 0;
|
2006-09-27 19:14:59 +08:00
|
|
|
|
2022-07-07 18:26:10 +08:00
|
|
|
filename = out_file_name;
|
|
|
|
out_file_name = NULL;
|
|
|
|
if (!keep_it && filename)
|
|
|
|
unlink_if_ordinary (filename);
|
|
|
|
|
gas: rename md_end to md_finish
Currently md_end is typically used for some final actions rather than
freeing memory like other *_end functions. Rename it to md_finish,
and rename target implementation. The renaming of target functions
makes it possible to find them all with "grep md_finish",
eg. md_mips_end is renamed to mips_md_finish, not md_mips_finish.
This patch leaves a number of md_end functions unchanged, those that
either do nothing or deallocate memory, and calls them late.
The idea here is that target maintainers implement md_end functions to
tidy memory, if anyone cares. Freeing persistent memory in gas is
not at all important, except that it can hide more important memory
leaks, those that happen once per some frequent gas operation, amongst
these unimportant memory leaks.
* as.c (main): Rename md_end to md_finish.
* config/tc-alpha.c, * config/tc-alpha.h,
* config/tc-arc.c, * config/tc-arc.h,
* config/tc-arm.c, * config/tc-arm.h,
* config/tc-csky.c, * config/tc-csky.h,
* config/tc-ia64.c, * config/tc-ia64.h,
* config/tc-mcore.c, * config/tc-mcore.h,
* config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mmix.h,
* config/tc-msp430.c, * config/tc-msp430.h,
* config/tc-nds32.c, * config/tc-nds32.h,
* config/tc-ppc.c, * config/tc-ppc.h,
* config/tc-pru.c, * config/tc-pru.h,
* config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-s390.c, * config/tc-s390.h,
* config/tc-sparc.c, * config/tc-sparc.h,
* config/tc-tic4x.c, * config/tc-tic4x.h,
* config/tc-tic6x.c, * config/tc-tic6x.h,
* config/tc-v850.c, * config/tc-v850.h,
* config/tc-xtensa.c, * config/tc-xtensa.h,
* config/tc-z80.c, * config/tc-z80.h: Similarly.
* output-file.c (output_file_close): Call md_end.
2022-07-05 11:56:38 +08:00
|
|
|
#ifdef md_end
|
|
|
|
md_end ();
|
2023-02-01 20:41:30 +08:00
|
|
|
#endif
|
|
|
|
#ifdef obj_end
|
|
|
|
obj_end ();
|
gas: rename md_end to md_finish
Currently md_end is typically used for some final actions rather than
freeing memory like other *_end functions. Rename it to md_finish,
and rename target implementation. The renaming of target functions
makes it possible to find them all with "grep md_finish",
eg. md_mips_end is renamed to mips_md_finish, not md_mips_finish.
This patch leaves a number of md_end functions unchanged, those that
either do nothing or deallocate memory, and calls them late.
The idea here is that target maintainers implement md_end functions to
tidy memory, if anyone cares. Freeing persistent memory in gas is
not at all important, except that it can hide more important memory
leaks, those that happen once per some frequent gas operation, amongst
these unimportant memory leaks.
* as.c (main): Rename md_end to md_finish.
* config/tc-alpha.c, * config/tc-alpha.h,
* config/tc-arc.c, * config/tc-arc.h,
* config/tc-arm.c, * config/tc-arm.h,
* config/tc-csky.c, * config/tc-csky.h,
* config/tc-ia64.c, * config/tc-ia64.h,
* config/tc-mcore.c, * config/tc-mcore.h,
* config/tc-mips.c, * config/tc-mips.h,
* config/tc-mmix.c, * config/tc-mmix.h,
* config/tc-msp430.c, * config/tc-msp430.h,
* config/tc-nds32.c, * config/tc-nds32.h,
* config/tc-ppc.c, * config/tc-ppc.h,
* config/tc-pru.c, * config/tc-pru.h,
* config/tc-riscv.c, * config/tc-riscv.h,
* config/tc-s390.c, * config/tc-s390.h,
* config/tc-sparc.c, * config/tc-sparc.h,
* config/tc-tic4x.c, * config/tc-tic4x.h,
* config/tc-tic6x.c, * config/tc-tic6x.h,
* config/tc-v850.c, * config/tc-v850.h,
* config/tc-xtensa.c, * config/tc-xtensa.h,
* config/tc-z80.c, * config/tc-z80.h: Similarly.
* output-file.c (output_file_close): Call md_end.
2022-07-05 11:56:38 +08:00
|
|
|
#endif
|
2022-07-05 11:30:41 +08:00
|
|
|
macro_end ();
|
2023-01-14 19:43:54 +08:00
|
|
|
expr_end ();
|
2022-07-05 11:30:41 +08:00
|
|
|
read_end ();
|
|
|
|
symbol_end ();
|
2022-07-04 11:15:47 +08:00
|
|
|
subsegs_end (obs);
|
2006-09-27 19:14:59 +08:00
|
|
|
|
2022-07-07 18:26:10 +08:00
|
|
|
if (!res)
|
2020-11-24 06:15:33 +08:00
|
|
|
as_fatal ("%s: %s", filename, bfd_errmsg (bfd_get_error ()));
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|