mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Remove codeAddressToLocation map.
This commit is contained in:
parent
0b84b50d9f
commit
ed455339b3
@ -99,7 +99,6 @@ void View::DrawInfo()
|
||||
TextFocused( "Symbols:", RealToString( m_worker.GetSymbolsCount() ) );
|
||||
TextFocused( "Symbol code fragments:", RealToString( m_worker.GetSymbolCodeCount() ) );
|
||||
TooltipIfHovered( MemSizeToString( m_worker.GetSymbolCodeSize() ) );
|
||||
TextFocused( "Code locations:", RealToString( m_worker.GetCodeLocationsSize() ) );
|
||||
TextFocused( "Call stacks:", RealToString( m_worker.GetCallstackPayloadCount() ) );
|
||||
if( m_worker.AreCallstackSamplesReady() )
|
||||
{
|
||||
|
@ -385,8 +385,6 @@ private:
|
||||
unordered_flat_map<uint64_t, MemoryBlock> symbolCode;
|
||||
uint64_t symbolCodeSize = 0;
|
||||
|
||||
unordered_flat_map<uint64_t, uint64_t> codeAddressToLocation;
|
||||
|
||||
unordered_flat_map<const char*, MemoryBlock, charutil::Hasher, charutil::Comparator> sourceFileCache;
|
||||
|
||||
unordered_flat_map<uint64_t, HwSampleData> hwSamples;
|
||||
@ -484,7 +482,6 @@ public:
|
||||
uint64_t GetSymbolsCount() const { return m_data.symbolMap.size(); }
|
||||
uint64_t GetSymbolCodeCount() const { return m_data.symbolCode.size(); }
|
||||
uint64_t GetSymbolCodeSize() const { return m_data.symbolCodeSize; }
|
||||
uint64_t GetCodeLocationsSize() const { return m_data.codeAddressToLocation.size(); }
|
||||
uint64_t GetGhostZonesCount() const { return m_data.ghostCnt; }
|
||||
uint32_t GetFrameImageCount() const { return (uint32_t)m_data.frameImage.size(); }
|
||||
uint64_t GetStringsCount() const { return m_data.strings.size() + m_data.stringData.size(); }
|
||||
|
Loading…
Reference in New Issue
Block a user