#ifndef __TRACYSOURCEVIEW_HPP__ #define __TRACYSOURCEVIEW_HPP__ #include #include #include "tracy_robin_hood.h" #include "TracyDecayValue.hpp" #include "../common/TracyProtocol.hpp" struct ImFont; namespace tracy { class View; class Worker; class SourceView { enum class TokenColor : uint8_t { Default, Comment, Preprocessor, String, CharacterLiteral, Keyword, Number, Punctuation, Type, Special }; struct Token { const char* begin; const char* end; TokenColor color; }; struct Line { const char* begin; const char* end; std::vector tokens; }; struct AsmLine { uint64_t addr; uint64_t jumpAddr; std::string mnemonic; std::string operands; uint8_t len; }; 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, const View& view ); void OpenSymbol( const char* fileName, int line, uint64_t baseAddr, uint64_t symAddr, const Worker& worker, const View& view ); void Render( const Worker& worker, const View& view ); void CalcInlineStats( bool val ) { m_calcInlineStats = val; } private: void ParseSource( const char* fileName, const Worker* worker, const View& view ); bool Disassemble( uint64_t symAddr, const Worker& worker ); void RenderSimpleSourceView(); void RenderSymbolView( const Worker& worker, const View& view ); void RenderSymbolSourceView( uint32_t iptotal, unordered_flat_map ipcount, unordered_flat_map ipcountAsm, uint32_t ipmax, const Worker& worker, const View& view ); uint64_t RenderSymbolAsmView( uint32_t iptotal, unordered_flat_map ipcount, uint32_t ipmax, const Worker& worker, const View& view ); void RenderLine( const Line& line, int lineNum, uint32_t ipcnt, uint32_t iptotal, uint32_t ipmax, const Worker* worker ); void RenderAsmLine( const AsmLine& line, uint32_t ipcnt, uint32_t iptotal, uint32_t ipmax, const Worker& worker, uint64_t& jumpOut, int maxAddrLen, const View& view ); 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, uint32_t& ipmaxSrc, uint32_t& ipmaxAsm, const Worker& worker ); TokenColor IdentifyToken( const char*& begin, const char* end ); std::vector Tokenize( const char* begin, const char* end ); struct TokenizerState { void Reset() { isInComment = false; isInPreprocessor = false; } bool isInComment; bool isInPreprocessor; }; 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; int32_t m_disasmFail; DecayValue m_highlightAddr; bool m_asmRelative; bool m_asmBytes; bool m_asmShowSourceLocation; bool m_calcInlineStats; uint8_t m_maxAsmBytes; 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; TokenizerState m_tokenizer; CpuArchitecture m_cpuArch; int m_selMicroArch; }; } #endif