aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/trace_profile/tracy.md
blob: c6d26d38dd7f5f20bca92cafd97f4469f5036e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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