uftrace

Function graph tracer for C/C++/Rust applications

brewmacoslinux
Try with needOr install directly
Source

About

Function graph tracer for C/C++/Rust

Commands

uftrace

Examples

Record function calls for a program and display the call graph$ uftrace record ./myprogram && uftrace replay
Generate a flame graph visualization of function execution$ uftrace record -f depth ./myprogram && uftrace dump --flame-graph > flame.svg
Profile and show statistics for each function's execution time$ uftrace record ./myprogram && uftrace stat