Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-12Construct fake callstack frames for code location data.Bartosz Taudul
2022-10-12Remove codeAddressToLocation map.Bartosz Taudul
2022-10-12Remove locationCodeAddressList map from Worker.Bartosz Taudul
Mapping of source code locations to code addresses is now performed dynamically during disassembly in SourceView.
2022-10-12Restore building code symbol map.Bartosz Taudul
2022-10-11Remove CodeLocation query and CodeInformation response.Bartosz Taudul
2022-10-11Get location for address from callstack frame data.Bartosz Taudul
2022-10-11Replace code location queries with callstack frame ones.Bartosz Taudul
2022-10-10When opening a new trace, set view to whole time span.Bartosz Taudul
2022-10-10Update NEWS.Bartosz Taudul
2022-10-09Display PID in available client tooltip.Bartosz Taudul
2022-10-09Store PID in broadcasting clients data.Bartosz Taudul
2022-10-09Remove unnecessary check.Bartosz Taudul
2022-10-09Include PID in broadcast message.Bartosz Taudul
2022-10-09Update manual.Bartosz Taudul
2022-10-09Update NEWS.Bartosz Taudul
2022-10-09Include child calls in inline propagation.Bartosz Taudul
2022-10-09Implement inline cost propagation down the stack.Bartosz Taudul
2022-10-09Add inlines propagation UI.Bartosz Taudul
2022-10-09Fix offset of source code separator line.Bartosz Taudul
2022-10-08Disable assertions in release builds.Bartosz Taudul
2022-10-08Don't listen for broadcasts on emscripten.Bartosz Taudul
2022-10-08Disable update check on emscripten.Bartosz Taudul
2022-10-08Set initial memory size to 384 MB to prevent growth at start.Bartosz Taudul
2022-10-08Limit running environment support to web.Bartosz Taudul
2022-10-08Enable growing of wasm heap.Bartosz Taudul
2022-10-08Ditto on windows.Bartosz Taudul
2022-10-08Do not freeze symbol thread.Bartosz Taudul
2022-10-08__GNUC__ version checks are not valid on clang.Bartosz Taudul
2022-10-08Include gcc patchlevel in compiler version report.Bartosz Taudul
2022-10-08Use dladdr, not libbacktrace in fast callstack decode path.Bartosz Taudul
DecodeCallstackPtrFast() may be called outside the symbol processing thread, for example in the crash handler. Using the less-capable dladdr functionality doesn't have a big impact here. Callstack decoding in this context is used to remove the uninteresting top part of the callstack, so that the callstack ends at the crashing function, and not in the crash handler. Even if this functionality would be impacted by this change, the damage done is close to none. The other alternative is to use locking each time a libbacktrace is to be used, which does not seem to be worthy to do, considering that the problem only occurs in a very rare code path. NB everything was working when it was first implemented, because back then the callstack decoding was still performed on the main thread, and not on a separate, dedicated one.
2022-10-06Bump available heap to 2GB.Bartosz Taudul
2022-10-06Enable file selector on emscripten.Bartosz Taudul
2022-10-06Disable closure compiler.Bartosz Taudul
2022-10-06Change file selector to work with callbacks.Bartosz Taudul
2022-10-06Enable redraw after screen resize.Bartosz Taudul
2022-10-06Convert std::string to const char* in printf call.Bartosz Taudul
2022-10-06Add makefile target for starting httpd.Bartosz Taudul
2022-10-05Extract file selector functionality.Bartosz Taudul
2022-10-05Support opening web pages on emscripten.Bartosz Taudul
2022-10-04Increase possible inline stack size to 64 elements.Bartosz Taudul
2022-10-04Sample parents show function, not symbol.Bartosz Taudul
2022-10-02Use 32-bit vertex indices on emscripten.Bartosz Taudul
2022-10-02Cosmetic fixes.Bartosz Taudul
2022-10-02Add interactive demo link.Bartosz Taudul
2022-10-02Support hidpi.Bartosz Taudul
2022-10-02Adapt render size to fit browser window.Bartosz Taudul
2022-10-02Add basic html wrapper page.Bartosz Taudul
2022-10-02Run closure compiler on javascript.Bartosz Taudul
2022-10-02Preload embedded trace on emscripten.Bartosz Taudul
2022-10-02Just one compression worker thread on emscripten.Bartosz Taudul