9#ifndef LLDB_CORE_MODULESPEC_H
10#define LLDB_CORE_MODULESPEC_H
22#include "llvm/Support/Chrono.h"
167 explicit operator bool()
const {
188 bool dumped_something =
false;
193 dumped_something =
true;
196 if (dumped_something)
201 dumped_something =
true;
204 if (dumped_something)
209 dumped_something =
true;
212 if (dumped_something)
216 dumped_something =
true;
219 if (dumped_something)
223 dumped_something =
true;
226 if (dumped_something)
229 dumped_something =
true;
232 if (dumped_something)
235 dumped_something =
true;
238 if (dumped_something)
241 dumped_something =
true;
244 if (dumped_something)
246 strm.
Format(
"object_mod_time = {0:x+}",
252 bool exact_arch_match)
const {
273 if (exact_arch_match) {
313 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex);
314 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex);
323 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex, std::adopt_lock);
324 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex,
332 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
337 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
342 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
347 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex);
348 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex);
357 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
368 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
369 bool exact_arch_match =
true;
371 if (spec.Matches(module_spec, exact_arch_match)) {
372 match_module_spec = spec;
379 exact_arch_match =
false;
381 if (spec.Matches(module_spec, exact_arch_match)) {
382 match_module_spec = spec;
387 match_module_spec.
Clear();
393 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
394 bool exact_arch_match =
true;
395 const size_t initial_match_count = matching_list.
GetSize();
397 if (spec.Matches(module_spec, exact_arch_match))
398 matching_list.
Append(spec);
404 (initial_match_count == matching_list.
GetSize())) {
405 exact_arch_match =
false;
407 if (spec.Matches(module_spec, exact_arch_match))
408 matching_list.
Append(spec);
414 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
417 strm.
Printf(
"[%u] ", idx);
An architecture specification class.
A uniqued constant string class.
static bool Match(const FileSpec &pattern, const FileSpec &file)
Match FileSpec pattern against FileSpec file.
static FileSystem & Instance()
std::recursive_mutex m_mutex
ModuleSpecList & operator=(const ModuleSpecList &rhs)
collection m_specs
The collection of modules.
std::vector< ModuleSpec > collection
ModuleSpecIterable ModuleSpecs()
~ModuleSpecList()=default
bool GetModuleSpecAtIndex(size_t i, ModuleSpec &module_spec) const
void Append(const ModuleSpec &spec)
bool FindMatchingModuleSpec(const ModuleSpec &module_spec, ModuleSpec &match_module_spec) const
LockingAdaptedIterable< std::recursive_mutex, collection > ModuleSpecIterable
ModuleSpecList(const ModuleSpecList &rhs)
ModuleSpec & GetModuleSpecRefAtIndex(size_t i)
void Append(const ModuleSpecList &rhs)
void FindMatchingModuleSpecs(const ModuleSpec &module_spec, ModuleSpecList &matching_list) const
PathMappingList & GetSourceMappingList() const
void SetPlatform(lldb::PlatformSP platform)
Set the platform to be used when resolving a module.
const UUID & GetUUID() const
void SetObjectSize(uint64_t object_size)
uint64_t GetObjectOffset() const
lldb::DataExtractorSP m_extractor_sp
void Dump(Stream &strm) const
const ArchSpec * GetArchitecturePtr() const
bool Matches(const ModuleSpec &match_module_spec, bool exact_arch_match) const
ModuleSpec(const FileSpec &file_spec, const ArchSpec &arch)
ConstString & GetObjectName()
std::weak_ptr< Target > m_target_wp
The target used when resolving a module.
FileSpec & GetPlatformFileSpec()
PathMappingList m_source_mappings
const FileSpec * GetSymbolFileSpecPtr() const
FileSpec * GetSymbolFileSpecPtr()
const FileSpec * GetFileSpecPtr() const
const FileSpec & GetPlatformFileSpec() const
const FileSpec * GetPlatformFileSpecPtr() const
FileSpec * GetPlatformFileSpecPtr()
lldb::PlatformSP GetPlatformSP() const
ArchSpec & GetArchitecture()
void SetObjectOffset(uint64_t object_offset)
FileSpec * GetFileSpecPtr()
FileSpec & GetSymbolFileSpec()
const FileSpec & GetFileSpec() const
const ArchSpec & GetArchitecture() const
const UUID * GetUUIDPtr() const
std::weak_ptr< Platform > m_platform_wp
The platform used when resolving a module.
llvm::sys::TimePoint & GetObjectModificationTime()
lldb::DataExtractorSP GetExtractor() const
ArchSpec * GetArchitecturePtr()
void SetTarget(lldb::TargetSP target)
Set the target to be used when resolving a module.
ConstString m_object_name
const FileSpec & GetSymbolFileSpec() const
ConstString GetObjectName() const
llvm::sys::TimePoint m_object_mod_time
const llvm::sys::TimePoint & GetObjectModificationTime() const
uint64_t GetObjectSize() const
lldb::TargetSP GetTargetSP() const
ModuleSpec(const FileSpec &file_spec, const UUID &uuid=UUID(), lldb::DataExtractorSP extractor_sp=lldb::DataExtractorSP())
If the extractor_sp argument is passed, its contents will be used as the module contents instead of t...
A stream class that can stream formatted output to a file.
void Format(const char *format, Args &&... args)
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
size_t EOL()
Output and End of Line character to the stream.
Represents UUID's of various sizes.
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::Platform > PlatformSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::DataExtractor > DataExtractorSP