#ifndef __TRACYSOURCEVIEW_HPP__ #define __TRACYSOURCEVIEW_HPP__ #include #include #include "tracy_robin_hood.h" #include "TracyDecayValue.hpp" struct ImFont; namespace tracy { class Worker; class SourceView { struct Line { const char* begin; const char* end; }; struct AsmLine { uint64_t addr; uint64_t jumpAddr; std::string mnemonic; std::string operands; }; struct JumpData { uint64_t min; uint64_t max; int level; std::vector source; }; enum { DisplaySource, DisplayAsm, DisplayMixed }; public: SourceView( ImFont* font ); ~SourceView(); void OpenSource( const char* fileName, int line ); void OpenSymbol( const char* fileName, int line, uint64_t baseAddr, uint64_t symAddr, const Worker& worker ); void Render( const Worker& worker ); void CalcInlineStats( bool val ) { m_calcInlineStats = val; } private: void ParseSource( const char* fileName, const Worker* worker ); bool Disassemble( uint64_t symAddr, const Worker& worker ); void RenderSimpleSourceView(); void RenderSymbolView( const Worker& worker ); void RenderSymbolSourceView( uint32_t iptotal, unordered_flat_map ipcount, const Worker& worker ); uint64_t RenderSymbolAsmView( uint32_t iptotal, unordered_flat_map ipcount, const Worker& worker ); void RenderLine( const Line& line, int lineNum, uint32_t ipcnt, uint32_t iptotal, const Worker* worker ); void RenderAsmLine( const AsmLine& line, uint32_t ipcnt, uint32_t iptotal, const Worker& worker, uint64_t& jumpOut, int maxAddrLen ); void SelectLine( uint32_t line, const Worker* worker, bool changeAsmLine = true, uint64_t targetAddr = 0 ); 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& ipcountSrc, unordered_flat_map& ipcountAsm, const Worker& worker ); ImFont* m_font; const char* m_file; uint32_t m_fileStringIdx; uint64_t m_symAddr; uint64_t m_baseAddr; uint64_t m_targetAddr; char* m_data; size_t m_dataSize; int m_targetLine; int m_selectedLine; DecayValue m_hoveredLine; DecayValue m_hoveredSource; int m_displayMode; uint32_t m_codeLen; DecayValue m_highlightAddr; bool m_asmRelative; bool m_asmShowSourceLocation; bool m_calcInlineStats; std::vector m_lines; std::vector m_asm; unordered_flat_map m_jumpTable; unordered_flat_set m_jumpOut; int m_maxJumpLevel; bool m_showJumps; unordered_flat_map m_sourceFiles; unordered_flat_set m_selectedAddresses; unordered_flat_set m_selectedAddressesHover; uint32_t m_maxLine; int m_maxMnemonicLen; }; } #endif