1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
Commit Graph

6321 Commits

Author SHA1 Message Date
Bartosz Taudul f207f2abd4 Merge pull request #300 from Krzmbrzl/patch-2
CMake: Mark include directories as SYSTEM
2021-12-17 17:58:52 +01:00
Robert Adam 43303323a0 CMake: Mark include directories as SYSTEM
This usually prevents the compiler from emitting warnings about stuff it found in
the included files.
Since the CMakeLists.txt seems to be exclusively meant for code that is making use
of Tracy rather than Tracy itself using it to build, silencing the warnings should probably
be what most folks would want.

This will prevent things like #126
2021-12-17 17:23:16 +01:00
Bartosz Taudul a13b046698 User manual polish pass. 2021-12-11 21:00:31 +01:00
Bartosz Taudul 9b624049a5 Immediately disconnect connection on disconnect request.
The disconnect handling logic is broken on the client, after the symbol
resolution was moved to a separate thread. Use workaround until a proper fix
is available.
2021-12-11 13:15:50 +01:00
Bartosz Taudul 14392a6e0e Merge pull request #290 from Honeybunch/master
Exporting cmake targets for install
2021-12-07 18:44:05 +01:00
Honeybunch ef795ba49d Exporting cmake targets for install 2021-12-06 08:58:25 -08:00
Bartosz Taudul 14cdf3d43e Use perf_event_open for context switch tracking. 2021-12-05 12:02:28 +01:00
Bartosz Taudul 0a3da9efdb Optional CPU idx storage in RingBuffer. 2021-12-05 03:03:14 +01:00
Bartosz Taudul d7dc2d6127 Extend process state descriptions, add P (parked). 2021-12-05 01:32:33 +01:00
Bartosz Taudul 6a0d233613 Proper mmap failure detection. 2021-12-05 01:32:33 +01:00
Bartosz Taudul 22284d57e7 Don't identify samples if there will be no context switches. 2021-12-05 01:32:30 +01:00
Bartosz Taudul 0c809b14d5 Merge pull request #289 from napoleon89/c-is-connected
Added IsConnected C API Equivalent
2021-12-04 18:47:21 +01:00
Bartosz Taudul 14825d8e5a Proper formatting. 2021-12-04 18:27:26 +01:00
Nathan Day 3bf1e7ec1c Updated documentation 2021-12-04 17:26:17 +00:00
Nathan Day bdafd0c7b6 Added IsConnected C API Equivalent 2021-12-04 16:55:41 +00:00
Bartosz Taudul bbbae35925 Only identify samples when IdentifySamples is set. 2021-12-04 15:16:17 +01:00
Bartosz Taudul 20f8c8b8a4 Add IdentifySamples flag to the protocol.
On Windows there is no way to distinguish callstack data coming from random
sampling and from context switches. Each callstack timestamp has to be matched
against the context switch data in order to decide its origin. This is
obviously non-trivial.

On some other platforms, the origin information may be available right away,
in which case the process of matching against the context switch data, which
possibly includes postponing callstacks for processing in the future, may be
completely omitted.
2021-12-04 14:50:25 +01:00
Bartosz Taudul 2008c88983 Silence compiler warnings. 2021-12-04 13:41:55 +01:00
Bartosz Taudul 152d47f4d3 Update manual. 2021-12-02 02:34:21 +01:00
Bartosz Taudul c98680ad0b Add support for sample data without time. 2021-12-02 02:06:05 +01:00
Bartosz Taudul 74e2a63516 Don't require time to be available for samples. 2021-12-02 01:29:22 +01:00
Bartosz Taudul 051b1ba8f5 Display sampling disabled message on debug log channel. 2021-12-02 00:49:01 +01:00
Bartosz Taudul 6579399bfd Update xxHash to 0.8.1. 2021-12-01 21:52:31 +01:00
Bartosz Taudul 1a0cf3ff46 Update robin_hood to 3.11.3. 2021-12-01 21:44:56 +01:00
Bartosz Taudul ce7faf99c9 Show tooltip on disabled item. 2021-12-01 17:41:00 +01:00
Bartosz Taudul b4987f5fc4 Update manual. 2021-11-29 19:40:52 +01:00
Bartosz Taudul 899b466ba4 There is more than one wait stack. 2021-11-29 19:34:43 +01:00
Bartosz Taudul 688dd470bc Update NEWS. 2021-11-29 19:30:14 +01:00
Bartosz Taudul 5c379603b5 Move onlyActive check out of the loops. 2021-11-29 19:23:31 +01:00
Bartosz Taudul 04f045b22b Replace "restrict time" with time range limits in memory. 2021-11-29 19:20:56 +01:00
Bartosz Taudul de11604910 Add memory time range limit UI. 2021-11-29 18:17:19 +01:00
Bartosz Taudul bad8df4878 Update feature matrix. 2021-11-28 13:44:41 +01:00
Bartosz Taudul f3ee2235f6 Enable sample parents selection for self-less symbols. 2021-11-27 18:12:06 +01:00
Bartosz Taudul 05f9c74170 Don't include inlines when separate inlines are enabled. 2021-11-27 18:05:05 +01:00
Bartosz Taudul 582fcd5538 Fix sample parents for the whole symbol.
Previously when whole symbol was selected, it wasn't. All the inlines were
ignored and the data was displayed only for the base (self) symbol.
2021-11-27 17:55:18 +01:00
Bartosz Taudul d8a611e952 Also calculate sample parents without inlines. 2021-11-27 17:47:09 +01:00
Bartosz Taudul 687d4defc0 Cosmetics. 2021-11-27 17:46:43 +01:00
Bartosz Taudul 52eeddd63a Fix display of entry call stacks when inlines are present. 2021-11-27 16:41:27 +01:00
Bartosz Taudul ed25c27228 Update manual. 2021-11-27 15:46:24 +01:00
Bartosz Taudul a84fd26ecb Change toggle button to faux drop down. 2021-11-27 15:40:23 +01:00
Bartosz Taudul 11a8f30ff9 Update NEWS. 2021-11-27 15:34:00 +01:00
Bartosz Taudul 355a179678 Merge callstack samples with the same timestamp. 2021-11-27 15:29:33 +01:00
Bartosz Taudul 4f735e1ae2 Extract callstack merging. 2021-11-27 15:06:58 +01:00
Bartosz Taudul 58d5fb2ff4 Fix calculation of child sample counts. 2021-11-27 14:49:22 +01:00
Bartosz Taudul 702c87dad0 Display list of child calls. 2021-11-27 14:43:31 +01:00
Bartosz Taudul 6a7b4e6066 Add calculation of child stats to source view. 2021-11-27 14:42:23 +01:00
Bartosz Taudul 85f755f3f5 Use proper base symbol address. 2021-11-27 14:30:46 +01:00
Bartosz Taudul a02575322f Collect child sample addresses. 2021-11-27 02:03:59 +01:00
Bartosz Taudul 2462e6cc7c Update NEWS. 2021-11-27 00:07:59 +01:00
Bartosz Taudul 6fd53a662a Update manual. 2021-11-27 00:07:54 +01:00