├── .clang-format ├── .codespell_ignore ├── .github └── workflows │ ├── nightly-test.yml │ ├── on-demand-test.yml │ ├── pr-test.yml │ └── push-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── COPYING ├── INSTALL.md ├── Makefile ├── Makefile.include ├── NEWS ├── README.md ├── TODO ├── arch ├── aarch64 │ ├── Makefile │ ├── common.c │ ├── cpuinfo.c │ ├── dynamic.S │ ├── fentry.S │ ├── mcount-arch.h │ ├── mcount-dynamic.c │ ├── mcount-insn.c │ ├── mcount-support.c │ ├── mcount.S │ └── plthook.S ├── arm │ ├── Makefile │ ├── common.c │ ├── cpuinfo.c │ ├── mcount-arch.h │ ├── mcount-support.c │ ├── mcount.S │ └── plthook.S ├── i386 │ ├── Makefile │ ├── common.c │ ├── cpuinfo.c │ ├── fentry.S │ ├── mcount-arch.h │ ├── mcount-dynamic.c │ ├── mcount-support.c │ ├── mcount.S │ ├── plthook.S │ └── thunk.S ├── riscv64 │ ├── Makefile │ ├── common.c │ ├── cpuinfo.c │ ├── mcount-arch.h │ ├── mcount-support.c │ ├── mcount.S │ └── plthook.S └── x86_64 │ ├── Makefile │ ├── common.c │ ├── cpuinfo.c │ ├── dynamic.S │ ├── fentry.S │ ├── mcount-arch.h │ ├── mcount-dynamic.c │ ├── mcount-event.c │ ├── mcount-insn.c │ ├── mcount-plthook.c │ ├── mcount-support.c │ ├── mcount.S │ ├── plthook.S │ └── xray.S ├── check-deps ├── Makefile ├── Makefile.check ├── __arm_has_hardfp.c ├── __cc_has_mfentry.c ├── __cc_has_mgeneral_regs_only.c ├── __cc_has_minline_all_stringops.c ├── __cc_has_mno_sse2.c ├── __clock_without_librt.c ├── __cxa_demangle.c ├── __have_libcapstone.c ├── __have_libdw.c ├── __have_libelf.c ├── __have_libluajit.c ├── __have_libncurses.c ├── __have_libpython2.7.c ├── __have_libpython3.c ├── __have_libtraceevent.c ├── __have_libunwind.c ├── __perf_clockid.c └── __perf_context_switch.c ├── cmds ├── dump.c ├── graph.c ├── info.c ├── live.c ├── record.c ├── recv.c ├── replay.c ├── report.c ├── script.c └── tui.c ├── configure ├── doc ├── .gitignore ├── Makefile ├── ko │ ├── CONTRIBUTING.md │ ├── Makefile │ ├── README.md │ ├── uftrace-dump.md │ ├── uftrace-graph.md │ ├── uftrace-info.md │ ├── uftrace-live.md │ ├── uftrace-record.md │ ├── uftrace-recv.md │ ├── uftrace-replay.md │ ├── uftrace-report.md │ ├── uftrace-script.md │ ├── uftrace-tui.md │ └── uftrace.md ├── uftrace-chrome.png ├── uftrace-dump.md ├── uftrace-graph.md ├── uftrace-info.md ├── uftrace-live-demo.gif ├── uftrace-live.md ├── uftrace-record.md ├── uftrace-recv.md ├── uftrace-replay.md ├── uftrace-report.md ├── uftrace-script.md ├── uftrace-tui.md ├── uftrace.html └── uftrace.md ├── gdb └── uftrace │ ├── lists.py │ ├── mcount.py │ ├── plthook.py │ ├── rbtree.py │ ├── trigger.py │ └── utils.py ├── libmcount ├── agent.c ├── dynamic.c ├── dynamic.h ├── event.c ├── internal.h ├── mcount-nop.c ├── mcount.c ├── mcount.h ├── misc.c ├── plthook.c ├── pmu.c ├── record.c └── wrap.c ├── misc ├── apply-patch.sh ├── bash-completion.sh ├── bench.c ├── bench.sh ├── checkout-pr.sh ├── dbginfo.c ├── debug-mcount.cmd ├── debug.sh ├── demangler.c ├── docker │ ├── alpine │ │ ├── 3.13 │ │ │ └── Dockerfile │ │ └── 3.14 │ │ │ └── Dockerfile │ ├── arch │ │ └── Dockerfile │ ├── centos │ │ └── 7 │ │ │ └── Dockerfile │ ├── fedora │ │ ├── 33 │ │ │ └── Dockerfile │ │ └── 34 │ │ │ └── Dockerfile │ └── ubuntu │ │ ├── 16.04 │ │ └── Dockerfile │ │ └── 18.04 │ │ └── Dockerfile ├── gen-autoargs.py ├── install-deps.sh ├── install-elfutils.sh ├── prototypes.h ├── run-lcov.sh ├── symbols.c ├── version.sh └── wget-pr.sh ├── pyproject.toml ├── python ├── trace-python.c └── uftrace.py ├── scripts ├── count.lua ├── count.py ├── dump.lua ├── dump.py ├── func-histogram.py ├── func-percentile.py ├── info.lua ├── info.py ├── replay.lua ├── replay.py ├── report-libcall.py ├── retval-histogram.py ├── simple.lua ├── simple.py ├── strings.lua ├── strings.py ├── trace-memcpy.lua └── trace-memcpy.py ├── tests ├── .gitignore ├── Makefile ├── arch │ ├── arm │ │ ├── Makefile │ │ ├── a.c │ │ ├── t.c │ │ └── thumb.c │ └── x86_64 │ │ ├── Makefile │ │ └── fentry.c ├── mymod.py ├── p001_basic.py ├── p002_filter_F.py ├── p003_filter_N.py ├── p004_filter_FN.py ├── p005_srcline.py ├── p006_filter_time.py ├── p007_filter_depth.py ├── p008_file_var.py ├── p009_libcall_single.py ├── p010_libcall_none.py ├── p011_libcall_nested.py ├── p012_os_exit.py ├── runtest.py ├── s-abc-exit.py ├── s-abc.c ├── s-abc.py ├── s-agent.c ├── s-alloca.c ├── s-allocfree.c ├── s-arg-oct.c ├── s-arg.c ├── s-autoargs.c ├── s-backtrace.cpp ├── s-chcpu.c ├── s-daemon.c ├── s-data.c ├── s-demangle.cpp ├── s-diff.c ├── s-dlopen.c ├── s-dlopen2.cpp ├── s-dwarf1.c ├── s-dwarf2.cpp ├── s-dwarf3.cpp ├── s-dwarf5.c ├── s-dwarf6.cpp ├── s-dwarf7.cpp ├── s-dynamic.c ├── s-dynmain.c ├── s-enum.c ├── s-enum2.c ├── s-exception.cpp ├── s-exception2.cpp ├── s-exception3.cpp ├── s-exception4.cpp ├── s-exception5.cpp ├── s-exit.c ├── s-exp-char.c ├── s-exp-float.c ├── s-exp-int.c ├── s-exp-mixed.c ├── s-exp-str.c ├── s-fibonacci.c ├── s-file-var.py ├── s-float-libcall.c ├── s-fork.c ├── s-fork2.c ├── s-forkexec.c ├── s-getids.c ├── s-hello.c ├── s-indirect-return.cpp ├── s-lib.c ├── s-libbar.cpp ├── s-libbaz.cpp ├── s-libdyn1.c ├── s-libdyn2.c ├── s-libexcept-main.cpp ├── s-libexcept.cpp ├── s-libexcept.hpp ├── s-libfoo.cpp ├── s-libmain.c ├── s-libmain.py ├── s-longjmp.c ├── s-longjmp2.c ├── s-longjmp3.c ├── s-malloc-fork.c ├── s-malloc-hook.c ├── s-malloc-tsd.c ├── s-malloc.c ├── s-mmap.c ├── s-namespace.cpp ├── s-nest-libcall.c ├── s-nested.c ├── s-openclose.c ├── s-patchable-abc.c ├── s-pltarg.c ├── s-posix_spawn.c ├── s-racycount.c ├── s-return.c ├── s-sdt.c ├── s-signal.c ├── s-signal2.c ├── s-sleep.c ├── s-sleep.py ├── s-sleep2.c ├── s-sort.c ├── s-std-string.cpp ├── s-struct.c ├── s-taskname.c ├── s-thread-exec.c ├── s-thread-exit.c ├── s-thread-name.c ├── s-thread-tsd.c ├── s-thread.c ├── s-ucontext.c ├── s-unroll.c ├── s-variadic.c ├── s-vforkexec.c ├── s-watch-global.c ├── t001_basic.py ├── t002_argument.py ├── t003_thread.py ├── t004_filter_F.py ├── t005_filter_N.py ├── t006_filter_FN.py ├── t007_library.py ├── t008_daemon.py ├── t009_fork.py ├── t010_forkexec.py ├── t011_vforkexec.py ├── t012_demangle.py ├── t013_signal1.py ├── t014_ucontext.py ├── t015_longjmp1.py ├── t016_alloca.py ├── t017_no_libcall.py ├── t018_filter_regex.py ├── t019_full_depth.py ├── t020_filter_depth.py ├── t021_filter_plt.py ├── t022_filter_kernel.py ├── t023_replay_filter.py ├── t024_report_basic.py ├── t025_report_s_call.py ├── t026_filter_trigger.py ├── t027_replay_filter_d.py ├── t028_replay_backtrace.py ├── t029_trigger_only.py ├── t030_replay_trigger.py ├── t031_filter_demangle1.py ├── t032_filter_demangle2.py ├── t033_filter_demangle3.py ├── t034_filter_demangle4.py ├── t035_filter_demangle5.py ├── t036_replay_filter_N.py ├── t037_trace_onoff.py ├── t038_trace_disable.py ├── t039_trace_onoff_F.py ├── t040_replay_onoff.py ├── t041_replay_onoff_N.py ├── t042_live_disable.py ├── t043_full_demangle.py ├── t044_report_avg_total.py ├── t045_report_avg_self.py ├── t046_report_task.py ├── t047_signal2.py ├── t048_malloc_impl.py ├── t049_column_view.py ├── t050_no_pltbind.py ├── t051_return.py ├── t052_nested_func.py ├── t053_filter_time.py ├── t054_filter_time_F.py ├── t055_filter_time_N.py ├── t056_filter_time_T.py ├── t057_filter_time_D.py ├── t058_arg_int.py ├── t059_arg_str.py ├── t060_arg_fmt.py ├── t061_arg_plt.py ├── t062_arg_char.py ├── t063_retval.py ├── t064_trigger_trace.py ├── t065_arg_order.py ├── t066_no_demangle.py ├── t067_report_diff.py ├── t068_filter_time_A.py ├── t069_graph_basic.py ├── t070_graph_backtrace.py ├── t071_graph_depth.py ├── t072_no_comment.py ├── t073_lib_filter.py ├── t074_lib_trigger.py ├── t075_lib_arg.py ├── t076_lib_replay_F.py ├── t077_lib_replay_T.py ├── t078_max_stack.py ├── t079_replay_kernel_D1.py ├── t080_replay_kernel_D2.py ├── t081_kernel_depth.py ├── t082_arg_many.py ├── t083_arg_float.py ├── t084_arg_mixed.py ├── t085_arg_reg.py ├── t086_arg_stack.py ├── t087_arg_variadic.py ├── t088_graph_session.py ├── t089_graph_exit.py ├── t090_report_recursive.py ├── t091_replay_tid.py ├── t092_report_tid.py ├── t093_report_filter.py ├── t094_report_depth.py ├── t095_graph_tid.py ├── t096_graph_filter.py ├── t097_dump_basic.py ├── t098_dump_tid.py ├── t099_dump_filter.py ├── t100_dump_depth.py ├── t101_dump_chrome.py ├── t102_dump_flamegraph.py ├── t103_dump_kernel.py ├── t104_graph_kernel.py ├── t105_replay_time.py ├── t106_report_time.py ├── t107_dump_time.py ├── t108_graph_time.py ├── t109_replay_time_A.py ├── t110_replay_time_T.py ├── t111_kernel_tid.py ├── t112_replay_skip.py ├── t113_trigger_time.py ├── t114_replay_trg_time.py ├── t115_replay_field1.py ├── t116_field_none.py ├── t117_time_range1.py ├── t118_thread_tsd.py ├── t119_malloc_hook.py ├── t120_malloc_tsd.py ├── t121_malloc_fork.py ├── t122_time_range2.py ├── t123_backtrace.py ├── t124_exception1.py ├── t125_report_range.py ├── t126_arg_regex.py ├── t127_arg_module1.py ├── t128_arg_module2.py ├── t129_session_tid.py ├── t130_thread_exec.py ├── t131_lib_dlopen1.py ├── t132_trigger_kernel.py ├── t133_long_string.py ├── t134_pic_pie.py ├── t135_trigger_time2.py ├── t136_dynamic_basic.py ├── t137_kernel_tid_update.py ├── t138_kernel_dynamic1.py ├── t139_kernel_dynamic2.py ├── t140_dynamic_xray.py ├── t141_recv_basic.py ├── t142_recv_multi.py ├── t143_recv_kernel.py ├── t144_longjmp2.py ├── t145_longjmp3.py ├── t146_arg_std_string.py ├── t147_event_sdt.py ├── t148_event_kernel1.py ├── t149_event_kernel2.py ├── t150_recv_event.py ├── t151_recv_runcmd.py ├── t152_read_proc_statm.py ├── t153_read_page_fault.py ├── t154_keep_pid.py ├── t155_trigger_finish.py ├── t156_trigger_finish2.py ├── t157_script_python.py ├── t158_report_diff_policy1.py ├── t159_report_diff_policy2.py ├── t160_report_diff_policy3.py ├── t161_pltbind_now.py ├── t162_pltbind_now_pie.py ├── t163_event_sched.py ├── t164_report_sched.py ├── t165_graph_sched.py ├── t166_dump_sched.py ├── t167_recv_sched.py ├── t168_lib_nested.py ├── t169_script_args.py ├── t170_script_filter.py ├── t171_script_option.py ├── t172_trigger_filter.py ├── t173_trigger_args.py ├── t174_replay_filter_kernel.py ├── t175_filter_time_read.py ├── t176_arg_fptr.py ├── t177_report_diff_policy4.py ├── t178_arg_auto1.py ├── t179_arg_auto2.py ├── t180_arg_auto3.py ├── t181_graph_full.py ├── t182_thread_exit.py ├── t183_info_quote.py ├── t184_arg_enum1.py ├── t185_exception2.py ├── t186_exception3.py ├── t187_graph_field.py ├── t188_graph_field_none.py ├── t189_replay_field2.py ├── t190_trigger_autoargs.py ├── t191_posix_spawn.py ├── t192_lib_name.py ├── t193_read_pmu_cycle.py ├── t194_read_pmu_cache.py ├── t195_read_pmu_branch.py ├── t196_chrome_taskname.py ├── t197_filter_glob.py ├── t198_lib_arg_float.py ├── t199_script_info.py ├── t200_lib_dlopen2.py ├── t201_arg_dwarf1.py ├── t202_arg_dwarf2.py ├── t203_arg_dwarf3.py ├── t204_arg_dwarf4.py ├── t205_arg_auto4.py ├── t206_arg_enum2.py ├── t207_dump_graphviz.py ├── t208_watch_cpu.py ├── t209_filter_caller.py ├── t210_filter_time_C.py ├── t211_replay_filter_C.py ├── t212_noplt_libcall.py ├── t213_arg_symbol.py ├── t214_signal_trigger.py ├── t215_no_libcall_replay.py ├── t216_no_libcall_report.py ├── t217_no_libcall_dump.py ├── t218_no_libcall_graph.py ├── t219_no_libcall_script.py ├── t220_trace_script.py ├── t221_taskname_time.py ├── t222_external_data.py ├── t223_dynamic_full.py ├── t224_dynamic_lib.py ├── t225_dynamic_size.py ├── t226_default_opts.py ├── t227_read_pmu_cycle2.py ├── t228_read_pmu_cycle3.py ├── t229_info_task.py ├── t230_graph_task.py ├── t231_arg_bound.py ├── t232_dynamic_unpatch.py ├── t233_dynamic_unpatch2.py ├── t234_script_luajit.py ├── t235_report_srcline1.py ├── t236_replay_srcline.py ├── t237_report_field1.py ├── t238_report_field2.py ├── t239_report_diff_field1.py ├── t240_report_diff_field2.py ├── t241_report_diff_field3.py ├── t242_report_diff_field4.py ├── t243_report_diff_field5.py ├── t244_report_task_field.py ├── t245_report_field_none.py ├── t246_report_srcline2.py ├── t247_graph_srcline.py ├── t248_dynamic_dlopen.py ├── t249_estimate_return.py ├── t250_indirect_return.py ├── t251_exception4.py ├── t252_filter_H.py ├── t253_trigger_hide.py ├── t254_arg_dwarf5.py ├── t255_arg_dwarf6.py ├── t256_arg_dwarf7.py ├── t257_arg_struct_replay.py ├── t258_arg_struct_dump.py ├── t259_arg_struct_script.py ├── t260_arg_struct_luajit.py ├── t261_info_note.py ├── t262_replay_with_syms.py ├── t263_patchable_dynamic1.py ├── t264_patchable_dynamic2.py ├── t265_patchable_dynamic3.py ├── t266_patchable_dynamic4.py ├── t267_patchable_dynamic5.py ├── t268_record_with_syms.py ├── t269_arg_no_args_replay.py ├── t270_arg_no_args_dump.py ├── t271_script_event.py ├── t272_dump_mermaid.py ├── t273_agent_basic.py ├── t274_filter_loc1.py ├── t275_filter_loc2.py ├── t276_filter_loc3.py ├── t277_time_range3.py ├── t278_size_filter1.py ├── t279_size_filter2.py ├── t280_size_filter3.py ├── t281_agent_trace_toggle.py ├── t282_agent_depth.py ├── t283_agent_time.py ├── t284_agent_filter.py ├── t285_agent_caller_filter.py ├── t286_agent_trigger.py ├── t287_arg_enum3.py ├── t288_arg_oct.py ├── t289_exception5.py ├── t290_watch_global.py ├── t291_arg_dlopen.py ├── t292_report_diff_field6.py ├── t293_arg_cond1.py ├── t294_arg_cond2.py ├── t295_graph_field_total.py ├── t296_graph_field_self.py ├── unittest.c └── unittest.h ├── uftrace-gdb.py ├── uftrace.c ├── uftrace.h └── utils ├── arch.h ├── argspec.c ├── argspec.h ├── asm.h ├── auto-args.c ├── auto-args.h ├── compiler.h ├── data-file.c ├── debug.c ├── demangle.c ├── dwarf.c ├── dwarf.h ├── event.c ├── event.h ├── extern.c ├── field.c ├── field.h ├── filter.c ├── filter.h ├── fstack.c ├── fstack.h ├── graph.c ├── graph.h ├── hashmap.c ├── hashmap.h ├── kernel-parser.c ├── kernel-parser.h ├── kernel.c ├── kernel.h ├── list.h ├── mermaid.html ├── mermaid.js ├── pager.c ├── perf.c ├── perf.h ├── rbtree.c ├── rbtree.h ├── regs.c ├── report.c ├── report.h ├── script-luajit.c ├── script-luajit.h ├── script-python.c ├── script-python.h ├── script.c ├── script.h ├── session.c ├── shmem.c ├── shmem.h ├── socket.c ├── socket.h ├── symbol-libelf.c ├── symbol-libelf.h ├── symbol-rawelf.c ├── symbol-rawelf.h ├── symbol.c ├── symbol.h ├── tracefs.c ├── tracefs.h ├── utils.c └── utils.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.clang-format -------------------------------------------------------------------------------- /.codespell_ignore: -------------------------------------------------------------------------------- 1 | pevent 2 | creat 3 | mmaped 4 | ot 5 | te 6 | -------------------------------------------------------------------------------- /.github/workflows/nightly-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.github/workflows/nightly-test.yml -------------------------------------------------------------------------------- /.github/workflows/on-demand-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.github/workflows/on-demand-test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.github/workflows/pr-test.yml -------------------------------------------------------------------------------- /.github/workflows/push-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.github/workflows/push-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/Makefile.include -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/TODO -------------------------------------------------------------------------------- /arch/aarch64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/Makefile -------------------------------------------------------------------------------- /arch/aarch64/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/common.c -------------------------------------------------------------------------------- /arch/aarch64/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/cpuinfo.c -------------------------------------------------------------------------------- /arch/aarch64/dynamic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/dynamic.S -------------------------------------------------------------------------------- /arch/aarch64/fentry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/fentry.S -------------------------------------------------------------------------------- /arch/aarch64/mcount-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/mcount-arch.h -------------------------------------------------------------------------------- /arch/aarch64/mcount-dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/mcount-dynamic.c -------------------------------------------------------------------------------- /arch/aarch64/mcount-insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/mcount-insn.c -------------------------------------------------------------------------------- /arch/aarch64/mcount-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/mcount-support.c -------------------------------------------------------------------------------- /arch/aarch64/mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/mcount.S -------------------------------------------------------------------------------- /arch/aarch64/plthook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/aarch64/plthook.S -------------------------------------------------------------------------------- /arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/Makefile -------------------------------------------------------------------------------- /arch/arm/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/common.c -------------------------------------------------------------------------------- /arch/arm/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/cpuinfo.c -------------------------------------------------------------------------------- /arch/arm/mcount-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/mcount-arch.h -------------------------------------------------------------------------------- /arch/arm/mcount-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/mcount-support.c -------------------------------------------------------------------------------- /arch/arm/mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/mcount.S -------------------------------------------------------------------------------- /arch/arm/plthook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/arm/plthook.S -------------------------------------------------------------------------------- /arch/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/Makefile -------------------------------------------------------------------------------- /arch/i386/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/common.c -------------------------------------------------------------------------------- /arch/i386/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/cpuinfo.c -------------------------------------------------------------------------------- /arch/i386/fentry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/fentry.S -------------------------------------------------------------------------------- /arch/i386/mcount-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/mcount-arch.h -------------------------------------------------------------------------------- /arch/i386/mcount-dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/mcount-dynamic.c -------------------------------------------------------------------------------- /arch/i386/mcount-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/mcount-support.c -------------------------------------------------------------------------------- /arch/i386/mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/mcount.S -------------------------------------------------------------------------------- /arch/i386/plthook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/plthook.S -------------------------------------------------------------------------------- /arch/i386/thunk.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/i386/thunk.S -------------------------------------------------------------------------------- /arch/riscv64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/Makefile -------------------------------------------------------------------------------- /arch/riscv64/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/common.c -------------------------------------------------------------------------------- /arch/riscv64/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/cpuinfo.c -------------------------------------------------------------------------------- /arch/riscv64/mcount-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/mcount-arch.h -------------------------------------------------------------------------------- /arch/riscv64/mcount-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/mcount-support.c -------------------------------------------------------------------------------- /arch/riscv64/mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/mcount.S -------------------------------------------------------------------------------- /arch/riscv64/plthook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/riscv64/plthook.S -------------------------------------------------------------------------------- /arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/Makefile -------------------------------------------------------------------------------- /arch/x86_64/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/common.c -------------------------------------------------------------------------------- /arch/x86_64/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/cpuinfo.c -------------------------------------------------------------------------------- /arch/x86_64/dynamic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/dynamic.S -------------------------------------------------------------------------------- /arch/x86_64/fentry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/fentry.S -------------------------------------------------------------------------------- /arch/x86_64/mcount-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-arch.h -------------------------------------------------------------------------------- /arch/x86_64/mcount-dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-dynamic.c -------------------------------------------------------------------------------- /arch/x86_64/mcount-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-event.c -------------------------------------------------------------------------------- /arch/x86_64/mcount-insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-insn.c -------------------------------------------------------------------------------- /arch/x86_64/mcount-plthook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-plthook.c -------------------------------------------------------------------------------- /arch/x86_64/mcount-support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount-support.c -------------------------------------------------------------------------------- /arch/x86_64/mcount.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/mcount.S -------------------------------------------------------------------------------- /arch/x86_64/plthook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/plthook.S -------------------------------------------------------------------------------- /arch/x86_64/xray.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/arch/x86_64/xray.S -------------------------------------------------------------------------------- /check-deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/Makefile -------------------------------------------------------------------------------- /check-deps/Makefile.check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/Makefile.check -------------------------------------------------------------------------------- /check-deps/__arm_has_hardfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__arm_has_hardfp.c -------------------------------------------------------------------------------- /check-deps/__cc_has_mfentry.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /check-deps/__cc_has_mgeneral_regs_only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__cc_has_mgeneral_regs_only.c -------------------------------------------------------------------------------- /check-deps/__cc_has_minline_all_stringops.c: -------------------------------------------------------------------------------- 1 | int main(void) 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /check-deps/__cc_has_mno_sse2.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /check-deps/__clock_without_librt.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | return clock_gettime(CLOCK_MONOTONIC, 0); 6 | } 7 | -------------------------------------------------------------------------------- /check-deps/__cxa_demangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__cxa_demangle.c -------------------------------------------------------------------------------- /check-deps/__have_libcapstone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libcapstone.c -------------------------------------------------------------------------------- /check-deps/__have_libdw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libdw.c -------------------------------------------------------------------------------- /check-deps/__have_libelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libelf.c -------------------------------------------------------------------------------- /check-deps/__have_libluajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libluajit.c -------------------------------------------------------------------------------- /check-deps/__have_libncurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libncurses.c -------------------------------------------------------------------------------- /check-deps/__have_libpython2.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libpython2.7.c -------------------------------------------------------------------------------- /check-deps/__have_libpython3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libpython3.c -------------------------------------------------------------------------------- /check-deps/__have_libtraceevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libtraceevent.c -------------------------------------------------------------------------------- /check-deps/__have_libunwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__have_libunwind.c -------------------------------------------------------------------------------- /check-deps/__perf_clockid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__perf_clockid.c -------------------------------------------------------------------------------- /check-deps/__perf_context_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/check-deps/__perf_context_switch.c -------------------------------------------------------------------------------- /cmds/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/dump.c -------------------------------------------------------------------------------- /cmds/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/graph.c -------------------------------------------------------------------------------- /cmds/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/info.c -------------------------------------------------------------------------------- /cmds/live.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/live.c -------------------------------------------------------------------------------- /cmds/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/record.c -------------------------------------------------------------------------------- /cmds/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/recv.c -------------------------------------------------------------------------------- /cmds/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/replay.c -------------------------------------------------------------------------------- /cmds/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/report.c -------------------------------------------------------------------------------- /cmds/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/script.c -------------------------------------------------------------------------------- /cmds/tui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/cmds/tui.c -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/configure -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/ko/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/ko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/Makefile -------------------------------------------------------------------------------- /doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/README.md -------------------------------------------------------------------------------- /doc/ko/uftrace-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-dump.md -------------------------------------------------------------------------------- /doc/ko/uftrace-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-graph.md -------------------------------------------------------------------------------- /doc/ko/uftrace-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-info.md -------------------------------------------------------------------------------- /doc/ko/uftrace-live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-live.md -------------------------------------------------------------------------------- /doc/ko/uftrace-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-record.md -------------------------------------------------------------------------------- /doc/ko/uftrace-recv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-recv.md -------------------------------------------------------------------------------- /doc/ko/uftrace-replay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-replay.md -------------------------------------------------------------------------------- /doc/ko/uftrace-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-report.md -------------------------------------------------------------------------------- /doc/ko/uftrace-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-script.md -------------------------------------------------------------------------------- /doc/ko/uftrace-tui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace-tui.md -------------------------------------------------------------------------------- /doc/ko/uftrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/ko/uftrace.md -------------------------------------------------------------------------------- /doc/uftrace-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-chrome.png -------------------------------------------------------------------------------- /doc/uftrace-dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-dump.md -------------------------------------------------------------------------------- /doc/uftrace-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-graph.md -------------------------------------------------------------------------------- /doc/uftrace-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-info.md -------------------------------------------------------------------------------- /doc/uftrace-live-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-live-demo.gif -------------------------------------------------------------------------------- /doc/uftrace-live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-live.md -------------------------------------------------------------------------------- /doc/uftrace-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-record.md -------------------------------------------------------------------------------- /doc/uftrace-recv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-recv.md -------------------------------------------------------------------------------- /doc/uftrace-replay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-replay.md -------------------------------------------------------------------------------- /doc/uftrace-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-report.md -------------------------------------------------------------------------------- /doc/uftrace-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-script.md -------------------------------------------------------------------------------- /doc/uftrace-tui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace-tui.md -------------------------------------------------------------------------------- /doc/uftrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace.html -------------------------------------------------------------------------------- /doc/uftrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/doc/uftrace.md -------------------------------------------------------------------------------- /gdb/uftrace/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/lists.py -------------------------------------------------------------------------------- /gdb/uftrace/mcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/mcount.py -------------------------------------------------------------------------------- /gdb/uftrace/plthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/plthook.py -------------------------------------------------------------------------------- /gdb/uftrace/rbtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/rbtree.py -------------------------------------------------------------------------------- /gdb/uftrace/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/trigger.py -------------------------------------------------------------------------------- /gdb/uftrace/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/gdb/uftrace/utils.py -------------------------------------------------------------------------------- /libmcount/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/agent.c -------------------------------------------------------------------------------- /libmcount/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/dynamic.c -------------------------------------------------------------------------------- /libmcount/dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/dynamic.h -------------------------------------------------------------------------------- /libmcount/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/event.c -------------------------------------------------------------------------------- /libmcount/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/internal.h -------------------------------------------------------------------------------- /libmcount/mcount-nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/mcount-nop.c -------------------------------------------------------------------------------- /libmcount/mcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/mcount.c -------------------------------------------------------------------------------- /libmcount/mcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/mcount.h -------------------------------------------------------------------------------- /libmcount/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/misc.c -------------------------------------------------------------------------------- /libmcount/plthook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/plthook.c -------------------------------------------------------------------------------- /libmcount/pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/pmu.c -------------------------------------------------------------------------------- /libmcount/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/record.c -------------------------------------------------------------------------------- /libmcount/wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/libmcount/wrap.c -------------------------------------------------------------------------------- /misc/apply-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/apply-patch.sh -------------------------------------------------------------------------------- /misc/bash-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/bash-completion.sh -------------------------------------------------------------------------------- /misc/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/bench.c -------------------------------------------------------------------------------- /misc/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/bench.sh -------------------------------------------------------------------------------- /misc/checkout-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/checkout-pr.sh -------------------------------------------------------------------------------- /misc/dbginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/dbginfo.c -------------------------------------------------------------------------------- /misc/debug-mcount.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/debug-mcount.cmd -------------------------------------------------------------------------------- /misc/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/debug.sh -------------------------------------------------------------------------------- /misc/demangler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/demangler.c -------------------------------------------------------------------------------- /misc/docker/alpine/3.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/alpine/3.13/Dockerfile -------------------------------------------------------------------------------- /misc/docker/alpine/3.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/alpine/3.14/Dockerfile -------------------------------------------------------------------------------- /misc/docker/arch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/arch/Dockerfile -------------------------------------------------------------------------------- /misc/docker/centos/7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/centos/7/Dockerfile -------------------------------------------------------------------------------- /misc/docker/fedora/33/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/fedora/33/Dockerfile -------------------------------------------------------------------------------- /misc/docker/fedora/34/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/fedora/34/Dockerfile -------------------------------------------------------------------------------- /misc/docker/ubuntu/16.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/ubuntu/16.04/Dockerfile -------------------------------------------------------------------------------- /misc/docker/ubuntu/18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/docker/ubuntu/18.04/Dockerfile -------------------------------------------------------------------------------- /misc/gen-autoargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/gen-autoargs.py -------------------------------------------------------------------------------- /misc/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/install-deps.sh -------------------------------------------------------------------------------- /misc/install-elfutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/install-elfutils.sh -------------------------------------------------------------------------------- /misc/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/prototypes.h -------------------------------------------------------------------------------- /misc/run-lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/run-lcov.sh -------------------------------------------------------------------------------- /misc/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/symbols.c -------------------------------------------------------------------------------- /misc/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/version.sh -------------------------------------------------------------------------------- /misc/wget-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/misc/wget-pr.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/trace-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/python/trace-python.c -------------------------------------------------------------------------------- /python/uftrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/python/uftrace.py -------------------------------------------------------------------------------- /scripts/count.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/count.lua -------------------------------------------------------------------------------- /scripts/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/count.py -------------------------------------------------------------------------------- /scripts/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/dump.lua -------------------------------------------------------------------------------- /scripts/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/dump.py -------------------------------------------------------------------------------- /scripts/func-histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/func-histogram.py -------------------------------------------------------------------------------- /scripts/func-percentile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/func-percentile.py -------------------------------------------------------------------------------- /scripts/info.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/info.lua -------------------------------------------------------------------------------- /scripts/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/info.py -------------------------------------------------------------------------------- /scripts/replay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/replay.lua -------------------------------------------------------------------------------- /scripts/replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/replay.py -------------------------------------------------------------------------------- /scripts/report-libcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/report-libcall.py -------------------------------------------------------------------------------- /scripts/retval-histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/retval-histogram.py -------------------------------------------------------------------------------- /scripts/simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/simple.lua -------------------------------------------------------------------------------- /scripts/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/simple.py -------------------------------------------------------------------------------- /scripts/strings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/strings.lua -------------------------------------------------------------------------------- /scripts/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/strings.py -------------------------------------------------------------------------------- /scripts/trace-memcpy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/trace-memcpy.lua -------------------------------------------------------------------------------- /scripts/trace-memcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/scripts/trace-memcpy.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/arm/Makefile -------------------------------------------------------------------------------- /tests/arch/arm/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/arm/a.c -------------------------------------------------------------------------------- /tests/arch/arm/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/arm/t.c -------------------------------------------------------------------------------- /tests/arch/arm/thumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/arm/thumb.c -------------------------------------------------------------------------------- /tests/arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/x86_64/Makefile -------------------------------------------------------------------------------- /tests/arch/x86_64/fentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/arch/x86_64/fentry.c -------------------------------------------------------------------------------- /tests/mymod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/mymod.py -------------------------------------------------------------------------------- /tests/p001_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p001_basic.py -------------------------------------------------------------------------------- /tests/p002_filter_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p002_filter_F.py -------------------------------------------------------------------------------- /tests/p003_filter_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p003_filter_N.py -------------------------------------------------------------------------------- /tests/p004_filter_FN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p004_filter_FN.py -------------------------------------------------------------------------------- /tests/p005_srcline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p005_srcline.py -------------------------------------------------------------------------------- /tests/p006_filter_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p006_filter_time.py -------------------------------------------------------------------------------- /tests/p007_filter_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p007_filter_depth.py -------------------------------------------------------------------------------- /tests/p008_file_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p008_file_var.py -------------------------------------------------------------------------------- /tests/p009_libcall_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p009_libcall_single.py -------------------------------------------------------------------------------- /tests/p010_libcall_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p010_libcall_none.py -------------------------------------------------------------------------------- /tests/p011_libcall_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p011_libcall_nested.py -------------------------------------------------------------------------------- /tests/p012_os_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/p012_os_exit.py -------------------------------------------------------------------------------- /tests/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/runtest.py -------------------------------------------------------------------------------- /tests/s-abc-exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-abc-exit.py -------------------------------------------------------------------------------- /tests/s-abc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-abc.c -------------------------------------------------------------------------------- /tests/s-abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-abc.py -------------------------------------------------------------------------------- /tests/s-agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-agent.c -------------------------------------------------------------------------------- /tests/s-alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-alloca.c -------------------------------------------------------------------------------- /tests/s-allocfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-allocfree.c -------------------------------------------------------------------------------- /tests/s-arg-oct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-arg-oct.c -------------------------------------------------------------------------------- /tests/s-arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-arg.c -------------------------------------------------------------------------------- /tests/s-autoargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-autoargs.c -------------------------------------------------------------------------------- /tests/s-backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-backtrace.cpp -------------------------------------------------------------------------------- /tests/s-chcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-chcpu.c -------------------------------------------------------------------------------- /tests/s-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-daemon.c -------------------------------------------------------------------------------- /tests/s-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-data.c -------------------------------------------------------------------------------- /tests/s-demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-demangle.cpp -------------------------------------------------------------------------------- /tests/s-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-diff.c -------------------------------------------------------------------------------- /tests/s-dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dlopen.c -------------------------------------------------------------------------------- /tests/s-dlopen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dlopen2.cpp -------------------------------------------------------------------------------- /tests/s-dwarf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf1.c -------------------------------------------------------------------------------- /tests/s-dwarf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf2.cpp -------------------------------------------------------------------------------- /tests/s-dwarf3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf3.cpp -------------------------------------------------------------------------------- /tests/s-dwarf5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf5.c -------------------------------------------------------------------------------- /tests/s-dwarf6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf6.cpp -------------------------------------------------------------------------------- /tests/s-dwarf7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dwarf7.cpp -------------------------------------------------------------------------------- /tests/s-dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dynamic.c -------------------------------------------------------------------------------- /tests/s-dynmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-dynmain.c -------------------------------------------------------------------------------- /tests/s-enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-enum.c -------------------------------------------------------------------------------- /tests/s-enum2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-enum2.c -------------------------------------------------------------------------------- /tests/s-exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exception.cpp -------------------------------------------------------------------------------- /tests/s-exception2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exception2.cpp -------------------------------------------------------------------------------- /tests/s-exception3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exception3.cpp -------------------------------------------------------------------------------- /tests/s-exception4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exception4.cpp -------------------------------------------------------------------------------- /tests/s-exception5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exception5.cpp -------------------------------------------------------------------------------- /tests/s-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exit.c -------------------------------------------------------------------------------- /tests/s-exp-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exp-char.c -------------------------------------------------------------------------------- /tests/s-exp-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exp-float.c -------------------------------------------------------------------------------- /tests/s-exp-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exp-int.c -------------------------------------------------------------------------------- /tests/s-exp-mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exp-mixed.c -------------------------------------------------------------------------------- /tests/s-exp-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-exp-str.c -------------------------------------------------------------------------------- /tests/s-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-fibonacci.c -------------------------------------------------------------------------------- /tests/s-file-var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-file-var.py -------------------------------------------------------------------------------- /tests/s-float-libcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-float-libcall.c -------------------------------------------------------------------------------- /tests/s-fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-fork.c -------------------------------------------------------------------------------- /tests/s-fork2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-fork2.c -------------------------------------------------------------------------------- /tests/s-forkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-forkexec.c -------------------------------------------------------------------------------- /tests/s-getids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-getids.c -------------------------------------------------------------------------------- /tests/s-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-hello.c -------------------------------------------------------------------------------- /tests/s-indirect-return.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-indirect-return.cpp -------------------------------------------------------------------------------- /tests/s-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-lib.c -------------------------------------------------------------------------------- /tests/s-libbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libbar.cpp -------------------------------------------------------------------------------- /tests/s-libbaz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libbaz.cpp -------------------------------------------------------------------------------- /tests/s-libdyn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libdyn1.c -------------------------------------------------------------------------------- /tests/s-libdyn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libdyn2.c -------------------------------------------------------------------------------- /tests/s-libexcept-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libexcept-main.cpp -------------------------------------------------------------------------------- /tests/s-libexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libexcept.cpp -------------------------------------------------------------------------------- /tests/s-libexcept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libexcept.hpp -------------------------------------------------------------------------------- /tests/s-libfoo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libfoo.cpp -------------------------------------------------------------------------------- /tests/s-libmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libmain.c -------------------------------------------------------------------------------- /tests/s-libmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-libmain.py -------------------------------------------------------------------------------- /tests/s-longjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-longjmp.c -------------------------------------------------------------------------------- /tests/s-longjmp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-longjmp2.c -------------------------------------------------------------------------------- /tests/s-longjmp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-longjmp3.c -------------------------------------------------------------------------------- /tests/s-malloc-fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-malloc-fork.c -------------------------------------------------------------------------------- /tests/s-malloc-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-malloc-hook.c -------------------------------------------------------------------------------- /tests/s-malloc-tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-malloc-tsd.c -------------------------------------------------------------------------------- /tests/s-malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-malloc.c -------------------------------------------------------------------------------- /tests/s-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-mmap.c -------------------------------------------------------------------------------- /tests/s-namespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-namespace.cpp -------------------------------------------------------------------------------- /tests/s-nest-libcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-nest-libcall.c -------------------------------------------------------------------------------- /tests/s-nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-nested.c -------------------------------------------------------------------------------- /tests/s-openclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-openclose.c -------------------------------------------------------------------------------- /tests/s-patchable-abc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-patchable-abc.c -------------------------------------------------------------------------------- /tests/s-pltarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-pltarg.c -------------------------------------------------------------------------------- /tests/s-posix_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-posix_spawn.c -------------------------------------------------------------------------------- /tests/s-racycount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-racycount.c -------------------------------------------------------------------------------- /tests/s-return.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-return.c -------------------------------------------------------------------------------- /tests/s-sdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-sdt.c -------------------------------------------------------------------------------- /tests/s-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-signal.c -------------------------------------------------------------------------------- /tests/s-signal2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-signal2.c -------------------------------------------------------------------------------- /tests/s-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-sleep.c -------------------------------------------------------------------------------- /tests/s-sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-sleep.py -------------------------------------------------------------------------------- /tests/s-sleep2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-sleep2.c -------------------------------------------------------------------------------- /tests/s-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-sort.c -------------------------------------------------------------------------------- /tests/s-std-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-std-string.cpp -------------------------------------------------------------------------------- /tests/s-struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-struct.c -------------------------------------------------------------------------------- /tests/s-taskname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-taskname.c -------------------------------------------------------------------------------- /tests/s-thread-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-thread-exec.c -------------------------------------------------------------------------------- /tests/s-thread-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-thread-exit.c -------------------------------------------------------------------------------- /tests/s-thread-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-thread-name.c -------------------------------------------------------------------------------- /tests/s-thread-tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-thread-tsd.c -------------------------------------------------------------------------------- /tests/s-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-thread.c -------------------------------------------------------------------------------- /tests/s-ucontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-ucontext.c -------------------------------------------------------------------------------- /tests/s-unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-unroll.c -------------------------------------------------------------------------------- /tests/s-variadic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-variadic.c -------------------------------------------------------------------------------- /tests/s-vforkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-vforkexec.c -------------------------------------------------------------------------------- /tests/s-watch-global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/s-watch-global.c -------------------------------------------------------------------------------- /tests/t001_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t001_basic.py -------------------------------------------------------------------------------- /tests/t002_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t002_argument.py -------------------------------------------------------------------------------- /tests/t003_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t003_thread.py -------------------------------------------------------------------------------- /tests/t004_filter_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t004_filter_F.py -------------------------------------------------------------------------------- /tests/t005_filter_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t005_filter_N.py -------------------------------------------------------------------------------- /tests/t006_filter_FN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t006_filter_FN.py -------------------------------------------------------------------------------- /tests/t007_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t007_library.py -------------------------------------------------------------------------------- /tests/t008_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t008_daemon.py -------------------------------------------------------------------------------- /tests/t009_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t009_fork.py -------------------------------------------------------------------------------- /tests/t010_forkexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t010_forkexec.py -------------------------------------------------------------------------------- /tests/t011_vforkexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t011_vforkexec.py -------------------------------------------------------------------------------- /tests/t012_demangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t012_demangle.py -------------------------------------------------------------------------------- /tests/t013_signal1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t013_signal1.py -------------------------------------------------------------------------------- /tests/t014_ucontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t014_ucontext.py -------------------------------------------------------------------------------- /tests/t015_longjmp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t015_longjmp1.py -------------------------------------------------------------------------------- /tests/t016_alloca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t016_alloca.py -------------------------------------------------------------------------------- /tests/t017_no_libcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t017_no_libcall.py -------------------------------------------------------------------------------- /tests/t018_filter_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t018_filter_regex.py -------------------------------------------------------------------------------- /tests/t019_full_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t019_full_depth.py -------------------------------------------------------------------------------- /tests/t020_filter_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t020_filter_depth.py -------------------------------------------------------------------------------- /tests/t021_filter_plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t021_filter_plt.py -------------------------------------------------------------------------------- /tests/t022_filter_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t022_filter_kernel.py -------------------------------------------------------------------------------- /tests/t023_replay_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t023_replay_filter.py -------------------------------------------------------------------------------- /tests/t024_report_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t024_report_basic.py -------------------------------------------------------------------------------- /tests/t025_report_s_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t025_report_s_call.py -------------------------------------------------------------------------------- /tests/t026_filter_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t026_filter_trigger.py -------------------------------------------------------------------------------- /tests/t027_replay_filter_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t027_replay_filter_d.py -------------------------------------------------------------------------------- /tests/t028_replay_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t028_replay_backtrace.py -------------------------------------------------------------------------------- /tests/t029_trigger_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t029_trigger_only.py -------------------------------------------------------------------------------- /tests/t030_replay_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t030_replay_trigger.py -------------------------------------------------------------------------------- /tests/t031_filter_demangle1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t031_filter_demangle1.py -------------------------------------------------------------------------------- /tests/t032_filter_demangle2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t032_filter_demangle2.py -------------------------------------------------------------------------------- /tests/t033_filter_demangle3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t033_filter_demangle3.py -------------------------------------------------------------------------------- /tests/t034_filter_demangle4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t034_filter_demangle4.py -------------------------------------------------------------------------------- /tests/t035_filter_demangle5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t035_filter_demangle5.py -------------------------------------------------------------------------------- /tests/t036_replay_filter_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t036_replay_filter_N.py -------------------------------------------------------------------------------- /tests/t037_trace_onoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t037_trace_onoff.py -------------------------------------------------------------------------------- /tests/t038_trace_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t038_trace_disable.py -------------------------------------------------------------------------------- /tests/t039_trace_onoff_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t039_trace_onoff_F.py -------------------------------------------------------------------------------- /tests/t040_replay_onoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t040_replay_onoff.py -------------------------------------------------------------------------------- /tests/t041_replay_onoff_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t041_replay_onoff_N.py -------------------------------------------------------------------------------- /tests/t042_live_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t042_live_disable.py -------------------------------------------------------------------------------- /tests/t043_full_demangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t043_full_demangle.py -------------------------------------------------------------------------------- /tests/t044_report_avg_total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t044_report_avg_total.py -------------------------------------------------------------------------------- /tests/t045_report_avg_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t045_report_avg_self.py -------------------------------------------------------------------------------- /tests/t046_report_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t046_report_task.py -------------------------------------------------------------------------------- /tests/t047_signal2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t047_signal2.py -------------------------------------------------------------------------------- /tests/t048_malloc_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t048_malloc_impl.py -------------------------------------------------------------------------------- /tests/t049_column_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t049_column_view.py -------------------------------------------------------------------------------- /tests/t050_no_pltbind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t050_no_pltbind.py -------------------------------------------------------------------------------- /tests/t051_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t051_return.py -------------------------------------------------------------------------------- /tests/t052_nested_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t052_nested_func.py -------------------------------------------------------------------------------- /tests/t053_filter_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t053_filter_time.py -------------------------------------------------------------------------------- /tests/t054_filter_time_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t054_filter_time_F.py -------------------------------------------------------------------------------- /tests/t055_filter_time_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t055_filter_time_N.py -------------------------------------------------------------------------------- /tests/t056_filter_time_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t056_filter_time_T.py -------------------------------------------------------------------------------- /tests/t057_filter_time_D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t057_filter_time_D.py -------------------------------------------------------------------------------- /tests/t058_arg_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t058_arg_int.py -------------------------------------------------------------------------------- /tests/t059_arg_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t059_arg_str.py -------------------------------------------------------------------------------- /tests/t060_arg_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t060_arg_fmt.py -------------------------------------------------------------------------------- /tests/t061_arg_plt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t061_arg_plt.py -------------------------------------------------------------------------------- /tests/t062_arg_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t062_arg_char.py -------------------------------------------------------------------------------- /tests/t063_retval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t063_retval.py -------------------------------------------------------------------------------- /tests/t064_trigger_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t064_trigger_trace.py -------------------------------------------------------------------------------- /tests/t065_arg_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t065_arg_order.py -------------------------------------------------------------------------------- /tests/t066_no_demangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t066_no_demangle.py -------------------------------------------------------------------------------- /tests/t067_report_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t067_report_diff.py -------------------------------------------------------------------------------- /tests/t068_filter_time_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t068_filter_time_A.py -------------------------------------------------------------------------------- /tests/t069_graph_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t069_graph_basic.py -------------------------------------------------------------------------------- /tests/t070_graph_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t070_graph_backtrace.py -------------------------------------------------------------------------------- /tests/t071_graph_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t071_graph_depth.py -------------------------------------------------------------------------------- /tests/t072_no_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t072_no_comment.py -------------------------------------------------------------------------------- /tests/t073_lib_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t073_lib_filter.py -------------------------------------------------------------------------------- /tests/t074_lib_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t074_lib_trigger.py -------------------------------------------------------------------------------- /tests/t075_lib_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t075_lib_arg.py -------------------------------------------------------------------------------- /tests/t076_lib_replay_F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t076_lib_replay_F.py -------------------------------------------------------------------------------- /tests/t077_lib_replay_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t077_lib_replay_T.py -------------------------------------------------------------------------------- /tests/t078_max_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t078_max_stack.py -------------------------------------------------------------------------------- /tests/t079_replay_kernel_D1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t079_replay_kernel_D1.py -------------------------------------------------------------------------------- /tests/t080_replay_kernel_D2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t080_replay_kernel_D2.py -------------------------------------------------------------------------------- /tests/t081_kernel_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t081_kernel_depth.py -------------------------------------------------------------------------------- /tests/t082_arg_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t082_arg_many.py -------------------------------------------------------------------------------- /tests/t083_arg_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t083_arg_float.py -------------------------------------------------------------------------------- /tests/t084_arg_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t084_arg_mixed.py -------------------------------------------------------------------------------- /tests/t085_arg_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t085_arg_reg.py -------------------------------------------------------------------------------- /tests/t086_arg_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t086_arg_stack.py -------------------------------------------------------------------------------- /tests/t087_arg_variadic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t087_arg_variadic.py -------------------------------------------------------------------------------- /tests/t088_graph_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t088_graph_session.py -------------------------------------------------------------------------------- /tests/t089_graph_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t089_graph_exit.py -------------------------------------------------------------------------------- /tests/t090_report_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t090_report_recursive.py -------------------------------------------------------------------------------- /tests/t091_replay_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t091_replay_tid.py -------------------------------------------------------------------------------- /tests/t092_report_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t092_report_tid.py -------------------------------------------------------------------------------- /tests/t093_report_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t093_report_filter.py -------------------------------------------------------------------------------- /tests/t094_report_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t094_report_depth.py -------------------------------------------------------------------------------- /tests/t095_graph_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t095_graph_tid.py -------------------------------------------------------------------------------- /tests/t096_graph_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t096_graph_filter.py -------------------------------------------------------------------------------- /tests/t097_dump_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t097_dump_basic.py -------------------------------------------------------------------------------- /tests/t098_dump_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t098_dump_tid.py -------------------------------------------------------------------------------- /tests/t099_dump_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t099_dump_filter.py -------------------------------------------------------------------------------- /tests/t100_dump_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t100_dump_depth.py -------------------------------------------------------------------------------- /tests/t101_dump_chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t101_dump_chrome.py -------------------------------------------------------------------------------- /tests/t102_dump_flamegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t102_dump_flamegraph.py -------------------------------------------------------------------------------- /tests/t103_dump_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t103_dump_kernel.py -------------------------------------------------------------------------------- /tests/t104_graph_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t104_graph_kernel.py -------------------------------------------------------------------------------- /tests/t105_replay_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t105_replay_time.py -------------------------------------------------------------------------------- /tests/t106_report_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t106_report_time.py -------------------------------------------------------------------------------- /tests/t107_dump_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t107_dump_time.py -------------------------------------------------------------------------------- /tests/t108_graph_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t108_graph_time.py -------------------------------------------------------------------------------- /tests/t109_replay_time_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t109_replay_time_A.py -------------------------------------------------------------------------------- /tests/t110_replay_time_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t110_replay_time_T.py -------------------------------------------------------------------------------- /tests/t111_kernel_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t111_kernel_tid.py -------------------------------------------------------------------------------- /tests/t112_replay_skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t112_replay_skip.py -------------------------------------------------------------------------------- /tests/t113_trigger_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t113_trigger_time.py -------------------------------------------------------------------------------- /tests/t114_replay_trg_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t114_replay_trg_time.py -------------------------------------------------------------------------------- /tests/t115_replay_field1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t115_replay_field1.py -------------------------------------------------------------------------------- /tests/t116_field_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t116_field_none.py -------------------------------------------------------------------------------- /tests/t117_time_range1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t117_time_range1.py -------------------------------------------------------------------------------- /tests/t118_thread_tsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t118_thread_tsd.py -------------------------------------------------------------------------------- /tests/t119_malloc_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t119_malloc_hook.py -------------------------------------------------------------------------------- /tests/t120_malloc_tsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t120_malloc_tsd.py -------------------------------------------------------------------------------- /tests/t121_malloc_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t121_malloc_fork.py -------------------------------------------------------------------------------- /tests/t122_time_range2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t122_time_range2.py -------------------------------------------------------------------------------- /tests/t123_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t123_backtrace.py -------------------------------------------------------------------------------- /tests/t124_exception1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t124_exception1.py -------------------------------------------------------------------------------- /tests/t125_report_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t125_report_range.py -------------------------------------------------------------------------------- /tests/t126_arg_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t126_arg_regex.py -------------------------------------------------------------------------------- /tests/t127_arg_module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t127_arg_module1.py -------------------------------------------------------------------------------- /tests/t128_arg_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t128_arg_module2.py -------------------------------------------------------------------------------- /tests/t129_session_tid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t129_session_tid.py -------------------------------------------------------------------------------- /tests/t130_thread_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t130_thread_exec.py -------------------------------------------------------------------------------- /tests/t131_lib_dlopen1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t131_lib_dlopen1.py -------------------------------------------------------------------------------- /tests/t132_trigger_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t132_trigger_kernel.py -------------------------------------------------------------------------------- /tests/t133_long_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t133_long_string.py -------------------------------------------------------------------------------- /tests/t134_pic_pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t134_pic_pie.py -------------------------------------------------------------------------------- /tests/t135_trigger_time2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t135_trigger_time2.py -------------------------------------------------------------------------------- /tests/t136_dynamic_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t136_dynamic_basic.py -------------------------------------------------------------------------------- /tests/t137_kernel_tid_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t137_kernel_tid_update.py -------------------------------------------------------------------------------- /tests/t138_kernel_dynamic1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t138_kernel_dynamic1.py -------------------------------------------------------------------------------- /tests/t139_kernel_dynamic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t139_kernel_dynamic2.py -------------------------------------------------------------------------------- /tests/t140_dynamic_xray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t140_dynamic_xray.py -------------------------------------------------------------------------------- /tests/t141_recv_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t141_recv_basic.py -------------------------------------------------------------------------------- /tests/t142_recv_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t142_recv_multi.py -------------------------------------------------------------------------------- /tests/t143_recv_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t143_recv_kernel.py -------------------------------------------------------------------------------- /tests/t144_longjmp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t144_longjmp2.py -------------------------------------------------------------------------------- /tests/t145_longjmp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t145_longjmp3.py -------------------------------------------------------------------------------- /tests/t146_arg_std_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t146_arg_std_string.py -------------------------------------------------------------------------------- /tests/t147_event_sdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t147_event_sdt.py -------------------------------------------------------------------------------- /tests/t148_event_kernel1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t148_event_kernel1.py -------------------------------------------------------------------------------- /tests/t149_event_kernel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t149_event_kernel2.py -------------------------------------------------------------------------------- /tests/t150_recv_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t150_recv_event.py -------------------------------------------------------------------------------- /tests/t151_recv_runcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t151_recv_runcmd.py -------------------------------------------------------------------------------- /tests/t152_read_proc_statm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t152_read_proc_statm.py -------------------------------------------------------------------------------- /tests/t153_read_page_fault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t153_read_page_fault.py -------------------------------------------------------------------------------- /tests/t154_keep_pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t154_keep_pid.py -------------------------------------------------------------------------------- /tests/t155_trigger_finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t155_trigger_finish.py -------------------------------------------------------------------------------- /tests/t156_trigger_finish2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t156_trigger_finish2.py -------------------------------------------------------------------------------- /tests/t157_script_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t157_script_python.py -------------------------------------------------------------------------------- /tests/t158_report_diff_policy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t158_report_diff_policy1.py -------------------------------------------------------------------------------- /tests/t159_report_diff_policy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t159_report_diff_policy2.py -------------------------------------------------------------------------------- /tests/t160_report_diff_policy3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t160_report_diff_policy3.py -------------------------------------------------------------------------------- /tests/t161_pltbind_now.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t161_pltbind_now.py -------------------------------------------------------------------------------- /tests/t162_pltbind_now_pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t162_pltbind_now_pie.py -------------------------------------------------------------------------------- /tests/t163_event_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t163_event_sched.py -------------------------------------------------------------------------------- /tests/t164_report_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t164_report_sched.py -------------------------------------------------------------------------------- /tests/t165_graph_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t165_graph_sched.py -------------------------------------------------------------------------------- /tests/t166_dump_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t166_dump_sched.py -------------------------------------------------------------------------------- /tests/t167_recv_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t167_recv_sched.py -------------------------------------------------------------------------------- /tests/t168_lib_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t168_lib_nested.py -------------------------------------------------------------------------------- /tests/t169_script_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t169_script_args.py -------------------------------------------------------------------------------- /tests/t170_script_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t170_script_filter.py -------------------------------------------------------------------------------- /tests/t171_script_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t171_script_option.py -------------------------------------------------------------------------------- /tests/t172_trigger_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t172_trigger_filter.py -------------------------------------------------------------------------------- /tests/t173_trigger_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t173_trigger_args.py -------------------------------------------------------------------------------- /tests/t174_replay_filter_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t174_replay_filter_kernel.py -------------------------------------------------------------------------------- /tests/t175_filter_time_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t175_filter_time_read.py -------------------------------------------------------------------------------- /tests/t176_arg_fptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t176_arg_fptr.py -------------------------------------------------------------------------------- /tests/t177_report_diff_policy4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t177_report_diff_policy4.py -------------------------------------------------------------------------------- /tests/t178_arg_auto1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t178_arg_auto1.py -------------------------------------------------------------------------------- /tests/t179_arg_auto2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t179_arg_auto2.py -------------------------------------------------------------------------------- /tests/t180_arg_auto3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t180_arg_auto3.py -------------------------------------------------------------------------------- /tests/t181_graph_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t181_graph_full.py -------------------------------------------------------------------------------- /tests/t182_thread_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t182_thread_exit.py -------------------------------------------------------------------------------- /tests/t183_info_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t183_info_quote.py -------------------------------------------------------------------------------- /tests/t184_arg_enum1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t184_arg_enum1.py -------------------------------------------------------------------------------- /tests/t185_exception2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t185_exception2.py -------------------------------------------------------------------------------- /tests/t186_exception3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t186_exception3.py -------------------------------------------------------------------------------- /tests/t187_graph_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t187_graph_field.py -------------------------------------------------------------------------------- /tests/t188_graph_field_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t188_graph_field_none.py -------------------------------------------------------------------------------- /tests/t189_replay_field2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t189_replay_field2.py -------------------------------------------------------------------------------- /tests/t190_trigger_autoargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t190_trigger_autoargs.py -------------------------------------------------------------------------------- /tests/t191_posix_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t191_posix_spawn.py -------------------------------------------------------------------------------- /tests/t192_lib_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t192_lib_name.py -------------------------------------------------------------------------------- /tests/t193_read_pmu_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t193_read_pmu_cycle.py -------------------------------------------------------------------------------- /tests/t194_read_pmu_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t194_read_pmu_cache.py -------------------------------------------------------------------------------- /tests/t195_read_pmu_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t195_read_pmu_branch.py -------------------------------------------------------------------------------- /tests/t196_chrome_taskname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t196_chrome_taskname.py -------------------------------------------------------------------------------- /tests/t197_filter_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t197_filter_glob.py -------------------------------------------------------------------------------- /tests/t198_lib_arg_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t198_lib_arg_float.py -------------------------------------------------------------------------------- /tests/t199_script_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t199_script_info.py -------------------------------------------------------------------------------- /tests/t200_lib_dlopen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t200_lib_dlopen2.py -------------------------------------------------------------------------------- /tests/t201_arg_dwarf1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t201_arg_dwarf1.py -------------------------------------------------------------------------------- /tests/t202_arg_dwarf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t202_arg_dwarf2.py -------------------------------------------------------------------------------- /tests/t203_arg_dwarf3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t203_arg_dwarf3.py -------------------------------------------------------------------------------- /tests/t204_arg_dwarf4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t204_arg_dwarf4.py -------------------------------------------------------------------------------- /tests/t205_arg_auto4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t205_arg_auto4.py -------------------------------------------------------------------------------- /tests/t206_arg_enum2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t206_arg_enum2.py -------------------------------------------------------------------------------- /tests/t207_dump_graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t207_dump_graphviz.py -------------------------------------------------------------------------------- /tests/t208_watch_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t208_watch_cpu.py -------------------------------------------------------------------------------- /tests/t209_filter_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t209_filter_caller.py -------------------------------------------------------------------------------- /tests/t210_filter_time_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t210_filter_time_C.py -------------------------------------------------------------------------------- /tests/t211_replay_filter_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t211_replay_filter_C.py -------------------------------------------------------------------------------- /tests/t212_noplt_libcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t212_noplt_libcall.py -------------------------------------------------------------------------------- /tests/t213_arg_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t213_arg_symbol.py -------------------------------------------------------------------------------- /tests/t214_signal_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t214_signal_trigger.py -------------------------------------------------------------------------------- /tests/t215_no_libcall_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t215_no_libcall_replay.py -------------------------------------------------------------------------------- /tests/t216_no_libcall_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t216_no_libcall_report.py -------------------------------------------------------------------------------- /tests/t217_no_libcall_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t217_no_libcall_dump.py -------------------------------------------------------------------------------- /tests/t218_no_libcall_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t218_no_libcall_graph.py -------------------------------------------------------------------------------- /tests/t219_no_libcall_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t219_no_libcall_script.py -------------------------------------------------------------------------------- /tests/t220_trace_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t220_trace_script.py -------------------------------------------------------------------------------- /tests/t221_taskname_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t221_taskname_time.py -------------------------------------------------------------------------------- /tests/t222_external_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t222_external_data.py -------------------------------------------------------------------------------- /tests/t223_dynamic_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t223_dynamic_full.py -------------------------------------------------------------------------------- /tests/t224_dynamic_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t224_dynamic_lib.py -------------------------------------------------------------------------------- /tests/t225_dynamic_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t225_dynamic_size.py -------------------------------------------------------------------------------- /tests/t226_default_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t226_default_opts.py -------------------------------------------------------------------------------- /tests/t227_read_pmu_cycle2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t227_read_pmu_cycle2.py -------------------------------------------------------------------------------- /tests/t228_read_pmu_cycle3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t228_read_pmu_cycle3.py -------------------------------------------------------------------------------- /tests/t229_info_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t229_info_task.py -------------------------------------------------------------------------------- /tests/t230_graph_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t230_graph_task.py -------------------------------------------------------------------------------- /tests/t231_arg_bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t231_arg_bound.py -------------------------------------------------------------------------------- /tests/t232_dynamic_unpatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t232_dynamic_unpatch.py -------------------------------------------------------------------------------- /tests/t233_dynamic_unpatch2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t233_dynamic_unpatch2.py -------------------------------------------------------------------------------- /tests/t234_script_luajit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t234_script_luajit.py -------------------------------------------------------------------------------- /tests/t235_report_srcline1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t235_report_srcline1.py -------------------------------------------------------------------------------- /tests/t236_replay_srcline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t236_replay_srcline.py -------------------------------------------------------------------------------- /tests/t237_report_field1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t237_report_field1.py -------------------------------------------------------------------------------- /tests/t238_report_field2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t238_report_field2.py -------------------------------------------------------------------------------- /tests/t239_report_diff_field1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t239_report_diff_field1.py -------------------------------------------------------------------------------- /tests/t240_report_diff_field2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t240_report_diff_field2.py -------------------------------------------------------------------------------- /tests/t241_report_diff_field3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t241_report_diff_field3.py -------------------------------------------------------------------------------- /tests/t242_report_diff_field4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t242_report_diff_field4.py -------------------------------------------------------------------------------- /tests/t243_report_diff_field5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t243_report_diff_field5.py -------------------------------------------------------------------------------- /tests/t244_report_task_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t244_report_task_field.py -------------------------------------------------------------------------------- /tests/t245_report_field_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t245_report_field_none.py -------------------------------------------------------------------------------- /tests/t246_report_srcline2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t246_report_srcline2.py -------------------------------------------------------------------------------- /tests/t247_graph_srcline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t247_graph_srcline.py -------------------------------------------------------------------------------- /tests/t248_dynamic_dlopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t248_dynamic_dlopen.py -------------------------------------------------------------------------------- /tests/t249_estimate_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t249_estimate_return.py -------------------------------------------------------------------------------- /tests/t250_indirect_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t250_indirect_return.py -------------------------------------------------------------------------------- /tests/t251_exception4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t251_exception4.py -------------------------------------------------------------------------------- /tests/t252_filter_H.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t252_filter_H.py -------------------------------------------------------------------------------- /tests/t253_trigger_hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t253_trigger_hide.py -------------------------------------------------------------------------------- /tests/t254_arg_dwarf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t254_arg_dwarf5.py -------------------------------------------------------------------------------- /tests/t255_arg_dwarf6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t255_arg_dwarf6.py -------------------------------------------------------------------------------- /tests/t256_arg_dwarf7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t256_arg_dwarf7.py -------------------------------------------------------------------------------- /tests/t257_arg_struct_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t257_arg_struct_replay.py -------------------------------------------------------------------------------- /tests/t258_arg_struct_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t258_arg_struct_dump.py -------------------------------------------------------------------------------- /tests/t259_arg_struct_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t259_arg_struct_script.py -------------------------------------------------------------------------------- /tests/t260_arg_struct_luajit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t260_arg_struct_luajit.py -------------------------------------------------------------------------------- /tests/t261_info_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t261_info_note.py -------------------------------------------------------------------------------- /tests/t262_replay_with_syms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t262_replay_with_syms.py -------------------------------------------------------------------------------- /tests/t263_patchable_dynamic1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t263_patchable_dynamic1.py -------------------------------------------------------------------------------- /tests/t264_patchable_dynamic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t264_patchable_dynamic2.py -------------------------------------------------------------------------------- /tests/t265_patchable_dynamic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t265_patchable_dynamic3.py -------------------------------------------------------------------------------- /tests/t266_patchable_dynamic4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t266_patchable_dynamic4.py -------------------------------------------------------------------------------- /tests/t267_patchable_dynamic5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t267_patchable_dynamic5.py -------------------------------------------------------------------------------- /tests/t268_record_with_syms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t268_record_with_syms.py -------------------------------------------------------------------------------- /tests/t269_arg_no_args_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t269_arg_no_args_replay.py -------------------------------------------------------------------------------- /tests/t270_arg_no_args_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t270_arg_no_args_dump.py -------------------------------------------------------------------------------- /tests/t271_script_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t271_script_event.py -------------------------------------------------------------------------------- /tests/t272_dump_mermaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t272_dump_mermaid.py -------------------------------------------------------------------------------- /tests/t273_agent_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t273_agent_basic.py -------------------------------------------------------------------------------- /tests/t274_filter_loc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t274_filter_loc1.py -------------------------------------------------------------------------------- /tests/t275_filter_loc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t275_filter_loc2.py -------------------------------------------------------------------------------- /tests/t276_filter_loc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t276_filter_loc3.py -------------------------------------------------------------------------------- /tests/t277_time_range3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t277_time_range3.py -------------------------------------------------------------------------------- /tests/t278_size_filter1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t278_size_filter1.py -------------------------------------------------------------------------------- /tests/t279_size_filter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t279_size_filter2.py -------------------------------------------------------------------------------- /tests/t280_size_filter3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t280_size_filter3.py -------------------------------------------------------------------------------- /tests/t281_agent_trace_toggle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t281_agent_trace_toggle.py -------------------------------------------------------------------------------- /tests/t282_agent_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t282_agent_depth.py -------------------------------------------------------------------------------- /tests/t283_agent_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t283_agent_time.py -------------------------------------------------------------------------------- /tests/t284_agent_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t284_agent_filter.py -------------------------------------------------------------------------------- /tests/t285_agent_caller_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t285_agent_caller_filter.py -------------------------------------------------------------------------------- /tests/t286_agent_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t286_agent_trigger.py -------------------------------------------------------------------------------- /tests/t287_arg_enum3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t287_arg_enum3.py -------------------------------------------------------------------------------- /tests/t288_arg_oct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t288_arg_oct.py -------------------------------------------------------------------------------- /tests/t289_exception5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t289_exception5.py -------------------------------------------------------------------------------- /tests/t290_watch_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t290_watch_global.py -------------------------------------------------------------------------------- /tests/t291_arg_dlopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t291_arg_dlopen.py -------------------------------------------------------------------------------- /tests/t292_report_diff_field6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t292_report_diff_field6.py -------------------------------------------------------------------------------- /tests/t293_arg_cond1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t293_arg_cond1.py -------------------------------------------------------------------------------- /tests/t294_arg_cond2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t294_arg_cond2.py -------------------------------------------------------------------------------- /tests/t295_graph_field_total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t295_graph_field_total.py -------------------------------------------------------------------------------- /tests/t296_graph_field_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/t296_graph_field_self.py -------------------------------------------------------------------------------- /tests/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/unittest.c -------------------------------------------------------------------------------- /tests/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/tests/unittest.h -------------------------------------------------------------------------------- /uftrace-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/uftrace-gdb.py -------------------------------------------------------------------------------- /uftrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/uftrace.c -------------------------------------------------------------------------------- /uftrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/uftrace.h -------------------------------------------------------------------------------- /utils/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/arch.h -------------------------------------------------------------------------------- /utils/argspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/argspec.c -------------------------------------------------------------------------------- /utils/argspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/argspec.h -------------------------------------------------------------------------------- /utils/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/asm.h -------------------------------------------------------------------------------- /utils/auto-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/auto-args.c -------------------------------------------------------------------------------- /utils/auto-args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/auto-args.h -------------------------------------------------------------------------------- /utils/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/compiler.h -------------------------------------------------------------------------------- /utils/data-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/data-file.c -------------------------------------------------------------------------------- /utils/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/debug.c -------------------------------------------------------------------------------- /utils/demangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/demangle.c -------------------------------------------------------------------------------- /utils/dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/dwarf.c -------------------------------------------------------------------------------- /utils/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/dwarf.h -------------------------------------------------------------------------------- /utils/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/event.c -------------------------------------------------------------------------------- /utils/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/event.h -------------------------------------------------------------------------------- /utils/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/extern.c -------------------------------------------------------------------------------- /utils/field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/field.c -------------------------------------------------------------------------------- /utils/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/field.h -------------------------------------------------------------------------------- /utils/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/filter.c -------------------------------------------------------------------------------- /utils/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/filter.h -------------------------------------------------------------------------------- /utils/fstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/fstack.c -------------------------------------------------------------------------------- /utils/fstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/fstack.h -------------------------------------------------------------------------------- /utils/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/graph.c -------------------------------------------------------------------------------- /utils/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/graph.h -------------------------------------------------------------------------------- /utils/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/hashmap.c -------------------------------------------------------------------------------- /utils/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/hashmap.h -------------------------------------------------------------------------------- /utils/kernel-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/kernel-parser.c -------------------------------------------------------------------------------- /utils/kernel-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/kernel-parser.h -------------------------------------------------------------------------------- /utils/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/kernel.c -------------------------------------------------------------------------------- /utils/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/kernel.h -------------------------------------------------------------------------------- /utils/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/list.h -------------------------------------------------------------------------------- /utils/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/mermaid.html -------------------------------------------------------------------------------- /utils/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/mermaid.js -------------------------------------------------------------------------------- /utils/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/pager.c -------------------------------------------------------------------------------- /utils/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/perf.c -------------------------------------------------------------------------------- /utils/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/perf.h -------------------------------------------------------------------------------- /utils/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/rbtree.c -------------------------------------------------------------------------------- /utils/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/rbtree.h -------------------------------------------------------------------------------- /utils/regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/regs.c -------------------------------------------------------------------------------- /utils/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/report.c -------------------------------------------------------------------------------- /utils/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/report.h -------------------------------------------------------------------------------- /utils/script-luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script-luajit.c -------------------------------------------------------------------------------- /utils/script-luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script-luajit.h -------------------------------------------------------------------------------- /utils/script-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script-python.c -------------------------------------------------------------------------------- /utils/script-python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script-python.h -------------------------------------------------------------------------------- /utils/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script.c -------------------------------------------------------------------------------- /utils/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/script.h -------------------------------------------------------------------------------- /utils/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/session.c -------------------------------------------------------------------------------- /utils/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/shmem.c -------------------------------------------------------------------------------- /utils/shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/shmem.h -------------------------------------------------------------------------------- /utils/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/socket.c -------------------------------------------------------------------------------- /utils/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/socket.h -------------------------------------------------------------------------------- /utils/symbol-libelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol-libelf.c -------------------------------------------------------------------------------- /utils/symbol-libelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol-libelf.h -------------------------------------------------------------------------------- /utils/symbol-rawelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol-rawelf.c -------------------------------------------------------------------------------- /utils/symbol-rawelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol-rawelf.h -------------------------------------------------------------------------------- /utils/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol.c -------------------------------------------------------------------------------- /utils/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/symbol.h -------------------------------------------------------------------------------- /utils/tracefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/tracefs.c -------------------------------------------------------------------------------- /utils/tracefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/tracefs.h -------------------------------------------------------------------------------- /utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/utils.c -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namhyung/uftrace/HEAD/utils/utils.h --------------------------------------------------------------------------------