blob: c232dd91a8b31b16765e842e6e57d843ad93394a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
//===-- SectionLoadList.h -----------------------------------------------*- C++
//-*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_SectionLoadList_h_
#define liblldb_SectionLoadList_h_
// C Includes
// C++ Includes
#include <map>
#include <mutex>
// Other libraries and framework includes
#include "llvm/ADT/DenseMap.h"
// Project includes
#include "lldb/Core/Section.h"
#include "lldb/lldb-public.h"
namespace lldb_private {
class SectionLoadList {
public:
//------------------------------------------------------------------
// Constructors and Destructors
//------------------------------------------------------------------
SectionLoadList() : m_addr_to_sect(), m_sect_to_addr(), m_mutex() {}
SectionLoadList(const SectionLoadList &rhs);
~SectionLoadList() {
// Call clear since this takes a lock and clears the section load list
// in case another thread is currently using this section load list
Clear();
}
void operator=(const SectionLoadList &rhs);
bool IsEmpty() const;
void Clear();
lldb::addr_t GetSectionLoadAddress(const lldb::SectionSP §ion_sp) const;
bool ResolveLoadAddress(lldb::addr_t load_addr, Address &so_addr) const;
bool SetSectionLoadAddress(const lldb::SectionSP §ion_sp,
lldb::addr_t load_addr,
bool warn_multiple = false);
// The old load address should be specified when unloading to ensure we get
// the correct instance of the section as a shared library could be loaded
// at more than one location.
bool SetSectionUnloaded(const lldb::SectionSP §ion_sp,
lldb::addr_t load_addr);
// Unload all instances of a section. This function can be used on systems
// that don't support multiple copies of the same shared library to be
// loaded at the same time.
size_t SetSectionUnloaded(const lldb::SectionSP §ion_sp);
void Dump(Stream &s, Target *target);
protected:
typedef std::map<lldb::addr_t, lldb::SectionSP> addr_to_sect_collection;
typedef llvm::DenseMap<const Section *, lldb::addr_t> sect_to_addr_collection;
addr_to_sect_collection m_addr_to_sect;
sect_to_addr_collection m_sect_to_addr;
mutable std::recursive_mutex m_mutex;
};
} // namespace lldb_private
#endif // liblldb_SectionLoadList_h_
|