1 //===-- ObjectContainerUniversalMachO.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 liblldb_ObjectContainerUniversalMachO_h_ 10 #define liblldb_ObjectContainerUniversalMachO_h_ 11 12 #include "lldb/Host/SafeMachO.h" 13 #include "lldb/Symbol/ObjectContainer.h" 14 #include "lldb/Utility/FileSpec.h" 15 16 class ObjectContainerUniversalMachO : public lldb_private::ObjectContainer { 17 public: 18 ObjectContainerUniversalMachO(const lldb::ModuleSP &module_sp, 19 lldb::DataBufferSP &data_sp, 20 lldb::offset_t data_offset, 21 const lldb_private::FileSpec *file, 22 lldb::offset_t offset, lldb::offset_t length); 23 24 ~ObjectContainerUniversalMachO() override; 25 26 // Static Functions 27 static void Initialize(); 28 29 static void Terminate(); 30 31 static lldb_private::ConstString GetPluginNameStatic(); 32 33 static const char *GetPluginDescriptionStatic(); 34 35 static lldb_private::ObjectContainer * 36 CreateInstance(const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp, 37 lldb::offset_t data_offset, const lldb_private::FileSpec *file, 38 lldb::offset_t offset, lldb::offset_t length); 39 40 static size_t GetModuleSpecifications(const lldb_private::FileSpec &file, 41 lldb::DataBufferSP &data_sp, 42 lldb::offset_t data_offset, 43 lldb::offset_t file_offset, 44 lldb::offset_t length, 45 lldb_private::ModuleSpecList &specs); 46 47 static bool MagicBytesMatch(const lldb_private::DataExtractor &data); 48 49 // Member Functions 50 bool ParseHeader() override; 51 52 void Dump(lldb_private::Stream *s) const override; 53 54 size_t GetNumArchitectures() const override; 55 56 bool GetArchitectureAtIndex(uint32_t cpu_idx, 57 lldb_private::ArchSpec &arch) const override; 58 59 lldb::ObjectFileSP GetObjectFile(const lldb_private::FileSpec *file) override; 60 61 // PluginInterface protocol 62 lldb_private::ConstString GetPluginName() override; 63 64 uint32_t GetPluginVersion() override; 65 66 protected: 67 llvm::MachO::fat_header m_header; 68 std::vector<llvm::MachO::fat_arch> m_fat_archs; 69 70 static bool ParseHeader(lldb_private::DataExtractor &data, 71 llvm::MachO::fat_header &header, 72 std::vector<llvm::MachO::fat_arch> &fat_archs); 73 }; 74 75 #endif // liblldb_ObjectContainerUniversalMachO_h_ 76