1 //===- YAMLModuleTester.h ---------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_UNITTESTS_TESTINGSUPPORT_SYMBOL_YAMLMODULETESTER_H 10 #define LLDB_UNITTESTS_TESTINGSUPPORT_SYMBOL_YAMLMODULETESTER_H 11 12 #include "Plugins/ObjectFile/ELF/ObjectFileELF.h" 13 #include "Plugins/SymbolFile/DWARF/DWARFUnit.h" 14 #include "Plugins/SymbolFile/DWARF/SymbolFileDWARF.h" 15 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h" 16 #include "TestingSupport/SubsystemRAII.h" 17 #include "lldb/Core/Module.h" 18 #include "lldb/Host/HostInfo.h" 19 20 namespace lldb_private { 21 22 /// Helper class that can construct a module from YAML and evaluate 23 /// DWARF expressions on it. 24 class YAMLModuleTester { 25 protected: 26 SubsystemRAII<FileSystem, HostInfo, TypeSystemClang, ObjectFileELF, 27 SymbolFileDWARF> 28 subsystems; 29 lldb::ModuleSP m_module_sp; 30 DWARFUnit *m_dwarf_unit; 31 32 public: 33 /// Parse the debug info sections from the YAML description. 34 YAMLModuleTester(llvm::StringRef yaml_data); 35 DWARFUnit *GetDwarfUnit() const { return m_dwarf_unit; } 36 lldb::ModuleSP GetModule() const { return m_module_sp; } 37 }; 38 39 } // namespace lldb_private 40 41 #endif // LLDB_UNITTESTS_TESTINGSUPPORT_SYMBOL_YAMLMODULETESTER_H 42