9#ifndef LLDB_CORE_MODULESPEC_H
10#define LLDB_CORE_MODULESPEC_H
20#include "llvm/Support/Chrono.h"
142 explicit operator bool()
const {
163 bool dumped_something =
false;
168 dumped_something =
true;
171 if (dumped_something)
176 dumped_something =
true;
179 if (dumped_something)
184 dumped_something =
true;
187 if (dumped_something)
191 dumped_something =
true;
194 if (dumped_something)
198 dumped_something =
true;
201 if (dumped_something)
204 dumped_something =
true;
207 if (dumped_something)
210 dumped_something =
true;
213 if (dumped_something)
216 dumped_something =
true;
219 if (dumped_something)
221 strm.
Format(
"object_mod_time = {0:x+}",
227 bool exact_arch_match)
const {
248 if (exact_arch_match) {
280 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex);
281 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex);
290 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex, std::adopt_lock);
291 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex,
299 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
304 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
309 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
314 std::lock_guard<std::recursive_mutex> lhs_guard(
m_mutex);
315 std::lock_guard<std::recursive_mutex> rhs_guard(rhs.
m_mutex);
324 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
335 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
336 bool exact_arch_match =
true;
338 if (spec.Matches(module_spec, exact_arch_match)) {
339 match_module_spec = spec;
346 exact_arch_match =
false;
348 if (spec.Matches(module_spec, exact_arch_match)) {
349 match_module_spec = spec;
354 match_module_spec.
Clear();
360 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
361 bool exact_arch_match =
true;
362 const size_t initial_match_count = matching_list.
GetSize();
364 if (spec.Matches(module_spec, exact_arch_match))
365 matching_list.
Append(spec);
371 (initial_match_count == matching_list.
GetSize())) {
372 exact_arch_match =
false;
374 if (spec.Matches(module_spec, exact_arch_match))
375 matching_list.
Append(spec);
381 std::lock_guard<std::recursive_mutex> guard(
m_mutex);
384 strm.
Printf(
"[%u] ", idx);
393 std::recursive_mutex>
An architecture specification class.
bool IsValid() const
Tests if this ArchSpec is valid.
void Clear()
Clears the object state.
void DumpTriple(llvm::raw_ostream &s) const
A uniqued constant string class.
void Clear()
Clear this object's state.
const char * GetCString() const
Get the string value as a C string.
static bool Match(const FileSpec &pattern, const FileSpec &file)
Match FileSpec pattern against FileSpec file.
void Clear()
Clears the object state.
uint64_t GetByteSize(const FileSpec &file_spec) const
Returns the on-disk size of the given file in bytes.
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)
LockingAdaptedIterable< collection, ModuleSpec, vector_adapter, std::recursive_mutex > ModuleSpecIterable
bool FindMatchingModuleSpec(const ModuleSpec &module_spec, ModuleSpec &match_module_spec) const
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
const UUID & GetUUID() const
void SetObjectSize(uint64_t object_size)
uint64_t GetObjectOffset() const
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()
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::DataBufferSP GetData() const
ArchSpec & GetArchitecture()
void SetObjectOffset(uint64_t object_offset)
FileSpec * GetFileSpecPtr()
FileSpec & GetSymbolFileSpec()
const FileSpec & GetFileSpec() const
const ArchSpec & GetArchitecture() const
lldb::DataBufferSP m_data
const UUID * GetUUIDPtr() const
llvm::sys::TimePoint & GetObjectModificationTime()
ArchSpec * GetArchitecturePtr()
ModuleSpec(const FileSpec &file_spec, const UUID &uuid=UUID(), lldb::DataBufferSP data=lldb::DataBufferSP())
If the data argument is passed, its contents will be used as the module contents instead of trying to...
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
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.
void Dump(Stream &s) const
A class that represents a running process on the host machine.
E vector_adapter(I &iter)
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP