binutils-gdb/bfd
Nelson Chu 8f595e9b4f [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR
1. Remove the -mriscv-isa-version and --with-riscv-isa-version options.
We can still use -march to choose the version for each extensions, so there is
no need to add these.

2. Change the arguments of options from [1p9|1p9p1|...] to [1.9|1.9.1|...].
Unlike the architecture string has specified by spec, ther is no need to do
the same thing for options.

3. Spilt the patches to reduce the burdens of review.

[PATCH 3/7] RISC-V: Support new GAS options and configure options to set ISA versions
to
[PATCH v2 3/9] RISC-V: Support GAS option -misa-spec to set ISA versions
[PATCH v2 4/9] RISC-V: Support configure options to set ISA versions by default.

[PATCH 4/7] RISC-V: Support version checking for CSR according to privilege version.
to
[PATCH v2 5/9] RISC-V: Support version checking for CSR according to privilege spec version.
[PATCH v2 6/9] RISC-V: Support configure option to choose the privilege spec version.

4. Use enum class rather than string to compare the choosen ISA spec in opcodes/riscv-opc.c.
The behavior is same as comparing the choosen privilege spec.

include	* opcode/riscv.h: Include "bfd.h" to support bfd_boolean.
	(enum riscv_isa_spec_class): New enum class.  All supported ISA spec
	belong to one of the class
	(struct riscv_ext_version): New structure holds version information
	for the specific ISA.
	* opcode/riscv-opc.h (DECLARE_CSR): There are two version information,
	define_version and abort_version.  The define_version means which
	privilege spec is started to define the CSR, and the abort_version
	means which privilege spec is started to abort the CSR.  If the CSR is
	valid for the newest spec, then the abort_version should be
	PRIV_SPEC_CLASS_DRAFT.
	(DECLARE_CSR_ALIAS): Same as DECLARE_CSR, but only for the obselete CSR.
	* opcode/riscv.h (enum riscv_priv_spec_class): New enum class.  Define
	the current supported privilege spec versions.
	(struct riscv_csr_extra): Add new fields to store more information
	about the CSR.  We use these information to find the suitable CSR
	address when user choosing a specific privilege spec.

binutils * dwarf.c: Updated since DECLARE_CSR is changed.

opcodes	* riscv-opc.c (riscv_ext_version_table): The table used to store
	all information about the supported spec and the corresponding ISA
	versions.  Currently, only Zicsr is supported to verify the
	correctness of Z sub extension settings.  Others will be supported
	in the future patches.
	(struct isa_spec_t, isa_specs): List for all supported ISA spec
	classes and the corresponding strings.
	(riscv_get_isa_spec_class): New function.  Get the corresponding ISA
	spec class by giving a ISA spec string.
	* riscv-opc.c (struct priv_spec_t): New structure.
	(struct priv_spec_t priv_specs): List for all supported privilege spec
	classes and the corresponding strings.
	(riscv_get_priv_spec_class): New function.  Get the corresponding
	privilege spec class by giving a spec string.
	(riscv_get_priv_spec_name): New function.  Get the corresponding
	privilege spec string by giving a CSR version class.
	* riscv-dis.c: Updated since DECLARE_CSR is changed.
	* riscv-dis.c: Add new disassembler option -Mpriv-spec to dump the CSR
	according to the chosen version.  Build a hash table riscv_csr_hash to
	store the valid CSR for the chosen pirv verison.  Dump the direct
	CSR address rather than it's name if it is invalid.
	(parse_riscv_dis_option_without_args): New function.  Parse the options
	without arguments.
	(parse_riscv_dis_option): Call parse_riscv_dis_option_without_args to
	parse the options without arguments first, and then handle the options
	with arguments.  Add the new option -Mpriv-spec, which has argument.
	* riscv-dis.c (print_riscv_disassembler_options): Add description
	about the new OBJDUMP option.

ld	* testsuite/ld-riscv-elf/attr-merge-arch-01.d: Updated
        priv attributes according to the -mpriv-spec option.
	* testsuite/ld-riscv-elf/attr-merge-arch-02.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-arch-03.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-priv-spec-a.s: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-priv-spec-b.s: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-priv-spec.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-stack-align.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-strict-align-01.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-strict-align-02.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-strict-align-03.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-strict-align-04.d: Likewise.
	* testsuite/ld-riscv-elf/attr-merge-strict-align-05.d: Likewise.

bfd 	* elfxx-riscv.h (riscv_parse_subset_t): Add new callback function
	get_default_version.  It is used to find the default version for
	the specific extension.
	* elfxx-riscv.c (riscv_parsing_subset_version): Remove the parameters
	default_major_version and default_minor_version.  Add new bfd_boolean
	parameter *use_default_version.  Set it to TRUE if we need to call
	the callback rps->get_default_version to find the default version.
	(riscv_parse_std_ext): Call rps->get_default_version if we fail to find
	the default version in riscv_parsing_subset_version, and then call
	riscv_add_subset to add the subset into subset list.
	(riscv_parse_prefixed_ext): Likewise.
	(riscv_std_z_ext_strtab): Support Zicsr extensions.
	* elfnn-riscv.c (riscv_merge_std_ext): Use strcasecmp to compare the
	strings rather than characters.
	riscv_merge_arch_attr_info): The callback function get_default_version
	is only needed for assembler, so set it to NULL int the linker.
	* elfxx-riscv.c (riscv_estimate_digit): Remove the static.
	* elfxx-riscv.h: Updated.

gas	* testsuite/gas/riscv/priv-reg-fail-read-only-01.s: Updated.
	* config/tc-riscv.c (default_arch_with_ext, default_isa_spec):
	Static variables which are used to set the ISA extensions. You can
	use -march (or ELF build attributes) and -misa-spec to set them,
	respectively.
	(ext_version_hash): The hash table used to handle the extensions
	with versions.
	(init_ext_version_hash): Initialize the ext_version_hash according
	to riscv_ext_version_table.
	(riscv_get_default_ext_version): The callback function of
	riscv_parse_subset_t.  According to the choosed ISA spec,
	get the default version for the specific extension.
	(riscv_set_arch): Set the callback function.
	(enum options, struct option md_longopts): Add new option -misa-spec.
	(md_parse_option): Do not call riscv_set_arch for -march.  We will
	call it later in riscv_after_parse_args.  Call riscv_get_isa_spec_class
	to set default_isa_spec class.
	(riscv_after_parse_args): Call init_ext_version_hash to initialize the
	ext_version_hash, and then call riscv_set_arch to set the architecture
	with versions according to default_arch_with_ext.
	* testsuite/gas/riscv/attribute-02.d: Set 0p0 as default version for
	x extensions.
	* testsuite/gas/riscv/attribute-03.d: Likewise.
	* testsuite/gas/riscv/attribute-09.d: New testcase.  For i-ext, we
	already set it's version to 2p1 by march, so no need to use the default
	2p2 version.  For m-ext, we do not set the version by -march and ELF arch
	attribute, so set the default 2p0 to it.  For zicsr, it is not defined in
	ISA spec 2p2, so set 0p0 to it.
	* testsuite/gas/riscv/attribute-10.d: New testcase.  The version of
	zicsr is 2p0 according to ISA spec 20191213.
	* config/tc-riscv.c (DEFAULT_RISCV_ARCH_WITH_EXT)
	(DEFAULT_RISCV_ISA_SPEC): Default configure option settings.
	You can set them by configure options --with-arch and
	--with-isa-spec, respectively.
	(riscv_set_default_isa_spec): New function used to set the
	default ISA spec.
	(md_parse_option): Call riscv_set_default_isa_spec rather than
	call riscv_get_isa_spec_class directly.
	(riscv_after_parse_args): If the -isa-spec is not set, then we
	set the default ISA spec according to DEFAULT_RISCV_ISA_SPEC by
	calling riscv_set_default_isa_spec.
	* testsuite/gas/riscv/attribute-01.d: Add -misa-spec=2.2, since
	the --with-isa-spec may be set to different ISA spec.
	* testsuite/gas/riscv/attribute-02.d: Likewise.
	* testsuite/gas/riscv/attribute-03.d: Likewise.
	* testsuite/gas/riscv/attribute-04.d: Likewise.
	* testsuite/gas/riscv/attribute-05.d: Likewise.
	* testsuite/gas/riscv/attribute-06.d: Likewise.
	* testsuite/gas/riscv/attribute-07.d: Likewise.
	* configure.ac: Add configure options, --with-arch and
	--with-isa-spec.
	* configure: Regenerated.
	* config.in: Regenerated.
	* config/tc-riscv.c (default_priv_spec): Static variable which is
	used to check if the CSR is valid for the chosen privilege spec. You
	can use -mpriv-spec to set it.
	(enum reg_class): We now get the CSR address from csr_extra_hash rather
	than reg_names_hash.  Therefore, move RCLASS_CSR behind RCLASS_MAX.
	(riscv_init_csr_hashes): Only need to initialize one hash table
	csr_extra_hash.
	(riscv_csr_class_check): Change the return type to void.  Don't check
	the ISA dependency if -mcsr-check isn't set.
	(riscv_csr_version_check): New function.  Check and find the CSR address
	from csr_extra_hash, according to default_priv_spec.  Report warning
	for the invalid CSR if -mcsr-check is set.
	(reg_csr_lookup_internal): Updated.
	(reg_lookup_internal): Likewise.
	(md_begin): Updated since DECLARE_CSR and DECLARE_CSR_ALIAS are changed.
	(enum options, struct option md_longopts): Add new GAS option -mpriv-spec.
	(md_parse_option): Call riscv_set_default_priv_version to set
	default_priv_spec.
	(riscv_after_parse_args): If -mpriv-spec isn't set, then set the default
	privilege spec to the newest one.
	(enum riscv_csr_class, struct riscv_csr_extra): Move them to
	include/opcode/riscv.h.
	* testsuite/gas/riscv/priv-reg-fail-fext.d: This test case just want
	to check the ISA dependency for CSR, so fix the spec version by adding
	-mpriv-spec=1.11.
	* testsuite/gas/riscv/priv-reg-fail-fext.l: Likewise.  There are some
	version warnings for the test case.
	* gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.d: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-read-only-01.l: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-read-only-02.d: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.d: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-rv32-only.l: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.d: New test case.
	Check whether the CSR is valid when privilege version 1.9 is choosed.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p9.l: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: New test case.
	Check whether the CSR is valid when privilege version 1.9.1 is choosed.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p9p1.l: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.d: New test case.
	Check whether the CSR is valid when privilege version 1.10 is choosed.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p10.l: Likewise.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.d: New test case.
	Check whether the CSR is valid when privilege version 1.11 is choosed.
	* gas/testsuite/gas/riscv/priv-reg-fail-version-1p11.l: Likewise.
	* config/tc-riscv.c (DEFAULT_RISCV_ISA_SPEC): Default configure option
	setting.  You can set it by configure option --with-priv-spec.
	(riscv_set_default_priv_spec): New function used to set the default
	privilege spec.
	(md_parse_option): Call riscv_set_default_priv_spec rather than
	call riscv_get_priv_spec_class directly.
	(riscv_after_parse_args): If -mpriv-spec isn't set, then we set the
	default privilege spec according to DEFAULT_RISCV_PRIV_SPEC by
	calling riscv_set_default_priv_spec.
	* testsuite/gas/riscv/csr-dw-regnums.d: Add -mpriv-spec=1.11, since
	the --with-priv-spec may be set to different privilege spec.
	* testsuite/gas/riscv/priv-reg.d: Likewise.
	* configure.ac: Add configure option --with-priv-spec.
	* configure: Regenerated.
	* config.in: Regenerated.
	* config/tc-riscv.c (explicit_attr): Rename explicit_arch_attr to
	explicit_attr.  Set it to TRUE if any ELF attribute is found.
	(riscv_set_default_priv_spec): Try to set the default_priv_spec if
	the priv attributes are set.
	(md_assemble): Set the default_priv_spec according to the priv
	attributes when we start to assemble instruction.
	(riscv_write_out_attrs): Rename riscv_write_out_arch_attr to
	riscv_write_out_attrs.  Update the arch and priv attributes.  If we
	don't set the corresponding ELF attributes, then try to output the
	default ones.
	(riscv_set_public_attributes): If any ELF attribute or -march-attr
	options is set (explicit_attr is TRUE), then call riscv_write_out_attrs
	to update the arch and priv attributes.
	(s_riscv_attribute): Make sure all arch and priv attributes are set
	before any instruction.
	* testsuite/gas/riscv/attribute-01.d: Update the priv attributes if any
	ELF attribute or -march-attr is set.  If the priv attributes are not
	set, then try to update them by the default setting (-mpriv-spec or
	--with-priv-spec).
	* testsuite/gas/riscv/attribute-02.d: Likewise.
	* testsuite/gas/riscv/attribute-03.d: Likewise.
	* testsuite/gas/riscv/attribute-04.d: Likewise.
	* testsuite/gas/riscv/attribute-06.d: Likewise.
	* testsuite/gas/riscv/attribute-07.d: Likewise.
	* testsuite/gas/riscv/attribute-08.d: Likewise.
	* testsuite/gas/riscv/attribute-09.d: Likewise.
	* testsuite/gas/riscv/attribute-10.d: Likewise.
	* testsuite/gas/riscv/attribute-unknown.d: Likewise.
	* testsuite/gas/riscv/attribute-05.d: Likewise.  Also, the priv spec
	set by priv attributes must be supported.
	* testsuite/gas/riscv/attribute-05.s: Likewise.
	* testsuite/gas/riscv/priv-reg-fail-version-1p9.d: Likewise.  Updated
	priv attributes according to the -mpriv-spec option.
	* testsuite/gas/riscv/priv-reg-fail-version-1p9p1.d: Likewise.
	* testsuite/gas/riscv/priv-reg-fail-version-1p10.d: Likewise.
	* testsuite/gas/riscv/priv-reg-fail-version-1p11.d: Likewise.
	* testsuite/gas/riscv/priv-reg.d: Removed.
	* testsuite/gas/riscv/priv-reg-version-1p9.d: New test case.  Dump the
	CSR according to the priv spec 1.9.
	* testsuite/gas/riscv/priv-reg-version-1p9p1.d: New test case.  Dump the
	CSR according to the priv spec 1.9.1.
	* testsuite/gas/riscv/priv-reg-version-1p10.d: New test case.  Dump the
	CSR according to the priv spec 1.10.
	* testsuite/gas/riscv/priv-reg-version-1p11.d: New test case.  Dump the
	CSR according to the priv spec 1.11.
	* config/tc-riscv.c (md_show_usage): Add descriptions about
	the new GAS options.
	* doc/c-riscv.texi: Likewise.
2020-05-20 17:22:48 +01:00
..
doc Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
hosts Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
po [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 2020-05-20 17:22:48 +01:00
.gitignore
acinclude.m4 Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aclocal.m4
aix5ppc-core.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
aix386-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
aout32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aout64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aout-cris.c [PATCH] bfd: tweak SET_ARCH_MACH of aout-cris.c 2020-05-04 16:07:26 +01:00
aout-ns32k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
aout-target.h Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
aout-tic30.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
aoutx.h Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
arc-got.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
arc-plt.def Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
arc-plt.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
archive64.c Large memory allocation reading fuzzed 64-bit archive 2020-03-05 11:15:55 +10:30
archive.c PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
archures.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
bfd-in2.h PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
bfd-in.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfd.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
bfd.m4 Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfdio.c win32 typo fix 2020-05-19 10:51:04 +09:30
bfdwin.c coff-go32-exe: support variable-length stubs 2020-04-02 14:31:43 +01:00
binary.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
cache.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
cf-i386lynx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ChangeLog [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 2020-05-20 17:22:48 +01:00
ChangeLog-0001
ChangeLog-0203
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013
ChangeLog-2014 ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog-2015
ChangeLog-2016
ChangeLog-2017
ChangeLog-2018
ChangeLog-2019 ChangeLog rotation 2020-01-01 18:12:08 +10:30
ChangeLog-9193
ChangeLog-9495
ChangeLog-9697
ChangeLog-9899
cisco-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
coff64-rs6000.c Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) 2020-04-15 14:25:08 +01:00
coff-alpha.c alpha-coff: unitialised read 2020-03-31 15:04:21 +10:30
coff-arm.c Indent labels 2020-02-26 10:37:25 +10:30
coff-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-bfd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-bfd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-go32.c [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
coff-i386.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
coff-ia64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
coff-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-mips.c miscellaneous SEC_SMALL_DATA 2020-03-02 11:36:19 +10:30
coff-ppc.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
coff-rs6000.c Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) 2020-04-15 14:25:08 +01:00
coff-sh.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
coff-stgo32.c [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
coff-tic4x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-tic30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-tic54x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-x86_64.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
coff-z8k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
coff-z80.c Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler. 2020-02-07 14:53:46 +00:00
coffcode.h [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
coffgen.c PR25961, buffer overflow in coff_swap_aux_in 2020-05-11 18:11:26 +09:30
cofflink.c [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
coffswap.h PR25961, buffer overflow in coff_swap_aux_in 2020-05-11 18:11:26 +09:30
compress.c BFD: Exclude sections with no content from compress check. 2020-04-21 15:17:18 +01:00
config.bfd x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
config.in plugin: Don't invoke LTO-wrapper 2020-03-20 03:55:30 -07:00
configure x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
configure.ac x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
configure.com Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
configure.host Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
COPYING
corefile.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-aarch64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-aarch64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-alpha.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-arc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-arm.c Indent labels 2020-02-26 10:37:25 +10:30
cpu-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-avr.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-bfin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-bpf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-cr16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-cris.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-crx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-csky.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-d10v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-d30v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-dlx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-epiphany.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-fr30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-frv.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ft32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-h8300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-h8300.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-hppa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-i386.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ia64-opc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-iamcu.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ip2k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-iq2000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-k1om.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-l1om.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-lm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m9s12x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m9s12xg.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m32c.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m32r.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68hc11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68hc12.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m68k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m10200.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-m10300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mep.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-metag.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-microblaze.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mips.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mmix.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-moxie.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-msp430.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-mt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nds32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nfp.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-nios2.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-ns32k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-or1k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pdp11.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pj.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-powerpc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-pru.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-riscv.c RISC-V: Fix gdbserver problem with handling arch strings. 2020-01-27 15:19:30 -08:00
cpu-rl78.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-rs6000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-rx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-s12z.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-s390.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-score.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-sparc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-spu.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic4x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic6x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tic54x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-tilepro.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-v850_rh850.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-v850.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-vax.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-visium.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-wasm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xc16x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xgate.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xstormy16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-xtensa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-z8k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cpu-z80.c Various fixes for the Z80 support. 2020-02-19 17:46:10 +00:00
dep-in.sed
development.sh Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
dwarf1.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
dwarf2.c PR25827, Null pointer dereferencing in scan_unit_for_symbols 2020-04-16 17:55:04 +09:30
ecoff-bfd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ecoff.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
ecofflink.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
ecoffswap.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-am33lin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-arc.c arc: Use correct string when printing bfd DEBUG data 2020-03-25 15:40:49 +10:30
elf32-arm.c Arm: Fix LSB of GOT for Thumb2 only PLT. 2020-04-01 10:52:33 +01:00
elf32-arm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-avr.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-avr.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-bfin.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf32-bfin.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-cr16.c Indent labels 2020-02-26 10:37:25 +10:30
elf32-cr16.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-cris.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-crx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-csky.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-csky.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-d10v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-d30v.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-dlx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-dlx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-epiphany.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-fr30.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-frv.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf32-ft32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-gen.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-h8300.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-hppa.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf32-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-i386.c x86: Only allow S + A relocations against absolute symbol 2020-04-01 14:31:47 -07:00
elf32-ip2k.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-iq2000.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-lm32.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-m32c.c _bfd_alloc_and_read 2020-02-19 14:00:55 +10:30
elf32-m32r.c Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) 2020-04-15 14:25:08 +01:00
elf32-m68hc1x.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-m68hc1x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-m68hc11.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-m68hc12.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-m68k.c Indent labels 2020-02-26 10:37:25 +10:30
elf32-m68k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-mep.c elf_backend_section_flags and _bfd_elf_init_private_section_data 2020-03-02 11:36:19 +10:30
elf32-metag.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-metag.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-microblaze.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-mips.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-moxie.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-msp430.c Indent labels 2020-02-26 10:37:25 +10:30
elf32-mt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-nds32.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf32-nds32.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-nios2.c Non-contiguous memory regions support: Avoid calls to abort 2020-03-18 10:09:43 +00:00
elf32-nios2.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-or1k.c OpenRISC BFD fixups for Glibc: 2020-05-19 14:26:33 +01:00
elf32-pj.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-ppc.c ppc32 merging of e_flags from dynamic objects 2020-05-01 15:32:36 +09:30
elf32-ppc.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-pru.c Indent labels 2020-02-26 10:37:25 +10:30
elf32-rl78.c _bfd_alloc_and_read 2020-02-19 14:00:55 +10:30
elf32-rx.c rx: memory allocation without checking for NULL return 2020-02-26 13:04:54 +10:30
elf32-rx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-s12z.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-s390.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-score7.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elf32-score.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elf32-score.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-sh-relocs.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-sh.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elf32-sparc.c ld: Fix several 32-bit SPARC plugin tests 2020-04-07 16:52:03 +02:00
elf32-spu.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf32-spu.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tic6x.c PR25882, .gnu.attributes are not checked for shared libraries 2020-05-01 15:32:36 +09:30
elf32-tic6x.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-tilepro.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-tilepro.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-v850.c ELF SEC_SMALL_DATA 2020-03-02 11:36:19 +10:30
elf32-v850.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-vax.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf32-visium.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-wasm32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xc16x.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xgate.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xstormy16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf32-xtensa.c xtensa: fix XTENSA_NDIFF handling for PR ld/25861 2020-04-29 18:34:23 -07:00
elf32-z80.c Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler. 2020-02-07 14:53:46 +00:00
elf32.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-alpha.c elf: Strip zero-sized dynamic sections 2020-04-21 05:24:03 -07:00
elf64-bpf.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-gen.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-hppa.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf64-hppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-ia64-vms.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elf64-mips.c _bfd_alloc_and_read 2020-02-19 14:00:55 +10:30
elf64-mmix.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf64-nfp.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-ppc.c Power10 VSX 32-byte storage access 2020-05-11 21:08:37 +09:30
elf64-ppc.h PowerPC64 __tls_get_addr_desc 2020-01-22 17:14:08 +10:30
elf64-s390.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf64-sparc.c _bfd_alloc_and_read 2020-02-19 14:00:55 +10:30
elf64-tilegx.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf64-x86-64.c x86: Only allow S + A relocations against absolute symbol 2020-04-01 14:31:47 -07:00
elf64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-attrs.c bfd_get_file_size calls 2020-02-19 13:14:05 +10:30
elf-bfd.h arc: Add support for ARC HS extra registers in core files 2020-04-23 11:09:09 +03:00
elf-eh-frame.c nios2: Add BFD support for GOT-relative DW_EH_PE_datarel encodings 2020-01-31 10:34:42 -08:00
elf-hppa.h bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf-ifunc.c Indent labels 2020-02-26 10:37:25 +10:30
elf-linker-x86.h x86: Check static link of dynamic objects 2020-03-13 07:39:06 -07:00
elf-linux-core.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-m10200.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-m10300.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elf-nacl.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-nacl.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-properties.c Indent labels 2020-02-26 10:37:25 +10:30
elf-s390-common.c Indent labels 2020-02-26 10:37:25 +10:30
elf-s390.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-strtab.c Indent labels 2020-02-26 10:37:25 +10:30
elf-vxworks.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf-vxworks.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elf.c PR26011, excessive memory allocation with fuzzed reloc sections 2020-05-20 07:59:15 +09:30
elfcode.h PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
elfcore.h Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elflink.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
elfn32-mips.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfnn-aarch64.c [PATCH v3] aarch64: Emit jump slot for conditional branch to undefined symbols 2020-05-19 11:07:52 +01:00
elfnn-ia64.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elfnn-riscv.c [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 2020-05-20 17:22:48 +01:00
elfxx-aarch64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-aarch64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-ia64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-mips.c FIXME for merging of e_flags and .gnu.attributes 2020-05-01 15:32:36 +09:30
elfxx-mips.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-riscv.c [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 2020-05-20 17:22:48 +01:00
elfxx-riscv.h [PATCH v2 0/9] RISC-V: Support version controling for ISA standard extensions and CSR 2020-05-20 17:22:48 +01:00
elfxx-sparc.c Indent labels 2020-02-26 10:37:25 +10:30
elfxx-sparc.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-target.h elf: Strip zero-sized dynamic sections 2020-04-21 05:24:03 -07:00
elfxx-tilegx.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
elfxx-tilegx.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
elfxx-x86.c x86: Only allow S + A relocations against absolute symbol 2020-04-01 14:31:47 -07:00
elfxx-x86.h x86: Only allow S + A relocations against absolute symbol 2020-04-01 14:31:47 -07:00
format.c Call cleanup on bfd_check_format_matches error exit 2020-03-04 11:40:01 +10:30
gen-aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
genlink.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
go32stub.h
hash.c bfd_size_type to size_t 2020-02-19 13:12:00 +10:30
host-aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
hppabsd-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
hpux-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
i386aout.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
i386bsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
i386lynx.c Indent labels 2020-02-26 10:37:25 +10:30
i386msdos.c Re: i386msdos uninitialised read 2020-03-26 20:02:42 +10:30
ihex.c PR25648, objcopy SIGSEGV in ihex_write_record 2020-03-10 11:05:07 +10:30
init.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
irix-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
libaout.h Fixes for the magic number used in PDP11 AOUT binaries. 2020-04-14 14:41:27 +01:00
libbfd-in.h Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function. 2020-03-26 10:46:25 +00:00
libbfd.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
libbfd.h xtensa: fix PR ld/25861 2020-04-22 18:46:45 -07:00
libcoff-in.h [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
libcoff.h [PATCH v2 2/2] coff-go32: support extended relocations 2020-04-14 17:30:01 +01:00
libecoff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libhppa.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libpei.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
libxcoff.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
linker.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
lynx-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
mach-o-aarch64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-arm.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-i386.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o-target.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
mach-o-x86-64.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
mach-o.c PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
mach-o.h bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
MAINTAINERS Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
Makefile.am Tidy bfd.pot 2020-01-31 10:47:46 +10:30
Makefile.in Tidy bfd.pot 2020-01-31 10:47:46 +10:30
makefile.vms Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
mep-relocs.pl Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
merge.c Fix several mix up between octets and bytes in ELF program headers 2020-03-13 15:48:01 +10:30
mmo.c mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)". 2020-04-01 04:03:46 +02:00
netbsd-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
netbsd.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ns32k.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ns32knetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
opncls.c PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
osf-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
pc532-mach.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pdp11.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
pe-arm-wince.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-arm.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-i386.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
pe-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-ppc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pe-x86_64.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
pef-traceback.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pef.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
pef.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-arm-wince.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-arm.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-i386.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-ia64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-mcore.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-ppc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-sh.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
pei-x86_64.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
peicode.h bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
peXXigen.c PR25823, Use after free in bfd_hash_lookup 2020-04-15 19:02:26 +09:30
plugin.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
plugin.h plugin: Don't invoke LTO-wrapper 2020-03-20 03:55:30 -07:00
PORTING Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ppcboot.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
ptrace-core.c Re: bfd_cleanup for object_p 2020-03-02 23:49:03 +10:30
README Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
reloc16.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
reloc.c xtensa: fix PR ld/25861 2020-04-22 18:46:45 -07:00
rs6000-core.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
sco5-core.c Re: bfd_cleanup for object_p 2020-03-03 00:12:44 +10:30
section.c bfd_is_const_section thinko 2020-04-18 10:24:17 +09:30
simple.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
som.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
som.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
srec.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
stab-syms.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
stabs.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
stamp-h.in
syms.c bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string 2020-03-24 15:37:26 -07:00
sysdep.h Fix spelling errors 2020-01-17 12:34:03 -06:00
targets.c x86: Add i386 PE big-object support 2020-04-27 17:41:39 +01:00
targmatch.sed
tekhex.c tekhex: Uninitialised read 2020-03-31 15:04:21 +10:30
TODO Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
trad-core.c trad_unix_core_file_p: Return bfd_cleanup 2020-03-02 04:35:23 -08:00
vax1knetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
vaxnetbsd.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
verilog.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
version.h Automatic date update in version.in 2020-05-20 00:00:07 +00:00
version.m4 Update version to 2.34.50. Regenerate configure and .pot files. 2020-01-18 14:12:07 +00:00
vms-alpha.c alpha-vms: divide by zero 2020-04-28 08:35:34 +09:30
vms-lib.c PR25993, read of freed memory 2020-05-20 11:43:50 +09:30
vms-misc.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
vms.h ubsan: alpha-vms: segv 2020-01-14 11:02:28 +10:30
warning.m4 Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
wasm-module.c asan: wasm: Out-of-memory 2020-03-09 10:10:36 +10:30
wasm-module.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xcofflink.c Use bfd_get_filename throughout bfd 2020-05-19 12:35:03 +09:30
xcofflink.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xsym.c bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
xsym.h bfd_cleanup for object_p 2020-03-02 19:30:48 +10:30
xtensa-isa.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
xtensa-modules.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

BFD is an object file library.  It permits applications to use the
same routines to process object files regardless of their format.

BFD is used by the GNU debugger, assembler, linker, and the binary
utilities.

The documentation on using BFD is scanty and may be occasionally
incorrect.  Pointers to documentation problems, or an entirely
rewritten manual, would be appreciated.

There is some BFD internals documentation in doc/bfdint.texi which may
help programmers who want to modify BFD.

BFD is normally built as part of another package.  See the build
instructions for that package, probably in a README file in the
appropriate directory.

BFD supports the following configure options:

  --target=TARGET
	The default target for which to build the library.  TARGET is
	a configuration target triplet, such as sparc-sun-solaris.
  --enable-targets=TARGET,TARGET,TARGET...
	Additional targets the library should support.  To include
	support for all known targets, use --enable-targets=all.
  --enable-64-bit-bfd
	Include support for 64 bit targets.  This is automatically
	turned on if you explicitly request a 64 bit target, but not
	for --enable-targets=all.  This requires a compiler with a 64
	bit integer type, such as gcc.
  --enable-shared
	Build BFD as a shared library.
  --with-mmap
	Use mmap when accessing files.  This is faster on some hosts,
	but slower on others.  It may not work on all hosts.

Report bugs with BFD to bug-binutils@gnu.org.

Patches are encouraged.  When sending patches, always send the output
of diff -u or diff -c from the original file to the new file.  Do not
send default diff output.  Do not make the diff from the new file to
the original file.  Remember that any patch must not break other
systems.  Remember that BFD must support cross compilation from any
host to any target, so patches which use ``#ifdef HOST'' are not
acceptable.  Please also read the ``Reporting Bugs'' section of the
gcc manual.

Bug reports without patches will be remembered, but they may never get
fixed until somebody volunteers to fix them.

Copyright (C) 2012-2020 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.