├── .github └── workflows │ ├── freebsd_autotools.yml │ ├── freebsd_cmake.yml │ ├── freebsd_meson.yml │ ├── linuxc99autotools.yml │ ├── linuxc99cmake.yml │ ├── linuxc99meson.yml │ ├── mac_autotools.yml │ ├── mac_cmake.yml │ ├── mac_meson.yml │ ├── msys2_autotools.yml │ ├── msys2_cmake.yml │ ├── msys2_meson.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CODINGSTYLE.md ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── ChangeLog2018 ├── ChangeLog2019 ├── ChangeLog2020 ├── ChangeLog2021 ├── ChangeLog2022 ├── ChangeLog2023 ├── ChangeLog2024 ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.md ├── READMEcmake.md ├── READMEmacos.md ├── READMEwin-msys2.md ├── SECURITY.md ├── appveyor.yml ├── autogen.sh ├── bugxml ├── README ├── bugrecord.py ├── data.template ├── data.txt ├── dwarfbug.html ├── dwarfbug.xml ├── dwarfbuglohi.html └── readbugs.py ├── cmake ├── Findzstd.cmake └── config.h.in ├── configure.ac ├── doc ├── CMakeLists.txt ├── ChangeLog ├── ChangesToLibdwarf.odt ├── Doxyfile ├── LibdwarfInternals.html ├── LibdwarfInternals.md ├── Makefile.am ├── checkexamples.c ├── dwarfdump.1 ├── dwarfgen.1 ├── jitaccess.dox ├── libdwarf.dox ├── libdwarf.pdf ├── libdwarfp.mm ├── libdwarfp.pdf ├── meson.build ├── mips_extensions.mm ├── mips_extensions.pdf └── pdfbld.sh ├── fuzz ├── Makefile.am ├── README.md ├── fuzz_aranges.c ├── fuzz_crc.c ├── fuzz_crc_32.c ├── fuzz_debug_addr_access.c ├── fuzz_debug_str.c ├── fuzz_debuglink.c ├── fuzz_die_cu.c ├── fuzz_die_cu_attrs.c ├── fuzz_die_cu_attrs_loclist.c ├── fuzz_die_cu_e.c ├── fuzz_die_cu_e_print.c ├── fuzz_die_cu_info1.c ├── fuzz_die_cu_offset.c ├── fuzz_die_cu_print.c ├── fuzz_dnames.c ├── fuzz_findfuncbypc.c ├── fuzz_gdbindex.c ├── fuzz_globals.c ├── fuzz_gnu_index.c ├── fuzz_init_b.c ├── fuzz_init_binary.c ├── fuzz_init_path.c ├── fuzz_macro_dwarf4.c ├── fuzz_macro_dwarf5.c ├── fuzz_rng.c ├── fuzz_set_frame_all.c ├── fuzz_showsectgrp.c ├── fuzz_simplereader_tu.c ├── fuzz_srcfiles.c ├── fuzz_stack_frame_access.c ├── fuzz_str_offsets.c ├── fuzz_tie.c └── fuzz_xuindex.c ├── libdwarf.pc.in ├── libdwarfp.pc.in ├── m4 ├── ax_prog_cc_for_build.m4 └── dw_compiler.m4 ├── meson.build ├── meson_options.txt ├── scripts ├── CLEANUP ├── ChangeLog ├── ChangeLog2018 ├── ChangeLog2019 ├── ChangeLog2020 ├── ChangeLog2021 ├── allsimplebuilds.sh ├── buildandreleasetest.sh └── run-all-tests.sh ├── src ├── bin │ ├── attr_form │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── attr_form_build.c │ │ ├── attr_formclass.list │ │ ├── attr_formclass_ext.list │ │ └── meson.build │ ├── buildDW_LNAME │ │ ├── Makefile.am │ │ ├── README │ │ ├── buildlname.c │ │ ├── dwarf_lname_data.h │ │ └── meson.build │ ├── buildopstab │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── buildopscounttab.c │ │ └── meson.build │ ├── builduritable │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── meson.build │ │ └── uritablebuild.c │ ├── checkDW_LANG │ │ ├── Makefile.am │ │ ├── checklangname.c │ │ └── meson.build │ ├── dwarfdump │ │ ├── CMakeLists.txt │ │ ├── CODINGSTYLE │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── ChangeLog2006 │ │ ├── ChangeLog2007 │ │ ├── ChangeLog2008 │ │ ├── ChangeLog2009 │ │ ├── ChangeLog2010 │ │ ├── ChangeLog2011 │ │ ├── ChangeLog2012 │ │ ├── ChangeLog2013 │ │ ├── ChangeLog2014 │ │ ├── ChangeLog2015 │ │ ├── ChangeLog2016 │ │ ├── ChangeLog2017 │ │ ├── ChangeLog2018 │ │ ├── ChangeLog2019 │ │ ├── ChangeLog2020 │ │ ├── ChangeLog2021 │ │ ├── DWARFDUMPCOPYRIGHT │ │ ├── GPL.txt │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── dd_addrmap.c │ │ ├── dd_addrmap.h │ │ ├── dd_all_srcfiles.c │ │ ├── dd_all_srcfiles.h │ │ ├── dd_attr_form.c │ │ ├── dd_attr_form.h │ │ ├── dd_canonical_append.c │ │ ├── dd_canonical_append.h │ │ ├── dd_check_attr_encoding.c │ │ ├── dd_checkutil.c │ │ ├── dd_checkutil.h │ │ ├── dd_command_options.c │ │ ├── dd_command_options.h │ │ ├── dd_common.c │ │ ├── dd_common.h │ │ ├── dd_compiler_info.c │ │ ├── dd_compiler_info.h │ │ ├── dd_defined_types.h │ │ ├── dd_dwconf.c │ │ ├── dd_dwconf.h │ │ ├── dd_dwconf_using_functions.h │ │ ├── dd_elf_cputype.h │ │ ├── dd_esb.c │ │ ├── dd_esb.h │ │ ├── dd_esb_using_functions.h │ │ ├── dd_getopt.c │ │ ├── dd_getopt.h │ │ ├── dd_glflags.c │ │ ├── dd_glflags.h │ │ ├── dd_globals.h │ │ ├── dd_helpertree.c │ │ ├── dd_helpertree.h │ │ ├── dd_lvn_table.c │ │ ├── dd_mac_cputype.h │ │ ├── dd_macrocheck.c │ │ ├── dd_macrocheck.h │ │ ├── dd_makename.c │ │ ├── dd_makename.h │ │ ├── dd_minimal.h │ │ ├── dd_naming.c │ │ ├── dd_naming.h │ │ ├── dd_opscounttab.c │ │ ├── dd_opscounttab.h │ │ ├── dd_pe_cputype.h │ │ ├── dd_regex.c │ │ ├── dd_regex.h │ │ ├── dd_safe_strcpy.c │ │ ├── dd_safe_strcpy.h │ │ ├── dd_sanitized.c │ │ ├── dd_sanitized.h │ │ ├── dd_strstrnocase.c │ │ ├── dd_tag_common.h │ │ ├── dd_trace_abstract_origin_etc.c │ │ ├── dd_true_section_name.c │ │ ├── dd_tsearchbal.c │ │ ├── dd_tsearchbal.h │ │ ├── dd_uri.c │ │ ├── dd_uri.h │ │ ├── dd_utf8.c │ │ ├── dd_utf8.h │ │ ├── dwarfdump-af-table-ext.h │ │ ├── dwarfdump-af-table-std.h │ │ ├── dwarfdump-ta-ext-table.h │ │ ├── dwarfdump-ta-table.h │ │ ├── dwarfdump-tt-ext-table.h │ │ ├── dwarfdump-tt-table.h │ │ ├── dwarfdump.c │ │ ├── dwarfdump.conf │ │ ├── meson.build │ │ ├── print_abbrevs.c │ │ ├── print_aranges.c │ │ ├── print_debug_addr.c │ │ ├── print_debug_gnu.c │ │ ├── print_debug_gnu.h │ │ ├── print_debug_names.c │ │ ├── print_debug_sup.c │ │ ├── print_debugfission.c │ │ ├── print_die.c │ │ ├── print_frames.c │ │ ├── print_frames.h │ │ ├── print_gdbindex.c │ │ ├── print_hipc_lopc_attr.c │ │ ├── print_lines.c │ │ ├── print_llex_codes.c │ │ ├── print_loclists.c │ │ ├── print_loclists_codes.c │ │ ├── print_macinfo.c │ │ ├── print_macro.c │ │ ├── print_origloclist_codes.c │ │ ├── print_pubnames.c │ │ ├── print_ranges.c │ │ ├── print_rnglists.c │ │ ├── print_section_groups.c │ │ ├── print_sections.c │ │ ├── print_sections.h │ │ ├── print_str_offsets.c │ │ ├── print_strings.c │ │ └── print_tag_attributes_usage.c │ ├── dwarfexample │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── ChangeLog2009 │ │ ├── ChangeLog2010 │ │ ├── ChangeLog2011 │ │ ├── ChangeLog2012 │ │ ├── ChangeLog2013 │ │ ├── ChangeLog2014 │ │ ├── ChangeLog2015 │ │ ├── ChangeLog2016 │ │ ├── ChangeLog2017 │ │ ├── ChangeLog2018 │ │ ├── ChangeLog2019 │ │ ├── ChangeLog2020 │ │ ├── ChangeLog2021 │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── dwdebuglink.c │ │ ├── findfuncbypc.c │ │ ├── frame1.c │ │ ├── jitreader.c │ │ ├── meson.build │ │ ├── showsectiongroups.c │ │ ├── simplecrc.c │ │ └── simplereader.c │ ├── dwarfgen │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── ChangeLog2011 │ │ ├── ChangeLog2012 │ │ ├── ChangeLog2013 │ │ ├── ChangeLog2014 │ │ ├── ChangeLog2015 │ │ ├── ChangeLog2016 │ │ ├── ChangeLog2017 │ │ ├── ChangeLog2018 │ │ ├── ChangeLog2019 │ │ ├── ChangeLog2020 │ │ ├── ChangeLog2021 │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── TESTmallocfail │ │ ├── createirepformfrombinary.cc │ │ ├── createirepfrombinary.cc │ │ ├── createirepfrombinary.h │ │ ├── dg_getopt.cc │ │ ├── dg_getopt.h │ │ ├── dwarf-generator.txt │ │ ├── dwarf_elf_defines.h │ │ ├── dwarf_elfstructs.h │ │ ├── dwarfgen.cc │ │ ├── fakemalloc.in │ │ ├── general.h │ │ ├── irepattrtodbg.cc │ │ ├── irepattrtodbg.h │ │ ├── irepdie.h │ │ ├── irepform.h │ │ ├── irepframe.h │ │ ├── irepline.h │ │ ├── irepmacro.h │ │ ├── ireppubnames.h │ │ ├── irepresentation.h │ │ ├── ireptodbg.cc │ │ ├── ireptodbg.h │ │ ├── meson.build │ │ └── strtabdata.h │ ├── gennames │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── README.txt │ │ ├── gennames.c │ │ └── meson.build │ ├── tag_attr │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── tag_attr.c │ │ ├── tag_attr.list │ │ └── tag_attr_ext.list │ └── tag_tree │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── tag_common.c │ │ ├── tag_tree.c │ │ ├── tag_tree.list │ │ └── tag_tree_ext.list └── lib │ ├── libdwarf │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CODINGSTYLE │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog2006 │ ├── ChangeLog2007 │ ├── ChangeLog2008 │ ├── ChangeLog2009 │ ├── ChangeLog2010 │ ├── ChangeLog2011 │ ├── ChangeLog2012 │ ├── ChangeLog2013 │ ├── ChangeLog2014 │ ├── ChangeLog2015 │ ├── ChangeLog2016 │ ├── ChangeLog2017 │ ├── ChangeLog2018 │ ├── ChangeLog2019 │ ├── ChangeLog2020 │ ├── ChangeLog2021 │ ├── LGPL.txt │ ├── LIBDWARFCOPYRIGHT │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── cmake │ │ └── libdwarfConfig.cmake.in │ ├── dw-linetableheader.txt │ ├── dwarf.h │ ├── dwarf_64machoread.c │ ├── dwarf_abbrev.c │ ├── dwarf_abbrev.h │ ├── dwarf_alloc.c │ ├── dwarf_alloc.h │ ├── dwarf_arange.c │ ├── dwarf_arange.h │ ├── dwarf_base_types.h │ ├── dwarf_cfa_read.c │ ├── dwarf_crc.c │ ├── dwarf_crc32.c │ ├── dwarf_debug_sup.c │ ├── dwarf_debugaddr.c │ ├── dwarf_debugaddr.h │ ├── dwarf_debuglink.c │ ├── dwarf_debuglink.h │ ├── dwarf_debugnames.c │ ├── dwarf_debugnames.h │ ├── dwarf_die_deliv.c │ ├── dwarf_die_deliv.h │ ├── dwarf_dsc.c │ ├── dwarf_dsc.h │ ├── dwarf_elf_access.h │ ├── dwarf_elf_defines.h │ ├── dwarf_elf_load_headers.c │ ├── dwarf_elf_rel_detector.c │ ├── dwarf_elf_rel_detector.h │ ├── dwarf_elfread.c │ ├── dwarf_elfread.h │ ├── dwarf_elfstructs.h │ ├── dwarf_errmsg_list.h │ ├── dwarf_error.c │ ├── dwarf_error.h │ ├── dwarf_fill_in_attr_form.c │ ├── dwarf_find_sigref.c │ ├── dwarf_fission_to_cu.c │ ├── dwarf_form.c │ ├── dwarf_form_class_names.c │ ├── dwarf_frame.c │ ├── dwarf_frame.h │ ├── dwarf_frame2.c │ ├── dwarf_gdbindex.c │ ├── dwarf_gdbindex.h │ ├── dwarf_generic_init.c │ ├── dwarf_global.c │ ├── dwarf_global.h │ ├── dwarf_gnu_index.c │ ├── dwarf_gnu_index.h │ ├── dwarf_groups.c │ ├── dwarf_harmless.c │ ├── dwarf_harmless.h │ ├── dwarf_init_finish.c │ ├── dwarf_leb.c │ ├── dwarf_line.c │ ├── dwarf_line.h │ ├── dwarf_line_table_reader_common.h │ ├── dwarf_lname_version.c │ ├── dwarf_loc.c │ ├── dwarf_loc.h │ ├── dwarf_local_malloc.c │ ├── dwarf_local_malloc.h │ ├── dwarf_locationop_read.c │ ├── dwarf_loclists.c │ ├── dwarf_loclists.h │ ├── dwarf_lvn_name.c │ ├── dwarf_macho_loader.h │ ├── dwarf_machoread.c │ ├── dwarf_machoread.h │ ├── dwarf_macro.c │ ├── dwarf_macro.h │ ├── dwarf_macro5.c │ ├── dwarf_macro5.h │ ├── dwarf_memcpy_swap.c │ ├── dwarf_memcpy_swap.h │ ├── dwarf_names.c │ ├── dwarf_object_detector.c │ ├── dwarf_object_detector.h │ ├── dwarf_object_read_common.c │ ├── dwarf_object_read_common.h │ ├── dwarf_opaque.h │ ├── dwarf_pe_descr.h │ ├── dwarf_peread.c │ ├── dwarf_peread.h │ ├── dwarf_print_lines.c │ ├── dwarf_query.c │ ├── dwarf_ranges.c │ ├── dwarf_reading.h │ ├── dwarf_rnglists.c │ ├── dwarf_rnglists.h │ ├── dwarf_safe_arithmetic.c │ ├── dwarf_safe_arithmetic.h │ ├── dwarf_safe_strcpy.c │ ├── dwarf_safe_strcpy.h │ ├── dwarf_secname_ck.c │ ├── dwarf_secname_ck.h │ ├── dwarf_seekr.c │ ├── dwarf_setup_sections.c │ ├── dwarf_setup_sections.h │ ├── dwarf_str_offsets.c │ ├── dwarf_str_offsets.h │ ├── dwarf_string.c │ ├── dwarf_string.h │ ├── dwarf_stringsection.c │ ├── dwarf_tied.c │ ├── dwarf_tied_decls.h │ ├── dwarf_tsearch.h │ ├── dwarf_tsearchhash.c │ ├── dwarf_universal.h │ ├── dwarf_util.c │ ├── dwarf_util.h │ ├── dwarf_xu_index.c │ ├── dwarf_xu_index.h │ ├── libdwarf.h │ ├── libdwarf.pc.in │ ├── libdwarf_private.h │ └── meson.build │ └── libdwarfp │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── ChangeLog2021 │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── cmake │ └── libdwarfp-config.cmake │ ├── dwarf_pro_alloc.c │ ├── dwarf_pro_alloc.h │ ├── dwarf_pro_arange.c │ ├── dwarf_pro_arange.h │ ├── dwarf_pro_debug_sup.c │ ├── dwarf_pro_die.c │ ├── dwarf_pro_die.h │ ├── dwarf_pro_dnames.c │ ├── dwarf_pro_dnames.h │ ├── dwarf_pro_error.c │ ├── dwarf_pro_error.h │ ├── dwarf_pro_expr.c │ ├── dwarf_pro_expr.h │ ├── dwarf_pro_finish.c │ ├── dwarf_pro_forms.c │ ├── dwarf_pro_frame.c │ ├── dwarf_pro_frame.h │ ├── dwarf_pro_funcs.c │ ├── dwarf_pro_incl.h │ ├── dwarf_pro_init.c │ ├── dwarf_pro_line.c │ ├── dwarf_pro_line.h │ ├── dwarf_pro_log_extra_flag_strings.c │ ├── dwarf_pro_macinfo.c │ ├── dwarf_pro_macinfo.h │ ├── dwarf_pro_opaque.h │ ├── dwarf_pro_pubnames.c │ ├── dwarf_pro_reloc.c │ ├── dwarf_pro_reloc.h │ ├── dwarf_pro_reloc_stream.c │ ├── dwarf_pro_reloc_stream.h │ ├── dwarf_pro_reloc_symbolic.c │ ├── dwarf_pro_reloc_symbolic.h │ ├── dwarf_pro_section.c │ ├── dwarf_pro_section.h │ ├── dwarf_pro_types.c │ ├── dwarf_pro_types.h │ ├── dwarf_pro_util.h │ ├── dwarf_pro_vars.c │ ├── dwarf_pro_weaks.c │ ├── libdwarfp.h │ ├── libdwarfp.pc.in │ └── meson.build ├── test ├── CMakeLists.txt ├── ChangeLog ├── Makefile.am ├── README.testcases ├── buildingdummy.sh ├── canonicalpath.py ├── debuglink.base ├── debuglink2.base ├── dummyexecutable ├── dummyexecutable.debug ├── dummysourceignore ├── jitreader.base ├── meson.build ├── test-mach-o-32.base ├── test-mach-o-32.dSYM ├── test_canonical.c ├── test_debuglink-a.sh ├── test_debuglink-b.sh ├── test_dwarf_leb.c ├── test_dwarf_tied.c ├── test_dwarfdump.py ├── test_dwarfdumpLinux.sh ├── test_dwarfdumpMacos.sh ├── test_dwarfdumpPE.sh ├── test_dwarfdumpsetup.sh ├── test_dwarfstring.c ├── test_dwdiff.py ├── test_errmsglist.c ├── test_esb.c ├── test_extra_flag_strings.c ├── test_getname.c ├── test_getopt.c ├── test_helpertree.c ├── test_ignoresec.c ├── test_int64_test.c ├── test_jitreaderdiff.sh ├── test_linkedtopath.c ├── test_lname.c ├── test_macrocheck.c ├── test_makename.c ├── test_regex.c ├── test_safe_strcpy.c ├── test_sanitized.c ├── test_setupsections.c ├── test_transformpath.py ├── testobjLE32PE.base ├── testobjLE32PE.exe ├── testobjLE32PE.test.c ├── testuriLE64ELf.base ├── testuriLE64ELf.testme └── testuriLE64ELfsource.c └── tools ├── README ├── makerelease.sh └── updatesemanticversion.py /.github/workflows/freebsd_autotools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/freebsd_autotools.yml -------------------------------------------------------------------------------- /.github/workflows/freebsd_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/freebsd_cmake.yml -------------------------------------------------------------------------------- /.github/workflows/freebsd_meson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/freebsd_meson.yml -------------------------------------------------------------------------------- /.github/workflows/linuxc99autotools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/linuxc99autotools.yml -------------------------------------------------------------------------------- /.github/workflows/linuxc99cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/linuxc99cmake.yml -------------------------------------------------------------------------------- /.github/workflows/linuxc99meson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/linuxc99meson.yml -------------------------------------------------------------------------------- /.github/workflows/mac_autotools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/mac_autotools.yml -------------------------------------------------------------------------------- /.github/workflows/mac_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/mac_cmake.yml -------------------------------------------------------------------------------- /.github/workflows/mac_meson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/mac_meson.yml -------------------------------------------------------------------------------- /.github/workflows/msys2_autotools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/msys2_autotools.yml -------------------------------------------------------------------------------- /.github/workflows/msys2_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/msys2_cmake.yml -------------------------------------------------------------------------------- /.github/workflows/msys2_meson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/msys2_meson.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | David Anderson 2 | Carlos Alberto Enciso 3 | Vincent Torri 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODINGSTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/CODINGSTYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2018 -------------------------------------------------------------------------------- /ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2019 -------------------------------------------------------------------------------- /ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2020 -------------------------------------------------------------------------------- /ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2021 -------------------------------------------------------------------------------- /ChangeLog2022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2022 -------------------------------------------------------------------------------- /ChangeLog2023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2023 -------------------------------------------------------------------------------- /ChangeLog2024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/ChangeLog2024 -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | ### Nothing here. 2 | ### See README.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/README.md -------------------------------------------------------------------------------- /READMEcmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/READMEcmake.md -------------------------------------------------------------------------------- /READMEmacos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/READMEmacos.md -------------------------------------------------------------------------------- /READMEwin-msys2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/READMEwin-msys2.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/autogen.sh -------------------------------------------------------------------------------- /bugxml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/README -------------------------------------------------------------------------------- /bugxml/bugrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/bugrecord.py -------------------------------------------------------------------------------- /bugxml/data.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/data.template -------------------------------------------------------------------------------- /bugxml/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/data.txt -------------------------------------------------------------------------------- /bugxml/dwarfbug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/dwarfbug.html -------------------------------------------------------------------------------- /bugxml/dwarfbug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/dwarfbug.xml -------------------------------------------------------------------------------- /bugxml/dwarfbuglohi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/dwarfbuglohi.html -------------------------------------------------------------------------------- /bugxml/readbugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/bugxml/readbugs.py -------------------------------------------------------------------------------- /cmake/Findzstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/cmake/Findzstd.cmake -------------------------------------------------------------------------------- /cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/cmake/config.h.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /doc/ChangesToLibdwarf.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/ChangesToLibdwarf.odt -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/LibdwarfInternals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/LibdwarfInternals.html -------------------------------------------------------------------------------- /doc/LibdwarfInternals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/LibdwarfInternals.md -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/checkexamples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/checkexamples.c -------------------------------------------------------------------------------- /doc/dwarfdump.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/dwarfdump.1 -------------------------------------------------------------------------------- /doc/dwarfgen.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/dwarfgen.1 -------------------------------------------------------------------------------- /doc/jitaccess.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/jitaccess.dox -------------------------------------------------------------------------------- /doc/libdwarf.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/libdwarf.dox -------------------------------------------------------------------------------- /doc/libdwarf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/libdwarf.pdf -------------------------------------------------------------------------------- /doc/libdwarfp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/libdwarfp.mm -------------------------------------------------------------------------------- /doc/libdwarfp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/libdwarfp.pdf -------------------------------------------------------------------------------- /doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/meson.build -------------------------------------------------------------------------------- /doc/mips_extensions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/mips_extensions.mm -------------------------------------------------------------------------------- /doc/mips_extensions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/mips_extensions.pdf -------------------------------------------------------------------------------- /doc/pdfbld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/doc/pdfbld.sh -------------------------------------------------------------------------------- /fuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/Makefile.am -------------------------------------------------------------------------------- /fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/README.md -------------------------------------------------------------------------------- /fuzz/fuzz_aranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_aranges.c -------------------------------------------------------------------------------- /fuzz/fuzz_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_crc.c -------------------------------------------------------------------------------- /fuzz/fuzz_crc_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_crc_32.c -------------------------------------------------------------------------------- /fuzz/fuzz_debug_addr_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_debug_addr_access.c -------------------------------------------------------------------------------- /fuzz/fuzz_debug_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_debug_str.c -------------------------------------------------------------------------------- /fuzz/fuzz_debuglink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_debuglink.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_attrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_attrs.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_attrs_loclist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_attrs_loclist.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_e.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_e_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_e_print.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_info1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_info1.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_offset.c -------------------------------------------------------------------------------- /fuzz/fuzz_die_cu_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_die_cu_print.c -------------------------------------------------------------------------------- /fuzz/fuzz_dnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_dnames.c -------------------------------------------------------------------------------- /fuzz/fuzz_findfuncbypc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_findfuncbypc.c -------------------------------------------------------------------------------- /fuzz/fuzz_gdbindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_gdbindex.c -------------------------------------------------------------------------------- /fuzz/fuzz_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_globals.c -------------------------------------------------------------------------------- /fuzz/fuzz_gnu_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_gnu_index.c -------------------------------------------------------------------------------- /fuzz/fuzz_init_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_init_b.c -------------------------------------------------------------------------------- /fuzz/fuzz_init_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_init_binary.c -------------------------------------------------------------------------------- /fuzz/fuzz_init_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_init_path.c -------------------------------------------------------------------------------- /fuzz/fuzz_macro_dwarf4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_macro_dwarf4.c -------------------------------------------------------------------------------- /fuzz/fuzz_macro_dwarf5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_macro_dwarf5.c -------------------------------------------------------------------------------- /fuzz/fuzz_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_rng.c -------------------------------------------------------------------------------- /fuzz/fuzz_set_frame_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_set_frame_all.c -------------------------------------------------------------------------------- /fuzz/fuzz_showsectgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_showsectgrp.c -------------------------------------------------------------------------------- /fuzz/fuzz_simplereader_tu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_simplereader_tu.c -------------------------------------------------------------------------------- /fuzz/fuzz_srcfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_srcfiles.c -------------------------------------------------------------------------------- /fuzz/fuzz_stack_frame_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_stack_frame_access.c -------------------------------------------------------------------------------- /fuzz/fuzz_str_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_str_offsets.c -------------------------------------------------------------------------------- /fuzz/fuzz_tie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_tie.c -------------------------------------------------------------------------------- /fuzz/fuzz_xuindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/fuzz/fuzz_xuindex.c -------------------------------------------------------------------------------- /libdwarf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/libdwarf.pc.in -------------------------------------------------------------------------------- /libdwarfp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/libdwarfp.pc.in -------------------------------------------------------------------------------- /m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /m4/dw_compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/m4/dw_compiler.m4 -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/meson_options.txt -------------------------------------------------------------------------------- /scripts/CLEANUP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/CLEANUP -------------------------------------------------------------------------------- /scripts/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /scripts/ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/ChangeLog2018 -------------------------------------------------------------------------------- /scripts/ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/ChangeLog2019 -------------------------------------------------------------------------------- /scripts/ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/ChangeLog2020 -------------------------------------------------------------------------------- /scripts/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/ChangeLog2021 -------------------------------------------------------------------------------- /scripts/allsimplebuilds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/allsimplebuilds.sh -------------------------------------------------------------------------------- /scripts/buildandreleasetest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/buildandreleasetest.sh -------------------------------------------------------------------------------- /scripts/run-all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/scripts/run-all-tests.sh -------------------------------------------------------------------------------- /src/bin/attr_form/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/attr_form/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/attr_form/Makefile.am -------------------------------------------------------------------------------- /src/bin/attr_form/attr_form_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/attr_form/attr_form_build.c -------------------------------------------------------------------------------- /src/bin/attr_form/attr_formclass.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/attr_form/attr_formclass.list -------------------------------------------------------------------------------- /src/bin/attr_form/attr_formclass_ext.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/attr_form/attr_formclass_ext.list -------------------------------------------------------------------------------- /src/bin/attr_form/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/attr_form/meson.build -------------------------------------------------------------------------------- /src/bin/buildDW_LNAME/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildDW_LNAME/Makefile.am -------------------------------------------------------------------------------- /src/bin/buildDW_LNAME/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildDW_LNAME/README -------------------------------------------------------------------------------- /src/bin/buildDW_LNAME/buildlname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildDW_LNAME/buildlname.c -------------------------------------------------------------------------------- /src/bin/buildDW_LNAME/dwarf_lname_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildDW_LNAME/dwarf_lname_data.h -------------------------------------------------------------------------------- /src/bin/buildDW_LNAME/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildDW_LNAME/meson.build -------------------------------------------------------------------------------- /src/bin/buildopstab/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/buildopstab/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildopstab/Makefile.am -------------------------------------------------------------------------------- /src/bin/buildopstab/buildopscounttab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildopstab/buildopscounttab.c -------------------------------------------------------------------------------- /src/bin/buildopstab/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/buildopstab/meson.build -------------------------------------------------------------------------------- /src/bin/builduritable/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/builduritable/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/builduritable/Makefile.am -------------------------------------------------------------------------------- /src/bin/builduritable/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/builduritable/meson.build -------------------------------------------------------------------------------- /src/bin/builduritable/uritablebuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/builduritable/uritablebuild.c -------------------------------------------------------------------------------- /src/bin/checkDW_LANG/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/checkDW_LANG/Makefile.am -------------------------------------------------------------------------------- /src/bin/checkDW_LANG/checklangname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/checkDW_LANG/checklangname.c -------------------------------------------------------------------------------- /src/bin/checkDW_LANG/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/checkDW_LANG/meson.build -------------------------------------------------------------------------------- /src/bin/dwarfdump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/CMakeLists.txt -------------------------------------------------------------------------------- /src/bin/dwarfdump/CODINGSTYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/CODINGSTYLE -------------------------------------------------------------------------------- /src/bin/dwarfdump/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/COPYING -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2006 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2007 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2008 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2009 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2010 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2011 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2012 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2013 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2014 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2015 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2016 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2017 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2018 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2019 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2020 -------------------------------------------------------------------------------- /src/bin/dwarfdump/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/ChangeLog2021 -------------------------------------------------------------------------------- /src/bin/dwarfdump/DWARFDUMPCOPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/DWARFDUMPCOPYRIGHT -------------------------------------------------------------------------------- /src/bin/dwarfdump/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/GPL.txt -------------------------------------------------------------------------------- /src/bin/dwarfdump/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/Makefile.am -------------------------------------------------------------------------------- /src/bin/dwarfdump/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/NEWS -------------------------------------------------------------------------------- /src/bin/dwarfdump/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/README -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_addrmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_addrmap.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_addrmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_addrmap.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_all_srcfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_all_srcfiles.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_all_srcfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_all_srcfiles.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_attr_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_attr_form.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_attr_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_attr_form.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_canonical_append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_canonical_append.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_canonical_append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_canonical_append.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_check_attr_encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_check_attr_encoding.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_checkutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_checkutil.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_checkutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_checkutil.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_command_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_command_options.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_command_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_command_options.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_common.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_common.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_compiler_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_compiler_info.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_compiler_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_compiler_info.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_defined_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_defined_types.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_dwconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_dwconf.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_dwconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_dwconf.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_dwconf_using_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_dwconf_using_functions.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_elf_cputype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_elf_cputype.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_esb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_esb.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_esb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_esb.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_esb_using_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_esb_using_functions.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_getopt.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_getopt.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_glflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_glflags.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_glflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_glflags.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_globals.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_helpertree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_helpertree.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_helpertree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_helpertree.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_lvn_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_lvn_table.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_mac_cputype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_mac_cputype.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_macrocheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_macrocheck.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_macrocheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_macrocheck.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_makename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_makename.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_makename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_makename.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_minimal.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_naming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_naming.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_naming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_naming.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_opscounttab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_opscounttab.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_opscounttab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_opscounttab.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_pe_cputype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_pe_cputype.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_regex.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_regex.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_safe_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_safe_strcpy.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_safe_strcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_safe_strcpy.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_sanitized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_sanitized.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_sanitized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_sanitized.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_strstrnocase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_strstrnocase.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_tag_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_tag_common.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_trace_abstract_origin_etc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_trace_abstract_origin_etc.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_true_section_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_true_section_name.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_tsearchbal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_tsearchbal.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_tsearchbal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_tsearchbal.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_uri.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_uri.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_utf8.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dd_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dd_utf8.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-af-table-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-af-table-ext.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-af-table-std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-af-table-std.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-ta-ext-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-ta-ext-table.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-ta-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-ta-table.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-tt-ext-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-tt-ext-table.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump-tt-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump-tt-table.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/dwarfdump.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/dwarfdump.conf -------------------------------------------------------------------------------- /src/bin/dwarfdump/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/meson.build -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_abbrevs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_abbrevs.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_aranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_aranges.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debug_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debug_addr.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debug_gnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debug_gnu.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debug_gnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debug_gnu.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debug_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debug_names.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debug_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debug_sup.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_debugfission.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_debugfission.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_die.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_frames.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_frames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_frames.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_gdbindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_gdbindex.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_hipc_lopc_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_hipc_lopc_attr.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_lines.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_llex_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_llex_codes.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_loclists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_loclists.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_loclists_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_loclists_codes.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_macinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_macinfo.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_macro.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_origloclist_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_origloclist_codes.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_pubnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_pubnames.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_ranges.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_rnglists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_rnglists.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_section_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_section_groups.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_sections.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_sections.h -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_str_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_str_offsets.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_strings.c -------------------------------------------------------------------------------- /src/bin/dwarfdump/print_tag_attributes_usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfdump/print_tag_attributes_usage.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/CMakeLists.txt -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2009 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2010 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2011 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2012: -------------------------------------------------------------------------------- 1 | No changes in 2012. 2 | -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2013 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2014 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2015 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2016 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2017 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2018 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2019 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2020 -------------------------------------------------------------------------------- /src/bin/dwarfexample/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/ChangeLog2021 -------------------------------------------------------------------------------- /src/bin/dwarfexample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/Makefile.am -------------------------------------------------------------------------------- /src/bin/dwarfexample/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/NEWS -------------------------------------------------------------------------------- /src/bin/dwarfexample/dwdebuglink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/dwdebuglink.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/findfuncbypc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/findfuncbypc.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/frame1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/frame1.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/jitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/jitreader.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/meson.build -------------------------------------------------------------------------------- /src/bin/dwarfexample/showsectiongroups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/showsectiongroups.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/simplecrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/simplecrc.c -------------------------------------------------------------------------------- /src/bin/dwarfexample/simplereader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfexample/simplereader.c -------------------------------------------------------------------------------- /src/bin/dwarfgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/CMakeLists.txt -------------------------------------------------------------------------------- /src/bin/dwarfgen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/COPYING -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2011 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2012 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2013 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2014 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2015 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2016 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2017 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2018 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2019 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2020 -------------------------------------------------------------------------------- /src/bin/dwarfgen/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ChangeLog2021 -------------------------------------------------------------------------------- /src/bin/dwarfgen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/Makefile.am -------------------------------------------------------------------------------- /src/bin/dwarfgen/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/NEWS -------------------------------------------------------------------------------- /src/bin/dwarfgen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/README -------------------------------------------------------------------------------- /src/bin/dwarfgen/TESTmallocfail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/TESTmallocfail -------------------------------------------------------------------------------- /src/bin/dwarfgen/createirepformfrombinary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/createirepformfrombinary.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/createirepfrombinary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/createirepfrombinary.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/createirepfrombinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/createirepfrombinary.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/dg_getopt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dg_getopt.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/dg_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dg_getopt.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/dwarf-generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dwarf-generator.txt -------------------------------------------------------------------------------- /src/bin/dwarfgen/dwarf_elf_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dwarf_elf_defines.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/dwarf_elfstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dwarf_elfstructs.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/dwarfgen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/dwarfgen.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/fakemalloc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/fakemalloc.in -------------------------------------------------------------------------------- /src/bin/dwarfgen/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/general.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepattrtodbg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepattrtodbg.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepattrtodbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepattrtodbg.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepdie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepdie.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepform.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepframe.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepline.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepmacro.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/ireppubnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ireppubnames.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/irepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/irepresentation.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/ireptodbg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ireptodbg.cc -------------------------------------------------------------------------------- /src/bin/dwarfgen/ireptodbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/ireptodbg.h -------------------------------------------------------------------------------- /src/bin/dwarfgen/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/meson.build -------------------------------------------------------------------------------- /src/bin/dwarfgen/strtabdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/dwarfgen/strtabdata.h -------------------------------------------------------------------------------- /src/bin/gennames/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/gennames/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/gennames/Makefile.am -------------------------------------------------------------------------------- /src/bin/gennames/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/gennames/README.txt -------------------------------------------------------------------------------- /src/bin/gennames/gennames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/gennames/gennames.c -------------------------------------------------------------------------------- /src/bin/gennames/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/gennames/meson.build -------------------------------------------------------------------------------- /src/bin/tag_attr/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/tag_attr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_attr/Makefile.am -------------------------------------------------------------------------------- /src/bin/tag_attr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_attr/meson.build -------------------------------------------------------------------------------- /src/bin/tag_attr/tag_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_attr/tag_attr.c -------------------------------------------------------------------------------- /src/bin/tag_attr/tag_attr.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_attr/tag_attr.list -------------------------------------------------------------------------------- /src/bin/tag_attr/tag_attr_ext.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_attr/tag_attr_ext.list -------------------------------------------------------------------------------- /src/bin/tag_tree/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/bin/tag_tree/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/Makefile.am -------------------------------------------------------------------------------- /src/bin/tag_tree/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/meson.build -------------------------------------------------------------------------------- /src/bin/tag_tree/tag_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/tag_common.c -------------------------------------------------------------------------------- /src/bin/tag_tree/tag_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/tag_tree.c -------------------------------------------------------------------------------- /src/bin/tag_tree/tag_tree.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/tag_tree.list -------------------------------------------------------------------------------- /src/bin/tag_tree/tag_tree_ext.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/bin/tag_tree/tag_tree_ext.list -------------------------------------------------------------------------------- /src/lib/libdwarf/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/CHANGES -------------------------------------------------------------------------------- /src/lib/libdwarf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/libdwarf/CODINGSTYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/CODINGSTYLE -------------------------------------------------------------------------------- /src/lib/libdwarf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/COPYING -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2006 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2007 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2008 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2009 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2010 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2011 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2012 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2013 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2014 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2015 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2016 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2017 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2018 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2019 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2020 -------------------------------------------------------------------------------- /src/lib/libdwarf/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/ChangeLog2021 -------------------------------------------------------------------------------- /src/lib/libdwarf/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/LGPL.txt -------------------------------------------------------------------------------- /src/lib/libdwarf/LIBDWARFCOPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/LIBDWARFCOPYRIGHT -------------------------------------------------------------------------------- /src/lib/libdwarf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/Makefile.am -------------------------------------------------------------------------------- /src/lib/libdwarf/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/NEWS -------------------------------------------------------------------------------- /src/lib/libdwarf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/README -------------------------------------------------------------------------------- /src/lib/libdwarf/cmake/libdwarfConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/cmake/libdwarfConfig.cmake.in -------------------------------------------------------------------------------- /src/lib/libdwarf/dw-linetableheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dw-linetableheader.txt -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_64machoread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_64machoread.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_abbrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_abbrev.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_abbrev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_abbrev.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_alloc.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_alloc.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_arange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_arange.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_arange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_arange.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_base_types.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_cfa_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_cfa_read.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_crc.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_crc32.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debug_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debug_sup.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debugaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debugaddr.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debugaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debugaddr.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debuglink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debuglink.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debuglink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debuglink.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debugnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debugnames.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_debugnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_debugnames.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_die_deliv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_die_deliv.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_die_deliv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_die_deliv.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_dsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_dsc.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_dsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_dsc.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elf_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elf_access.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elf_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elf_defines.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elf_load_headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elf_load_headers.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elf_rel_detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elf_rel_detector.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elf_rel_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elf_rel_detector.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elfread.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elfread.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_elfstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_elfstructs.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_errmsg_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_errmsg_list.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_error.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_error.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_fill_in_attr_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_fill_in_attr_form.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_find_sigref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_find_sigref.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_fission_to_cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_fission_to_cu.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_form.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_form_class_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_form_class_names.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_frame.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_frame.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_frame2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_frame2.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_gdbindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_gdbindex.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_gdbindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_gdbindex.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_generic_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_generic_init.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_global.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_global.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_gnu_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_gnu_index.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_gnu_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_gnu_index.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_groups.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_harmless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_harmless.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_harmless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_harmless.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_init_finish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_init_finish.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_leb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_leb.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_line.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_line.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_line_table_reader_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_line_table_reader_common.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_lname_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_lname_version.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_loc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_loc.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_loc.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_local_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_local_malloc.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_local_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_local_malloc.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_locationop_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_locationop_read.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_loclists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_loclists.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_loclists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_loclists.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_lvn_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_lvn_name.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_macho_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_macho_loader.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_machoread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_machoread.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_machoread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_machoread.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_macro.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_macro.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_macro5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_macro5.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_macro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_macro5.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_memcpy_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_memcpy_swap.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_memcpy_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_memcpy_swap.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_names.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_object_detector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_object_detector.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_object_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_object_detector.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_object_read_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_object_read_common.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_object_read_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_object_read_common.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_opaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_opaque.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_pe_descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_pe_descr.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_peread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_peread.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_peread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_peread.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_print_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_print_lines.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_query.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_ranges.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_reading.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_rnglists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_rnglists.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_rnglists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_rnglists.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_safe_arithmetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_safe_arithmetic.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_safe_arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_safe_arithmetic.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_safe_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_safe_strcpy.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_safe_strcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_safe_strcpy.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_secname_ck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_secname_ck.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_secname_ck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_secname_ck.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_seekr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_seekr.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_setup_sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_setup_sections.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_setup_sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_setup_sections.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_str_offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_str_offsets.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_str_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_str_offsets.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_string.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_string.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_stringsection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_stringsection.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_tied.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_tied.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_tied_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_tied_decls.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_tsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_tsearch.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_tsearchhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_tsearchhash.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_universal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_universal.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_util.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_util.h -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_xu_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_xu_index.c -------------------------------------------------------------------------------- /src/lib/libdwarf/dwarf_xu_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/dwarf_xu_index.h -------------------------------------------------------------------------------- /src/lib/libdwarf/libdwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/libdwarf.h -------------------------------------------------------------------------------- /src/lib/libdwarf/libdwarf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/libdwarf.pc.in -------------------------------------------------------------------------------- /src/lib/libdwarf/libdwarf_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/libdwarf_private.h -------------------------------------------------------------------------------- /src/lib/libdwarf/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarf/meson.build -------------------------------------------------------------------------------- /src/lib/libdwarfp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/libdwarfp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/COPYING -------------------------------------------------------------------------------- /src/lib/libdwarfp/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /src/lib/libdwarfp/ChangeLog2021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/ChangeLog2021 -------------------------------------------------------------------------------- /src/lib/libdwarfp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/Makefile.am -------------------------------------------------------------------------------- /src/lib/libdwarfp/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/NEWS -------------------------------------------------------------------------------- /src/lib/libdwarfp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/README -------------------------------------------------------------------------------- /src/lib/libdwarfp/cmake/libdwarfp-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/cmake/libdwarfp-config.cmake -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_alloc.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_alloc.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_arange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_arange.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_arange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_arange.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_debug_sup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_debug_sup.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_die.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_die.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_die.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_dnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_dnames.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_dnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_dnames.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_error.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_error.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_expr.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_expr.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_finish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_finish.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_forms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_forms.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_frame.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_frame.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_funcs.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_incl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_incl.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_init.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_line.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_line.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_log_extra_flag_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_log_extra_flag_strings.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_macinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_macinfo.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_macinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_macinfo.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_opaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_opaque.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_pubnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_pubnames.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc_stream.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc_stream.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc_symbolic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc_symbolic.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_reloc_symbolic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_reloc_symbolic.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_section.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_section.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_types.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_types.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_util.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_vars.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/dwarf_pro_weaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/dwarf_pro_weaks.c -------------------------------------------------------------------------------- /src/lib/libdwarfp/libdwarfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/libdwarfp.h -------------------------------------------------------------------------------- /src/lib/libdwarfp/libdwarfp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/libdwarfp.pc.in -------------------------------------------------------------------------------- /src/lib/libdwarfp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/src/lib/libdwarfp/meson.build -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/ChangeLog: -------------------------------------------------------------------------------- 1 | empty placeholder beginning 2022. 2 | See base directory ChangeLog 3 | -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README.testcases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/README.testcases -------------------------------------------------------------------------------- /test/buildingdummy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/buildingdummy.sh -------------------------------------------------------------------------------- /test/canonicalpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/canonicalpath.py -------------------------------------------------------------------------------- /test/debuglink.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/debuglink.base -------------------------------------------------------------------------------- /test/debuglink2.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/debuglink2.base -------------------------------------------------------------------------------- /test/dummyexecutable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/dummyexecutable -------------------------------------------------------------------------------- /test/dummyexecutable.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/dummyexecutable.debug -------------------------------------------------------------------------------- /test/dummysourceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/dummysourceignore -------------------------------------------------------------------------------- /test/jitreader.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/jitreader.base -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/test-mach-o-32.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test-mach-o-32.base -------------------------------------------------------------------------------- /test/test-mach-o-32.dSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test-mach-o-32.dSYM -------------------------------------------------------------------------------- /test/test_canonical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_canonical.c -------------------------------------------------------------------------------- /test/test_debuglink-a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_debuglink-a.sh -------------------------------------------------------------------------------- /test/test_debuglink-b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_debuglink-b.sh -------------------------------------------------------------------------------- /test/test_dwarf_leb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarf_leb.c -------------------------------------------------------------------------------- /test/test_dwarf_tied.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarf_tied.c -------------------------------------------------------------------------------- /test/test_dwarfdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfdump.py -------------------------------------------------------------------------------- /test/test_dwarfdumpLinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfdumpLinux.sh -------------------------------------------------------------------------------- /test/test_dwarfdumpMacos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfdumpMacos.sh -------------------------------------------------------------------------------- /test/test_dwarfdumpPE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfdumpPE.sh -------------------------------------------------------------------------------- /test/test_dwarfdumpsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfdumpsetup.sh -------------------------------------------------------------------------------- /test/test_dwarfstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwarfstring.c -------------------------------------------------------------------------------- /test/test_dwdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_dwdiff.py -------------------------------------------------------------------------------- /test/test_errmsglist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_errmsglist.c -------------------------------------------------------------------------------- /test/test_esb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_esb.c -------------------------------------------------------------------------------- /test/test_extra_flag_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_extra_flag_strings.c -------------------------------------------------------------------------------- /test/test_getname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_getname.c -------------------------------------------------------------------------------- /test/test_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_getopt.c -------------------------------------------------------------------------------- /test/test_helpertree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_helpertree.c -------------------------------------------------------------------------------- /test/test_ignoresec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_ignoresec.c -------------------------------------------------------------------------------- /test/test_int64_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_int64_test.c -------------------------------------------------------------------------------- /test/test_jitreaderdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_jitreaderdiff.sh -------------------------------------------------------------------------------- /test/test_linkedtopath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_linkedtopath.c -------------------------------------------------------------------------------- /test/test_lname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_lname.c -------------------------------------------------------------------------------- /test/test_macrocheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_macrocheck.c -------------------------------------------------------------------------------- /test/test_makename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_makename.c -------------------------------------------------------------------------------- /test/test_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_regex.c -------------------------------------------------------------------------------- /test/test_safe_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_safe_strcpy.c -------------------------------------------------------------------------------- /test/test_sanitized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_sanitized.c -------------------------------------------------------------------------------- /test/test_setupsections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_setupsections.c -------------------------------------------------------------------------------- /test/test_transformpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/test_transformpath.py -------------------------------------------------------------------------------- /test/testobjLE32PE.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testobjLE32PE.base -------------------------------------------------------------------------------- /test/testobjLE32PE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testobjLE32PE.exe -------------------------------------------------------------------------------- /test/testobjLE32PE.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testobjLE32PE.test.c -------------------------------------------------------------------------------- /test/testuriLE64ELf.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testuriLE64ELf.base -------------------------------------------------------------------------------- /test/testuriLE64ELf.testme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testuriLE64ELf.testme -------------------------------------------------------------------------------- /test/testuriLE64ELfsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/test/testuriLE64ELfsource.c -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/tools/README -------------------------------------------------------------------------------- /tools/makerelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/tools/makerelease.sh -------------------------------------------------------------------------------- /tools/updatesemanticversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davea42/libdwarf-code/HEAD/tools/updatesemanticversion.py --------------------------------------------------------------------------------