2018-04-05 17:20:28 +00:00
|
|
|
Note: There is no guarantee that version mismatched client and server will
|
|
|
|
be able to talk with each other. Network protocol breakages won't be listed
|
|
|
|
here.
|
|
|
|
|
|
|
|
|
|
|
|
v0.3 (xxxx-xx-xx)
|
|
|
|
-----------------
|
|
|
|
|
2018-04-21 13:21:50 +00:00
|
|
|
- Breaking change: the format of trace files has changed.
|
|
|
|
- Previous tracy version will crash when trying to open new traces.
|
|
|
|
- Loading of traces saved by previous version is supported.
|
|
|
|
- Tracy will no longer crash when trying to load traces saved by future
|
|
|
|
versions. Instead, a dialog advising to update will be displayed.
|
|
|
|
- Tracy will no longer crash in most cases when trying to open files that
|
|
|
|
are not traces. Some crashes are still possible, due to support of old,
|
|
|
|
header-less traces.
|
2018-04-05 17:20:28 +00:00
|
|
|
- Ability to track every memory allocation in profiled program.
|
|
|
|
- Allocation event queuing must be done in order, which requires exclusive
|
|
|
|
access to the serialized queue on the client side. This has no effect on
|
|
|
|
the rest of events, which are stored in a concurrent queue, as before.
|
|
|
|
- You can search for a memory address and see where it was allocated, for
|
|
|
|
how long, etc. This lists all matching allocations since the program was
|
|
|
|
started.
|
|
|
|
- All active (non-freed) allocations may be listed. This shows the current
|
|
|
|
memory state by default, but can go back to any point in time.
|
|
|
|
- Graphical representation of process memory map may be displayed. New
|
|
|
|
allocations/frees are displayed in a bright color and fade out with
|
|
|
|
time. This feature also can look back in time.
|
|
|
|
- Support loading profile dumps with no memory allocation data (generated by
|
2018-04-14 13:47:09 +00:00
|
|
|
v0.2).
|
2018-04-05 17:31:46 +00:00
|
|
|
- Added ability to display global statistics of a selected zone from the
|
|
|
|
zone info window.
|
2018-04-09 12:29:22 +00:00
|
|
|
- Fixed regression with lock announce processing that appeared during
|
|
|
|
worker/viewer split.
|
2018-04-09 14:15:40 +00:00
|
|
|
- Allow selecting/unselecting all locks for display.
|
2018-04-20 21:29:02 +00:00
|
|
|
- Performance improvements.
|
2018-04-21 14:58:23 +00:00
|
|
|
- Don't save unneeded lock information in trace file.
|
|
|
|
- Allow expanding view span up to one hour, instead of one minute.
|
2018-04-21 22:58:17 +00:00
|
|
|
- Added trace comparison window.
|
|
|
|
- An external trace has to be loaded first.
|
|
|
|
- Zone query in both traces (current and external).
|
|
|
|
- Both results are overlaid on the same histogram.
|
2018-04-05 17:20:28 +00:00
|
|
|
|
|
|
|
|
2018-04-05 16:57:32 +00:00
|
|
|
v0.2 (2018-04-05)
|
2018-03-18 12:55:44 +00:00
|
|
|
-----------------
|
|
|
|
|
|
|
|
- Fixed broken TRACY_NO_EXIT behavior.
|
|
|
|
- Visual refresh (new color scheme).
|
|
|
|
- Added optional support for live in-depth zone analysis.
|
|
|
|
- Ability to search for zones matching a query.
|
|
|
|
- Histogram of zone time spans.
|
2018-03-20 13:39:10 +00:00
|
|
|
- List occurrences of a zone, grouped by thread, or by user text.
|
|
|
|
- Zone groups can be selected and highlighted on histogram graph.
|
2018-03-18 12:55:44 +00:00
|
|
|
- Support for linear and logarithmic display of time and values.
|
|
|
|
- Histogram bins can show zone counts or total execution time.
|
|
|
|
- Listed zones can be narrowed down by data range selection on histogram.
|
|
|
|
- Separation of server data handling code from the visualisation.
|
|
|
|
- Implementation of a command line capture utility.
|
|
|
|
- Support libraries have been updated.
|
|
|
|
- Fixed an issue that prevented de-duplication of source location payloads.
|
|
|
|
- Fixed an issue that prevented the ability to disable threads in settings
|
|
|
|
menu, if two threads had the same name.
|
|
|
|
- Performance optimizations.
|
|
|
|
- Visual clean up of the settings menu.
|
2018-03-28 00:00:29 +00:00
|
|
|
- Zone info windows improvements.
|
|
|
|
- Visual improvements to zone info window child list.
|
|
|
|
- Zone info windows now show zone thread.
|
|
|
|
- Display zone stack trace.
|
2018-03-24 13:46:44 +00:00
|
|
|
- Hide pause/resume button if there's no data connection (i.e. trace was
|
|
|
|
loaded from file).
|
2018-03-24 14:22:08 +00:00
|
|
|
- Source location statistics view has been added.
|
2018-03-24 21:09:46 +00:00
|
|
|
- Fixed crash when a saved trace was opened, but no trace capture session
|
|
|
|
was performed before.
|
2018-03-24 21:21:34 +00:00
|
|
|
- Standalone server will now open trace files passed as an argument to the
|
|
|
|
executable.
|
2018-03-30 21:45:48 +00:00
|
|
|
- Fix possible crash in SetThreadName, that could happen if TLS init was
|
|
|
|
delayed until first use of thread local variable.
|
2018-03-30 23:24:11 +00:00
|
|
|
- Store full thread name if pthreads (with 15 character name limit) are
|
|
|
|
used.
|
2018-03-31 12:14:49 +00:00
|
|
|
- Properly handle unaligned memory access (no performance impact).
|
|
|
|
- Fixed broken lock identifiers in try_lock().
|
2018-03-18 12:55:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
v0.1 (2017-12-18)
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
- Initial release.
|