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
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-04-18 17:16:47 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-04-18 17:16:47 +0300
commit0d8ee47231248a30f62187a9e44849b8f2a13181 (patch)
treed847003eb3439df123ffa30bfd14f4856f10238d /server/TracySourceView.hpp
parent3845c392fa40ce90bcee5ce31d6e5cefb7566a91 (diff)
Store instruction pointer stats as AddrStat.
Diffstat (limited to 'server/TracySourceView.hpp')
-rw-r--r--server/TracySourceView.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracySourceView.hpp b/server/TracySourceView.hpp
index 264178ca..97a9a8a8 100644
--- a/server/TracySourceView.hpp
+++ b/server/TracySourceView.hpp
@@ -139,7 +139,7 @@ private:
void SelectAsmLines( uint32_t file, uint32_t line, const Worker& worker, bool changeAsmLine = true, uint64_t targetAddr = 0 );
void SelectAsmLinesHover( uint32_t file, uint32_t line, const Worker& worker );
- void GatherIpStats( uint64_t addr, uint32_t& iptotalSrc, uint32_t& iptotalAsm, unordered_flat_map<uint64_t, AddrStat>& ipcountSrc, unordered_flat_map<uint64_t, AddrStat>& ipcountAsm, uint32_t& ipmaxSrc, uint32_t& ipmaxAsm, const Worker& worker, bool limitView, const View& view );
+ void GatherIpStats( uint64_t addr, AddrStat& iptotalSrc, AddrStat& iptotalAsm, unordered_flat_map<uint64_t, AddrStat>& ipcountSrc, unordered_flat_map<uint64_t, AddrStat>& ipcountAsm, AddrStat& ipmaxSrc, AddrStat& ipmaxAsm, const Worker& worker, bool limitView, const View& view );
uint32_t CountAsmIpStats( uint64_t addr, const Worker& worker, bool limitView, const View& view );
void SelectMicroArchitecture( const char* moniker );