├── vender ├── clean.sh ├── devel.sh ├── distclean.sh └── deps.sh ├── prebuild └── modules │ └── dummy ├── deps ├── libssh2 │ ├── ChangeLog │ ├── docs │ │ ├── libssh2_sftp_fstatvfs.3 │ │ ├── libssh2_publickey_init.3 │ │ ├── libssh2_publickey_shutdown.3 │ │ ├── libssh2_publickey_list_fetch.3 │ │ ├── libssh2_publickey_list_free.3 │ │ ├── libssh2_publickey_remove_ex.3 │ │ ├── libssh2_channel_request_pty_size_ex.3 │ │ ├── libssh2_userauth_hostbased_fromfile_ex.3 │ │ └── HACKING │ ├── win32 │ │ ├── msvcproj.foot │ │ ├── libssh2.rc │ │ └── rules.mk │ ├── Makefile.os400qc3.inc │ ├── Makefile.OpenSSL.inc │ ├── Makefile.libgcrypt.inc │ ├── Makefile.mbedTLS.inc │ └── Makefile.WinCNG.inc ├── zlib │ ├── contrib │ │ ├── blast │ │ │ ├── test.txt │ │ │ ├── README │ │ │ ├── test.pk │ │ │ └── Makefile │ │ ├── infback9 │ │ │ └── README │ │ ├── puff │ │ │ └── zeros.raw │ │ ├── dotzlib │ │ │ ├── DotZLib.chm │ │ │ └── DotZLib │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── Inflater.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ └── CircularBuffer.cs │ │ ├── masmx64 │ │ │ └── bld_ml64.bat │ │ ├── masmx86 │ │ │ └── bld_ml32.bat │ │ ├── minizip │ │ │ ├── MiniZip64_Changes.txt │ │ │ └── minizip.pc.in │ │ ├── delphi │ │ │ └── ZLibConst.pas │ │ ├── testzlib │ │ │ └── testzlib.txt │ │ └── untgz │ │ │ └── Makefile │ ├── zlib.3.pdf │ ├── win32 │ │ └── VisualC.txt │ ├── old │ │ └── README │ ├── nintendods │ │ └── README │ └── zlib.pc.in ├── xz │ ├── po │ │ ├── LINGUAS │ │ └── POTFILES.in │ ├── tests │ │ ├── ossfuzz │ │ │ ├── config │ │ │ │ ├── fuzz.dict │ │ │ │ └── fuzz.options │ │ │ └── Makefile │ │ ├── files │ │ │ ├── bad-1-vli-1.xz │ │ │ ├── bad-1-vli-2.xz │ │ │ ├── good-0-empty.xz │ │ │ ├── good-2-lzma2.xz │ │ │ ├── bad-0cat-alone.xz │ │ │ ├── bad-0pad-empty.xz │ │ │ ├── bad-1-lzma2-1.xz │ │ │ ├── bad-1-lzma2-2.xz │ │ │ ├── bad-1-lzma2-3.xz │ │ │ ├── bad-1-lzma2-4.xz │ │ │ ├── bad-1-lzma2-5.xz │ │ │ ├── bad-1-lzma2-6.xz │ │ │ ├── bad-1-lzma2-7.xz │ │ │ ├── bad-1-lzma2-8.xz │ │ │ ├── bad-2-index-1.xz │ │ │ ├── bad-2-index-2.xz │ │ │ ├── bad-2-index-3.xz │ │ │ ├── bad-2-index-4.xz │ │ │ ├── bad-2-index-5.xz │ │ │ ├── good-1-lzma2-1.xz │ │ │ ├── good-1-lzma2-2.xz │ │ │ ├── good-1-lzma2-3.xz │ │ │ ├── good-1-lzma2-4.xz │ │ │ ├── good-1-lzma2-5.xz │ │ │ ├── bad-0catpad-empty.xz │ │ │ ├── bad-1-check-crc32.xz │ │ │ ├── bad-1-check-crc64.xz │ │ │ ├── good-0cat-empty.xz │ │ │ ├── good-0pad-empty.xz │ │ │ ├── good-1-check-none.xz │ │ │ ├── good-1-x86-lzma2.xz │ │ │ ├── unsupported-check.xz │ │ │ ├── bad-0-backward_size.xz │ │ │ ├── bad-0-footer_magic.xz │ │ │ ├── bad-0-header_magic.xz │ │ │ ├── bad-1-check-sha256.xz │ │ │ ├── good-0catpad-empty.xz │ │ │ ├── good-1-3delta-lzma2.xz │ │ │ ├── good-1-check-crc32.xz │ │ │ ├── good-1-check-crc64.xz │ │ │ ├── good-1-check-sha256.xz │ │ │ ├── good-1-sparc-lzma2.xz │ │ │ ├── bad-0-empty-truncated.xz │ │ │ ├── bad-0-nonempty_index.xz │ │ │ ├── bad-0cat-header_magic.xz │ │ │ ├── bad-1-block_header-1.xz │ │ │ ├── bad-1-block_header-2.xz │ │ │ ├── bad-1-block_header-3.xz │ │ │ ├── bad-1-block_header-4.xz │ │ │ ├── bad-1-block_header-5.xz │ │ │ ├── bad-1-block_header-6.xz │ │ │ ├── bad-1-stream_flags-1.xz │ │ │ ├── bad-1-stream_flags-2.xz │ │ │ ├── bad-1-stream_flags-3.xz │ │ │ ├── good-1-block_header-1.xz │ │ │ ├── good-1-block_header-2.xz │ │ │ ├── good-1-block_header-3.xz │ │ │ ├── good-1-delta-lzma2.tiff.xz │ │ │ ├── unsupported-block_header.xz │ │ │ ├── unsupported-filter_flags-1.xz │ │ │ ├── unsupported-filter_flags-2.xz │ │ │ ├── unsupported-filter_flags-3.xz │ │ │ └── bad-2-compressed_data_padding.xz │ │ ├── compress_prepared_bcj_x86 │ │ └── compress_prepared_bcj_sparc │ └── ChangeLog ├── libunwind │ ├── AUTHORS │ ├── doc │ │ └── unw_init_local2.man │ ├── include │ │ └── stamp-h1 │ ├── tests │ │ ├── ident.c │ │ ├── run-ia64-test-dyn1 │ │ ├── run-ptrace-mapper │ │ ├── run-ptrace-misc │ │ ├── run-check-namespace │ │ ├── ia64-test-rbs.h │ │ ├── ia64-test-stack.h │ │ ├── Ltest-bt.c │ │ ├── Ltest-exc.c │ │ ├── Lperf-trace.c │ │ ├── Ltest-dyn1.c │ │ ├── Ltest-trace.c │ │ ├── Lia64-test-nat.c │ │ ├── Lia64-test-rbs.c │ │ ├── Lperf-simple.c │ │ ├── Ltest-init.cxx │ │ ├── Ltest-nomalloc.c │ │ ├── Lia64-test-stack.c │ │ ├── Ltest-concurrent.c │ │ ├── Ltest-resume-sig.c │ │ ├── Lia64-test-readonly.c │ │ ├── Ltest-resume-sig-rt.c │ │ ├── Ltest-init-local-signal-lib.c │ │ └── Lx64-test-dwarf-expressions.c │ ├── src │ │ ├── ia64 │ │ │ ├── mk_Lcursor_i.c │ │ │ ├── Lrbs.c │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lparser.c │ │ │ ├── Lresume.c │ │ │ ├── Lscript.c │ │ │ ├── Ltables.c │ │ │ ├── Linit_local.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lfind_unwind_table.c │ │ │ ├── Lreg_states_iterate.c │ │ │ ├── Linstall_cursor.S │ │ │ └── mk_cursor_i │ │ ├── elf32.c │ │ ├── elf64.c │ │ ├── x86_64 │ │ │ ├── offsets.h │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lresume.c │ │ │ ├── Ltrace.c │ │ │ ├── Los-linux.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Los-freebsd.c │ │ │ ├── Los-solaris.c │ │ │ ├── Lstash_frame.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lglobal.c │ │ │ └── Lreg_states_iterate.c │ │ ├── dwarf │ │ │ ├── Lpe.c │ │ │ ├── Lexpr.c │ │ │ ├── Lfde.c │ │ │ ├── Lparser.c │ │ │ ├── Lfind_unwind_table.c │ │ │ └── Lfind_proc_info-lsb.c │ │ ├── sh │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── siglongjmp.S │ │ │ ├── Lcreate_addr_space.c │ │ │ └── Lreg_states_iterate.c │ │ ├── aarch64 │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Ltrace.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lstash_frame.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lreg_states_iterate.c │ │ │ └── siglongjmp.S │ │ ├── arm │ │ │ ├── Lglobal.c │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lresume.c │ │ │ ├── Lstep.c │ │ │ ├── Los-linux.c │ │ │ ├── Ltrace.c │ │ │ ├── Lex_tables.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Los-freebsd.c │ │ │ ├── Los-other.c │ │ │ ├── Lstash_frame.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lreg_states_iterate.c │ │ │ └── siglongjmp.S │ │ ├── hppa │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Linit_local.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ └── Lreg_states_iterate.c │ │ ├── mips │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Linit_local.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lreg_states_iterate.c │ │ │ └── siglongjmp.S │ │ ├── ppc32 │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lreg_states_iterate.c │ │ │ ├── setcontext.S │ │ │ └── Make-arch.in │ │ ├── ppc64 │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lreg_states_iterate.c │ │ │ └── setcontext.S │ │ ├── s390x │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lresume.c │ │ │ ├── Linit_local.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lglobal.c │ │ │ └── Lreg_states_iterate.c │ │ ├── tilegx │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lstep.c │ │ │ ├── Lglobal.c │ │ │ ├── Lresume.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lcreate_addr_space.c │ │ │ ├── Lis_signal_frame.c │ │ │ ├── Lreg_states_iterate.c │ │ │ └── siglongjmp.S │ │ ├── x86 │ │ │ ├── Lglobal.c │ │ │ ├── Linit.c │ │ │ ├── Lregs.c │ │ │ ├── Lresume.c │ │ │ ├── Lstep.c │ │ │ ├── Los-linux.c │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Los-freebsd.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lcreate_addr_space.c │ │ │ └── Lreg_states_iterate.c │ │ ├── mi │ │ │ ├── Lget_fpreg.c │ │ │ ├── Lget_reg.c │ │ │ ├── Lset_fpreg.c │ │ │ ├── Lset_reg.c │ │ │ ├── Ldyn-extract.c │ │ │ ├── Ldyn-remote.c │ │ │ ├── Lget_accessors.c │ │ │ ├── Lget_proc_name.c │ │ │ ├── Lset_cache_size.c │ │ │ ├── Ldestroy_addr_space.c │ │ │ ├── Lget_proc_info_by_ip.c │ │ │ ├── Lset_caching_policy.c │ │ │ ├── Lfind_dynamic_proc_info.c │ │ │ └── Lput_dynamic_unwind_info.c │ │ ├── ppc │ │ │ ├── Linit_local.c │ │ │ ├── Linit_remote.c │ │ │ ├── Lget_proc_info.c │ │ │ ├── Lget_save_loc.c │ │ │ ├── Lapply_reg_state.c │ │ │ ├── Lis_signal_frame.c │ │ │ └── Lreg_states_iterate.c │ │ ├── elf32.h │ │ ├── elf64.h │ │ ├── ptrace │ │ │ ├── _UPT_elf.c │ │ │ └── libunwind-ptrace.pc.in │ │ ├── coredump │ │ │ ├── _UPT_elf.c │ │ │ └── README │ │ ├── unwind │ │ │ ├── libunwind.pc.in │ │ │ └── libunwind.pc │ │ ├── libunwind-generic.pc.in │ │ └── setjmp │ │ │ └── libunwind-setjmp.pc.in │ ├── autogen.sh │ └── scripts │ │ └── kernel-diff.sh └── elfutils │ ├── doc │ ├── debuginfod_begin.3 │ ├── debuginfod_end.3 │ ├── debuginfod_find_source.3 │ ├── debuginfod_find_executable.3 │ └── debuginfod_set_progressfn.3 │ ├── AUTHORS │ ├── backends │ ├── ppc64_corenote.c │ ├── riscv64_corenote.c │ ├── s390x_corenote.c │ ├── sparc64_corenote.c │ └── x32_corenote.c │ ├── libdwfl │ ├── bzip2.c │ └── lzma.c │ ├── tests │ ├── testfile.bz2 │ ├── linkmap-cut.bz2 │ ├── testfile10.bz2 │ ├── testfile11.bz2 │ ├── testfile12.bz2 │ ├── testfile13.bz2 │ ├── testfile14.bz2 │ ├── testfile15.bz2 │ ├── testfile16.bz2 │ ├── testfile17.bz2 │ ├── testfile18.bz2 │ ├── testfile19.bz2 │ ├── testfile2.bz2 │ ├── testfile20.bz2 │ ├── testfile21.bz2 │ ├── testfile22.bz2 │ ├── testfile23.bz2 │ ├── testfile24.bz2 │ ├── testfile25.bz2 │ ├── testfile26.bz2 │ ├── testfile27.bz2 │ ├── testfile28.bz2 │ ├── testfile29.bz2 │ ├── testfile3.bz2 │ ├── testfile30.bz2 │ ├── testfile31.bz2 │ ├── testfile32.bz2 │ ├── testfile33.bz2 │ ├── testfile34.bz2 │ ├── testfile35.bz2 │ ├── testfile36.bz2 │ ├── testfile37.bz2 │ ├── testfile38.bz2 │ ├── testfile39.bz2 │ ├── testfile4.bz2 │ ├── testfile40.bz2 │ ├── testfile41.bz2 │ ├── testfile42.bz2 │ ├── testfile43.bz2 │ ├── testfile46.bz2 │ ├── testfile47.bz2 │ ├── testfile48.bz2 │ ├── testfile49.bz2 │ ├── testfile5.bz2 │ ├── testfile50.bz2 │ ├── testfile51.bz2 │ ├── testfile56.bz2 │ ├── testfile57.bz2 │ ├── testfile58.bz2 │ ├── testfile59.bz2 │ ├── testfile6.bz2 │ ├── testfile60.bz2 │ ├── testfile61.bz2 │ ├── testfile62.bz2 │ ├── testfile63.bz2 │ ├── testfile64.bz2 │ ├── testfile65.bz2 │ ├── testfile66.bz2 │ ├── testfile67.bz2 │ ├── testfile68.bz2 │ ├── testfile7.bz2 │ ├── testfile71.bz2 │ ├── testfile8.bz2 │ ├── testfile9.bz2 │ ├── testfilearm.bz2 │ ├── testfileloc.bz2 │ ├── hello_csky.ko.bz2 │ ├── hello_i386.ko.bz2 │ ├── hello_m68k.ko.bz2 │ ├── hello_s390.ko.bz2 │ ├── run-strip-test11.sh │ ├── testfile-m68k.bz2 │ ├── testfile-x32.bz2 │ ├── testfile44.S.bz2 │ ├── testfile45.S.bz2 │ ├── testfile53-32.bz2 │ ├── testfile53-64.bz2 │ ├── testfile55-32.bz2 │ ├── testfile55-64.bz2 │ ├── testfile69.so.bz2 │ ├── testfilecsky.bz2 │ ├── testfilemacro.bz2 │ ├── testfileppc32.bz2 │ ├── testfileppc64.bz2 │ ├── testfiles390.bz2 │ ├── testfiles390x.bz2 │ ├── hello_aarch64.ko.bz2 │ ├── hello_ppc64.ko.bz2 │ ├── hello_riscv64.ko.bz2 │ ├── hello_x86_64.ko.bz2 │ ├── linkmap-cut.core.bz2 │ ├── run-strip-test12.sh │ ├── test-core-lib.so.bz2 │ ├── test-core.core.bz2 │ ├── test-core.exec.bz2 │ ├── test-offset-loop.bz2 │ ├── testarchive64.a.bz2 │ ├── testcore-rtlib.bz2 │ ├── testfile-debug.bz2 │ ├── testfile-dwarf-4.bz2 │ ├── testfile-dwarf-5.bz2 │ ├── testfile-dwzstr.bz2 │ ├── testfile-inlines.bz2 │ ├── testfile-m68k-s.bz2 │ ├── testfile-macinfo.bz2 │ ├── testfile-macros.bz2 │ ├── testfile-nolfs.bz2 │ ├── testfile-riscv64.bz2 │ ├── testfile-stridex.bz2 │ ├── testfile-strtab.bz2 │ ├── testfile-version.bz2 │ ├── testfile-x32-d.bz2 │ ├── testfile-x32-s.bz2 │ ├── testfile-zdebug.bz2 │ ├── testfile-zgabi32.bz2 │ ├── testfile-zgabi64.bz2 │ ├── testfile-zgnu32.bz2 │ ├── testfile-zgnu64.bz2 │ ├── testfile15.debug.bz2 │ ├── testfile16.debug.bz2 │ ├── testfile17.debug.bz2 │ ├── testfile19.index.bz2 │ ├── testfile20.index.bz2 │ ├── testfile21.index.bz2 │ ├── testfile28.rdwr.bz2 │ ├── testfile29.rdwr.bz2 │ ├── testfile35.debug.bz2 │ ├── testfile36.debug.bz2 │ ├── testfile37.debug.bz2 │ ├── testfile40.debug.bz2 │ ├── testfile48.debug.bz2 │ ├── testfile52-32.so.bz2 │ ├── testfile52-64.so.bz2 │ ├── testfile54-32.so.bz2 │ ├── testfile54-64.so.bz2 │ ├── testfile66.core.bz2 │ ├── testfile69.core.bz2 │ ├── testfile70.core.bz2 │ ├── testfile70.exec.bz2 │ ├── testfileaarch64.bz2 │ ├── testfilebasmin.bz2 │ ├── testfilebaxmin.bz2 │ ├── testfilebazdbg.bz2 │ ├── testfilebazdyn.bz2 │ ├── testfilebazmdb.bz2 │ ├── testfilebazmin.bz2 │ ├── testfilebaztab.bz2 │ ├── testfilenolines.bz2 │ ├── addrx_constx-4.dwo.bz2 │ ├── addrx_constx-5.dwo.bz2 │ ├── backtrace.ppc.core.bz2 │ ├── backtrace.ppc.exec.bz2 │ ├── backtrace.x32.core.bz2 │ ├── backtrace.x32.exec.bz2 │ ├── linkmap-cut-lib.so.bz2 │ ├── testcore-rtlib-ppc.bz2 │ ├── testfile-info-link.bz2 │ ├── testfile-m68k-core.bz2 │ ├── testfile-riscv64-s.bz2 │ ├── testfile-rng.debug.bz2 │ ├── testfile-sizes1.o.bz2 │ ├── testfile-sizes2.o.bz2 │ ├── testfile-sizes3.o.bz2 │ ├── testfile-sizes4.o.bz2 │ ├── testfile-x32-core.bz2 │ ├── testfile-x32-debug.bz2 │ ├── testfile-zgabi32be.bz2 │ ├── testfile-zgabi64be.bz2 │ ├── testfile-zgnu32be.bz2 │ ├── testfile-zgnu64be.bz2 │ ├── testfile42_noshdrs.bz2 │ ├── testfile44.expect.bz2 │ ├── testfile45.expect.bz2 │ ├── testfile_i686_core.bz2 │ ├── testfile_multi.dwz.bz2 │ ├── testfilebazdbg_pl.bz2 │ ├── testfilebazdbg_plr.bz2 │ ├── testfilebazmin_pl.bz2 │ ├── testfilebazmin_plr.bz2 │ ├── testfilefoobarbaz.bz2 │ ├── testfilegdbindex5.bz2 │ ├── testfilegdbindex7.bz2 │ ├── testlib_dynseg.so.bz2 │ ├── backtrace.i386.core.bz2 │ ├── backtrace.i386.exec.bz2 │ ├── backtrace.s390.core.bz2 │ ├── backtrace.s390.exec.bz2 │ ├── backtrace.s390x.core.bz2 │ ├── backtrace.s390x.exec.bz2 │ ├── backtrace.sparc.core.bz2 │ ├── backtrace.sparc.exec.bz2 │ ├── backtrace.x86_64.core.bz2 │ ├── backtrace.x86_64.exec.bz2 │ ├── test-offset-loop.alt.bz2 │ ├── testfile-ada-variant.bz2 │ ├── testfile-bpf-dis1.o.bz2 │ ├── testfile-bpf-reloc.o.bz2 │ ├── testfile-debug-rel.o.bz2 │ ├── testfile-debug-types.bz2 │ ├── testfile-dwzstr.multi.bz2 │ ├── testfile-hello4.dwo.bz2 │ ├── testfile-hello5.dwo.bz2 │ ├── testfile-lex-inlines.bz2 │ ├── testfile-macros-0xff.bz2 │ ├── testfile-nobitsalign.bz2 │ ├── testfile-riscv64-core.bz2 │ ├── testfile-splitdwarf-4.bz2 │ ├── testfile-splitdwarf-5.bz2 │ ├── testfile-urng.debug.bz2 │ ├── testfile-world4.dwo.bz2 │ ├── testfile-world5.dwo.bz2 │ ├── testfile11-debugframe.bz2 │ ├── testfile12-debugframe.bz2 │ ├── testfile53-32.debug.bz2 │ ├── testfile53-32.prelink.bz2 │ ├── testfile53-64.debug.bz2 │ ├── testfile53-64.prelink.bz2 │ ├── testfile55-32.debug.bz2 │ ├── testfile55-32.prelink.bz2 │ ├── testfile55-64.debug.bz2 │ ├── testfile55-64.prelink.bz2 │ ├── testfile_aarch64_core.bz2 │ ├── testfile_class_func.bz2 │ ├── testfile_const_type.bz2 │ ├── testfile_entry_value.bz2 │ ├── testfile_low_high_pc.bz2 │ ├── testfile_multi_main.bz2 │ ├── testfile_nested_funcs.bz2 │ ├── testfilebazdbg.debug.bz2 │ ├── testfilebazdbgppc64.bz2 │ ├── testfilebazdynppc64.bz2 │ ├── testfilebazmdbppc64.bz2 │ ├── testfilebazminppc64.bz2 │ ├── testfilebaztabppc64.bz2 │ ├── testfiledwarfinlines.bz2 │ ├── testfileppc32attrs.o.bz2 │ ├── testfileppc64attrs.o.bz2 │ ├── testfileranges4.debug.bz2 │ ├── testfileranges5.debug.bz2 │ ├── backtrace.aarch64.core.bz2 │ ├── backtrace.aarch64.exec.bz2 │ ├── backtrace.i386.fp.core.bz2 │ ├── backtrace.i386.fp.exec.bz2 │ ├── debug-ranges-no-lowpc.o.bz2 │ ├── funcretval_test_aarch64.bz2 │ ├── run-strip-test5.sh │ ├── testfile-addrx_constx-4.bz2 │ ├── testfile-addrx_constx-5.bz2 │ ├── testfile-annobingroup.o.bz2 │ ├── testfile-debug-rel-g.o.bz2 │ ├── testfile-debug-rel-z.o.bz2 │ ├── testfile-riscv64-dis1.o.bz2 │ ├── testfile52-32.so.debug.bz2 │ ├── testfile52-64.so.debug.bz2 │ ├── testfile54-32.so.debug.bz2 │ ├── testfile54-64.so.debug.bz2 │ ├── testfile_implicit_value.bz2 │ ├── testfile_parameter_ref.bz2 │ ├── testfilearm-debugframe.bz2 │ ├── testfilebazdbgppc64_pl.bz2 │ ├── testfilebazdbgppc64_plr.bz2 │ ├── testfilebazminppc64_pl.bz2 │ ├── testfilebazminppc64_plr.bz2 │ ├── testfilesparc64attrs.o.bz2 │ ├── backtrace.aarch64.fp.core.bz2 │ ├── backtrace.aarch64.fp.exec.bz2 │ ├── backtrace.ppc64le.fp.core.bz2 │ ├── backtrace.ppc64le.fp.exec.bz2 │ ├── backtrace.x86_64.fp.core.bz2 │ ├── backtrace.x86_64.fp.exec.bz2 │ ├── run-strip-test4.sh │ ├── run-strip-test6.sh │ ├── run-strip-test7.sh │ ├── run-strip-test8.sh │ ├── run-unstrip-test2.sh │ ├── splitdwarf4-not-split4.dwo.bz2 │ ├── testfile-bpf-dis1.expect.bz2 │ ├── testfile-bpf-reloc.expect.bz2 │ ├── testfile-debug-rel-ppc64.o.bz2 │ ├── testfile-gnu-property-note.bz2 │ ├── testfile-macros-object.o.bz2 │ ├── testfile-nobitsalign.strip.bz2 │ ├── testfile-only-debug-line.bz2 │ ├── testfile-ppc64-min-instr.bz2 │ ├── testfile-ranges-hello.dwo.bz2 │ ├── testfile-ranges-hello5.dwo.bz2 │ ├── testfile-ranges-world.dwo.bz2 │ ├── testfile-ranges-world5.dwo.bz2 │ ├── testfile-s390x-hash-both.bz2 │ ├── testfile-strtab.debuginfo.bz2 │ ├── testfile-strtab.stripped.bz2 │ ├── testfile52-32.noshdrs.so.bz2 │ ├── testfile52-32.prelink.so.bz2 │ ├── testfile52-64.noshdrs.so.bz2 │ ├── testfile52-64.prelink.so.bz2 │ ├── testfile54-32.noshdrs.so.bz2 │ ├── testfile54-32.prelink.so.bz2 │ ├── testfile54-64.noshdrs.so.bz2 │ ├── testfile54-64.prelink.so.bz2 │ ├── testfile_gnu_props.32be.o.bz2 │ ├── testfile_gnu_props.32le.o.bz2 │ ├── testfile_gnu_props.64be.o.bz2 │ ├── testfile_gnu_props.64le.o.bz2 │ ├── testfile_implicit_pointer.bz2 │ ├── testfileaarch64-debugframe.bz2 │ ├── testfilebazdbgppc64.debug.bz2 │ ├── testfiledwarfinlines.core.bz2 │ ├── testfileppc32-debugframe.bz2 │ ├── testfileppc64-debugframe.bz2 │ ├── testfilesplitranges4.debug.bz2 │ ├── testfilesplitranges5.debug.bz2 │ ├── libtestfile_multi_shared.so.bz2 │ ├── testfile-annobingroup-i386.o.bz2 │ ├── testfile-backtrace-demangle.bz2 │ ├── testfile-const-values.debug.bz2 │ ├── testfile-debug-rel-ppc64-g.o.bz2 │ ├── testfile-debug-rel-ppc64-z.o.bz2 │ ├── testfile-gnu-property-note.o.bz2 │ ├── testfile-info-link.debuginfo.bz2 │ ├── testfile-info-link.stripped.bz2 │ ├── testfile-riscv64-dis1.expect.bz2 │ ├── testfile-annobingroup-x86_64.o.bz2 │ ├── testfile-backtrace-demangle.core.bz2 │ ├── debuginfod-debs │ │ ├── hithere_1.0-1_amd64.deb │ │ ├── hithere_1.0.orig.tar.gz │ │ ├── hithere_1.0-1.debian.tar.xz │ │ └── hithere-dbgsym_1.0-1_amd64.ddeb │ ├── debuginfod-rpms │ │ ├── rhel6 │ │ │ ├── hello2-1.0-2.src.rpm │ │ │ ├── hello2-1.0-2.i686.rpm │ │ │ ├── hello2-two-1.0-2.i686.rpm │ │ │ └── hello2-debuginfo-1.0-2.i686.rpm │ │ ├── rhel7 │ │ │ ├── hello2-1.0-2.src.rpm │ │ │ ├── hello2-1.0-2.x86_64.rpm │ │ │ ├── hello2-two-1.0-2.x86_64.rpm │ │ │ └── hello2-debuginfo-1.0-2.x86_64.rpm │ │ └── fedora30 │ │ │ ├── hello2-1.0-2.src.rpm │ │ │ ├── hello2-1.0-2.x86_64.rpm │ │ │ ├── hello2-two-1.0-2.x86_64.rpm │ │ │ ├── hello2-debuginfo-1.0-2.x86_64.rpm │ │ │ ├── hello2-debugsource-1.0-2.x86_64.rpm │ │ │ └── hello2-two-debuginfo-1.0-2.x86_64.rpm │ ├── testfile-splitdwarf4-not-split4.debug.bz2 │ ├── testfile-dwfl-report-elf-align-shlib.so.bz2 │ ├── testfile_implicit_pointer.c │ ├── testfile_const_type.c │ └── testfile_implicit_value.c │ ├── po │ ├── quot.sed │ ├── LINGUAS │ └── boldquot.sed │ ├── THANKS │ └── debuginfod │ └── libdebuginfod.map ├── SOURCE ├── perf-tools │ ├── deprecated │ │ └── README.md │ └── images │ │ └── perf-tools_2016.png └── diagnose-tools │ ├── attach.h │ └── debug.h ├── documents ├── perf.png ├── usage.docx ├── sys-cost.png ├── pupil-perf.png ├── utilization.png ├── test-pi.md └── test-memcpy.md └── .gitignore /vender/clean.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vender/devel.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prebuild/modules/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vender/distclean.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/libssh2/ChangeLog: -------------------------------------------------------------------------------- 1 | see NEWS 2 | -------------------------------------------------------------------------------- /deps/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /deps/xz/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs 2 | de 3 | fr 4 | it 5 | pl 6 | vi 7 | -------------------------------------------------------------------------------- /deps/libunwind/AUTHORS: -------------------------------------------------------------------------------- 1 | David Mosberger 2 | -------------------------------------------------------------------------------- /deps/libunwind/doc/unw_init_local2.man: -------------------------------------------------------------------------------- 1 | .so man3/unw_init_local.3 2 | -------------------------------------------------------------------------------- /deps/libunwind/include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for include/config.h 2 | -------------------------------------------------------------------------------- /deps/xz/tests/ossfuzz/config/fuzz.dict: -------------------------------------------------------------------------------- 1 | "\xFD7zXZ\x00" 2 | "YZ" 3 | -------------------------------------------------------------------------------- /SOURCE/perf-tools/deprecated/README.md: -------------------------------------------------------------------------------- 1 | Deprecated versions of tools. 2 | -------------------------------------------------------------------------------- /deps/elfutils/doc/debuginfod_begin.3: -------------------------------------------------------------------------------- 1 | .so man3/debuginfod_find_debuginfo.3 2 | -------------------------------------------------------------------------------- /deps/elfutils/doc/debuginfod_end.3: -------------------------------------------------------------------------------- 1 | .so man3/debuginfod_find_debuginfo.3 2 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_sftp_fstatvfs.3: -------------------------------------------------------------------------------- 1 | .so man3/libssh2_sftp_statvfs.3 2 | -------------------------------------------------------------------------------- /deps/libssh2/win32/msvcproj.foot: -------------------------------------------------------------------------------- 1 | # End Target 2 | # End Project 3 | 4 | -------------------------------------------------------------------------------- /deps/xz/tests/ossfuzz/config/fuzz.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | dict = fuzz.dict 3 | -------------------------------------------------------------------------------- /deps/elfutils/doc/debuginfod_find_source.3: -------------------------------------------------------------------------------- 1 | .so man3/debuginfod_find_debuginfo.3 2 | -------------------------------------------------------------------------------- /deps/elfutils/doc/debuginfod_find_executable.3: -------------------------------------------------------------------------------- 1 | .so man3/debuginfod_find_debuginfo.3 2 | -------------------------------------------------------------------------------- /deps/elfutils/doc/debuginfod_set_progressfn.3: -------------------------------------------------------------------------------- 1 | .so man3/debuginfod_find_debuginfo.3 2 | -------------------------------------------------------------------------------- /deps/libunwind/tests/ident.c: -------------------------------------------------------------------------------- 1 | long 2 | f (long val) 3 | { 4 | return val; 5 | } 6 | -------------------------------------------------------------------------------- /deps/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /deps/elfutils/AUTHORS: -------------------------------------------------------------------------------- 1 | For Now: 2 | Ulrich Drepper. 3 | Roland McGrath 4 | Petr Machata 5 | -------------------------------------------------------------------------------- /deps/elfutils/backends/ppc64_corenote.c: -------------------------------------------------------------------------------- 1 | #define BITS 64 2 | #include "ppc_corenote.c" 3 | -------------------------------------------------------------------------------- /deps/elfutils/backends/riscv64_corenote.c: -------------------------------------------------------------------------------- 1 | #define BITS 64 2 | #include "riscv_corenote.c" 3 | -------------------------------------------------------------------------------- /deps/elfutils/backends/s390x_corenote.c: -------------------------------------------------------------------------------- 1 | #define BITS 64 2 | #include "s390_corenote.c" 3 | -------------------------------------------------------------------------------- /deps/elfutils/backends/sparc64_corenote.c: -------------------------------------------------------------------------------- 1 | #define BITS 64 2 | #include "sparc_corenote.c" 3 | -------------------------------------------------------------------------------- /deps/elfutils/backends/x32_corenote.c: -------------------------------------------------------------------------------- 1 | #define BITS 32 2 | #include "x86_64_corenote.c" 3 | -------------------------------------------------------------------------------- /deps/libunwind/tests/run-ia64-test-dyn1: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test-ptrace -t ./ia64-test-dyn1 3 | -------------------------------------------------------------------------------- /deps/libunwind/tests/run-ptrace-mapper: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test-ptrace -c -n -t ./mapper $* 3 | -------------------------------------------------------------------------------- /deps/libunwind/tests/run-ptrace-misc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test-ptrace -c -t ./test-ptrace-misc 3 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/mk_Lcursor_i.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "mk_Gcursor_i.c" 3 | -------------------------------------------------------------------------------- /deps/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /documents/perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/documents/perf.png -------------------------------------------------------------------------------- /documents/usage.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/documents/usage.docx -------------------------------------------------------------------------------- /deps/libssh2/Makefile.os400qc3.inc: -------------------------------------------------------------------------------- 1 | CRYPTO_CSOURCES = os400qc3.c 2 | CRYPTO_HHEADERS = os400qc3.h 3 | -------------------------------------------------------------------------------- /documents/sys-cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/documents/sys-cost.png -------------------------------------------------------------------------------- /documents/pupil-perf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/documents/pupil-perf.png -------------------------------------------------------------------------------- /documents/utilization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/documents/utilization.png -------------------------------------------------------------------------------- /deps/libunwind/src/elf32.c: -------------------------------------------------------------------------------- 1 | #ifndef UNW_REMOTE_ONLY 2 | # include "elf32.h" 3 | # include "elfxx.c" 4 | #endif 5 | -------------------------------------------------------------------------------- /deps/libunwind/src/elf64.c: -------------------------------------------------------------------------------- 1 | #ifndef UNW_REMOTE_ONLY 2 | # include "elf64.h" 3 | # include "elfxx.c" 4 | #endif 5 | -------------------------------------------------------------------------------- /deps/elfutils/libdwfl/bzip2.c: -------------------------------------------------------------------------------- 1 | /* bzlib is almost just like zlib. */ 2 | 3 | #define BZLIB 4 | #include "gzip.c" 5 | -------------------------------------------------------------------------------- /deps/libssh2/win32/libssh2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/libssh2/win32/libssh2.rc -------------------------------------------------------------------------------- /deps/libunwind/tests/run-check-namespace: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | chmod +x ./check-namespace.sh 3 | ./check-namespace.sh $* 4 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile.bz2 -------------------------------------------------------------------------------- /deps/zlib/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /deps/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /deps/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /deps/elfutils/libdwfl/lzma.c: -------------------------------------------------------------------------------- 1 | /* liblzma is pretty close to zlib and bzlib. */ 2 | 3 | #define LZMA 4 | #include "gzip.c" 5 | -------------------------------------------------------------------------------- /deps/elfutils/tests/linkmap-cut.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/linkmap-cut.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile10.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile10.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile11.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile11.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile12.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile12.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile13.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile13.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile14.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile14.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile15.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile15.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile16.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile16.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile17.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile17.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile18.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile18.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile19.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile19.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile2.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile20.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile20.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile21.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile21.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile22.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile22.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile23.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile23.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile24.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile24.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile25.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile25.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile26.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile26.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile27.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile27.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile28.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile28.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile29.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile29.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile3.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile30.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile30.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile31.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile31.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile33.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile33.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile34.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile34.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile35.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile35.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile36.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile36.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile37.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile37.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile38.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile38.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile39.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile39.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile4.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile4.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile40.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile40.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile41.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile41.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile42.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile42.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile43.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile43.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile46.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile46.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile47.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile47.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile48.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile48.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile49.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile49.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile5.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile5.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile50.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile50.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile51.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile51.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile56.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile56.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile57.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile57.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile58.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile58.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile59.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile59.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile6.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile6.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile60.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile60.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile61.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile61.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile62.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile62.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile63.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile63.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile65.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile65.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile66.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile66.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile67.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile67.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile68.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile68.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile7.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile7.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile71.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile71.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile8.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile8.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile9.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile9.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilearm.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilearm.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileloc.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileloc.bz2 -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/offsets.h: -------------------------------------------------------------------------------- 1 | /* FreeBSD specific definitions */ 2 | 3 | #define FREEBSD_UC_MCONTEXT_OFF 0x10 4 | -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-vli-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-vli-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-vli-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-vli-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-0-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-0-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-2-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-2-lzma2.xz -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_csky.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_csky.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_i386.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_i386.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_m68k.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_m68k.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_s390.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_s390.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test11.sh: -------------------------------------------------------------------------------- 1 | original=testfile-m68k 2 | stripped=testfile-m68k-s 3 | 4 | . $srcdir/run-strip-test.sh 5 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-m68k.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-m68k.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-x32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-x32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile44.S.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile44.S.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile45.S.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile45.S.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile69.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile69.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilecsky.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilecsky.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilemacro.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilemacro.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfiles390.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfiles390.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfiles390x.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfiles390x.bz2 -------------------------------------------------------------------------------- /deps/libssh2/Makefile.OpenSSL.inc: -------------------------------------------------------------------------------- 1 | CRYPTO_CSOURCES = openssl.c 2 | CRYPTO_HHEADERS = openssl.h 3 | CRYPTO_LTLIBS = $(LTLIBSSL) 4 | -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0cat-alone.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0cat-alone.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0pad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0pad-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-3.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-4.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-5.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-6.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-6.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-7.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-7.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-lzma2-8.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-lzma2-8.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-index-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-index-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-index-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-index-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-index-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-index-3.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-index-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-index-4.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-index-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-index-5.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-lzma2-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-lzma2-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-lzma2-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-lzma2-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-lzma2-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-lzma2-3.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-lzma2-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-lzma2-4.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-lzma2-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-lzma2-5.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /deps/zlib/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- 1 | ml64.exe /Flinffasx64 /c /Zi inffasx64.asm 2 | ml64.exe /Flgvmat64 /c /Zi gvmat64.asm 3 | -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_aarch64.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_aarch64.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_ppc64.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_ppc64.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_riscv64.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_riscv64.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/hello_x86_64.ko.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/hello_x86_64.ko.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/linkmap-cut.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/linkmap-cut.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test12.sh: -------------------------------------------------------------------------------- 1 | original=testfile-riscv64 2 | stripped=testfile-riscv64-s 3 | 4 | . $srcdir/run-strip-test.sh 5 | -------------------------------------------------------------------------------- /deps/elfutils/tests/test-core-lib.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/test-core-lib.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/test-core.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/test-core.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/test-core.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/test-core.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/test-offset-loop.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/test-offset-loop.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testarchive64.a.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testarchive64.a.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testcore-rtlib.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testcore-rtlib.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-dwarf-4.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-dwarf-4.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-dwarf-5.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-dwarf-5.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-dwzstr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-dwzstr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-inlines.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-inlines.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-m68k-s.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-m68k-s.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-macinfo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-macinfo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-macros.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-macros.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-nolfs.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-nolfs.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-riscv64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-riscv64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-stridex.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-stridex.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-strtab.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-strtab.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-version.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-version.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-x32-d.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-x32-d.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-x32-s.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-x32-s.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zdebug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zdebug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgabi32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgabi32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgabi64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgabi64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgnu32.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgnu32.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgnu64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgnu64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile15.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile15.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile16.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile16.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile17.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile17.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile19.index.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile19.index.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile20.index.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile20.index.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile21.index.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile21.index.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile28.rdwr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile28.rdwr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile29.rdwr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile29.rdwr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile35.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile35.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile36.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile36.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile37.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile37.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile40.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile40.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile48.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile48.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-32.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-32.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-64.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-64.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-32.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-32.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-64.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-64.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile66.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile66.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile69.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile69.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile70.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile70.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile70.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile70.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileaarch64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileaarch64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebasmin.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebasmin.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebaxmin.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebaxmin.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbg.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbg.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdyn.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdyn.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazmdb.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazmdb.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazmin.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazmin.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebaztab.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebaztab.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilenolines.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilenolines.bz2 -------------------------------------------------------------------------------- /deps/libssh2/Makefile.libgcrypt.inc: -------------------------------------------------------------------------------- 1 | CRYPTO_CSOURCES = libgcrypt.c 2 | CRYPTO_HHEADERS = libgcrypt.h 3 | CRYPTO_LTLIBS = $(LTLIBGCRYPT) 4 | -------------------------------------------------------------------------------- /deps/libssh2/Makefile.mbedTLS.inc: -------------------------------------------------------------------------------- 1 | CRYPTO_CSOURCES = mbedtls.c 2 | CRYPTO_HHEADERS = mbedtls.h 3 | CRYPTO_LTLIBS = $(LTLIBMBEDCRYPTO) 4 | -------------------------------------------------------------------------------- /deps/xz/tests/compress_prepared_bcj_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/compress_prepared_bcj_x86 -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0catpad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0catpad-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-check-crc32.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-check-crc32.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-check-crc64.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-check-crc64.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-0cat-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-0cat-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-0pad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-0pad-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-check-none.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-check-none.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-x86-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-x86-lzma2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/unsupported-check.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/unsupported-check.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- 1 | ml /coff /Zi /c /Flmatch686.lst match686.asm 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 3 | -------------------------------------------------------------------------------- /vender/deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ ! -f `dirname $0`/"module.mk" ]; then 4 | touch `dirname $0`/module.mk 5 | fi 6 | 7 | -------------------------------------------------------------------------------- /deps/elfutils/tests/addrx_constx-4.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/addrx_constx-4.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/addrx_constx-5.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/addrx_constx-5.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.ppc.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.ppc.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.ppc.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.ppc.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x32.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x32.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x32.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x32.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/linkmap-cut-lib.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/linkmap-cut-lib.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testcore-rtlib-ppc.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testcore-rtlib-ppc.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-info-link.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-info-link.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-m68k-core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-m68k-core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-riscv64-s.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-riscv64-s.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-rng.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-rng.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-sizes1.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-sizes1.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-sizes2.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-sizes2.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-sizes3.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-sizes3.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-sizes4.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-sizes4.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-x32-core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-x32-core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-x32-debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-x32-debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgabi32be.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgabi32be.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgabi64be.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgabi64be.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgnu32be.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgnu32be.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-zgnu64be.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-zgnu64be.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile42_noshdrs.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile42_noshdrs.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile44.expect.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile44.expect.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile45.expect.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile45.expect.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_i686_core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_i686_core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_multi.dwz.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_multi.dwz.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbg_pl.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbg_pl.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbg_plr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbg_plr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazmin_pl.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazmin_pl.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazmin_plr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazmin_plr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilefoobarbaz.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilefoobarbaz.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilegdbindex5.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilegdbindex5.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilegdbindex7.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilegdbindex7.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testlib_dynseg.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testlib_dynseg.so.bz2 -------------------------------------------------------------------------------- /deps/libunwind/tests/ia64-test-rbs.h: -------------------------------------------------------------------------------- 1 | #define NSTACKS 128 2 | #define STACK_SIZE_SHIFT 17 3 | #define STACK_SIZE (1 << STACK_SIZE_SHIFT) 4 | -------------------------------------------------------------------------------- /deps/xz/tests/compress_prepared_bcj_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/compress_prepared_bcj_sparc -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0-backward_size.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0-backward_size.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0-footer_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0-footer_magic.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0-header_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0-header_magic.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-check-sha256.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-check-sha256.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-0catpad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-0catpad-empty.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-3delta-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-3delta-lzma2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-check-crc32.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-check-crc32.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-check-crc64.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-check-crc64.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-check-sha256.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-check-sha256.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-sparc-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-sparc-lzma2.xz -------------------------------------------------------------------------------- /SOURCE/perf-tools/images/perf-tools_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/SOURCE/perf-tools/images/perf-tools_2016.png -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.i386.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.i386.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.i386.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.i386.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.s390.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.s390.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.s390.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.s390.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.s390x.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.s390x.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.s390x.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.s390x.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.sparc.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.sparc.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.sparc.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.sparc.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x86_64.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x86_64.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x86_64.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x86_64.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/test-offset-loop.alt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/test-offset-loop.alt.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ada-variant.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ada-variant.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-bpf-dis1.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-bpf-dis1.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-bpf-reloc.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-bpf-reloc.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-types.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-types.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-dwzstr.multi.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-dwzstr.multi.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-hello4.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-hello4.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-hello5.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-hello5.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-lex-inlines.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-lex-inlines.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-macros-0xff.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-macros-0xff.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-nobitsalign.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-nobitsalign.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-riscv64-core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-riscv64-core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-splitdwarf-4.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-splitdwarf-4.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-splitdwarf-5.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-splitdwarf-5.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-urng.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-urng.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-world4.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-world4.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-world5.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-world5.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile11-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile11-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile12-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile12-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-32.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-32.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-32.prelink.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-32.prelink.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-64.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-64.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile53-64.prelink.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile53-64.prelink.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-32.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-32.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-32.prelink.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-32.prelink.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-64.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-64.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile55-64.prelink.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile55-64.prelink.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_aarch64_core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_aarch64_core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_class_func.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_class_func.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_const_type.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_const_type.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_entry_value.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_entry_value.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_low_high_pc.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_low_high_pc.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_multi_main.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_multi_main.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_nested_funcs.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_nested_funcs.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbg.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbg.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbgppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbgppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdynppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdynppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazmdbppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazmdbppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazminppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazminppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebaztabppc64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebaztabppc64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfiledwarfinlines.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfiledwarfinlines.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc32attrs.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc32attrs.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc64attrs.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc64attrs.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileranges4.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileranges4.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileranges5.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileranges5.debug.bz2 -------------------------------------------------------------------------------- /deps/libssh2/Makefile.WinCNG.inc: -------------------------------------------------------------------------------- 1 | CRYPTO_CSOURCES = wincng.c 2 | CRYPTO_HHEADERS = wincng.h 3 | CRYPTO_LTLIBS = $(LTLIBBCRYPT) $(LTLIBCRYPT32) 4 | -------------------------------------------------------------------------------- /deps/libunwind/tests/ia64-test-stack.h: -------------------------------------------------------------------------------- 1 | #define NSTACKS 1024 2 | #define STACK_SIZE_SHIFT 17 3 | #define STACK_SIZE (1 << STACK_SIZE_SHIFT) 4 | -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0-empty-truncated.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0-empty-truncated.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0-nonempty_index.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0-nonempty_index.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-0cat-header_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-0cat-header_magic.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-3.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-4.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-5.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-block_header-6.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-block_header-6.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-stream_flags-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-stream_flags-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-stream_flags-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-stream_flags-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-1-stream_flags-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-1-stream_flags-3.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-block_header-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-block_header-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-block_header-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-block_header-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-block_header-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-block_header-3.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.aarch64.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.aarch64.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.aarch64.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.aarch64.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.i386.fp.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.i386.fp.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.i386.fp.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.i386.fp.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/debug-ranges-no-lowpc.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debug-ranges-no-lowpc.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/funcretval_test_aarch64.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/funcretval_test_aarch64.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test5.sh: -------------------------------------------------------------------------------- 1 | original=testfile8 2 | stripped=testfile16 3 | debugfile=testfile16.debug 4 | 5 | . $srcdir/run-strip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-addrx_constx-4.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-addrx_constx-4.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-addrx_constx-5.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-addrx_constx-5.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-annobingroup.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-annobingroup.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel-g.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel-g.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel-z.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel-z.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-riscv64-dis1.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-riscv64-dis1.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-32.so.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-32.so.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-64.so.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-64.so.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-32.so.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-32.so.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-64.so.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-64.so.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_implicit_value.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_implicit_value.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_parameter_ref.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_parameter_ref.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilearm-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilearm-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbgppc64_pl.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbgppc64_pl.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbgppc64_plr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbgppc64_plr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazminppc64_pl.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazminppc64_pl.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazminppc64_plr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazminppc64_plr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilesparc64attrs.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilesparc64attrs.o.bz2 -------------------------------------------------------------------------------- /deps/xz/tests/files/good-1-delta-lzma2.tiff.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/good-1-delta-lzma2.tiff.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/unsupported-block_header.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/unsupported-block_header.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.aarch64.fp.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.aarch64.fp.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.aarch64.fp.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.aarch64.fp.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.ppc64le.fp.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.ppc64le.fp.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.ppc64le.fp.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.ppc64le.fp.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x86_64.fp.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x86_64.fp.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/backtrace.x86_64.fp.exec.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/backtrace.x86_64.fp.exec.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test4.sh: -------------------------------------------------------------------------------- 1 | original=testfile11 2 | stripped=testfile37 3 | debugfile=testfile37.debug 4 | 5 | . $srcdir/run-strip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test6.sh: -------------------------------------------------------------------------------- 1 | original=testfile12 2 | stripped=testfile35 3 | debugfile=testfile35.debug 4 | 5 | . $srcdir/run-strip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test7.sh: -------------------------------------------------------------------------------- 1 | original=testfile39 2 | stripped=testfile40 3 | debugfile=testfile40.debug 4 | 5 | . $srcdir/run-strip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/run-strip-test8.sh: -------------------------------------------------------------------------------- 1 | original=testfile47 2 | stripped=testfile48 3 | debugfile=testfile48.debug 4 | 5 | . $srcdir/run-strip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/run-unstrip-test2.sh: -------------------------------------------------------------------------------- 1 | original=testfile11 2 | stripped=testfile15 3 | debugfile=testfile15.debug 4 | 5 | . $srcdir/run-unstrip-test.sh 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/splitdwarf4-not-split4.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/splitdwarf4-not-split4.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-bpf-dis1.expect.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-bpf-dis1.expect.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-bpf-reloc.expect.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-bpf-reloc.expect.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel-ppc64.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel-ppc64.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-gnu-property-note.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-gnu-property-note.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-macros-object.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-macros-object.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-nobitsalign.strip.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-nobitsalign.strip.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-only-debug-line.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-only-debug-line.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ppc64-min-instr.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ppc64-min-instr.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ranges-hello.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ranges-hello.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ranges-hello5.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ranges-hello5.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ranges-world.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ranges-world.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-ranges-world5.dwo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-ranges-world5.dwo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-s390x-hash-both.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-s390x-hash-both.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-strtab.debuginfo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-strtab.debuginfo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-strtab.stripped.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-strtab.stripped.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-32.noshdrs.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-32.noshdrs.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-32.prelink.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-32.prelink.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-64.noshdrs.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-64.noshdrs.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile52-64.prelink.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile52-64.prelink.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-32.noshdrs.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-32.noshdrs.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-32.prelink.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-32.prelink.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-64.noshdrs.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-64.noshdrs.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile54-64.prelink.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile54-64.prelink.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_gnu_props.32be.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_gnu_props.32be.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_gnu_props.32le.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_gnu_props.32le.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_gnu_props.64be.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_gnu_props.64be.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_gnu_props.64le.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_gnu_props.64le.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_implicit_pointer.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile_implicit_pointer.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileaarch64-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileaarch64-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilebazdbgppc64.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilebazdbgppc64.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfiledwarfinlines.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfiledwarfinlines.core.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc32-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc32-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfileppc64-debugframe.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfileppc64-debugframe.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilesplitranges4.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilesplitranges4.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfilesplitranges5.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfilesplitranges5.debug.bz2 -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-bt.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-bt.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-exc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-exc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/xz/tests/files/unsupported-filter_flags-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/unsupported-filter_flags-1.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/unsupported-filter_flags-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/unsupported-filter_flags-2.xz -------------------------------------------------------------------------------- /deps/xz/tests/files/unsupported-filter_flags-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/unsupported-filter_flags-3.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /deps/elfutils/tests/libtestfile_multi_shared.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/libtestfile_multi_shared.so.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-annobingroup-i386.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-annobingroup-i386.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-backtrace-demangle.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-backtrace-demangle.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-const-values.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-const-values.debug.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel-ppc64-g.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel-ppc64-g.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-debug-rel-ppc64-z.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-debug-rel-ppc64-z.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-gnu-property-note.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-gnu-property-note.o.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-info-link.debuginfo.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-info-link.debuginfo.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-info-link.stripped.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-info-link.stripped.bz2 -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-riscv64-dis1.expect.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-riscv64-dis1.expect.bz2 -------------------------------------------------------------------------------- /deps/libunwind/tests/Lperf-trace.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gperf-trace.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-dyn1.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-dyn1.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-trace.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-trace.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/xz/tests/files/bad-2-compressed_data_padding.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/xz/tests/files/bad-2-compressed_data_padding.xz -------------------------------------------------------------------------------- /deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /deps/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the contrib/vstudio/ directory. 4 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-annobingroup-x86_64.o.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-annobingroup-x86_64.o.bz2 -------------------------------------------------------------------------------- /deps/libunwind/tests/Lia64-test-nat.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gia64-test-nat.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Lia64-test-rbs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gia64-test-rbs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Lperf-simple.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gperf-simple.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-init.cxx: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-init.cxx" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-nomalloc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-nomalloc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/zlib/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-backtrace-demangle.core.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-backtrace-demangle.core.bz2 -------------------------------------------------------------------------------- /deps/libunwind/tests/Lia64-test-stack.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gia64-test-stack.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-concurrent.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-concurrent.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-resume-sig.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-resume-sig.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/elfutils/po/quot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-debs/hithere_1.0-1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-debs/hithere_1.0-1_amd64.deb -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-debs/hithere_1.0.orig.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-debs/hithere_1.0.orig.tar.gz -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lpe.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gpe.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lrbs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Grbs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Lia64-test-readonly.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gia64-test-readonly.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-resume-sig-rt.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gtest-resume-sig-rt.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-1.0-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-1.0-2.src.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-1.0-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-1.0-2.src.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-splitdwarf4-not-split4.debug.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-splitdwarf4-not-split4.debug.bz2 -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lexpr.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gexpr.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lfde.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gfde.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Linit.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lregs.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gregs.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lstep.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstep.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Ltest-init-local-signal-lib.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | /* To prevent inlining and optimizing away */ 4 | int foo(volatile int* f) { 5 | return *f; 6 | } 7 | -------------------------------------------------------------------------------- /deps/zlib/contrib/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- 1 | 2 | MiniZip 1.1 was derrived from MiniZip at version 1.01f 3 | 4 | Change in 1.0 (Okt 2009) 5 | - **TODO - Add history** 6 | 7 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-debs/hithere_1.0-1.debian.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-debs/hithere_1.0-1.debian.tar.xz -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-1.0-2.src.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-1.0-2.src.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-1.0-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-1.0-2.i686.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile-dwfl-report-elf-align-shlib.so.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/testfile-dwfl-report-elf-align-shlib.so.bz2 -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Ltrace.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gtrace.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Los-linux.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-linux.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Ltrace.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gtrace.c" 5 | #endif 6 | 7 | -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lparser.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gparser.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lparser.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gparser.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lscript.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gscript.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Ltables.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gtables.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lget_fpreg.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_fpreg.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lget_reg.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_reg.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lset_fpreg.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gset_fpreg.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lset_reg.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gset_reg.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gglobal.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Los-linux.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-linux.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lresume.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gresume.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Ltrace.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gtrace.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-debs/hithere-dbgsym_1.0-1_amd64.ddeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-debs/hithere-dbgsym_1.0-1_amd64.ddeb -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-two-1.0-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-two-1.0-2.i686.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lex_tables.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gex_tables.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Los-freebsd.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-freebsd.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Los-other.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-freebsd.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lstash_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstash_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Ldyn-extract.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gdyn-extract.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Ldyn-remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gdyn-remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Los-freebsd.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-freebsd.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Los-linux.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-linux.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- 1 | blast: blast.c blast.h 2 | cc -DTEST -o blast blast.c 3 | 4 | test: blast 5 | blast < test.pk | cmp - test.txt 6 | 7 | clean: 8 | rm -f blast blast.o 9 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-two-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-two-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lstash_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstash_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lget_accessors.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_accessors.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lget_proc_name.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_name.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lset_cache_size.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gset_cache_size.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Linit_local.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_local.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Linit_remote.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Ginit_remote.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Los-freebsd.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-freebsd.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Los-solaris.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gos-solaris.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lstash_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gstash_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/tests/Lx64-test-dwarf-expressions.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if !defined(UNW_REMOTE_ONLY) 4 | #include "Gx64-test-dwarf-expressions.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/elfutils/po/LINGUAS: -------------------------------------------------------------------------------- 1 | # List of translations, i.e. .po files supplied by translators. 2 | de es ja pl uk 3 | 4 | # These are automagically created, not real translations. 5 | en@quot en@boldquot 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-two-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-two-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lget_save_loc.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_save_loc.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/siglongjmp.S: -------------------------------------------------------------------------------- 1 | /* Dummy implementation for now. */ 2 | 3 | .globl _UI_siglongjmp_cont 4 | .globl _UI_longjmp_cont 5 | 6 | _UI_siglongjmp_cont: 7 | _UI_longjmp_cont: 8 | rts 9 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lget_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-debuginfo-1.0-2.i686.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel6/hello2-debuginfo-1.0-2.i686.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-debuginfo-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/rhel7/hello2-debuginfo-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lfind_unwind_table.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gfind_unwind_table.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/elf32.h: -------------------------------------------------------------------------------- 1 | #ifndef elf32_h 2 | #define elf32_h 3 | 4 | #ifndef ELF_CLASS 5 | #define ELF_CLASS ELFCLASS32 6 | #endif 7 | #include "elfxx.h" 8 | 9 | #endif /* elf32_h */ 10 | -------------------------------------------------------------------------------- /deps/libunwind/src/elf64.h: -------------------------------------------------------------------------------- 1 | #ifndef elf64_h 2 | #define elf64_h 3 | 4 | #ifndef ELF_CLASS 5 | #define ELF_CLASS ELFCLASS64 6 | #endif 7 | #include "elfxx.h" 8 | 9 | #endif /* elf64_h */ 10 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/hppa/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lfind_unwind_table.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gfind_unwind_table.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Ldestroy_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gdestroy_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lget_proc_info_by_ip.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gget_proc_info_by_ip.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lset_caching_policy.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gset_caching_policy.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mips/siglongjmp.S: -------------------------------------------------------------------------------- 1 | /* Dummy implementation for now. */ 2 | 3 | .globl _UI_siglongjmp_cont 4 | .globl _UI_longjmp_cont 5 | 6 | _UI_siglongjmp_cont: 7 | _UI_longjmp_cont: 8 | j $31 9 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/sh/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lis_signal_frame.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gis_signal_frame.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lapply_reg_state.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gapply_reg_state.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lcreate_addr_space.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gcreate_addr_space.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/dwarf/Lfind_proc_info-lsb.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gfind_proc_info-lsb.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "config.h" 3 | #include 4 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 5 | #include "Gglobal.c" 6 | #endif 7 | -------------------------------------------------------------------------------- /deps/libunwind/src/s390x/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lglobal.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "config.h" 3 | #include 4 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 5 | #include "Gglobal.c" 6 | #endif 7 | -------------------------------------------------------------------------------- /deps/libunwind/src/x86_64/Lreg_states_iterate.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Greg_states_iterate.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /documents/test-pi.md: -------------------------------------------------------------------------------- 1 | ### test-pi 2 | 这是另一个测试CPU速率的小工具。 3 | 使用方法: 4 | 5 | ``` 6 | diagnose-tools test-pi 7 | ``` 8 | 可以附带两个参数,其中: 9 | -c --cpu可以指定将测试用例绑定到哪一个CPU上运行。 10 | -v --verbose可以打开详细信息 11 | 12 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-debuginfo-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-debuginfo-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-debugsource-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-debugsource-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lfind_dynamic_proc_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gfind_dynamic_proc_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/mi/Lput_dynamic_unwind_info.c: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include 3 | #if defined(UNW_LOCAL_ONLY) && !defined(UNW_REMOTE_ONLY) 4 | #include "Gput_dynamic_unwind_info.c" 5 | #endif 6 | -------------------------------------------------------------------------------- /documents/test-memcpy.md: -------------------------------------------------------------------------------- 1 | ### test-memcpy 2 | 这是一个测试内存速率的小工具。 3 | 使用方法: 4 | ``` 5 | diagnose-tools test-memcpy 6 | ``` 7 | 可以附带两个参数,其中: 8 | -c --cpu可以指定将测试用例绑定到哪一个CPU上运行。 9 | -v --verbose可以打开详细信息 10 | 11 | -------------------------------------------------------------------------------- /deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-two-debuginfo-1.0-2.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba/diagnose-tools/HEAD/deps/elfutils/tests/debuginfod-rpms/fedora30/hello2-two-debuginfo-1.0-2.x86_64.rpm -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/Linstall_cursor.S: -------------------------------------------------------------------------------- 1 | #define UNW_LOCAL_ONLY 2 | #include "Ginstall_cursor.S" 3 | #ifdef __linux__ 4 | /* We do not need executable stack. */ 5 | .section .note.GNU-stack,"",@progbits 6 | #endif 7 | -------------------------------------------------------------------------------- /deps/elfutils/THANKS: -------------------------------------------------------------------------------- 1 | At least the following have submitted valuable patches: 2 | 3 | Jeff Johnson building. rpm wrestling 4 | Alexander Larsson separate debug info 5 | Jakub Jelinek bug fixes, testing 6 | Denys Vlasenko bug fuxes 7 | -------------------------------------------------------------------------------- /deps/libunwind/src/tilegx/siglongjmp.S: -------------------------------------------------------------------------------- 1 | /* Dummy implementation for now. */ 2 | .globl _UI_siglongjmp_cont 3 | .globl _UI_longjmp_cont 4 | 5 | _UI_siglongjmp_cont: 6 | _UI_longjmp_cont: 7 | jrp lr 8 | -------------------------------------------------------------------------------- /deps/libunwind/src/ia64/mk_cursor_i: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | test -z "$1" && exit 1 3 | echo "/* GENERATED */" 4 | echo "#ifndef cursor_i_h" 5 | echo "#define cursor_i_h" 6 | sed -ne 's/^->"\(\S*\)" \(\d*\)/#define \1 \2/p' < $1 || exit $? 7 | echo "#endif" 8 | -------------------------------------------------------------------------------- /deps/xz/tests/ossfuzz/Makefile: -------------------------------------------------------------------------------- 1 | fuzz: fuzz.c 2 | $(CC) $(CFLAGS) -c fuzz.c -I ../../src/liblzma/api/ 3 | $(CXX) $(CXXFLAGS) $(LIB_FUZZING_ENGINE) fuzz.o -o $(OUT)/fuzz \ 4 | ../../src/liblzma/.libs/liblzma.a 5 | 6 | clean: 7 | rm -f *.o 8 | -------------------------------------------------------------------------------- /deps/elfutils/po/boldquot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | s/“/“/g 8 | s/”/”/g 9 | s/‘/‘/g 10 | s/’/’/g 11 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/setcontext.S: -------------------------------------------------------------------------------- 1 | .global _UI_setcontext 2 | 3 | _UI_setcontext: 4 | retq 5 | 6 | #ifdef __linux__ 7 | /* We do not need executable stack. */ 8 | .section .note.GNU-stack,"",@progbits 9 | #endif 10 | -------------------------------------------------------------------------------- /deps/zlib/nintendods/README: -------------------------------------------------------------------------------- 1 | This Makefile requires devkitARM (http://www.devkitpro.org/category/devkitarm/) and works inside "contrib/nds". It is based on a devkitARM template. 2 | 3 | Eduardo Costa 4 | January 3, 2009 5 | 6 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc64/setcontext.S: -------------------------------------------------------------------------------- 1 | .global _UI_setcontext 2 | 3 | _UI_setcontext: 4 | blr 5 | 6 | #ifdef __linux__ 7 | /* We do not need executable stack. */ 8 | .section .note.GNU-stack,"",@progbits 9 | #endif 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.gitignore 2 | *.o 3 | *.cmd 4 | *.so 5 | *.ko 6 | *.mod.c 7 | *.mk 8 | *.symvers 9 | *.order 10 | *.o.ur-safe 11 | /SOURCE/module/.tmp_versions 12 | /rpmbuild/RPMS 13 | /rpmbuild/diagnose-tools.spec 14 | /SOURCE/diagnose-tools/diagnose-tools 15 | -------------------------------------------------------------------------------- /deps/libunwind/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | test -n "$srcdir" || srcdir=`dirname "$0"` 4 | test -n "$srcdir" || srcdir=. 5 | ( 6 | cd "$srcdir" && 7 | autoreconf --force -v --install 8 | ) || exit 9 | test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" 10 | -------------------------------------------------------------------------------- /deps/zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /SOURCE/diagnose-tools/attach.h: -------------------------------------------------------------------------------- 1 | #ifndef __ATTACH_H__ 2 | #define __ATTACH_H__ 3 | #define NS_NAME_LEN 128 4 | #define NS_PATH_LEN 128 5 | int init_global_env(void); 6 | int attach_mount_namespace(int pid, const char *mnt_ns_name); 7 | void detach_mount_namespace(int mntfd); 8 | #endif 9 | -------------------------------------------------------------------------------- /deps/libunwind/src/ppc32/Make-arch.in: -------------------------------------------------------------------------------- 1 | # Word size. 2 | ELFW = 64 3 | # Does use dwarf2 unwind info. 4 | dwarf_target = true 5 | 6 | libunwind_setjmp_OBJS += \ 7 | $(arch)/longjmp.o \ 8 | $(arch)/siglongjmp.o 9 | 10 | libunwind_OBJS_common += \ 11 | $(arch)/is_fpreg.o 12 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_publickey_init.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_publickey_init 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_publickey_init - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/ptrace/_UPT_elf.c: -------------------------------------------------------------------------------- 1 | /* We need to get a separate copy of the ELF-code into 2 | libunwind-ptrace since it cannot (and must not) have any ELF 3 | dependencies on libunwind. */ 4 | #include "libunwind_i.h" /* get ELFCLASS defined */ 5 | #include "../elfxx.c" 6 | -------------------------------------------------------------------------------- /deps/xz/ChangeLog: -------------------------------------------------------------------------------- 1 | See the commit log in the git repository: 2 | 3 | git clone https://git.tukaani.org/xz.git 4 | 5 | Note that "make dist" doesn't put this tiny file into the package. 6 | Instead, the git commit log is used as ChangeLog. See dist-hook in 7 | Makefile.am for details. 8 | -------------------------------------------------------------------------------- /deps/zlib/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_implicit_pointer.c: -------------------------------------------------------------------------------- 1 | // gcc -g -O2 -o implicit_pointer implicit_pointer.c 2 | 3 | static __attribute__((noinline, noclone)) int foo (int i) 4 | { 5 | int *p = &i; 6 | return *p; 7 | } 8 | 9 | int main (void) 10 | { 11 | return foo (23) - 23; 12 | } 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/coredump/_UPT_elf.c: -------------------------------------------------------------------------------- 1 | /* We need to get a separate copy of the ELF-code into 2 | libunwind-coredump since it cannot (and must not) have any ELF 3 | dependencies on libunwind. */ 4 | #include "libunwind_i.h" /* get ELFCLASS defined */ 5 | #include "../elfxx.c" 6 | -------------------------------------------------------------------------------- /deps/elfutils/debuginfod/libdebuginfod.map: -------------------------------------------------------------------------------- 1 | ELFUTILS_0 { }; 2 | ELFUTILS_0.178 { 3 | global: 4 | debuginfod_begin; 5 | debuginfod_end; 6 | debuginfod_find_debuginfo; 7 | debuginfod_find_executable; 8 | debuginfod_find_source; 9 | debuginfod_set_progressfn; 10 | } ELFUTILS_0; 11 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_publickey_shutdown.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_publickey_shutdown 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_publickey_shutdown - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_publickey_list_fetch.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_publickey_list_fetch 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_publickey_list_fetch - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_publickey_list_free.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_publickey_list_free 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_publickey_list_free - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_const_type.c: -------------------------------------------------------------------------------- 1 | // gcc -m32 -g -O2 -o const_type const_type.c 2 | 3 | __attribute__((noinline, noclone)) int 4 | f1 (long long d) 5 | { 6 | long long w = d / 0x1234567800000LL; 7 | return w; 8 | } 9 | 10 | int 11 | main () 12 | { 13 | return f1 (4LL) - f1 (4LL); 14 | } 15 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_publickey_remove_ex.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_publickey_list_remove_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_publickey_list_remove_ex - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/elfutils/tests/testfile_implicit_value.c: -------------------------------------------------------------------------------- 1 | // gcc -m32 -g -O2 -o implicit_value implicit_value.c 2 | 3 | static __attribute__((noinline, noclone)) int foo () 4 | { 5 | unsigned long long a[] = { 2, 21 }; 6 | return a[0] * a[1]; 7 | } 8 | 9 | int main (void) 10 | { 11 | return foo () - 42; 12 | } 13 | -------------------------------------------------------------------------------- /deps/libunwind/scripts/kernel-diff.sh: -------------------------------------------------------------------------------- 1 | kdir=${1:-../kernel} 2 | scriptdir=$(dirname $0) 3 | udir=$(dirname $scriptdir) 4 | cat $scriptdir/kernel-files.txt | \ 5 | (while read l r; do 6 | left=$(eval echo $l) 7 | right=$(eval echo $r) 8 | # echo $left $right 9 | diff -up $left $right 10 | done) 11 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_channel_request_pty_size_ex.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_channel_request_pty_size_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_channel_request_pty_size_ex - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/unwind/libunwind.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libunwind 7 | Description: libunwind base library 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -lunwind 10 | Libs.private: @LIBLZMA@ @LIBZ@ 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /deps/libssh2/docs/libssh2_userauth_hostbased_fromfile_ex.3: -------------------------------------------------------------------------------- 1 | .TH libssh2_userauth_hostbased_fromfile_ex 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual" 2 | .SH NAME 3 | libssh2_userauth_hostbased_fromfile_ex - TODO 4 | .SH SYNOPSIS 5 | 6 | .SH DESCRIPTION 7 | 8 | .SH RETURN VALUE 9 | 10 | .SH ERRORS 11 | 12 | .SH SEE ALSO 13 | -------------------------------------------------------------------------------- /deps/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS=-g 3 | 4 | untgz: untgz.o ../../libz.a 5 | $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz 6 | 7 | untgz.o: untgz.c ../../zlib.h 8 | $(CC) $(CFLAGS) -c -I../.. untgz.c 9 | 10 | ../../libz.a: 11 | cd ../..; ./configure; make 12 | 13 | clean: 14 | rm -f untgz untgz.o *~ 15 | -------------------------------------------------------------------------------- /deps/libssh2/win32/rules.mk: -------------------------------------------------------------------------------- 1 | 2 | all-sub: $(INTDIR) all 3 | 4 | clean-sub: clean 5 | 6 | $(INTDIR): 7 | !if "$(SRCDIR)" == "" 8 | @if not exist $(TARGET) mkdir $(TARGET) 9 | !endif 10 | @if not exist $(INTDIR) mkdir $(INTDIR) 11 | 12 | {$(SUBDIR)}.c{$(INTDIR)}.obj:: 13 | $(CC) -c $(CFLAGS) /Fo"$(INTDIR)\\" $< 14 | 15 | 16 | -------------------------------------------------------------------------------- /deps/libunwind/src/arm/siglongjmp.S: -------------------------------------------------------------------------------- 1 | /* Dummy implementation for now. */ 2 | 3 | .globl _UI_siglongjmp_cont 4 | .globl _UI_longjmp_cont 5 | 6 | _UI_siglongjmp_cont: 7 | _UI_longjmp_cont: 8 | bx lr 9 | #ifdef __linux__ 10 | /* We do not need executable stack. */ 11 | .section .note.GNU-stack,"",%progbits 12 | #endif 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/libunwind-generic.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libunwind-generic 7 | Description: libunwind generic library 8 | Version: @VERSION@ 9 | Requires: libunwind 10 | Libs: -L${libdir} -lunwind-generic 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /deps/zlib/zlib.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | sharedlibdir=@sharedlibdir@ 5 | includedir=@includedir@ 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: @VERSION@ 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /deps/libunwind/src/aarch64/siglongjmp.S: -------------------------------------------------------------------------------- 1 | /* Dummy implementation for now. */ 2 | 3 | .global _UI_siglongjmp_cont 4 | .global _UI_longjmp_cont 5 | 6 | _UI_siglongjmp_cont: 7 | _UI_longjmp_cont: 8 | ret 9 | #ifdef __linux__ 10 | /* We do not need executable stack. */ 11 | .section .note.GNU-stack,"",%progbits 12 | #endif 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/setjmp/libunwind-setjmp.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libunwind-setjmp 7 | Description: libunwind setjmp library 8 | Version: @VERSION@ 9 | Requires: libunwind 10 | Libs: -L${libdir} -lunwind-setjmp 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /deps/xz/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | src/xz/args.c 3 | src/xz/coder.c 4 | src/xz/file_io.c 5 | src/xz/hardware.c 6 | src/xz/list.c 7 | src/xz/main.c 8 | src/xz/message.c 9 | src/xz/options.c 10 | src/xz/signals.c 11 | src/xz/suffix.c 12 | src/xz/util.c 13 | src/common/tuklib_exit.c 14 | -------------------------------------------------------------------------------- /deps/libunwind/src/coredump/README: -------------------------------------------------------------------------------- 1 | This code is based on "unwinding via ptrace" code from ptrace/ 2 | directory. 3 | 4 | Files with names starting with _UCD_ are substantially changed 5 | from their ptrace/_UPT_... progenitors. 6 | 7 | Files which still have _UPT_... names are either verbiatim copies 8 | from ptrace/, or unimplemented stubs. 9 | -------------------------------------------------------------------------------- /deps/libssh2/docs/HACKING: -------------------------------------------------------------------------------- 1 | 2 | libssh2 source code style guide: 3 | 4 | - 4 level indent 5 | - spaces-only (no tabs) 6 | - open braces on the if/for line: 7 | 8 | if (banana) { 9 | go_nuts(); 10 | } 11 | 12 | - keep source lines shorter than 80 columns 13 | - See libssh2-style.el for how to achieve this within Emacs 14 | -------------------------------------------------------------------------------- /SOURCE/diagnose-tools/debug.h: -------------------------------------------------------------------------------- 1 | #ifndef __DIAG_DEBUG_H 2 | #define __DIAG_DEBUG_H 3 | 4 | extern size_t get_current_rss(void); 5 | extern size_t get_peak_rss(void); 6 | 7 | extern void diag_track_memory(unsigned int step); 8 | extern void diag_report_memory(void); 9 | void debug_get_symbol_from_elf(void); 10 | 11 | #endif /* __DIAG_DEBUG_H */ 12 | -------------------------------------------------------------------------------- /deps/libunwind/src/ptrace/libunwind-ptrace.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libunwind-ptrace 7 | Description: libunwind ptrace library 8 | Version: @VERSION@ 9 | Requires: libunwind-generic libunwind 10 | Libs: -L${libdir} -lunwind-ptrace 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /deps/zlib/contrib/minizip/minizip.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@/minizip 5 | 6 | Name: minizip 7 | Description: Minizip zip file manipulation library 8 | Requires: 9 | Version: @PACKAGE_VERSION@ 10 | Libs: -L${libdir} -lminizip 11 | Libs.private: -lz 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /deps/libunwind/src/unwind/libunwind.pc: -------------------------------------------------------------------------------- 1 | prefix=/home/baoyou.xie/git/diagnose-tools/deps 2 | exec_prefix=${prefix} 3 | libdir=${exec_prefix}/lib 4 | includedir=${prefix}/include 5 | 6 | Name: libunwind 7 | Description: libunwind base library 8 | Version: 1.5-rc1 9 | Libs: -L${libdir} -lunwind 10 | Libs.private: -llzma -lz 11 | Cflags: -I${includedir} 12 | --------------------------------------------------------------------------------