]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
bpf: include, bfd, opcodes: add EF_BPF_CPUVER ELF header flags
authorJose E. Marchesi <jose.marchesi@oracle.com>
Sun, 30 Jul 2023 20:39:30 +0000 (22:39 +0200)
committerJose E. Marchesi <jose.marchesi@oracle.com>
Sun, 30 Jul 2023 20:39:30 +0000 (22:39 +0200)
commit1e18ffc9915bb9d3bbcd934d8b3e57ae9fe82f60
tree92abdac23f41629b636c939591747e6fe5571ad9
parent0346042938539324a5052cc09023c1fe426e8b31
bpf: include, bfd, opcodes: add EF_BPF_CPUVER ELF header flags

This patch adds support for EF_BPF_CPUVER bits in the ELF
machine-dependent header flags.  These bits encode the BPF CPU
version for which the object file has been compiled for.

The BPF assembler is updated so it annotates the object files it
generates with these bits.

The BPF disassembler is updated so it honors EF_BPF_CPUVER to use the
appropriate ISA version if the user didn't specify an explicit ISA
version in the command line.  Note that a value of zero in
EF_BPF_CPUVER is interpreted by the disassembler as "use the later
supported version" (the BPF CPU versions start with v1.)

The readelf utility is updated to pretty print EF_BPF_CPUVER when it
prints out the ELF header:

   $ readelf -h a.out
   ELF Header:
     ...
     Flags:                             0x4, CPU Version: 4

Tested in bpf-unknown-none.

include/ChangeLog:

2023-07-30  Jose E. Marchesi  <jose.marchesi@oracle.com>

* elf/bpf.h (EF_BPF_CPUVER): Define.
* opcode/bpf.h (BPF_XBPF): Change from 0xf to 0xff so it fits in
EF_BPF_CPUVER.

binutils/ChangeLog:

2023-07-30  Jose E. Marchesi  <jose.marchesi@oracle.com>

* readelf.c (get_machine_flags): Recognize and pretty print BPF
machine flags.

opcodes/ChangeLog:

2023-07-30  Jose E. Marchesi  <jose.marchesi@oracle.com>

* bpf-dis.c: Initialize asm_bpf_version to -1.
(print_insn_bpf): Set BPF ISA version from the cpu version ELF
header flags if no explicit version set in the command line.
* disassemble.c (disassemble_init_for_target): Remove unused code.

gas/ChangeLog:

2023-07-30  Jose E. Marchesi  <jose.marchesi@oracle.com>

* config/tc-bpf.h (elf_tc_final_processing): Define.
* config/tc-bpf.c (bpf_elf_final_processing): New function.
12 files changed:
binutils/ChangeLog
binutils/readelf.c
gas/ChangeLog
gas/config/tc-bpf.c
gas/config/tc-bpf.h
gas/config/tc-sparc.c
include/ChangeLog
include/elf/bpf.h
include/opcode/bpf.h
opcodes/ChangeLog
opcodes/bpf-dis.c
opcodes/disassemble.c