19796 Commits

Author SHA1 Message Date
GDB Administrator
7109ea04ac Automatic date update in version.in 2025-03-31 00:00:13 +00:00
GDB Administrator
33e4d4fe62 Automatic date update in version.in 2025-03-30 00:00:09 +00:00
GDB Administrator
bdf6bbc0a7 Automatic date update in version.in 2025-03-29 00:00:12 +00:00
GDB Administrator
25fdd0e186 Automatic date update in version.in 2025-03-28 00:00:07 +00:00
GDB Administrator
d7940ce74a Automatic date update in version.in 2025-03-27 00:00:12 +00:00
Jerry Zhang Jian
a7ecc1ba97 RISC-V: add Smrnmi 1.0 instruction support
Add instruction `mnret' support

Ref:
bb8b9127f8/src/rnmi.adoc
946eb67387/extensions/rv_smrnmi

bfd/ChangeLog:
    * elfxx-riscv.c: Add new Smrnmi instruction class handling

gas/ChangeLog:
    * testsuite/gas/riscv/smrnmi.s: New test for mnret
    * testsuite/gas/riscv/rmrnmi.d: Likewise

include/ChangeLog:
    * opcode/ricsv-opc.h: Add MATCH_MNRET, MASK_MNRET
    * opcode/riscv.h: Add new instruction class

opcodes/ChangeLog:
    * riscv-opc.c: Add `mnret' instruction

Signed-off-by: Jerry Zhang Jian <jerry.zhangjian@sifive.com>
2025-03-26 10:16:05 +08:00
GDB Administrator
e5db6129d8 Automatic date update in version.in 2025-03-26 00:00:28 +00:00
GDB Administrator
ea10be6e89 Automatic date update in version.in 2025-03-25 00:00:11 +00:00
GDB Administrator
5825b728b1 Automatic date update in version.in 2025-03-24 00:00:08 +00:00
GDB Administrator
df1ed5c0d4 Automatic date update in version.in 2025-03-23 00:00:07 +00:00
GDB Administrator
af829d8b8d Automatic date update in version.in 2025-03-22 00:00:13 +00:00
Dongyan Chen
bc965121b5 RISC-V: Ssnpm, smnpm and smmpm imply zicsr.
According to the spec[1], imply zicsr for ssnpm, smnpm and smmpm.

[1] https://github.com/riscv/riscv-j-extension/blob/master/zjpm/instructions.adoc

bfd/ChangeLog:

	* elfxx-riscv.c: imply zicsr.
2025-03-21 10:58:53 +08:00
GDB Administrator
f3816fbcf8 Automatic date update in version.in 2025-03-21 00:00:29 +00:00
GDB Administrator
2084a5debf Automatic date update in version.in 2025-03-20 00:00:17 +00:00
GDB Administrator
82455bdab8 Automatic date update in version.in 2025-03-19 00:00:29 +00:00
Nick Clifton
7f6cdc6a9e
Updated translations for BFD and BINUTILS sub-directories 2025-03-18 12:25:19 +00:00
Jerry Zhang Jian
7b2a5f7183 RISC-V: Support pointer masking extension 1.0
- Adding Ssnpm, Smnpm, Smmpm, Sspm, and Supm
- No new CSR added
- Pointer masking only applies to RV64
- Ref: https://github.com/riscv/riscv-j-extension/releases/download/pointer-masking-ratified/pointer-masking-ratified.pdf

Signed-off-by: Jerry Zhang Jian <jerry.zhangjian@sifive.com>
2025-03-18 14:29:22 +08:00
Jin Ma
66b81b40dc RISC-V: Add extension XTheadVdot for T-Head VECTOR vendor extension [1]
T-Head has a range of vendor-specific instructions. Therefore
it makes sense to group them into smaller chunks in form of
vendor extensions.

This patch adds the additional extension "XTheadVdot" based on the
"V" extension, and it provides four 8-bit multiply and add with
32-bit instructions for the "v" extension. The 'th' prefix and the
"XTheadVector" extension are documented in a PR for the
RISC-V toolchain conventions ([2]).

Co-Authored-By: Lifang Xia <lifang_xia@linux.alibaba.com>

[1] https://github.com/XUANTIE-RV/thead-extension-spec/tree/master/xtheadvdot
[2] https://github.com/riscv-non-isa/riscv-toolchain-conventions/pull/19

bfd/ChangeLog:

	* elfxx-riscv.c (riscv_multi_subset_supports): Add support
	for "XTheadVdot" extension.
	(riscv_multi_subset_supports_ext): Likewise.

gas/ChangeLog:

	* doc/c-riscv.texi: Likewise.
	* testsuite/gas/riscv/march-help.l: Likewise.
	* testsuite/gas/riscv/x-thead-vdot.d: New test.
	* testsuite/gas/riscv/x-thead-vdot.s: New test.

include/ChangeLog:

	* opcode/riscv-opc.h (MATCH_TH_VMAQA_VV): New.
	* opcode/riscv.h (enum riscv_insn_class): Add insn class for
	XTheadVdot.

opcodes/ChangeLog:

	* riscv-opc.c: Likewise.
2025-03-18 12:27:26 +08:00
Nelson Chu
e4c9f0e6c3 RISC-V: Avoid parsing arch string repeatedly for dis-assembler
Since we now always generate $x+isa for now, these would increase the
dis-assemble time by parsing the same architecture string repeatedly.  We
already have `arch_str' field into `subset_list' to record the current
architecture stirng, but it's only useful for assembler, since dis-assembler
and linker don't need it before.  Now for dis-assembler, we just need to
update the `arch_str' after parsing the architecture stirng, and then avoid
parsing repeatedly if the strings are the same.
2025-03-18 12:16:27 +08:00
Nelson Chu
433ccc440b RISC-V: Free the returned string of riscv_arch_str if we call it multiple times
The string returned from riscv_arch_str is allocated by xmalloc, so once we
called it multiple times, we should keep the newest one for the output elf
architecture attribute, but free the remaining unused strings.
2025-03-18 12:15:11 +08:00
Nelson Chu
921d65b3f0 RISC-V: Fixed riscv_update_subset1 returning wrong boolean value
The riscv_update_subset1 returning wrong boolean value if the
riscv_parse_check_conflicts isn't called, though the current return value
doesn't really useful.
2025-03-18 12:13:48 +08:00
GDB Administrator
a7e5d97c12 Automatic date update in version.in 2025-03-18 00:00:18 +00:00
GDB Administrator
dad0da34b7 Automatic date update in version.in 2025-03-17 00:00:32 +00:00
GDB Administrator
a07c8b3a73 Automatic date update in version.in 2025-03-16 00:00:13 +00:00
GDB Administrator
c7d973ab61 Automatic date update in version.in 2025-03-15 00:00:15 +00:00
GDB Administrator
a64e445f7a Automatic date update in version.in 2025-03-14 00:00:17 +00:00
GDB Administrator
053438d7dd Automatic date update in version.in 2025-03-13 00:00:18 +00:00
GDB Administrator
cf4fdbd491 Automatic date update in version.in 2025-03-12 00:00:15 +00:00
GDB Administrator
827f39f7e5 Automatic date update in version.in 2025-03-11 00:00:21 +00:00
Alan Modra
ebed0bfecc meaningless p_offset for zero p_filesz PT_LOAD
This patch avoids generating PT_LOAD segments that trip a bug in
glibc's loader.

	PR 25237
	PR 32763
	* elf.c (assign_file_positions_for_load_sections): Don't put
	p_offset zero for empty PT_LOAD.
2025-03-10 23:02:19 +10:30
Alan Modra
b8c5ada174 Further tidies to bed->p_align code
align_pagesize was used for two things, reducing p->p_align from
maxpagesize to the bed->p_align value (section alignment permitting),
and increasing p->p_align above maxpagesize if section alignment
required that.  This patch untangles those two, making align_pagesize
only do the former.  p->p_align is set directly for the latter.  I've
made that change to p->p_align only when D_PAGED to keep things
consistent with other early assignments to p->p_align.  p->p_align is
set later according to section alignment when not D_PAGED.

I've also moved the place where align_pagesize adjusts p->p_align to
be with other code setting p->p_align.  That seemed better to me than
leaving it until the last possible moment.  Note that it isn't
necessary to have this adjustment done inside a test for a PT_LOAD
header, since we never set align_pagesize non-zero outside a PT_LOAD
test.

	* elf.c (assign_file_positions_for_load_sections): Clear
	align_pagesize whenever we have a section alignment more than
	bed->p_align.  Set p->p_align rather than align_pagesize
	when section alignment exceeds maxpagesize.  Assign p->p_align
	from align_pagesize earlier.
2025-03-10 23:01:54 +10:30
Alan Modra
ce53bc06f6 Tidy code handling bed->p_align a little.
No functional changes here, just preparation for the next patch.

	* elf.c (assign_file_positions_for_load_sections): Replace
	p_align_p and p_align with align_pagesize.  Revise comments
	on code handling bed->p_align.
2025-03-10 23:00:10 +10:30
Jens Remus
28704396ab ld: Cleanup sframe_decoder_init_func_bfdinfo use of reloc cookie
The loop did set cookie->rel to the i-th relocation twice.  At the
beginning using the loop counter.  At the end by incrementing.  One
approach is sufficient.

Change cookie to pointer-to-const, replace cookie->rel by rel,
initialize before the loop and increment at the end, and merge the
two assertions (for cookie->rel) into one.

While at it change sec to pointer-to-const.

bfd/
	* elf-sframe.c (sframe_decoder_init_func_bfdinfo): Cleanup use
	of relocation cookie.

Signed-off-by: Jens Remus <jremus@linux.ibm.com>
2025-03-10 13:14:08 +01:00
GDB Administrator
74f583e625 Automatic date update in version.in 2025-03-10 00:00:14 +00:00
Nelson Chu
512316811d RISC-V: PR32772, fixed segfault caused by the accidental removal of `h != NULL'
bfd/
	PR 32772
	* elfnn-riscv.c (riscv_elf_relocate_section): Fixed segfault caused by
	the accidental removal of `h != NULL' when handling a call to an
	undefined weak function.
2025-03-09 14:18:06 +08:00
GDB Administrator
fb2f3876d9 Automatic date update in version.in 2025-03-09 00:00:07 +00:00
Alan Modra
684f3e906c bfd_elf_parse_attr_section_v1 buffer overflow
This function has a misleading parameter "contents", which usually
means an entire section contents is passed.  However in this case the
actual sections contents plus one is passed, leading to miscalculating
the end of the buffer.

	* elf-attrs.c (bfd_elf_parse_attr_section_v1): Delete hdr and
	contents param.  Add p and p_end as params.
	(_bfd_elf_parse_attributes): Adjust to suit.
2025-03-08 21:36:41 +10:30
GDB Administrator
c56a8d595f Automatic date update in version.in 2025-03-08 00:00:07 +00:00
Nelson Chu
4295841be4 RISC-V: Go PLT for CALL/JUMP/RVC_JUMP if `h->plt.offset' isn't -1
I got an request about the undefined behaviors, considering the following case,

$ cat test.c
void main ()
{
  foo();
}
$ cat lib.h
void foo(void);
$ riscv64-unknown-linux-gnu-gcc test.c
riscv64-unknown-linux-gnu/bin/ld: /tmp/ccRO8fJl.o: in function `main':
test.c:(.text+0x8): undefined reference to `foo'
collect2: error: ld returned 1 exit status
$ riscv64-unknown-linux-gnu-gcc test.c -Wl,--unresolved-symbols=ignore-in-object-files
$ qemu-riscv64 a.out
Segmentation fault (core dumped)

Testing with x86 and aarch64, they won't get the segfault since they go plt
for the undefined foo symbol.  So, after applying this patch, I can get the
following too,

$ qemu-riscv64 a.out
a.out: symbol lookup error: a.out: undefined symbol: foo

The change of this patch should only affect the call behavior, which refer
to an undefined (weak) symbol, when building an dynamic executable.  I think
the pic/pie behavior won't be affected as usual.
2025-03-07 10:51:08 +08:00
GDB Administrator
1a764289c7 Automatic date update in version.in 2025-03-07 00:00:28 +00:00
GDB Administrator
34f65d9dee Automatic date update in version.in 2025-03-06 00:00:12 +00:00
Nick Clifton
5b412c6b4d
elfxx-aarch64.c: Replace nested function with a static inline version instead. 2025-03-05 10:45:35 +00:00
GDB Administrator
aa2cd0e39d Automatic date update in version.in 2025-03-05 00:00:24 +00:00
Matthieu Longo
cf38257778 refactoring elf_find_and_remove_property
This refactoring focuses primarily on code readability and reuse.
- Use the already defined _bfd_elf_find_property instead of another
  raw for-loop.
- Extract _bfd_elf_remove_property out of the function body.
2025-03-04 11:02:03 +00:00
Matthieu Longo
b2bc643e09 refactoring _bfd_elf_get_property
- Extract _bfd_elf_find_property and _bfd_elf_insert_property from the
  function's body to improve the code readability.
- Export _bfd_elf_find_property's symbol as it will be used in a later
  commit.
2025-03-04 11:02:03 +00:00
Matthieu Longo
005cd152ba refactoring bfd_linear_search_one_with_gnu_property
- remove the definition of the search predicate outside of the for loop.
- change the function's return type to struct to adopt a more functional
  coding style.
2025-03-04 11:02:03 +00:00
Matthieu Longo
2cf9acb79f aarch64: setup_gnu_properties only creates the notes section when none exists
The creation of .note.gnu.property section should not be based on the
presence of GNU properties, but rather on whether this section exits
or not.
However, there is one exception to this: PR23900 [1]. Old linkers were
treating .note.gnu.property as a generic note section, so old objects
might contain properties inside .note instead of .note.gnu.property. In
this case, the section won't be detected but the properties are still
parsed. So the absence of the .note.gnu.property section is necessary
but not enough to create the section. The condition of the creation of
the section has also to include the absence of GNU properties.

[1] PR23900: https://sourceware.org/bugzilla/show_bug.cgi?id=23900
2025-03-04 11:02:03 +00:00
Matthieu Longo
c5f3649c88 clean-up bfd/elf-attrs.c: move specific-code to parse object attributes v1 into a new function 2025-03-04 11:02:03 +00:00
Matthieu Longo
e025c481c8 clean-up bfd: rename functions for object attributes v1 2025-03-04 11:02:03 +00:00
Matthieu Longo
eb6e183be1 clean-up aarch64: move the name of the build attributes section into include/elf/aarch64.h 2025-03-04 11:02:03 +00:00