diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-24 00:50:34 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-24 00:50:34 +0100 |
commit | 916b73bee95494c205ba67e4a50e6a525afc3a3c (patch) | |
tree | b544937a4a7aeb7a81f3262ed03e434d3da91312 /src/trace_profile/tracy.md | |
parent | 023f5799d537b491151704b15ac59bdaef62c259 (diff) | |
download | notes-916b73bee95494c205ba67e4a50e6a525afc3a3c.tar.gz notes-916b73bee95494c205ba67e4a50e6a525afc3a3c.zip |
Diffstat (limited to 'src/trace_profile/tracy.md')
-rw-r--r-- | src/trace_profile/tracy.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/trace_profile/tracy.md b/src/trace_profile/tracy.md new file mode 100644 index 0000000..c6d26d3 --- /dev/null +++ b/src/trace_profile/tracy.md @@ -0,0 +1,48 @@ +# tracy(1) + +[Tracy][gh-tracy] is a frame profiler, supporting manual code instrumentation +and providing a sampling profiler. + +One can either record and visualize the profiling data live using +`tracy-profiler` or record the profiling data to a file using `tracy-capture`. + +``` +tracy-profiler [file] [-p port] + +tracy-capture -o file [-f] [-p port] + -f overwrite <file> if it exists +``` + +## Example + +The example showcases different cases: +1. Use tracy from a single binary. In that case the `TracyClient.cpp` can be + directly linked / included in the instrumented binary. +2. Use tracy from different binaries (eg main executable + shared library). In + this case the `TracyClient.cpp` should be compiled into its own shared + library, such that there is a single tracy client. +3. Use tracy from different binaries on windows. In this case the + `TracyClient.cpp` must be compiled again into a separate shared library, + while defining `TRACY_EXPORTS`. The code being instrumented must be compiled + with `TRACY_IMPORTS` defined. + +An instrumented `c++` example: +```cpp +{{#include tracy/main.cpp}} +``` + +An instrumented `c` example: +```c +{{#include tracy/foo.c}} +``` + +Raw build commands to demonstrate compiling tracy w/o `cmake`, in case we need +to integrate it into a different build system. +```makefile +{{#include tracy/Makefile}} +``` +> Find `get-tracy.sh` [here][get-tracy]. + +[gh-tracy]: https://github.com/wolfpld/tracy +[gh-doc]: https://github.com/wolfpld/tracy/releases/latest/download/tracy.pdf +[get-tracy]: https://github.com/johannst/notes/blob/master/src/trace_profile/tracy/get-tracy.sh |