gitextract_mpfftwx2/ ├── .cirrus.yml ├── .gitignore ├── .gitmodules ├── .tmuxp.yaml ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── azure-pipelines.yml ├── bin/ │ ├── pre-publish.sh │ └── publish.sh ├── examples/ │ └── simple/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ └── main.rs ├── scripts/ │ ├── build.bat │ ├── build.sh │ ├── test.bat │ └── test.sh ├── tracers/ │ ├── Cargo.toml │ ├── benches/ │ │ └── probe_firing.rs │ ├── build.rs │ ├── examples/ │ │ ├── simple.rs │ │ └── submodules.rs │ ├── src/ │ │ ├── bin/ │ │ │ ├── profile_target.rs │ │ │ ├── stap_probes.d │ │ │ ├── stap_probes.h │ │ │ ├── stap_probes.o │ │ │ ├── stap_probes.o.dtrace-temp.c │ │ │ └── testfire.rs │ │ └── lib.rs │ └── tests/ │ ├── custom_provider_names.rs │ └── simple.rs ├── tracers-build/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── tracers-codegen/ │ ├── Cargo.toml │ ├── src/ │ │ ├── argtypes.rs │ │ ├── build_rs.rs │ │ ├── cache.rs │ │ ├── cargo.rs │ │ ├── deps.rs │ │ ├── error.rs │ │ ├── gen/ │ │ │ ├── common/ │ │ │ │ └── mod.rs │ │ │ ├── dynamic/ │ │ │ │ ├── mod.rs │ │ │ │ ├── probe_call.rs │ │ │ │ └── provider_trait.rs │ │ │ ├── mod.rs │ │ │ └── static/ │ │ │ ├── c.rs │ │ │ ├── mod.rs │ │ │ ├── native_code/ │ │ │ │ ├── .gitignore │ │ │ │ ├── mod.rs │ │ │ │ └── target/ │ │ │ │ ├── lttng.rs │ │ │ │ ├── mod.rs │ │ │ │ └── stap.rs │ │ │ ├── probe_call.rs │ │ │ └── provider_trait.rs │ │ ├── hashing.rs │ │ ├── lib.rs │ │ ├── proc_macros.rs │ │ ├── serde_helpers.rs │ │ ├── spec/ │ │ │ ├── init_provider.rs │ │ │ ├── mod.rs │ │ │ ├── probe.rs │ │ │ ├── probe_arg.rs │ │ │ ├── probe_call.rs │ │ │ └── provider.rs │ │ ├── syn_helpers.rs │ │ └── testdata.rs │ ├── templates/ │ │ ├── lttng/ │ │ │ ├── provider.tp │ │ │ └── provider_wrapper.cpp │ │ └── stap/ │ │ ├── provider_wrapper.cpp │ │ └── sys_sdt.h │ └── testdata/ │ ├── complexlib/ │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── examples/ │ │ │ └── ex1.rs │ │ ├── src/ │ │ │ ├── bin/ │ │ │ │ ├── bin1.rs │ │ │ │ └── bin2.rs │ │ │ └── lib.rs │ │ └── tests/ │ │ ├── static/ │ │ │ └── mod.rs │ │ ├── test1.rs │ │ └── test2.rs │ ├── errors/ │ │ ├── Cargo.toml │ │ ├── src/ │ │ │ ├── child_mod/ │ │ │ │ ├── grandchild_mod.rs │ │ │ │ └── mod.rs │ │ │ └── main.rs │ │ └── tests/ │ │ ├── compile_errors.rs │ │ └── with_errors/ │ │ └── mod.rs │ ├── simplebin/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── child_module.rs │ │ └── main.rs │ └── simplelib/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── child_module.rs │ └── lib.rs ├── tracers-core/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── argtypes/ │ │ ├── bool.rs │ │ ├── cstring.rs │ │ ├── int.rs │ │ ├── native.rs │ │ ├── option.rs │ │ ├── pointer.rs │ │ ├── refs.rs │ │ └── string.rs │ ├── argtypes.rs │ ├── dynamic.rs │ └── lib.rs ├── tracers-dyn-noop/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── lib.rs │ ├── probe.rs │ ├── provider.rs │ └── tracer.rs ├── tracers-dyn-stap/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── lib.rs │ ├── probe.rs │ ├── provider.rs │ └── tracer.rs ├── tracers-libelf-sys/ │ ├── COPYING-LGPLV3 │ ├── Cargo.toml │ ├── LICENSE │ ├── bindgen.sh │ ├── build.rs │ ├── src/ │ │ ├── lib.h │ │ ├── lib.rs │ │ └── libelf.rs │ ├── update-elfutils.sh │ └── vendor/ │ └── libelf/ │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── CONTRIBUTING │ ├── COPYING │ ├── COPYING-GPLV2 │ ├── COPYING-LGPLV3 │ ├── ChangeLog │ ├── GPG-KEY │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── NOTES │ ├── README │ ├── THANKS │ ├── TODO │ ├── aclocal.m4 │ ├── backends/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aarch64_cfi.c │ │ ├── aarch64_corenote.c │ │ ├── aarch64_init.c │ │ ├── aarch64_initreg.c │ │ ├── aarch64_regs.c │ │ ├── aarch64_reloc.def │ │ ├── aarch64_retval.c │ │ ├── aarch64_symbol.c │ │ ├── aarch64_unwind.c │ │ ├── alpha_auxv.c │ │ ├── alpha_corenote.c │ │ ├── alpha_init.c │ │ ├── alpha_regs.c │ │ ├── alpha_reloc.def │ │ ├── alpha_retval.c │ │ ├── alpha_symbol.c │ │ ├── arm_attrs.c │ │ ├── arm_auxv.c │ │ ├── arm_cfi.c │ │ ├── arm_corenote.c │ │ ├── arm_init.c │ │ ├── arm_initreg.c │ │ ├── arm_regs.c │ │ ├── arm_reloc.def │ │ ├── arm_retval.c │ │ ├── arm_symbol.c │ │ ├── bpf_init.c │ │ ├── bpf_regs.c │ │ ├── bpf_reloc.def │ │ ├── bpf_symbol.c │ │ ├── common-reloc.c │ │ ├── i386_auxv.c │ │ ├── i386_cfi.c │ │ ├── i386_corenote.c │ │ ├── i386_init.c │ │ ├── i386_initreg.c │ │ ├── i386_regs.c │ │ ├── i386_reloc.def │ │ ├── i386_retval.c │ │ ├── i386_symbol.c │ │ ├── i386_syscall.c │ │ ├── i386_unwind.c │ │ ├── ia64_init.c │ │ ├── ia64_regs.c │ │ ├── ia64_reloc.def │ │ ├── ia64_retval.c │ │ ├── ia64_symbol.c │ │ ├── libebl_CPU.h │ │ ├── linux-core-note.c │ │ ├── m68k_cfi.c │ │ ├── m68k_corenote.c │ │ ├── m68k_init.c │ │ ├── m68k_initreg.c │ │ ├── m68k_regs.c │ │ ├── m68k_reloc.def │ │ ├── m68k_retval.c │ │ ├── m68k_symbol.c │ │ ├── ppc64_corenote.c │ │ ├── ppc64_init.c │ │ ├── ppc64_reloc.def │ │ ├── ppc64_resolve_sym.c │ │ ├── ppc64_retval.c │ │ ├── ppc64_symbol.c │ │ ├── ppc64_unwind.c │ │ ├── ppc_attrs.c │ │ ├── ppc_auxv.c │ │ ├── ppc_cfi.c │ │ ├── ppc_corenote.c │ │ ├── ppc_init.c │ │ ├── ppc_initreg.c │ │ ├── ppc_regs.c │ │ ├── ppc_reloc.def │ │ ├── ppc_retval.c │ │ ├── ppc_symbol.c │ │ ├── ppc_syscall.c │ │ ├── riscv64_corenote.c │ │ ├── riscv_cfi.c │ │ ├── riscv_corenote.c │ │ ├── riscv_init.c │ │ ├── riscv_initreg.c │ │ ├── riscv_regs.c │ │ ├── riscv_reloc.def │ │ ├── riscv_retval.c │ │ ├── riscv_symbol.c │ │ ├── s390_cfi.c │ │ ├── s390_corenote.c │ │ ├── s390_init.c │ │ ├── s390_initreg.c │ │ ├── s390_regs.c │ │ ├── s390_reloc.def │ │ ├── s390_retval.c │ │ ├── s390_symbol.c │ │ ├── s390_unwind.c │ │ ├── s390x_corenote.c │ │ ├── sh_corenote.c │ │ ├── sh_init.c │ │ ├── sh_regs.c │ │ ├── sh_reloc.def │ │ ├── sh_retval.c │ │ ├── sh_symbol.c │ │ ├── sparc64_corenote.c │ │ ├── sparc_attrs.c │ │ ├── sparc_auxv.c │ │ ├── sparc_cfi.c │ │ ├── sparc_corenote.c │ │ ├── sparc_init.c │ │ ├── sparc_initreg.c │ │ ├── sparc_regs.c │ │ ├── sparc_reloc.def │ │ ├── sparc_retval.c │ │ ├── sparc_symbol.c │ │ ├── tilegx_corenote.c │ │ ├── tilegx_init.c │ │ ├── tilegx_regs.c │ │ ├── tilegx_reloc.def │ │ ├── tilegx_retval.c │ │ ├── tilegx_symbol.c │ │ ├── x32_corenote.c │ │ ├── x86_64_cfi.c │ │ ├── x86_64_corenote.c │ │ ├── x86_64_init.c │ │ ├── x86_64_initreg.c │ │ ├── x86_64_regs.c │ │ ├── x86_64_reloc.def │ │ ├── x86_64_retval.c │ │ ├── x86_64_symbol.c │ │ ├── x86_64_syscall.c │ │ ├── x86_64_unwind.c │ │ └── x86_corenote.c │ ├── config/ │ │ ├── 10-default-yama-scope.conf │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ar-lib │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── elfutils.spec.in │ │ ├── eu.am │ │ ├── install-sh │ │ ├── known-dwarf.awk │ │ ├── libdw.pc.in │ │ ├── libelf.pc.in │ │ ├── missing │ │ ├── test-driver │ │ ├── version.h.in │ │ └── ylwrap │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── elfutils.spec │ ├── lib/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bpf.h │ │ ├── color.c │ │ ├── color.h │ │ ├── crc32.c │ │ ├── crc32_file.c │ │ ├── dynamicsizehash.c │ │ ├── dynamicsizehash.h │ │ ├── eu-config.h │ │ ├── fixedsizehash.h │ │ ├── libeu.h │ │ ├── list.h │ │ ├── next_prime.c │ │ ├── printversion.c │ │ ├── printversion.h │ │ ├── system.h │ │ ├── xmalloc.c │ │ ├── xstrdup.c │ │ └── xstrndup.c │ ├── libasm/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asm_abort.c │ │ ├── asm_addint16.c │ │ ├── asm_addint32.c │ │ ├── asm_addint64.c │ │ ├── asm_addint8.c │ │ ├── asm_addsleb128.c │ │ ├── asm_addstrz.c │ │ ├── asm_adduint16.c │ │ ├── asm_adduint32.c │ │ ├── asm_adduint64.c │ │ ├── asm_adduint8.c │ │ ├── asm_adduleb128.c │ │ ├── asm_align.c │ │ ├── asm_begin.c │ │ ├── asm_end.c │ │ ├── asm_error.c │ │ ├── asm_fill.c │ │ ├── asm_getelf.c │ │ ├── asm_newabssym.c │ │ ├── asm_newcomsym.c │ │ ├── asm_newscn.c │ │ ├── asm_newscn_ingrp.c │ │ ├── asm_newscngrp.c │ │ ├── asm_newsubscn.c │ │ ├── asm_newsym.c │ │ ├── asm_scngrp_newsignature.c │ │ ├── disasm_begin.c │ │ ├── disasm_cb.c │ │ ├── disasm_end.c │ │ ├── disasm_str.c │ │ ├── libasm.h │ │ ├── libasmP.h │ │ ├── symbolhash.c │ │ └── symbolhash.h │ ├── libcpu/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bpf_disasm.c │ │ ├── defs/ │ │ │ └── i386 │ │ ├── i386_data.h │ │ ├── i386_dis.h │ │ ├── i386_disasm.c │ │ ├── i386_gendis.c │ │ ├── i386_lex.c │ │ ├── i386_lex.l │ │ ├── i386_parse.c │ │ ├── i386_parse.h │ │ ├── i386_parse.y │ │ ├── memory-access.h │ │ ├── x86_64_dis.h │ │ └── x86_64_disasm.c │ ├── libdw/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cfi.c │ │ ├── cfi.h │ │ ├── cie.c │ │ ├── dwarf.h │ │ ├── dwarf_abbrev_hash.c │ │ ├── dwarf_abbrev_hash.h │ │ ├── dwarf_abbrevhaschildren.c │ │ ├── dwarf_addrdie.c │ │ ├── dwarf_aggregate_size.c │ │ ├── dwarf_arrayorder.c │ │ ├── dwarf_attr.c │ │ ├── dwarf_attr_integrate.c │ │ ├── dwarf_begin.c │ │ ├── dwarf_begin_elf.c │ │ ├── dwarf_bitoffset.c │ │ ├── dwarf_bitsize.c │ │ ├── dwarf_bytesize.c │ │ ├── dwarf_cfi_addrframe.c │ │ ├── dwarf_cfi_end.c │ │ ├── dwarf_child.c │ │ ├── dwarf_cu_die.c │ │ ├── dwarf_cu_getdwarf.c │ │ ├── dwarf_cu_info.c │ │ ├── dwarf_cuoffset.c │ │ ├── dwarf_decl_column.c │ │ ├── dwarf_decl_file.c │ │ ├── dwarf_decl_line.c │ │ ├── dwarf_default_lower_bound.c │ │ ├── dwarf_die_addr_die.c │ │ ├── dwarf_diecu.c │ │ ├── dwarf_diename.c │ │ ├── dwarf_dieoffset.c │ │ ├── dwarf_end.c │ │ ├── dwarf_entry_breakpoints.c │ │ ├── dwarf_entrypc.c │ │ ├── dwarf_error.c │ │ ├── dwarf_filesrc.c │ │ ├── dwarf_formaddr.c │ │ ├── dwarf_formblock.c │ │ ├── dwarf_formflag.c │ │ ├── dwarf_formref.c │ │ ├── dwarf_formref_die.c │ │ ├── dwarf_formsdata.c │ │ ├── dwarf_formstring.c │ │ ├── dwarf_formudata.c │ │ ├── dwarf_frame_cfa.c │ │ ├── dwarf_frame_info.c │ │ ├── dwarf_frame_register.c │ │ ├── dwarf_func_inline.c │ │ ├── dwarf_get_units.c │ │ ├── dwarf_getabbrev.c │ │ ├── dwarf_getabbrevattr.c │ │ ├── dwarf_getabbrevcode.c │ │ ├── dwarf_getabbrevtag.c │ │ ├── dwarf_getalt.c │ │ ├── dwarf_getarange_addr.c │ │ ├── dwarf_getarangeinfo.c │ │ ├── dwarf_getaranges.c │ │ ├── dwarf_getattrcnt.c │ │ ├── dwarf_getattrs.c │ │ ├── dwarf_getcfi.c │ │ ├── dwarf_getcfi_elf.c │ │ ├── dwarf_getelf.c │ │ ├── dwarf_getfuncs.c │ │ ├── dwarf_getlocation.c │ │ ├── dwarf_getlocation_attr.c │ │ ├── dwarf_getlocation_die.c │ │ ├── dwarf_getlocation_implicit_pointer.c │ │ ├── dwarf_getmacros.c │ │ ├── dwarf_getpubnames.c │ │ ├── dwarf_getscopes.c │ │ ├── dwarf_getscopes_die.c │ │ ├── dwarf_getscopevar.c │ │ ├── dwarf_getsrc_die.c │ │ ├── dwarf_getsrc_file.c │ │ ├── dwarf_getsrcdirs.c │ │ ├── dwarf_getsrcfiles.c │ │ ├── dwarf_getsrclines.c │ │ ├── dwarf_getstring.c │ │ ├── dwarf_hasattr.c │ │ ├── dwarf_hasattr_integrate.c │ │ ├── dwarf_haschildren.c │ │ ├── dwarf_hasform.c │ │ ├── dwarf_haspc.c │ │ ├── dwarf_highpc.c │ │ ├── dwarf_line_file.c │ │ ├── dwarf_lineaddr.c │ │ ├── dwarf_linebeginstatement.c │ │ ├── dwarf_lineblock.c │ │ ├── dwarf_linecol.c │ │ ├── dwarf_linediscriminator.c │ │ ├── dwarf_lineendsequence.c │ │ ├── dwarf_lineepiloguebegin.c │ │ ├── dwarf_lineisa.c │ │ ├── dwarf_lineno.c │ │ ├── dwarf_lineop_index.c │ │ ├── dwarf_lineprologueend.c │ │ ├── dwarf_linesrc.c │ │ ├── dwarf_lowpc.c │ │ ├── dwarf_macro_getparamcnt.c │ │ ├── dwarf_macro_getsrcfiles.c │ │ ├── dwarf_macro_opcode.c │ │ ├── dwarf_macro_param.c │ │ ├── dwarf_macro_param1.c │ │ ├── dwarf_macro_param2.c │ │ ├── dwarf_next_cfi.c │ │ ├── dwarf_next_lines.c │ │ ├── dwarf_nextcu.c │ │ ├── dwarf_offabbrev.c │ │ ├── dwarf_offdie.c │ │ ├── dwarf_onearange.c │ │ ├── dwarf_onesrcline.c │ │ ├── dwarf_peel_type.c │ │ ├── dwarf_ranges.c │ │ ├── dwarf_setalt.c │ │ ├── dwarf_siblingof.c │ │ ├── dwarf_sig8_hash.c │ │ ├── dwarf_sig8_hash.h │ │ ├── dwarf_srclang.c │ │ ├── dwarf_tag.c │ │ ├── dwarf_whatattr.c │ │ ├── dwarf_whatform.c │ │ ├── encoded-value.h │ │ ├── fde.c │ │ ├── frame-cache.c │ │ ├── known-dwarf.h │ │ ├── libdw.h │ │ ├── libdwP.h │ │ ├── libdw_alloc.c │ │ ├── libdw_find_split_unit.c │ │ ├── libdw_findcu.c │ │ ├── libdw_form.c │ │ ├── libdw_visit_scopes.c │ │ └── memory-access.h │ ├── libdwelf/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dwelf_dwarf_gnu_debugaltlink.c │ │ ├── dwelf_elf_begin.c │ │ ├── dwelf_elf_gnu_build_id.c │ │ ├── dwelf_elf_gnu_debuglink.c │ │ ├── dwelf_scn_gnu_compressed_size.c │ │ ├── dwelf_strtab.c │ │ ├── libdwelf.h │ │ └── libdwelfP.h │ ├── libdwfl/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── argp-std.c │ │ ├── bzip2.c │ │ ├── core-file.c │ │ ├── cu.c │ │ ├── derelocate.c │ │ ├── dwfl_addrdie.c │ │ ├── dwfl_addrdwarf.c │ │ ├── dwfl_addrmodule.c │ │ ├── dwfl_begin.c │ │ ├── dwfl_build_id_find_debuginfo.c │ │ ├── dwfl_build_id_find_elf.c │ │ ├── dwfl_cumodule.c │ │ ├── dwfl_dwarf_line.c │ │ ├── dwfl_end.c │ │ ├── dwfl_error.c │ │ ├── dwfl_frame.c │ │ ├── dwfl_frame_pc.c │ │ ├── dwfl_frame_regs.c │ │ ├── dwfl_getdwarf.c │ │ ├── dwfl_getmodules.c │ │ ├── dwfl_getsrc.c │ │ ├── dwfl_getsrclines.c │ │ ├── dwfl_line_comp_dir.c │ │ ├── dwfl_linecu.c │ │ ├── dwfl_lineinfo.c │ │ ├── dwfl_linemodule.c │ │ ├── dwfl_module.c │ │ ├── dwfl_module_addrdie.c │ │ ├── dwfl_module_addrname.c │ │ ├── dwfl_module_addrsym.c │ │ ├── dwfl_module_build_id.c │ │ ├── dwfl_module_dwarf_cfi.c │ │ ├── dwfl_module_eh_cfi.c │ │ ├── dwfl_module_getdwarf.c │ │ ├── dwfl_module_getelf.c │ │ ├── dwfl_module_getsrc.c │ │ ├── dwfl_module_getsrc_file.c │ │ ├── dwfl_module_getsym.c │ │ ├── dwfl_module_info.c │ │ ├── dwfl_module_nextcu.c │ │ ├── dwfl_module_register_names.c │ │ ├── dwfl_module_report_build_id.c │ │ ├── dwfl_module_return_value_location.c │ │ ├── dwfl_nextcu.c │ │ ├── dwfl_onesrcline.c │ │ ├── dwfl_report_elf.c │ │ ├── dwfl_segment_report_module.c │ │ ├── dwfl_validate_address.c │ │ ├── dwfl_version.c │ │ ├── elf-from-memory.c │ │ ├── find-debuginfo.c │ │ ├── frame_unwind.c │ │ ├── gzip.c │ │ ├── image-header.c │ │ ├── libdwfl.h │ │ ├── libdwflP.h │ │ ├── libdwfl_crc32.c │ │ ├── libdwfl_crc32_file.c │ │ ├── lines.c │ │ ├── link_map.c │ │ ├── linux-core-attach.c │ │ ├── linux-kernel-modules.c │ │ ├── linux-pid-attach.c │ │ ├── linux-proc-maps.c │ │ ├── lzma.c │ │ ├── offline.c │ │ ├── open.c │ │ ├── relocate.c │ │ └── segment.c │ ├── libebl/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ebl-hooks.h │ │ ├── ebl_check_special_section.c │ │ ├── ebl_check_special_symbol.c │ │ ├── ebl_data_marker_symbol.c │ │ ├── ebl_syscall_abi.c │ │ ├── eblabicfi.c │ │ ├── eblauxvinfo.c │ │ ├── eblbackendname.c │ │ ├── eblbsspltp.c │ │ ├── eblcheckobjattr.c │ │ ├── eblcheckreloctargettype.c │ │ ├── eblclosebackend.c │ │ ├── eblcopyrelocp.c │ │ ├── eblcorenote.c │ │ ├── eblcorenotetypename.c │ │ ├── ebldebugscnp.c │ │ ├── ebldwarftoregno.c │ │ ├── ebldynamictagcheck.c │ │ ├── ebldynamictagname.c │ │ ├── eblelfclass.c │ │ ├── eblelfdata.c │ │ ├── eblelfmachine.c │ │ ├── eblgotpcreloccheck.c │ │ ├── eblinitreg.c │ │ ├── eblmachineflagcheck.c │ │ ├── eblmachineflagname.c │ │ ├── eblmachinesectionflagcheck.c │ │ ├── eblnonerelocp.c │ │ ├── eblnormalizepc.c │ │ ├── eblobjnote.c │ │ ├── eblobjnotetypename.c │ │ ├── eblopenbackend.c │ │ ├── eblosabiname.c │ │ ├── eblreginfo.c │ │ ├── eblrelativerelocp.c │ │ ├── eblrelocsimpletype.c │ │ ├── eblreloctypecheck.c │ │ ├── eblreloctypename.c │ │ ├── eblrelocvaliduse.c │ │ ├── eblresolvesym.c │ │ ├── eblretval.c │ │ ├── eblsectionname.c │ │ ├── eblsectionstripp.c │ │ ├── eblsectiontypename.c │ │ ├── eblsegmenttypename.c │ │ ├── eblstother.c │ │ ├── eblsymbolbindingname.c │ │ ├── eblsymboltypename.c │ │ ├── eblsysvhashentrysize.c │ │ ├── eblunwind.c │ │ ├── libebl.h │ │ └── libeblP.h │ ├── libelf/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── abstract.h │ │ ├── chdr_xlate.h │ │ ├── common.h │ │ ├── dl-hash.h │ │ ├── elf-knowledge.h │ │ ├── elf.h │ │ ├── elf32_checksum.c │ │ ├── elf32_fsize.c │ │ ├── elf32_getchdr.c │ │ ├── elf32_getehdr.c │ │ ├── elf32_getphdr.c │ │ ├── elf32_getshdr.c │ │ ├── elf32_newehdr.c │ │ ├── elf32_newphdr.c │ │ ├── elf32_offscn.c │ │ ├── elf32_updatefile.c │ │ ├── elf32_updatenull.c │ │ ├── elf32_xlatetof.c │ │ ├── elf32_xlatetom.c │ │ ├── elf64_checksum.c │ │ ├── elf64_fsize.c │ │ ├── elf64_getchdr.c │ │ ├── elf64_getehdr.c │ │ ├── elf64_getphdr.c │ │ ├── elf64_getshdr.c │ │ ├── elf64_newehdr.c │ │ ├── elf64_newphdr.c │ │ ├── elf64_offscn.c │ │ ├── elf64_updatefile.c │ │ ├── elf64_updatenull.c │ │ ├── elf64_xlatetof.c │ │ ├── elf64_xlatetom.c │ │ ├── elf_begin.c │ │ ├── elf_clone.c │ │ ├── elf_cntl.c │ │ ├── elf_compress.c │ │ ├── elf_compress_gnu.c │ │ ├── elf_end.c │ │ ├── elf_error.c │ │ ├── elf_fill.c │ │ ├── elf_flagdata.c │ │ ├── elf_flagehdr.c │ │ ├── elf_flagelf.c │ │ ├── elf_flagphdr.c │ │ ├── elf_flagscn.c │ │ ├── elf_flagshdr.c │ │ ├── elf_getarhdr.c │ │ ├── elf_getaroff.c │ │ ├── elf_getarsym.c │ │ ├── elf_getbase.c │ │ ├── elf_getdata.c │ │ ├── elf_getdata_rawchunk.c │ │ ├── elf_getident.c │ │ ├── elf_getphdrnum.c │ │ ├── elf_getscn.c │ │ ├── elf_getshdrnum.c │ │ ├── elf_getshdrstrndx.c │ │ ├── elf_gnu_hash.c │ │ ├── elf_hash.c │ │ ├── elf_kind.c │ │ ├── elf_memory.c │ │ ├── elf_ndxscn.c │ │ ├── elf_newdata.c │ │ ├── elf_newscn.c │ │ ├── elf_next.c │ │ ├── elf_nextscn.c │ │ ├── elf_rand.c │ │ ├── elf_rawdata.c │ │ ├── elf_rawfile.c │ │ ├── elf_readall.c │ │ ├── elf_scnshndx.c │ │ ├── elf_strptr.c │ │ ├── elf_update.c │ │ ├── elf_version.c │ │ ├── exttypes.h │ │ ├── gelf.h │ │ ├── gelf_checksum.c │ │ ├── gelf_fsize.c │ │ ├── gelf_getauxv.c │ │ ├── gelf_getchdr.c │ │ ├── gelf_getclass.c │ │ ├── gelf_getdyn.c │ │ ├── gelf_getehdr.c │ │ ├── gelf_getlib.c │ │ ├── gelf_getmove.c │ │ ├── gelf_getnote.c │ │ ├── gelf_getphdr.c │ │ ├── gelf_getrel.c │ │ ├── gelf_getrela.c │ │ ├── gelf_getshdr.c │ │ ├── gelf_getsym.c │ │ ├── gelf_getsyminfo.c │ │ ├── gelf_getsymshndx.c │ │ ├── gelf_getverdaux.c │ │ ├── gelf_getverdef.c │ │ ├── gelf_getvernaux.c │ │ ├── gelf_getverneed.c │ │ ├── gelf_getversym.c │ │ ├── gelf_newehdr.c │ │ ├── gelf_newphdr.c │ │ ├── gelf_offscn.c │ │ ├── gelf_update_auxv.c │ │ ├── gelf_update_dyn.c │ │ ├── gelf_update_ehdr.c │ │ ├── gelf_update_lib.c │ │ ├── gelf_update_move.c │ │ ├── gelf_update_phdr.c │ │ ├── gelf_update_rel.c │ │ ├── gelf_update_rela.c │ │ ├── gelf_update_shdr.c │ │ ├── gelf_update_sym.c │ │ ├── gelf_update_syminfo.c │ │ ├── gelf_update_symshndx.c │ │ ├── gelf_update_verdaux.c │ │ ├── gelf_update_verdef.c │ │ ├── gelf_update_vernaux.c │ │ ├── gelf_update_verneed.c │ │ ├── gelf_update_versym.c │ │ ├── gelf_xlate.c │ │ ├── gelf_xlate.h │ │ ├── gelf_xlatetof.c │ │ ├── gelf_xlatetom.c │ │ ├── gnuhash_xlate.h │ │ ├── libelf.h │ │ ├── libelfP.h │ │ ├── libelf_crc32.c │ │ ├── libelf_next_prime.c │ │ ├── nlist.c │ │ ├── nlist.h │ │ ├── note_xlate.h │ │ └── version_xlate.h │ ├── m4/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── biarch.m4 │ │ ├── codeset.m4 │ │ ├── gettext.m4 │ │ ├── iconv.m4 │ │ ├── lcmessage.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ ├── progtest.m4 │ │ └── zip.m4 │ ├── po/ │ │ ├── ChangeLog │ │ ├── LINGUAS │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── boldquot.sed │ │ ├── de.gmo │ │ ├── de.po │ │ ├── elfutils.pot │ │ ├── en@boldquot.gmo │ │ ├── en@boldquot.header │ │ ├── en@boldquot.po │ │ ├── en@quot.gmo │ │ ├── en@quot.header │ │ ├── en@quot.po │ │ ├── es.gmo │ │ ├── es.po │ │ ├── insert-header.sin │ │ ├── ja.gmo │ │ ├── ja.po │ │ ├── pl.gmo │ │ ├── pl.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── stamp-po │ │ ├── uk.gmo │ │ └── uk.po │ ├── src/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── addr2line.c │ │ ├── ar.c │ │ ├── arlib-argp.c │ │ ├── arlib.c │ │ ├── arlib.h │ │ ├── arlib2.c │ │ ├── debugpred.h │ │ ├── elfcmp.c │ │ ├── elfcompress.c │ │ ├── elflint.c │ │ ├── findtextrel.c │ │ ├── make-debug-archive.in │ │ ├── nm.c │ │ ├── objdump.c │ │ ├── ranlib.c │ │ ├── readelf.c │ │ ├── size.c │ │ ├── stack.c │ │ ├── strings.c │ │ ├── strip.c │ │ └── unstrip.c │ ├── tests/ │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── addrcfi.c │ │ ├── addrscopes.c │ │ ├── addrx_constx-4.dwo.bz2 │ │ ├── addrx_constx-5.dwo.bz2 │ │ ├── addsections.c │ │ ├── aggregate_size.c │ │ ├── all-dwarf-ranges.c │ │ ├── alldts.c │ │ ├── allfcts.c │ │ ├── allregs.c │ │ ├── arextract.c │ │ ├── arls.c │ │ ├── arsymtest.c │ │ ├── asm-tst1.c │ │ ├── asm-tst2.c │ │ ├── asm-tst3.c │ │ ├── asm-tst4.c │ │ ├── asm-tst5.c │ │ ├── asm-tst6.c │ │ ├── asm-tst7.c │ │ ├── asm-tst8.c │ │ ├── asm-tst9.c │ │ ├── attr-integrate-skel.c │ │ ├── backtrace-child.c │ │ ├── backtrace-data.c │ │ ├── backtrace-dwarf.c │ │ ├── backtrace-subr.sh │ │ ├── backtrace.aarch64.core.bz2 │ │ ├── backtrace.aarch64.exec.bz2 │ │ ├── backtrace.aarch64.fp.core.bz2 │ │ ├── backtrace.aarch64.fp.exec.bz2 │ │ ├── backtrace.c │ │ ├── backtrace.i386.core.bz2 │ │ ├── backtrace.i386.exec.bz2 │ │ ├── backtrace.i386.fp.core.bz2 │ │ ├── backtrace.i386.fp.exec.bz2 │ │ ├── backtrace.ppc.core.bz2 │ │ ├── backtrace.ppc.exec.bz2 │ │ ├── backtrace.ppc64le.fp.core.bz2 │ │ ├── backtrace.ppc64le.fp.exec.bz2 │ │ ├── backtrace.s390.core.bz2 │ │ ├── backtrace.s390.exec.bz2 │ │ ├── backtrace.s390x.core.bz2 │ │ ├── backtrace.s390x.exec.bz2 │ │ ├── backtrace.sparc.core.bz2 │ │ ├── backtrace.sparc.exec.bz2 │ │ ├── backtrace.x32.core.bz2 │ │ ├── backtrace.x32.exec.bz2 │ │ ├── backtrace.x86_64.core.bz2 │ │ ├── backtrace.x86_64.exec.bz2 │ │ ├── backtrace.x86_64.fp.core.bz2 │ │ ├── backtrace.x86_64.fp.exec.bz2 │ │ ├── buildid.c │ │ ├── cleanup-13.c │ │ ├── coverage.sh │ │ ├── debug-ranges-no-lowpc.o.bz2 │ │ ├── debugaltlink.c │ │ ├── debuglink.c │ │ ├── deleted-lib.c │ │ ├── deleted.c │ │ ├── dwarf-die-addr-die.c │ │ ├── dwarf-getmacros.c │ │ ├── dwarf-getstring.c │ │ ├── dwarf-ranges.c │ │ ├── dwarf_default_lower_bound.c │ │ ├── dwarfcfi.c │ │ ├── dwelfgnucompressed.c │ │ ├── dwfl-addr-sect.c │ │ ├── dwfl-bug-addr-overflow.c │ │ ├── dwfl-bug-fd-leak.c │ │ ├── dwfl-bug-getmodules.c │ │ ├── dwfl-bug-report.c │ │ ├── dwfl-proc-attach.c │ │ ├── dwfl-report-elf-align.c │ │ ├── dwfllines.c │ │ ├── dwflmodtest.c │ │ ├── dwflsyms.c │ │ ├── early-offscn.c │ │ ├── ecp.c │ │ ├── elfcopy.c │ │ ├── elfgetchdr.c │ │ ├── elfgetzdata.c │ │ ├── elfputzdata.c │ │ ├── elfshphehdr.c │ │ ├── elfstrmerge.c │ │ ├── elfstrtab.c │ │ ├── emptyfile.c │ │ ├── fillfile.c │ │ ├── find-prologues.c │ │ ├── funcretval.c │ │ ├── funcretval_test.c │ │ ├── funcretval_test_aarch64.bz2 │ │ ├── funcscopes.c │ │ ├── get-aranges.c │ │ ├── get-files.c │ │ ├── get-lines.c │ │ ├── get-pubnames.c │ │ ├── get-units-invalid.c │ │ ├── get-units-split.c │ │ ├── getsrc_die.c │ │ ├── hash.c │ │ ├── hello_aarch64.ko.bz2 │ │ ├── hello_i386.ko.bz2 │ │ ├── hello_m68k.ko.bz2 │ │ ├── hello_ppc64.ko.bz2 │ │ ├── hello_riscv64.ko.bz2 │ │ ├── hello_s390.ko.bz2 │ │ ├── hello_x86_64.ko.bz2 │ │ ├── lfs-symbols │ │ ├── libtestfile_multi_shared.so.bz2 │ │ ├── line2addr.c │ │ ├── linkmap-cut-lib.so.bz2 │ │ ├── linkmap-cut.bz2 │ │ ├── linkmap-cut.core.bz2 │ │ ├── low_high_pc.c │ │ ├── msg_tst.c │ │ ├── newdata.c │ │ ├── newfile.c │ │ ├── newscn.c │ │ ├── next-files.c │ │ ├── next-lines.c │ │ ├── next_cfi.c │ │ ├── peel_type.c │ │ ├── rdwrmmap.c │ │ ├── rerequest_tag.c │ │ ├── run-addr2line-alt-debugpath.sh │ │ ├── run-addr2line-i-demangle-test.sh │ │ ├── run-addr2line-i-lex-test.sh │ │ ├── run-addr2line-i-test.sh │ │ ├── run-addr2line-test.sh │ │ ├── run-addrcfi.sh │ │ ├── run-addrname-test.sh │ │ ├── run-addrscopes.sh │ │ ├── run-aggregate-size.sh │ │ ├── run-all-dwarf-ranges.sh │ │ ├── run-alldts.sh │ │ ├── run-allfcts-multi.sh │ │ ├── run-allfcts.sh │ │ ├── run-allregs.sh │ │ ├── run-annobingroup.sh │ │ ├── run-ar.sh │ │ ├── run-arextract.sh │ │ ├── run-arsymtest.sh │ │ ├── run-attr-integrate-skel.sh │ │ ├── run-backtrace-core-aarch64.sh │ │ ├── run-backtrace-core-i386.sh │ │ ├── run-backtrace-core-ppc.sh │ │ ├── run-backtrace-core-s390.sh │ │ ├── run-backtrace-core-s390x.sh │ │ ├── run-backtrace-core-sparc.sh │ │ ├── run-backtrace-core-x32.sh │ │ ├── run-backtrace-core-x86_64.sh │ │ ├── run-backtrace-data.sh │ │ ├── run-backtrace-demangle.sh │ │ ├── run-backtrace-dwarf.sh │ │ ├── run-backtrace-fp-core-aarch64.sh │ │ ├── run-backtrace-fp-core-i386.sh │ │ ├── run-backtrace-fp-core-ppc64le.sh │ │ ├── run-backtrace-fp-core-x86_64.sh │ │ ├── run-backtrace-native-biarch.sh │ │ ├── run-backtrace-native-core-biarch.sh │ │ ├── run-backtrace-native-core.sh │ │ ├── run-backtrace-native.sh │ │ ├── run-bug1-test.sh │ │ ├── run-buildid.sh │ │ ├── run-compress-test.sh │ │ ├── run-copyadd-sections.sh │ │ ├── run-copymany-sections.sh │ │ ├── run-debugaltlink.sh │ │ ├── run-debuglink.sh │ │ ├── run-deleted.sh │ │ ├── run-disasm-bpf.sh │ │ ├── run-disasm-x86-64.sh │ │ ├── run-disasm-x86.sh │ │ ├── run-dwarf-die-addr-die.sh │ │ ├── run-dwarf-getmacros.sh │ │ ├── run-dwarf-getstring.sh │ │ ├── run-dwarf-ranges.sh │ │ ├── run-dwarfcfi.sh │ │ ├── run-dwelfgnucompressed.sh │ │ ├── run-dwfl-addr-sect.sh │ │ ├── run-dwfl-bug-offline-rel.sh │ │ ├── run-dwfl-report-elf-align.sh │ │ ├── run-dwfllines.sh │ │ ├── run-dwflsyms.sh │ │ ├── run-early-offscn.sh │ │ ├── run-ecp-test.sh │ │ ├── run-ecp-test2.sh │ │ ├── run-elf_cntl_gelf_getshdr.sh │ │ ├── run-elfgetchdr.sh │ │ ├── run-elfgetzdata.sh │ │ ├── run-elflint-self.sh │ │ ├── run-elflint-test.sh │ │ ├── run-elfputzdata.sh │ │ ├── run-elfstrmerge-test.sh │ │ ├── run-exprlocs-self.sh │ │ ├── run-exprlocs.sh │ │ ├── run-find-prologues.sh │ │ ├── run-funcretval.sh │ │ ├── run-funcscopes.sh │ │ ├── run-get-aranges.sh │ │ ├── run-get-files.sh │ │ ├── run-get-lines.sh │ │ ├── run-get-pubnames.sh │ │ ├── run-get-units-invalid.sh │ │ ├── run-get-units-split.sh │ │ ├── run-getsrc-die.sh │ │ ├── run-lfs-symbols.sh │ │ ├── run-line2addr.sh │ │ ├── run-linkmap-cut.sh │ │ ├── run-low_high_pc.sh │ │ ├── run-macro-test.sh │ │ ├── run-native-test.sh │ │ ├── run-next-cfi-self.sh │ │ ├── run-next-cfi.sh │ │ ├── run-next-files.sh │ │ ├── run-next-lines.sh │ │ ├── run-nm-self.sh │ │ ├── run-peel-type.sh │ │ ├── run-prelink-addr-test.sh │ │ ├── run-ranlib-test.sh │ │ ├── run-ranlib-test2.sh │ │ ├── run-ranlib-test3.sh │ │ ├── run-ranlib-test4.sh │ │ ├── run-readelf-A.sh │ │ ├── run-readelf-addr.sh │ │ ├── run-readelf-aranges.sh │ │ ├── run-readelf-compressed.sh │ │ ├── run-readelf-const-values.sh │ │ ├── run-readelf-d.sh │ │ ├── run-readelf-dwz-multi.sh │ │ ├── run-readelf-gdb_index.sh │ │ ├── run-readelf-info-plus.sh │ │ ├── run-readelf-line.sh │ │ ├── run-readelf-loc.sh │ │ ├── run-readelf-macro.sh │ │ ├── run-readelf-mixed-corenote.sh │ │ ├── run-readelf-n.sh │ │ ├── run-readelf-ranges.sh │ │ ├── run-readelf-s.sh │ │ ├── run-readelf-self.sh │ │ ├── run-readelf-str.sh │ │ ├── run-readelf-test1.sh │ │ ├── run-readelf-test2.sh │ │ ├── run-readelf-test3.sh │ │ ├── run-readelf-test4.sh │ │ ├── run-readelf-twofiles.sh │ │ ├── run-readelf-types.sh │ │ ├── run-readelf-variant.sh │ │ ├── run-readelf-vmcoreinfo.sh │ │ ├── run-readelf-z.sh │ │ ├── run-readelf-zdebug-rel.sh │ │ ├── run-readelf-zdebug.sh │ │ ├── run-readelf-zp.sh │ │ ├── run-readelf-zx.sh │ │ ├── run-reloc-bpf.sh │ │ ├── run-rerequest_tag.sh │ │ ├── run-show-abbrev.sh │ │ ├── run-show-die-info.sh │ │ ├── run-stack-d-test.sh │ │ ├── run-stack-demangled-test.sh │ │ ├── run-stack-i-test.sh │ │ ├── run-strings-test.sh │ │ ├── run-strip-g.sh │ │ ├── run-strip-groups.sh │ │ ├── run-strip-nobitsalign.sh │ │ ├── run-strip-nothing.sh │ │ ├── run-strip-reloc.sh │ │ ├── run-strip-remove-keep.sh │ │ ├── run-strip-strmerge.sh │ │ ├── run-strip-test-many.sh │ │ ├── run-strip-test.sh │ │ ├── run-strip-test10.sh │ │ ├── run-strip-test11.sh │ │ ├── run-strip-test12.sh │ │ ├── run-strip-test2.sh │ │ ├── run-strip-test3.sh │ │ ├── run-strip-test4.sh │ │ ├── run-strip-test5.sh │ │ ├── run-strip-test6.sh │ │ ├── run-strip-test7.sh │ │ ├── run-strip-test8.sh │ │ ├── run-strip-test9.sh │ │ ├── run-strip-version.sh │ │ ├── run-strptr.sh │ │ ├── run-test-archive64.sh │ │ ├── run-test-flag-nobits.sh │ │ ├── run-typeiter-many.sh │ │ ├── run-typeiter.sh │ │ ├── run-unit-info.sh │ │ ├── run-unstrip-M.sh │ │ ├── run-unstrip-n.sh │ │ ├── run-unstrip-test.sh │ │ ├── run-unstrip-test2.sh │ │ ├── run-unstrip-test3.sh │ │ ├── run-unstrip-test4.sh │ │ ├── run-varlocs-self.sh │ │ ├── run-varlocs.sh │ │ ├── run-zstrptr.sh │ │ ├── saridx.c │ │ ├── scnnames.c │ │ ├── sectiondump.c │ │ ├── show-abbrev.c │ │ ├── show-die-info.c │ │ ├── showptable.c │ │ ├── splitdwarf4-not-split4.dwo.bz2 │ │ ├── strptr.c │ │ ├── system-elf-libelf-test.c │ │ ├── test-core-lib.so.bz2 │ │ ├── test-core.core.bz2 │ │ ├── test-core.exec.bz2 │ │ ├── test-elf_cntl_gelf_getshdr.c │ │ ├── test-flag-nobits.c │ │ ├── test-nlist.c │ │ ├── test-offset-loop.alt.bz2 │ │ ├── test-offset-loop.bz2 │ │ ├── test-subr.sh │ │ ├── test-wrapper.sh │ │ ├── testarchive64.a.bz2 │ │ ├── testcore-rtlib-ppc.bz2 │ │ ├── testcore-rtlib.bz2 │ │ ├── testfile-ada-variant.bz2 │ │ ├── testfile-addrx_constx-4.bz2 │ │ ├── testfile-addrx_constx-5.bz2 │ │ ├── testfile-annobingroup-i386.o.bz2 │ │ ├── testfile-annobingroup-x86_64.o.bz2 │ │ ├── testfile-annobingroup.o.bz2 │ │ ├── testfile-backtrace-demangle.bz2 │ │ ├── testfile-backtrace-demangle.cc │ │ ├── testfile-backtrace-demangle.core.bz2 │ │ ├── testfile-bpf-dis1.expect.bz2 │ │ ├── testfile-bpf-dis1.o.bz2 │ │ ├── testfile-bpf-reloc.expect.bz2 │ │ ├── testfile-bpf-reloc.o.bz2 │ │ ├── testfile-const-values.debug.bz2 │ │ ├── testfile-debug-rel-g.o.bz2 │ │ ├── testfile-debug-rel-ppc64-g.o.bz2 │ │ ├── testfile-debug-rel-ppc64-z.o.bz2 │ │ ├── testfile-debug-rel-ppc64.o.bz2 │ │ ├── testfile-debug-rel-z.o.bz2 │ │ ├── testfile-debug-rel.o.bz2 │ │ ├── testfile-debug-types.bz2 │ │ ├── testfile-debug.bz2 │ │ ├── testfile-dwarf-4.bz2 │ │ ├── testfile-dwarf-45.source │ │ ├── testfile-dwarf-5.bz2 │ │ ├── testfile-dwfl-report-elf-align-shlib.so.bz2 │ │ ├── testfile-dwzstr.bz2 │ │ ├── testfile-dwzstr.multi.bz2 │ │ ├── testfile-gnu-property-note.bz2 │ │ ├── testfile-gnu-property-note.o.bz2 │ │ ├── testfile-hello4.dwo.bz2 │ │ ├── testfile-hello5.dwo.bz2 │ │ ├── testfile-info-link.bz2 │ │ ├── testfile-info-link.debuginfo.bz2 │ │ ├── testfile-info-link.stripped.bz2 │ │ ├── testfile-inlines.bz2 │ │ ├── testfile-lex-inlines.bz2 │ │ ├── testfile-m68k-core.bz2 │ │ ├── testfile-m68k-s.bz2 │ │ ├── testfile-m68k.bz2 │ │ ├── testfile-macinfo.bz2 │ │ ├── testfile-macros-0xff.bz2 │ │ ├── testfile-macros.bz2 │ │ ├── testfile-nobitsalign.bz2 │ │ ├── testfile-nobitsalign.strip.bz2 │ │ ├── testfile-nolfs.bz2 │ │ ├── testfile-only-debug-line.bz2 │ │ ├── testfile-ppc64-min-instr.bz2 │ │ ├── testfile-ranges-hello.dwo.bz2 │ │ ├── testfile-ranges-hello5.dwo.bz2 │ │ ├── testfile-ranges-world.dwo.bz2 │ │ ├── testfile-ranges-world5.dwo.bz2 │ │ ├── testfile-riscv64-core.bz2 │ │ ├── testfile-riscv64-s.bz2 │ │ ├── testfile-riscv64.bz2 │ │ ├── testfile-s390x-hash-both.bz2 │ │ ├── testfile-sizes1.o.bz2 │ │ ├── testfile-sizes2.o.bz2 │ │ ├── testfile-sizes3.o.bz2 │ │ ├── testfile-sizes4.o.bz2 │ │ ├── testfile-sizes4.s │ │ ├── testfile-splitdwarf-4.bz2 │ │ ├── testfile-splitdwarf-5.bz2 │ │ ├── testfile-splitdwarf4-not-split4.debug.bz2 │ │ ├── testfile-stridex.bz2 │ │ ├── testfile-strtab.bz2 │ │ ├── testfile-strtab.debuginfo.bz2 │ │ ├── testfile-strtab.stripped.bz2 │ │ ├── testfile-version.bz2 │ │ ├── testfile-world4.dwo.bz2 │ │ ├── testfile-world5.dwo.bz2 │ │ ├── testfile-x32-core.bz2 │ │ ├── testfile-x32-d.bz2 │ │ ├── testfile-x32-debug.bz2 │ │ ├── testfile-x32-s.bz2 │ │ ├── testfile-x32.bz2 │ │ ├── testfile-zdebug.bz2 │ │ ├── testfile-zgabi32.bz2 │ │ ├── testfile-zgabi32be.bz2 │ │ ├── testfile-zgabi64.bz2 │ │ ├── testfile-zgabi64be.bz2 │ │ ├── testfile-zgnu32.bz2 │ │ ├── testfile-zgnu32be.bz2 │ │ ├── testfile-zgnu64.bz2 │ │ ├── testfile-zgnu64be.bz2 │ │ ├── testfile.bz2 │ │ ├── testfile10.bz2 │ │ ├── testfile11-debugframe.bz2 │ │ ├── testfile11.bz2 │ │ ├── testfile12-debugframe.bz2 │ │ ├── testfile12.bz2 │ │ ├── testfile13.bz2 │ │ ├── testfile14.bz2 │ │ ├── testfile15.bz2 │ │ ├── testfile15.debug.bz2 │ │ ├── testfile16.bz2 │ │ ├── testfile16.debug.bz2 │ │ ├── testfile17.bz2 │ │ ├── testfile17.debug.bz2 │ │ ├── testfile18.bz2 │ │ ├── testfile19.bz2 │ │ ├── testfile19.index.bz2 │ │ ├── testfile2.bz2 │ │ ├── testfile20.bz2 │ │ ├── testfile20.index.bz2 │ │ ├── testfile21.bz2 │ │ ├── testfile21.index.bz2 │ │ ├── testfile22.bz2 │ │ ├── testfile23.bz2 │ │ ├── testfile24.bz2 │ │ ├── testfile25.bz2 │ │ ├── testfile26.bz2 │ │ ├── testfile27.bz2 │ │ ├── testfile28.bz2 │ │ ├── testfile28.rdwr.bz2 │ │ ├── testfile29.bz2 │ │ ├── testfile29.rdwr.bz2 │ │ ├── testfile3.bz2 │ │ ├── testfile30.bz2 │ │ ├── testfile31.bz2 │ │ ├── testfile32.bz2 │ │ ├── testfile33.bz2 │ │ ├── testfile34.bz2 │ │ ├── testfile35.bz2 │ │ ├── testfile35.debug.bz2 │ │ ├── testfile36.bz2 │ │ ├── testfile36.debug.bz2 │ │ ├── testfile37.bz2 │ │ ├── testfile37.debug.bz2 │ │ ├── testfile38.bz2 │ │ ├── testfile39.bz2 │ │ ├── testfile4.bz2 │ │ ├── testfile40.bz2 │ │ ├── testfile40.debug.bz2 │ │ ├── testfile41.bz2 │ │ ├── testfile42.bz2 │ │ ├── testfile42_noshdrs.bz2 │ │ ├── testfile43.bz2 │ │ ├── testfile44.S.bz2 │ │ ├── testfile44.expect.bz2 │ │ ├── testfile45.S.bz2 │ │ ├── testfile45.expect.bz2 │ │ ├── testfile46.bz2 │ │ ├── testfile47.bz2 │ │ ├── testfile48.bz2 │ │ ├── testfile48.debug.bz2 │ │ ├── testfile49.bz2 │ │ ├── testfile5.bz2 │ │ ├── testfile50.bz2 │ │ ├── testfile51.bz2 │ │ ├── testfile52-32.noshdrs.so.bz2 │ │ ├── testfile52-32.prelink.so.bz2 │ │ ├── testfile52-32.so.bz2 │ │ ├── testfile52-32.so.debug.bz2 │ │ ├── testfile52-64.noshdrs.so.bz2 │ │ ├── testfile52-64.prelink.so.bz2 │ │ ├── testfile52-64.so.bz2 │ │ ├── testfile52-64.so.debug.bz2 │ │ ├── testfile53-32.bz2 │ │ ├── testfile53-32.debug.bz2 │ │ ├── testfile53-32.prelink.bz2 │ │ ├── testfile53-64.bz2 │ │ ├── testfile53-64.debug.bz2 │ │ ├── testfile53-64.prelink.bz2 │ │ ├── testfile54-32.noshdrs.so.bz2 │ │ ├── testfile54-32.prelink.so.bz2 │ │ ├── testfile54-32.so.bz2 │ │ ├── testfile54-32.so.debug.bz2 │ │ ├── testfile54-64.noshdrs.so.bz2 │ │ ├── testfile54-64.prelink.so.bz2 │ │ ├── testfile54-64.so.bz2 │ │ ├── testfile54-64.so.debug.bz2 │ │ ├── testfile55-32.bz2 │ │ ├── testfile55-32.debug.bz2 │ │ ├── testfile55-32.prelink.bz2 │ │ ├── testfile55-64.bz2 │ │ ├── testfile55-64.debug.bz2 │ │ ├── testfile55-64.prelink.bz2 │ │ ├── testfile56.bz2 │ │ ├── testfile57.bz2 │ │ ├── testfile58.bz2 │ │ ├── testfile59.bz2 │ │ ├── testfile6.bz2 │ │ ├── testfile60.bz2 │ │ ├── testfile61.bz2 │ │ ├── testfile62.bz2 │ │ ├── testfile63.bz2 │ │ ├── testfile64.bz2 │ │ ├── testfile65.bz2 │ │ ├── testfile66.bz2 │ │ ├── testfile66.core.bz2 │ │ ├── testfile67.bz2 │ │ ├── testfile68.bz2 │ │ ├── testfile69.core.bz2 │ │ ├── testfile69.so.bz2 │ │ ├── testfile7.bz2 │ │ ├── testfile70.core.bz2 │ │ ├── testfile70.exec.bz2 │ │ ├── testfile71.bz2 │ │ ├── testfile8.bz2 │ │ ├── testfile9.bz2 │ │ ├── testfile_aarch64_core.bz2 │ │ ├── testfile_class_func.bz2 │ │ ├── testfile_const_type.bz2 │ │ ├── testfile_const_type.c │ │ ├── testfile_entry_value.bz2 │ │ ├── testfile_entry_value.c │ │ ├── testfile_gnu_props.32be.o.bz2 │ │ ├── testfile_gnu_props.32le.o.bz2 │ │ ├── testfile_gnu_props.64be.o.bz2 │ │ ├── testfile_gnu_props.64le.o.bz2 │ │ ├── testfile_i686_core.bz2 │ │ ├── testfile_implicit_pointer.bz2 │ │ ├── testfile_implicit_pointer.c │ │ ├── testfile_implicit_value.bz2 │ │ ├── testfile_implicit_value.c │ │ ├── testfile_low_high_pc.bz2 │ │ ├── testfile_multi.dwz.bz2 │ │ ├── testfile_multi_main.bz2 │ │ ├── testfile_nested_funcs.bz2 │ │ ├── testfile_parameter_ref.bz2 │ │ ├── testfile_parameter_ref.c │ │ ├── testfileaarch64-debugframe.bz2 │ │ ├── testfileaarch64.bz2 │ │ ├── testfilearm-debugframe.bz2 │ │ ├── testfilearm.bz2 │ │ ├── testfilebasmin.bz2 │ │ ├── testfilebaxmin.bz2 │ │ ├── testfilebazdbg.bz2 │ │ ├── testfilebazdbg.debug.bz2 │ │ ├── testfilebazdbg_pl.bz2 │ │ ├── testfilebazdbg_plr.bz2 │ │ ├── testfilebazdbgppc64.bz2 │ │ ├── testfilebazdbgppc64.debug.bz2 │ │ ├── testfilebazdbgppc64_pl.bz2 │ │ ├── testfilebazdbgppc64_plr.bz2 │ │ ├── testfilebazdyn.bz2 │ │ ├── testfilebazdynppc64.bz2 │ │ ├── testfilebazmdb.bz2 │ │ ├── testfilebazmdbppc64.bz2 │ │ ├── testfilebazmin.bz2 │ │ ├── testfilebazmin_pl.bz2 │ │ ├── testfilebazmin_plr.bz2 │ │ ├── testfilebazminppc64.bz2 │ │ ├── testfilebazminppc64_pl.bz2 │ │ ├── testfilebazminppc64_plr.bz2 │ │ ├── testfilebaztab.bz2 │ │ ├── testfilebaztabppc64.bz2 │ │ ├── testfiledwarfinlines.bz2 │ │ ├── testfiledwarfinlines.core.bz2 │ │ ├── testfilefoobarbaz.bz2 │ │ ├── testfilegdbindex5.bz2 │ │ ├── testfilegdbindex7.bz2 │ │ ├── testfileloc.bz2 │ │ ├── testfilemacro.bz2 │ │ ├── testfilenolines.bz2 │ │ ├── testfileppc32-debugframe.bz2 │ │ ├── testfileppc32.bz2 │ │ ├── testfileppc32attrs.o.bz2 │ │ ├── testfileppc64-debugframe.bz2 │ │ ├── testfileppc64.bz2 │ │ ├── testfileppc64attrs.o.bz2 │ │ ├── testfileranges4.debug.bz2 │ │ ├── testfileranges5.debug.bz2 │ │ ├── testfiles390.bz2 │ │ ├── testfiles390x.bz2 │ │ ├── testfilesparc64attrs.o.bz2 │ │ ├── testfilesplitranges4.debug.bz2 │ │ ├── testfilesplitranges5.debug.bz2 │ │ ├── testlib_dynseg.so.bz2 │ │ ├── typeiter.c │ │ ├── typeiter2.c │ │ ├── unit-info.c │ │ ├── update1.c │ │ ├── update2.c │ │ ├── update3.c │ │ ├── update4.c │ │ ├── varlocs.c │ │ ├── vdsosyms.c │ │ ├── vendorelf.c │ │ └── zstrptr.c │ └── version.h ├── tracers-libstapsdt-sys/ │ ├── Cargo.toml │ ├── LICENSE │ ├── bindgen.sh │ ├── build.rs │ └── src/ │ ├── lib.h │ ├── lib.rs │ ├── libstapsdt.rs │ └── test-libstapsdt.c ├── tracers-macros/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs └── tracers-macros-hack/ ├── Cargo.toml └── src/ └── lib.rs