Home
last modified time | relevance | path

Searched refs:DebugMacroEntry (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DDebugMacros.cpp15 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-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDebugMacros.h24 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
42 DebugMacroEntry() : m_type(INVALID) {} in DebugMacroEntry() function
44 ~DebugMacroEntry() = default;
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-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacro.cpp79 DebugMacroEntry::CreateDefineEntry(line, macro_str)); in ReadMacroEntries()
82 DebugMacroEntry::CreateUndefEntry(line, macro_str)); in ReadMacroEntries()
94 DebugMacroEntry::CreateDefineEntry(line, macro_str)); in ReadMacroEntries()
97 DebugMacroEntry::CreateUndefEntry(line, macro_str)); in ReadMacroEntries()
103 DebugMacroEntry::CreateStartFileEntry(line, debug_line_file_idx)); in ReadMacroEntries()
107 debug_macros_sp->AddMacroEntry(DebugMacroEntry::CreateEndFileEntry()); in ReadMacroEntries()
114 debug_macros_sp->AddMacroEntry(DebugMacroEntry::CreateIndirectEntry( in ReadMacroEntries()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionSourceCode.cpp143 const DebugMacroEntry &entry = dm->GetMacroEntryAtIndex(i); in AddMacros()
147 case DebugMacroEntry::DEFINE: in AddMacros()
153 case DebugMacroEntry::UNDEF: in AddMacros()
159 case DebugMacroEntry::START_FILE: in AddMacros()
166 case DebugMacroEntry::END_FILE: in AddMacros()
169 case DebugMacroEntry::INDIRECT: in AddMacros()