Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

dwarves-1.24-2.el9 RPM for x86_64

From CentOS Stream 9 AppStream for x86_64

Name: dwarves Distribution: CentOS
Version: 1.24 Vendor: CentOS
Release: 2.el9 Build date: Wed Nov 16 08:42:55 2022
Group: Unspecified Build host: x86-06.stream.rdu2.redhat.com
Size: 413017 Source RPM: dwarves-1.24-2.el9.src.rpm
Packager: builder@centos.org
Url: http://acmel.wordpress.com
Summary: Debugging Information Manipulation Tools (pahole & friends)
dwarves is a set of tools that use the debugging information inserted in
ELF binaries by compilers such as GCC, used by well known debuggers such as
GDB, and more recent ones such as systemtap.

Utilities in the dwarves suite include pahole, that can be used to find
alignment holes in structs and classes in languages such as C, C++, but not
limited to these.

It also extracts other information such as CPU cacheline alignment, helping
pack those structures to achieve more cache hits.

These tools can also be used to encode and read the BTF type information format
used with the Linux kernel bpf syscall, using 'pahole -J' and 'pahole -F btf'.

A diff like tool, codiff can be used to compare the effects changes in source
code generate on the resulting binaries.

Another tool is pfunct, that can be used to find all sorts of information about
functions, inlines, decisions made by the compiler about inlining, etc.

One example of pfunct usage is in the fullcircle tool, a shell that drivers
pfunct to generate compileable code out of a .o file and then build it using
gcc, with the same compiler flags, and then use codiff to make sure the
original .o file and the new one generated from debug info produces the same
debug info.

Pahole also can be used to use all this type information to pretty print raw data
according to command line directions.

Headers can have its data format described from debugging info and offsets from
it can be used to further format a number of records.

The btfdiff utility compares the output of pahole from BTF and DWARF to make
sure they produce the same results.

Provides

Requires

License

GPLv2

Changelog

* Wed Nov 16 2022 Viktor Malik <vmalik@redhat.com> - 1.24-2
  - Backport BTF fix needed for kernel kfuncs
  - Related: rhbz#2140020
* Fri Nov 04 2022 Viktor Malik <vmalik@redhat.com> - 1.24-1
  - Resolves: rhbz#2140020
  - New release: v1.23
  - Process DW_TAG_LLVM_annotation tags.
  - Initial support for DW_TAG_skeleton_unit.
  - Encode BTF_KIND_TYPE_TAG and BTF_KIND_DECL_TAG
  - Fix handling of percpu symbols on s390.
  - Use cacheline size to infer struct member alignment from BTF.
  - Add --skip_missing to not stop when not finding one of -C arguments.
  - Fix __attribute__((__aligned__(N)) printing alignment for struct members.
  - Fix nested __attribute__(__aligned__(N)) struct printing order.
  - New release: v1.24
  - Add support to BTF_KIND_ENUM64.
  - Support multithreaded BTF encoding.
  - Encode char type as signed in BTF.
  - Introduce --lang and --lang_exclude to pahole.
  - Introduce --compile to pahole.
  - Don't segfault when processing bogus files.
* Wed Oct 06 2021 Jiri Olsa <jolsa@redhat.com> - 1.22-1
  - New release: v1.22
  - Resolves: rhbz#2010414
  - Introduce -j/--jobs option to specify the number of threads to use.
  - Multithreaded DWARF loading, requires elfutils >= 0.178.
  - Preparatory work for multithreaded BTF encoding, the focus for 1.23.
  - Allow encoding BTF to a separate file.
  - Show all different types with the same name, not just the first one found.
  - Stop assuming that reading from stdin means pretty, add --prettify.
  - Improve type resolution for the --header command line option.
  - Do not consider the ftrace filter when encoding BTF for kernel functions.
  - Lock calls to non-thread safe elfutils' dwarf_decl_file() and dwarf_decl_line().
  - Change hash table size to one that performs better with current typical vmlinux files.
  - Allow tweaking the hash table size from the command line.
  - Add --kabi_prefix to avoid deduplication woes when using _RH_KABI_REPLACE().
  - Add --with_flexible_array to show just types with flexible arrays.
  - Support btfdiff with a detached BTF file.
  - Introduce sorted type output (--sort).
  - Disable incomplete CTF encoder.
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.21-2
  - Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
    Related: rhbz#1991688
* Fri May 14 2021 Jiri Olsa <jolsa@redhat.com> - 1.21-1
  - remove ftrace filter
  - New release: v1.21
  - DWARF loader:
  - Handle DWARF5 DW_OP_addrx properly
  - Handle subprogram ret type with abstract_origin properly
  - Check .notes section for LTO build info
  - Check .debug_abbrev for cross-CU references
  - Permit merging all DWARF CU's for clang LTO built binary
  - Factor out common code to initialize a cu
  - Permit a flexible HASHTAGS__BITS
  - Use a better hashing function, from libbpf
  - btf_encoder:
  - Add --btf_gen_all flag
  - Match ftrace addresses within ELF functions
  - Funnel ELF error reporting through a macro
  - Sanitize non-regular int base type
  - Add support for the floating-point types
  - Pretty printer:
  - Honour conf_fprintf.hex when printing enumerations
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.20-2
  - Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Tue Feb 02 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.20-1
  - New release: v1.20
  - btf_encoder:
  - Improve ELF error reporting using elf_errmsg(elf_errno())
  - Improve objcopy error handling.
  - Fix handling of 'restrict' qualifier, that was being treated as a 'const'.
  - Support SHN_XINDEX in st_shndx symbol indexes
  - Cope with functions without a name
  - Fix BTF variable generation for kernel modules
  - Fix address size to match what is in the ELF file being processed.
  - Use kernel module ftrace addresses when finding which functions to encode.
  - libbpf:
  - Allow use of packaged version.
  - dwarf_loader:
  - Support DW_AT_data_bit_offset
  - DW_FORM_implicit_const in attr_numeric() and attr_offset()
  - Support DW_TAG_GNU_call_site, standardized rename of DW_TAG_GNU_call_site.
  - build:
  - Fix compilation on 32-bit architectures.
* Fri Nov 20 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.19-1
  - New release: 1.19
  - Split BTF
  - DWARF workarounds for DW_AT_declaration
  - Support cross-compiled ELF binaries with different endianness
  - Support showing typedefs for anonymous types
  - Speedups using libbpf algorithms
  - See changes-v1.19 for a complete and more detailed list of changes

Files

/usr/bin/btfdiff
/usr/bin/codiff
/usr/bin/ctracer
/usr/bin/dtagnames
/usr/bin/fullcircle
/usr/bin/ostra-cg
/usr/bin/pahole
/usr/bin/pdwtags
/usr/bin/pfunct
/usr/bin/pglobal
/usr/bin/prefcnt
/usr/bin/scncopy
/usr/bin/syscse
/usr/lib/.build-id
/usr/lib/.build-id/35
/usr/lib/.build-id/35/d913487bcdff1ebdf0221f92028cb450a18656
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/5e8bd1309e62fff1b2124b73d74e9748bafe86
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/d3c981c43a0328c260e3e546aca61b23d7ae34
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/127c08a70fcfa1d324a9a0c4f533ae3c1f87da
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/528eed2e1a132dbba84abfe4d85dab013019d1
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/a214141165556b53449a75163f40c93623fe6f
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/8dade9ec5c46b7ebbcb454b5f4e749b5dbd205
/usr/lib/.build-id/c0
/usr/lib/.build-id/c0/fec78d858dde6a9f054aca7aed9e372fe42912
/usr/lib/.build-id/c3
/usr/lib/.build-id/c3/13bae7aa971a77e98abb298eb194f73d1a959a
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/9aed309bc81b0e45332d70f3eef3b08078059d
/usr/share/doc/dwarves
/usr/share/doc/dwarves/NEWS
/usr/share/doc/dwarves/README.btf
/usr/share/doc/dwarves/README.ctracer
/usr/share/doc/dwarves/changes-v1.23
/usr/share/doc/dwarves/changes-v1.24
/usr/share/dwarves
/usr/share/dwarves/runtime
/usr/share/dwarves/runtime/Makefile
/usr/share/dwarves/runtime/ctracer_relay.c
/usr/share/dwarves/runtime/ctracer_relay.h
/usr/share/dwarves/runtime/linux.blacklist.cu
/usr/share/dwarves/runtime/python
/usr/share/dwarves/runtime/python/ostra.py
/usr/share/man/man1/pahole.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Apr 17 04:51:04 2024