pahole: Describe expected use of 'default' in the man page
[dwarves.git] / changes-v1.24
blobc6e19f6a8e8791eee06d30ecf8811fcf9e141fbf
1 BTF encoder:
3 - Add support to BTF_KIND_ENUM64 to represent enumeration entries
4   with more than 32 bits.
6 - Support multithreaded encoding, in addition to DWARF
7   multithreaded loading, speeding up the process.
9   Selected just like DWARF multithreaded loading, using the
10   'pahole -j' option.
12 - Encode 'char' type as signed.
14 BTF Loader:
16 - Add support to BTF_KIND_ENUM64.
18 pahole:
20 - Introduce --lang and --lang_exclude to specify the language the
21   DWARF compile units were originated from to use or filter.
23   Use case is to exclude Rust compile units while aspects of the
24   DWARF generated for it get sorted out in a way that the kernel
25   BPF verifier don't refuse loading the BTF generated from them.
27 - Introduce --compile to generate compilable code in a similar fashion to:
29    bpftool btf dump file vmlinux format c > vmlinux.h
31   As with 'bpftool', this will notice type shadowing, i.e. multiple types
32   with the same name and will disambiguate by adding a suffix.
34 - Don't segfault when processing bogus files.
36 Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>