Searched refs:DebugMacroEntry (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | DebugMacros.cpp | 15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry() function in DebugMacroEntry 20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry() function in DebugMacroEntry 29 DebugMacroEntry DebugMacroEntry::CreateDefineEntry(uint32_t line, in CreateDefineEntry() 31 return DebugMacroEntry(DebugMacroEntry::DEFINE, line, 0, str); in CreateDefineEntry() 34 DebugMacroEntry DebugMacroEntry::CreateUndefEntry(uint32_t line, in CreateUndefEntry() 36 return DebugMacroEntry(DebugMacroEntry::UNDEF, line, 0, str); in CreateUndefEntry() 39 DebugMacroEntry 46 DebugMacroEntry DebugMacroEntry::CreateEndFileEntry() { in CreateEndFileEntry() 47 return DebugMacroEntry(DebugMacroEntry::END_FILE, 0, 0, nullptr); in CreateEndFileEntry() 50 DebugMacroEntry [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | DebugMacros.h | 24 class DebugMacroEntry { 32 static DebugMacroEntry CreateUndefEntry(uint32_t line, const char *str); 34 static DebugMacroEntry CreateStartFileEntry(uint32_t line, 37 static DebugMacroEntry CreateEndFileEntry(); 39 static DebugMacroEntry 44 ~DebugMacroEntry() = default; 62 DebugMacroEntry(EntryType type, const DebugMacrosSP &debug_macros_sp); 77 void AddMacroEntry(const DebugMacroEntry &entry) { in AddMacroEntry() 83 DebugMacroEntry GetMacroEntryAtIndex(const size_t index) const { in GetMacroEntryAtIndex() 87 return DebugMacroEntry(); in GetMacroEntryAtIndex() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugMacro.cpp | 81 DebugMacroEntry::CreateDefineEntry(line, macro_str)); in ReadMacroEntries() 84 DebugMacroEntry::CreateUndefEntry(line, macro_str)); in ReadMacroEntries() 96 DebugMacroEntry::CreateDefineEntry(line, macro_str)); in ReadMacroEntries() 99 DebugMacroEntry::CreateUndefEntry(line, macro_str)); in ReadMacroEntries() 105 DebugMacroEntry::CreateStartFileEntry(line, debug_line_file_idx)); in ReadMacroEntries() 109 debug_macros_sp->AddMacroEntry(DebugMacroEntry::CreateEndFileEntry()); in ReadMacroEntries() 116 debug_macros_sp->AddMacroEntry(DebugMacroEntry::CreateIndirectEntry( in ReadMacroEntries()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionSourceCode.cpp | 157 const DebugMacroEntry &entry = dm->GetMacroEntryAtIndex(i); in AddMacros() 161 case DebugMacroEntry::DEFINE: in AddMacros() 167 case DebugMacroEntry::UNDEF: in AddMacros() 173 case DebugMacroEntry::START_FILE: in AddMacros() 180 case DebugMacroEntry::END_FILE: in AddMacros() 183 case DebugMacroEntry::INDIRECT: in AddMacros()
|