Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
@ -1 +0,0 @@
|
||||
ca9684e13a39c9333d2c54b09d421fd65c23d951 SOURCES/dwarves-1.22.tar.xz
|
17
.gitignore
vendored
17
.gitignore
vendored
@ -1 +1,16 @@
|
||||
SOURCES/dwarves-1.22.tar.xz
|
||||
/0001-cmake-libebl-was-merged-into-libdw.patch
|
||||
/0001-dwarves-Add-D_LARGEFILE64_SOURCE-D_FILE_OFFSET_BITS-.patch
|
||||
/libbpf-new.patch
|
||||
/dwarves-1.16.tar.xz
|
||||
/dwarves.spec
|
||||
/dirname-truncation.patch
|
||||
/dwarves-1.17.tar.xz
|
||||
/dwarves-1.19.tar.xz
|
||||
/dwarves-1.20.tar.xz
|
||||
/dwarves-1.21.tar.xz
|
||||
/0001-btf-Remove-ftrace-filter.patch
|
||||
/dwarves-1.22.tar.xz
|
||||
/dwarves-1.23.tar.xz
|
||||
/dwarves-1.24.tar.xz
|
||||
/dwarves-1.25.tar.xz
|
||||
/dwarves-1.27.tar.xz
|
||||
|
83
6a2b27c0f512619b0e7a769a18a0fb05bb3789a5.patch
Normal file
83
6a2b27c0f512619b0e7a769a18a0fb05bb3789a5.patch
Normal file
@ -0,0 +1,83 @@
|
||||
From 6a2b27c0f512619b0e7a769a18a0fb05bb3789a5 Mon Sep 17 00:00:00 2001
|
||||
From: Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
Date: Tue, 18 Jun 2024 10:37:30 -0300
|
||||
Subject: [PATCH] core: Initialize cu->node with INIT_LIST_HEAD()
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
In cu__new() zalloc() is used defensively, and that helped catch this
|
||||
problem where we assume that a cu us in the cus list of cu instances,
|
||||
but that is not the case when we use cus__merge_and_process_cu(), for
|
||||
instance when loading files created by clang with LTO, as reported by
|
||||
Peter Jung and narrowed down by Nathan Chancellor.
|
||||
|
||||
If we use INIT_LIST_HEAD() in cu__new() to initialize cu->node, which is
|
||||
what we do with other lists and nodes there, then the unconditional
|
||||
removal using list_del_init() will be a no-op and removing something not
|
||||
on the cus list of cu instances will not cause problems, just keep an
|
||||
unconsistent cus->nr_entries field.
|
||||
|
||||
So lets just have this fix in first, keeping Nathan's Tested-by and then
|
||||
do the a bit more involved fix of either adding that cu to the cus list
|
||||
or checking at removal time if it is there.
|
||||
|
||||
Program received signal SIGSEGV, Segmentation fault.
|
||||
0x00007ffff7f1e13e in __list_del (prev=0x0, next=0x0) at /home/acme/git/pahole/list.h:106
|
||||
106 next->prev = prev;
|
||||
(gdb) bt
|
||||
#0 0x00007ffff7f1e13e in __list_del (prev=0x0, next=0x0) at /home/acme/git/pahole/list.h:106
|
||||
#1 0x00007ffff7f1e176 in list_del_init (entry=0x417980) at /home/acme/git/pahole/list.h:165
|
||||
#2 0x00007ffff7f1f8f9 in __cus__remove (cus=0x4142a0, cu=0x417980) at /home/acme/git/pahole/dwarves.c:527
|
||||
#3 0x00007ffff7f1f92b in cus__remove (cus=0x4142a0, cu=0x417980) at /home/acme/git/pahole/dwarves.c:533
|
||||
#4 0x00007ffff7f3d01c in cus__finalize (cus=0x4142a0, cu=0x417980, conf=0x4133c0 <conf_load>, thr_data=0x0)
|
||||
at /home/acme/git/pahole/dwarf_loader.c:3040
|
||||
#5 0x00007ffff7f3e05c in cus__merge_and_process_cu (cus=0x4142a0, conf=0x4133c0 <conf_load>, mod=0x415cf0, dw=0x416110, elf=0x414380,
|
||||
filename=0x7fffffffe3f7 "cast_common.ko", build_id=0x416680 "\265D\371U\213\373u|\037\250\242\032\271\365⒜]y\023", build_id_len=20,
|
||||
type_dcu=0x0) at /home/acme/git/pahole/dwarf_loader.c:3482
|
||||
#6 0x00007ffff7f3e218 in cus__load_module (cus=0x4142a0, conf=0x4133c0 <conf_load>, mod=0x415cf0, dw=0x416110, elf=0x414380,
|
||||
filename=0x7fffffffe3f7 "cast_common.ko") at /home/acme/git/pahole/dwarf_loader.c:3521
|
||||
#7 0x00007ffff7f3e396 in cus__process_dwflmod (dwflmod=0x415cf0, userdata=0x415d00, name=0x415ea0 "cast_common.ko", base=65536,
|
||||
arg=0x7fffffffde40) at /home/acme/git/pahole/dwarf_loader.c:3581
|
||||
#8 0x00007ffff7eb4609 in dwfl_getmodules (dwfl=0x414300, callback=0x7ffff7f3e2ec <cus__process_dwflmod>, arg=0x7fffffffde40, offset=0)
|
||||
at ../libdwfl/dwfl_getmodules.c:86
|
||||
#9 0x00007ffff7f3e4c5 in cus__process_file (cus=0x4142a0, conf=0x4133c0 <conf_load>, fd=3, filename=0x7fffffffe3f7 "cast_common.ko")
|
||||
at /home/acme/git/pahole/dwarf_loader.c:3647
|
||||
#10 0x00007ffff7f3e5cd in dwarf__load_file (cus=0x4142a0, conf=0x4133c0 <conf_load>, filename=0x7fffffffe3f7 "cast_common.ko")
|
||||
at /home/acme/git/pahole/dwarf_loader.c:3684
|
||||
#11 0x00007ffff7f232df in cus__load_file (cus=0x4142a0, conf=0x4133c0 <conf_load>, filename=0x7fffffffe3f7 "cast_common.ko")
|
||||
at /home/acme/git/pahole/dwarves.c:2134
|
||||
#12 0x00007ffff7f23e8b in cus__load_files (cus=0x4142a0, conf=0x4133c0 <conf_load>, filenames=0x7fffffffe0f0)
|
||||
at /home/acme/git/pahole/dwarves.c:2637
|
||||
#13 0x000000000040aec0 in main (argc=2, argv=0x7fffffffe0e8) at /home/acme/git/pahole/pahole.c:3805
|
||||
(gdb) fr 1
|
||||
#1 0x00007ffff7f1e176 in list_del_init (entry=0x417980) at /home/acme/git/pahole/list.h:165
|
||||
165 __list_del(entry->prev, entry->next);
|
||||
(gdb) p entry
|
||||
$1 = (struct list_head *) 0x417980
|
||||
(gdb) p entry->next
|
||||
$2 = (struct list_head *) 0x0
|
||||
(gdb) p entry->prev
|
||||
$3 = (struct list_head *) 0x0
|
||||
|
||||
Closes: https://github.com/acmel/dwarves/issues/53
|
||||
Closes: https://gitlab.archlinux.org/archlinux/packaging/packages/pahole/-/issues/1
|
||||
Tested-by: Nathan Chancellor <nathan@kernel.org>
|
||||
Link: https://lore.kernel.org/all/20240617210810.GA1877676@thelio-3990X
|
||||
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
---
|
||||
dwarves.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/dwarves.c b/dwarves.c
|
||||
index 1ec259f5..823a0152 100644
|
||||
--- a/dwarves.c
|
||||
+++ b/dwarves.c
|
||||
@@ -739,6 +739,7 @@ struct cu *cu__new(const char *name, uint8_t addr_size,
|
||||
cu->dfops = NULL;
|
||||
INIT_LIST_HEAD(&cu->tags);
|
||||
INIT_LIST_HEAD(&cu->tool_list);
|
||||
+ INIT_LIST_HEAD(&cu->node);
|
||||
|
||||
cu->addr_size = addr_size;
|
||||
cu->extra_dbg_info = 0;
|
46
94a01bde592c555b3eb526aeb4c2ad695c5660d8.patch
Normal file
46
94a01bde592c555b3eb526aeb4c2ad695c5660d8.patch
Normal file
@ -0,0 +1,46 @@
|
||||
From 94a01bde592c555b3eb526aeb4c2ad695c5660d8 Mon Sep 17 00:00:00 2001
|
||||
From: Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
Date: Tue, 18 Jun 2024 11:14:09 -0300
|
||||
Subject: [PATCH] dwarf_loader: Add missing cus__add(cus, cu) to
|
||||
cus__merge_and_process_cu()
|
||||
|
||||
In cus__finalize() if cu__finalize() returns LSK__DELETE, i.e. if the
|
||||
tool processing the cu is done with it, we will assume that it is in the
|
||||
cus list of cu instances, remove it and then delete it.
|
||||
|
||||
This was not being done by cus__merge_and_process_cu(), used when
|
||||
merging all DWARF CUs into a single 'struct cu', such as when processing
|
||||
binaries generated by clang using LTO.
|
||||
|
||||
Add the missing cus__add() to keep cus->nr_entries consistent.
|
||||
|
||||
Cc: Alan Maguire <alan.maguire@oracle.com>
|
||||
Cc: Daniel Xu <dxu@dxuuu.xyz>
|
||||
Cc: Domenico Andreoli <cavok@debian.org>
|
||||
Cc: Dominique Leuenberger <dimstar@opensuse.org>
|
||||
Cc: Eduard Zingerman <eddyz87@gmail.com>
|
||||
Cc: Jan Alexander Steffens <heftig@archlinux.org>
|
||||
Cc: Jan Engelhardt <jengelh@inai.de>
|
||||
Cc: Jiri Olsa <jolsa@kernel.org>
|
||||
Cc: Matthias Schwarzott <zzam@gentoo.org>
|
||||
Cc: Nathan Chancellor <nathan@kernel.org>
|
||||
Cc: Viktor Malik <vmalik@redhat.com>
|
||||
Cc: Yonghong Song <yonghong.song@linux.dev>
|
||||
Link: https://lore.kernel.org/all/ZnGZ71a4E29kPrvS@x1
|
||||
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
---
|
||||
dwarf_loader.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/dwarf_loader.c b/dwarf_loader.c
|
||||
index b832c93c..3caf3245 100644
|
||||
--- a/dwarf_loader.c
|
||||
+++ b/dwarf_loader.c
|
||||
@@ -3452,6 +3452,7 @@ static int cus__merge_and_process_cu(struct cus *cus, struct conf_load *conf,
|
||||
cu->priv = dcu;
|
||||
cu->dfops = &dwarf__ops;
|
||||
cu->language = attr_numeric(cu_die, DW_AT_language);
|
||||
+ cus__add(cus, cu);
|
||||
}
|
||||
|
||||
Dwarf_Die child;
|
@ -1,151 +0,0 @@
|
||||
%define libname libdwarves
|
||||
%define libver 1
|
||||
|
||||
Name: dwarves
|
||||
Version: 1.22
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2
|
||||
Summary: Debugging Information Manipulation Tools (pahole & friends)
|
||||
URL: http://acmel.wordpress.com
|
||||
Source: http://fedorapeople.org/~acme/dwarves/%{name}-%{version}.tar.xz
|
||||
Requires: %{libname}%{libver} = %{version}-%{release}
|
||||
BuildRequires: gcc
|
||||
BuildRequires: cmake
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: elfutils-devel >= 0.130
|
||||
|
||||
%description
|
||||
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.
|
||||
|
||||
%package -n %{libname}%{libver}
|
||||
Summary: Debugging information processing library
|
||||
|
||||
%description -n %{libname}%{libver}
|
||||
Debugging information processing library.
|
||||
|
||||
%package -n %{libname}%{libver}-devel
|
||||
Summary: Debugging information library development files
|
||||
Requires: %{libname}%{libver} = %{version}-%{release}
|
||||
|
||||
%description -n %{libname}%{libver}-devel
|
||||
Debugging information processing library development files.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake -DCMAKE_BUILD_TYPE=Release .
|
||||
make VERBOSE=1 %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -Rf %{buildroot}
|
||||
make install DESTDIR=%{buildroot}
|
||||
|
||||
%ldconfig_scriptlets -n %{libname}%{libver}
|
||||
|
||||
%files
|
||||
%doc README.ctracer
|
||||
%doc README.btf
|
||||
%doc changes-v1.19
|
||||
%doc NEWS
|
||||
%{_bindir}/btfdiff
|
||||
%{_bindir}/codiff
|
||||
%{_bindir}/ctracer
|
||||
%{_bindir}/dtagnames
|
||||
%{_bindir}/fullcircle
|
||||
%{_bindir}/pahole
|
||||
%{_bindir}/pdwtags
|
||||
%{_bindir}/pfunct
|
||||
%{_bindir}/pglobal
|
||||
%{_bindir}/prefcnt
|
||||
%{_bindir}/scncopy
|
||||
%{_bindir}/syscse
|
||||
%{_bindir}/ostra-cg
|
||||
%dir %{_datadir}/dwarves/
|
||||
%dir %{_datadir}/dwarves/runtime/
|
||||
%dir %{_datadir}/dwarves/runtime/python/
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_mandir}/man1/pahole.1*
|
||||
%{_datadir}/dwarves/runtime/Makefile
|
||||
%{_datadir}/dwarves/runtime/linux.blacklist.cu
|
||||
%{_datadir}/dwarves/runtime/ctracer_relay.c
|
||||
%{_datadir}/dwarves/runtime/ctracer_relay.h
|
||||
%attr(0755,root,root) %{_datadir}/dwarves/runtime/python/ostra.py*
|
||||
|
||||
%files -n %{libname}%{libver}
|
||||
%{_libdir}/%{libname}.so.*
|
||||
%{_libdir}/%{libname}_emit.so.*
|
||||
%{_libdir}/%{libname}_reorganize.so.*
|
||||
|
||||
%files -n %{libname}%{libver}-devel
|
||||
%doc MANIFEST README
|
||||
%{_includedir}/dwarves/btf_encoder.h
|
||||
%{_includedir}/dwarves/config.h
|
||||
%{_includedir}/dwarves/ctf.h
|
||||
%{_includedir}/dwarves/dutil.h
|
||||
%{_includedir}/dwarves/dwarves.h
|
||||
%{_includedir}/dwarves/dwarves_emit.h
|
||||
%{_includedir}/dwarves/dwarves_reorganize.h
|
||||
%{_includedir}/dwarves/elfcreator.h
|
||||
%{_includedir}/dwarves/elf_symtab.h
|
||||
%{_includedir}/dwarves/gobuffer.h
|
||||
%{_includedir}/dwarves/hash.h
|
||||
%{_includedir}/dwarves/libctf.h
|
||||
%{_includedir}/dwarves/list.h
|
||||
%{_includedir}/dwarves/rbtree.h
|
||||
%{_libdir}/%{libname}.so
|
||||
%{_libdir}/%{libname}_emit.so
|
||||
%{_libdir}/%{libname}_reorganize.so
|
||||
|
||||
%changelog
|
||||
* Wed Oct 6 2021 Jiri Olsa <jolsa@redhat.com> - 1.22-1
|
||||
- moving to v1.22 version
|
||||
- Resolves: rhbz#2010429
|
||||
|
||||
* Fri Apr 23 2021 Jiri Olsa <jolsa@redhat.com> - 1.21-0
|
||||
- moving to v1.21 version
|
||||
|
||||
* Tue May 26 2020 Jiri Olsa <jolsa@redhat.com> - 1.17-1
|
||||
- moving to v1.17 version
|
||||
|
||||
* Wed Nov 06 2019 Jiri Olsa <jolsa@redhat.com> - 1.15-5
|
||||
- Add libdwarves version dependency to dwarves package
|
||||
|
||||
* Mon Nov 04 2019 Jiri Olsa <jolsa@redhat.com> - 1.15-4
|
||||
- CI rebuild
|
||||
|
||||
* Wed Sep 25 2019 Jiri Olsa <jolsa@redhat.com> - 1.15-1
|
||||
- Initial build
|
611
dwarves.spec
Normal file
611
dwarves.spec
Normal file
@ -0,0 +1,611 @@
|
||||
%define libname libdwarves
|
||||
%define libver 1
|
||||
|
||||
Name: dwarves
|
||||
Version: 1.27
|
||||
Release: 3%{?dist}
|
||||
License: GPL-2.0-only
|
||||
Summary: Debugging Information Manipulation Tools (pahole & friends)
|
||||
URL: http://acmel.wordpress.com
|
||||
Source: http://fedorapeople.org/~acme/dwarves/%{name}-%{version}.tar.xz
|
||||
# core: Initialize cu->node with INIT_LIST_HEAD()
|
||||
Patch: https://github.com/acmel/dwarves/commit/6a2b27c0f512619b0e7a769a18a0fb05bb3789a5.patch
|
||||
# dwarf_loader: Add missing cus__add(cus, cu) to cus__merge_and_process_cu()
|
||||
Patch: https://github.com/acmel/dwarves/commit/94a01bde592c555b3eb526aeb4c2ad695c5660d8.patch
|
||||
Requires: %{libname}%{libver} = %{version}-%{release}
|
||||
BuildRequires: gcc
|
||||
BuildRequires: cmake >= 2.8.12
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: elfutils-devel >= 0.130
|
||||
Provides: pahole
|
||||
|
||||
%description
|
||||
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.
|
||||
|
||||
%package -n %{libname}%{libver}
|
||||
Summary: Debugging information processing library
|
||||
|
||||
%description -n %{libname}%{libver}
|
||||
Debugging information processing library.
|
||||
|
||||
%package -n %{libname}%{libver}-devel
|
||||
Summary: Debugging information library development files
|
||||
Requires: %{libname}%{libver} = %{version}-%{release}
|
||||
|
||||
%description -n %{libname}%{libver}-devel
|
||||
Debugging information processing library development files.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%cmake -DCMAKE_BUILD_TYPE=Release .
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
rm -Rf %{buildroot}
|
||||
%cmake_install
|
||||
|
||||
%ldconfig_scriptlets -n %{libname}%{libver}
|
||||
|
||||
%files
|
||||
%doc README.ctracer
|
||||
%doc README.btf
|
||||
%doc changes-v1.26
|
||||
%doc changes-v1.27
|
||||
%doc NEWS
|
||||
%{_bindir}/btfdiff
|
||||
%{_bindir}/codiff
|
||||
%{_bindir}/ctracer
|
||||
%{_bindir}/dtagnames
|
||||
%{_bindir}/fullcircle
|
||||
%{_bindir}/pahole
|
||||
%{_bindir}/pdwtags
|
||||
%{_bindir}/pfunct
|
||||
%{_bindir}/pglobal
|
||||
%{_bindir}/prefcnt
|
||||
%{_bindir}/scncopy
|
||||
%{_bindir}/syscse
|
||||
%{_bindir}/ostra-cg
|
||||
%dir %{_datadir}/dwarves/
|
||||
%dir %{_datadir}/dwarves/runtime/
|
||||
%dir %{_datadir}/dwarves/runtime/python/
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_mandir}/man1/pahole.1*
|
||||
%{_datadir}/dwarves/runtime/Makefile
|
||||
%{_datadir}/dwarves/runtime/linux.blacklist.cu
|
||||
%{_datadir}/dwarves/runtime/ctracer_relay.c
|
||||
%{_datadir}/dwarves/runtime/ctracer_relay.h
|
||||
%attr(0755,root,root) %{_datadir}/dwarves/runtime/python/ostra.py*
|
||||
|
||||
%files -n %{libname}%{libver}
|
||||
%{_libdir}/%{libname}.so.*
|
||||
%{_libdir}/%{libname}_emit.so.*
|
||||
%{_libdir}/%{libname}_reorganize.so.*
|
||||
|
||||
%files -n %{libname}%{libver}-devel
|
||||
%doc MANIFEST README
|
||||
%{_includedir}/dwarves/btf_encoder.h
|
||||
%{_includedir}/dwarves/config.h
|
||||
%{_includedir}/dwarves/ctf.h
|
||||
%{_includedir}/dwarves/dutil.h
|
||||
%{_includedir}/dwarves/dwarves.h
|
||||
%{_includedir}/dwarves/dwarves_emit.h
|
||||
%{_includedir}/dwarves/dwarves_reorganize.h
|
||||
%{_includedir}/dwarves/elfcreator.h
|
||||
%{_includedir}/dwarves/elf_symtab.h
|
||||
%{_includedir}/dwarves/gobuffer.h
|
||||
%{_includedir}/dwarves/hash.h
|
||||
%{_includedir}/dwarves/libctf.h
|
||||
%{_includedir}/dwarves/list.h
|
||||
%{_includedir}/dwarves/rbtree.h
|
||||
%{_libdir}/%{libname}.so
|
||||
%{_libdir}/%{libname}_emit.so
|
||||
%{_libdir}/%{libname}_reorganize.so
|
||||
|
||||
%changelog
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.27-3
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Aug 12 2024 Davide Cavalca <dcavalca@centosproject.org> - 1.27-2
|
||||
- Backport upstream bugfixes for clang builds
|
||||
Resolves: RHEL-54228
|
||||
|
||||
* Wed Jun 26 2024 Viktor Malik <vmalik@redhat.com> - 1.27-1
|
||||
- Resolves: RHEL-45148
|
||||
- Add gating.yaml
|
||||
- Add "Provides: pahole"
|
||||
- New release: v1.26
|
||||
- When expanding types using 'pahole -E' do it for union and struct typedefs and for enums too.
|
||||
- Print number of holes, bit holes and bit paddings in class member types.
|
||||
- Introduce --contains_enumerator=ENUMERATOR_NAME:
|
||||
- Fix pretty printing using DWARF, waiting for a CU with both class (-C) and a specified "type_enum".
|
||||
- Add support for DW_TAG_constant in the DWARF loader, first seen in Go DWARF.
|
||||
- Fix loading DW_TAG_subroutine_type generated by the Go compiler.
|
||||
- Fix loading of 32-bit signed enums from BTF.
|
||||
- Add 'pahole --btf_features' to allow consumers to specify an opt-in set of features they want to use in BTF encoding.
|
||||
- Parallelize loading BTF and DWARF, speeding up a bit btfdiff.
|
||||
- Do type expansion to cover "private" types and enumerations in btfdiff.
|
||||
- New release: v1.27
|
||||
- Reproducible parallel builds: multiple runs with different number of loading/encoding threads produce the same result.
|
||||
- Inject kfunc decl tags into BTF from the BTF IDs ELF section in the Linux kernel vmlinux file.
|
||||
- Sanitize unsupported DWARF int type with greater-than-16 byte, as BTF doesn't support it.
|
||||
- Initial support for BTF_KIND_DECL_TAG in the BTF loader, adding support in pfunct output.
|
||||
- Fix hole discovery with inheritance in C++.
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.25-6
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.25-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.25-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Oct 11 2023 Viktor Malik <vmalik@redhat.com> - 1.25-3
|
||||
- Migrate license to SPDX
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.25-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Sat Apr 8 2023 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.25-1
|
||||
- New release: v1.25
|
||||
- Support for DW_TAG_unspecified_type more generally.
|
||||
- Make sure struct member offsets are in ascending order. Rust BTF needs this.
|
||||
- Support C atomic types (DW_TAG_atomic_type).
|
||||
- Initial support for DW_TAG_LLVM_annotation, used for BTF type tags, for __rcu, __user, etc
|
||||
- Exclude functions with the same name (static functions in different CUs), inconsistent prototypes or not following calling convention.
|
||||
- Allow generation of BTF for optimized functions, those that end with a .isra*, .constprop*.
|
||||
- Support 'pahole --lang=/--lang_exclude=asm'
|
||||
- Support --compile from DWARF in addition to from BTF.
|
||||
- Exclude RUST CUs in 'btfdiff', as those are not yet being BTF encoded.
|
||||
|
||||
* Fri Feb 17 2023 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.24-3
|
||||
- Backport the DW_TAG_unspecified_type support while 1.25 gets ready wrt optimized functions support
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.24-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Aug 17 2022 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.24-1
|
||||
- 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.
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.23-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Dec 8 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.23-1
|
||||
- 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.
|
||||
|
||||
* Mon Aug 23 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.22-1
|
||||
- New release: v1.22
|
||||
- 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.
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.21-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon May 10 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.21-2
|
||||
- Backport 0001-btf-Remove-ftrace-filter.patch from upstream
|
||||
|
||||
* Fri Apr 9 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.21-1
|
||||
- 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
|
||||
|
||||
* Tue Feb 2 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
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Jul 1 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.15-2
|
||||
- Fix bug when processing classes without members
|
||||
|
||||
* Thu Jun 27 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.15-1
|
||||
- New release: 1.15
|
||||
- Fix --expand_types/-E segfault
|
||||
- Fixup endless printing named structs inside structs in --expand_types
|
||||
- Avoid NULL deref with num config in __class__fprintf()
|
||||
|
||||
* Tue Apr 23 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.13-1
|
||||
- New release: 1.13
|
||||
- Infer __packed__ attributes, i.e. __attribute__((__packed__))
|
||||
- Support DW_AT_alignment, i.e. __attribute__((__aligned__(N)))
|
||||
- Decode BTF type format and pretty print it
|
||||
- BTF encoding fixes
|
||||
- Use libbpf's BTF deduplication
|
||||
- Support unions as arguments to -C/--class
|
||||
- New 'pfunct --compile' generates compilable output with type definitions
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Aug 31 2018 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.12-1
|
||||
- New release: 1.12
|
||||
- union member cacheline boundaries for all inner structs
|
||||
- print union member offsets
|
||||
- Document 'pahole --hex'
|
||||
- Encode BTF type format for use with eBPF
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Aug 03 2016 Cole Robinson <crobinso@redhat.com> - 1.10-9%{?dist}
|
||||
- pdwtags: don't fail on unhandled tags (bz 1348200)
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.10-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Sep 05 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.10-7
|
||||
- backport removal of DW_TAG_mutable_type
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Wed May 30 2012 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.10-1
|
||||
- New release
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sat Nov 20 2010 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.9-1
|
||||
- New release
|
||||
|
||||
* Mon Feb 08 2010 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Fri Dec 4 2009 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.8-1
|
||||
- New release
|
||||
|
||||
* Fri Feb 13 2009 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.7-2
|
||||
- Own /usr/share/dwarves, fixes #473645
|
||||
|
||||
* Fri Feb 13 2009 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.7-1
|
||||
- A CTF decoder based on work done by David S. Miller
|
||||
- Handle DW_TAG_class_type,
|
||||
- Add support for showing classes with a prefix
|
||||
- Add support to DW_TAG_ptr_to_member_type
|
||||
- Handle typedef definitions in functions
|
||||
- Print the number of members in a struct/class
|
||||
- Handle the empty base optimization trick (Zero sized C++ class)
|
||||
- codiff detect changes in the prototype even when function size doesn't change
|
||||
- pfunct: Implement --expand_types
|
||||
- Reduce memory consumption by using a strings table
|
||||
- Speed up struct search by name
|
||||
- Several minor bug fixes and infrastructure improvements.
|
||||
- Initial man page for pahole
|
||||
|
||||
* Mon Feb 11 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.6-1
|
||||
- c83d935a4fd561a3807f520c126c2a61ae1f4d83
|
||||
- [DWARVES]: Use a hash table for the tags in a CU
|
||||
|
||||
* Thu Feb 7 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.5-1
|
||||
- c4e49add9e48ff08a8ba4187ea43d795af995136
|
||||
- PAHOLE: Introduce --defined_in
|
||||
- DWARVES: Another fix for DW_TAG_base_type entries without DW_AT_name
|
||||
- PAHOLE: Cope with DW_TAG_basic_type entries without DW_AT_name
|
||||
- CODIFF: Allow passing /dev/null as one of the files to compare
|
||||
- DWARVES: Allow passing NULL as self to cu__find_
|
||||
- DWARVES: Fixup usage messages
|
||||
- DWARVES: Find holes in inner, nameless structs
|
||||
- DWARVES: Adopt tag__follow_typedef from pahole
|
||||
- DWARVES: Add some destructors: tag, cu, namespace
|
||||
- CODIFF: Check if the objects are the same when we have build-id
|
||||
- DWARVES: Introduce cu__same_build_id
|
||||
- DWARVES_REORGANIZE: Proper tail padding fixup
|
||||
- DWARVES: Don't search in empty structs
|
||||
- DWARVES: Follow const and volatile tags to its ultimate types
|
||||
- PAHOLE: Add a newline after the --class_dwarf_offset output
|
||||
- PAHOLE: Expose type__find_first_biggest_size_base_type_member
|
||||
- DWARVES: Introduce type__find_first_biggest_size_base_type_member
|
||||
- PAHOLE: Account arrays properly when changing word-size
|
||||
- PAHOLE: Follow typedefs too when resizing unions
|
||||
- PAHOLE: Follow typedefs to find if they are resized structs/unions
|
||||
- PAHOLE: Check if types of struct and union members were already resized
|
||||
- DWARVES_REORGANIZE: Fixup class__fixup_alingment
|
||||
- PAHOLE: Allow changing the architecture word-size
|
||||
- DWARVES_REORGANIZE: Adopt class__add_offsets_from and class__fixup_alignment from ctracer
|
||||
- DWARVES: build id support requires a recent elfutils package
|
||||
|
||||
* Sat Jan 5 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.4-1
|
||||
- 8e099cf5d1f204e9ea1a9c8c0f1a09a43458d9d3
|
||||
- codiff fixes
|
||||
|
||||
* Sun Dec 9 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.3-2
|
||||
- c6c71398cd2481e219ea3ef63f32c6479ba4f08f
|
||||
- SPEC file adjustments to follow http://fedoraproject.org/wiki/Packaging/cmake
|
||||
|
||||
* Sat Dec 8 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.3-1
|
||||
- c4ee21aa122f51f2601893b2118b7f7902d2f410
|
||||
- Fixed bitfield byte offset handling, now there are no
|
||||
more BRAIN FART alerts on a x86_64 linux kernel and on
|
||||
an old openbsd kernel image.
|
||||
|
||||
* Thu Dec 6 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.2-1
|
||||
- 07e0974f2c3798acb8e9a2d06f6b2ece7a01c508
|
||||
- Fix a patological bitfield case
|
||||
|
||||
* Thu Dec 6 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.1-1
|
||||
- 2c01420b51e889196b42a204910b46811ab22f1a
|
||||
- ctracer now generates systemtap scripts
|
||||
- Lots of other fixes, see git changelog.
|
||||
|
||||
* Tue May 8 2007 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.0-1
|
||||
- 161c6712f4ae1b7e2ea50df3a0d5c28310905cec
|
||||
- handle --help, -? --usage on with_executable_option()
|
||||
|
||||
* Tue May 8 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- b8eb5eb214f3897ea6faa3272879baa8bf2573c0
|
||||
- Fix cus__loadfl detection of --executable
|
||||
|
||||
* Sun May 6 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 05351ece16e5203717dd21a6fc1ad2e6ff87c203
|
||||
- libdwarves_emit
|
||||
|
||||
* Tue Apr 3 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- f3c4f527f70053e39b402005107ead6cb10e0b4a
|
||||
- Fix some --reorganize bugs
|
||||
|
||||
* Mon Apr 2 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 1ec66565a12ce7f197cd40e3901ed6be84935781
|
||||
- --reorganize improvements
|
||||
- --packable uses --reorganize code to show structs that can be packed by
|
||||
reorganization done with --reorganize.
|
||||
|
||||
* Fri Mar 30 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- fd3542317508d04e8178c5d391385d2aa50d6fb7
|
||||
- Use libdwfl in all tools that handle just one file, codiff and ctracer
|
||||
still need work and are still using plain libdw.
|
||||
|
||||
* Sun Feb 25 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 3c148cd84b74b89663febdefab23356952906502
|
||||
- _snprintf routines changed to _fprintf
|
||||
- codiff shows diffs in number and total size of inline expansions
|
||||
- codiff shows diffs in the number of lexblocks
|
||||
- better alignment in the --expand_types case
|
||||
- CMake improvements
|
||||
|
||||
* Fri Feb 2 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- d37f41df58c375412badf827e24dfc346cea2ff2
|
||||
- ostra-cg
|
||||
- relay/debugfs
|
||||
- mini-structs
|
||||
- ctracer2ostra
|
||||
- All this in the Makefile
|
||||
|
||||
* Fri Feb 2 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- b7cad1782d683571ffb2601b429ab151bddad5d7
|
||||
- pglobal, by Davi Arnaut
|
||||
- pahole --show_reorg_steps
|
||||
- Reorganize bitfields in pahole --reorganize
|
||||
|
||||
* Tue Jan 30 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 8e236f4ca37b8a3d2057f4ede5a14ab1fa99f73c
|
||||
- x86-64 lib install fixes
|
||||
|
||||
* Tue Jan 30 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 4a4b75e75a6d7f34215d320cc4a9f669b6ba4075
|
||||
- pahole --reorganize
|
||||
|
||||
* Mon Jan 29 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 2de67fcaf401ac1e20feca5fa88dfc63fbc4203e
|
||||
- Type expansion!
|
||||
|
||||
* Sat Jan 27 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- 6bf2d2d7707b65e7ca21a13706d8d07824cd6f2f
|
||||
- ctracer improvements, /usr/lib/ctracer/, etc
|
||||
|
||||
* Fri Jan 26 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
|
||||
- c49f2c963425d5c09c429370e10d9af3d7d7fe32
|
||||
- Emit typedefs of typedef arrays
|
||||
- Detect typedef loops
|
||||
- Fix emission of arrays of structs, unions, etc
|
||||
- use sysconf for the default cacheline size
|
||||
|
||||
* Thu Jan 18 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- fab0db03ea9046893ca110bb2b7d71b764f61033
|
||||
- pdwtags added
|
||||
|
||||
* Wed Jan 17 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- e3786105c007a39ff3dbfb36a3037e786021e0c6
|
||||
- First Fedora native build
|
||||
- struct, enum, enum, void typedefs
|
||||
|
||||
* Sat Jan 13 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- 9a413e60a3875980d99817722bf019cba3a24573
|
||||
- pahole --nr_methods, improvements in tag__print, better support for unions
|
||||
|
||||
* Fri Jan 12 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- a1f5422656a91568a8b4edbcebaae9c1837b5cbd
|
||||
- Support a DW_TAG_reference_type
|
||||
|
||||
* Fri Jan 12 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- 0ad467a32187e1929c14054a0fc7326bc4d235c8
|
||||
- Added a description
|
||||
|
||||
* Thu Jan 11 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- new release with type not found asserts replaced by error messages
|
||||
|
||||
* Thu Jan 11 2007 Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
|
||||
- package created
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
Loading…
Reference in New Issue
Block a user