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

dwarves-1.21-2.el9 RPM for x86_64

From CentOS Stream 9 AppStream for x86_64

Name: dwarves Distribution: CentOS
Version: 1.21 Vendor: CentOS
Release: 2.el9 Build date: Mon Aug 9 22:16:43 2021
Group: Unspecified Build host: x86-03.stream.rdu2.redhat.com
Size: 372830 Source RPM: dwarves-1.21-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

* 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
* Fri Oct 02 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.18-1
  - New release: 1.18
  - Use debugging info to pretty print raw data
  - Store percpu variables in vmlinux BTF.
  - Fixes to address segfaults on the gdb testsuite binaries
  - Bail out on partial units for now, avoiding segfaults and providing warning to user.
* Mon Aug 31 2020 - Zamir SUN <sztsian@gmail.com> - 1.17-4
  - Fix FTBFS
  - Resolves: bug 1863459
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17-3
  - Second attempt - Rebuilt for
    https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17-2
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Mar 13 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.17-1
  - New release: 1.17
  - Support raw BTF as available in /sys/kernel/btf/vmlinux.
  - When the sole argument passed isn't a file, take it as a class name:
  - Do not require a class name to operate without a file name.
  - Make --find_pointers_to consider unions:
  - Make --contains and --find_pointers_to honour --unions
  - Add support for finding pointers to void:
  - Make --contains and --find_pointers_to to work with base types:
  - Make --contains look for more than just unions, structs:
  - Consider unions when looking for classes containing some class:
  - Introduce --unions to consider just unions:
  - Fix -m/--nr_methods - Number of functions operating on a type pointer
* Wed Feb 12 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.16-1
  - New release: 1.16
  - BTF encoder: Preserve and encode exported functions as BTF_KIND_FUNC.
  - BTF loader: Add support for BTF_KIND_FUNC
  - Pretty printer: Account inline type __aligned__ member types for spacing
  - Pretty printer: Fix alignment of class members that are structs/enums/unions
  - Pretty printer: Avoid infinite loop trying to determine type with static data member of its own type.
  - RPM spec file:  Add dwarves dependency on libdwarves1.
  - pfunct: type->type == 0 is void, fix --compile for that
  - pdwtags: Print DW_TAG_subroutine_type as well
  - core: Fix ptr_table__add_with_id() handling of pt->nr_entries
  - pglobal: Allow passing the format path specifier, to use with BTF
  - Tree wide: Fixup issues pointed out by various coverity reports.
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-4
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

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/00
/usr/lib/.build-id/00/93f77ce8939071795c0462b14c8286ae3b63b9
/usr/lib/.build-id/15
/usr/lib/.build-id/15/d669cb784846aad9acd550523c2153d6660eb1
/usr/lib/.build-id/1d
/usr/lib/.build-id/1d/f5957fd6f4a945328b1c745b873bcd02fbd5bb
/usr/lib/.build-id/48
/usr/lib/.build-id/48/a116f52a4e8f78a5b20f6e48ca47024e3fd857
/usr/lib/.build-id/59
/usr/lib/.build-id/59/20a66a21e71de4db2a45753b3e31afca5c7a35
/usr/lib/.build-id/71
/usr/lib/.build-id/71/d63b3b7e6490f58c5c8aef34a0a1308c8c4aa7
/usr/lib/.build-id/84
/usr/lib/.build-id/84/7434c44d3aa059297773df44d94f49bc6ea897
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/1383b0527bc9bf67bf590cf8a2a099f98cf07d
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/662bbe8072c826fbcfb5802c78bfd166fc8d19
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/da6b0965a9664defa6dc5e1a3a003c5004fc9e
/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.21
/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 24 05:18:34 2024