aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/API/SBMemoryRegionInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/API/SBMemoryRegionInfo.h')
-rw-r--r--include/lldb/API/SBMemoryRegionInfo.h173
1 files changed, 84 insertions, 89 deletions
diff --git a/include/lldb/API/SBMemoryRegionInfo.h b/include/lldb/API/SBMemoryRegionInfo.h
index fadd0760891b..297f877a6341 100644
--- a/include/lldb/API/SBMemoryRegionInfo.h
+++ b/include/lldb/API/SBMemoryRegionInfo.h
@@ -10,108 +10,103 @@
#ifndef LLDB_SBMemoryRegionInfo_h_
#define LLDB_SBMemoryRegionInfo_h_
-#include "lldb/API/SBDefines.h"
#include "lldb/API/SBData.h"
+#include "lldb/API/SBDefines.h"
namespace lldb {
-class LLDB_API SBMemoryRegionInfo
-{
+class LLDB_API SBMemoryRegionInfo {
public:
-
- SBMemoryRegionInfo ();
-
- SBMemoryRegionInfo (const lldb::SBMemoryRegionInfo &rhs);
-
- ~SBMemoryRegionInfo ();
-
- const lldb::SBMemoryRegionInfo &
- operator = (const lldb::SBMemoryRegionInfo &rhs);
-
- void
- Clear();
-
- //------------------------------------------------------------------
- /// Get the base address of this memory range.
- ///
- /// @return
- /// The base address of this memory range.
- //------------------------------------------------------------------
- lldb::addr_t
- GetRegionBase ();
-
- //------------------------------------------------------------------
- /// Get the end address of this memory range.
- ///
- /// @return
- /// The base address of this memory range.
- //------------------------------------------------------------------
- lldb::addr_t
- GetRegionEnd ();
-
- //------------------------------------------------------------------
- /// Check if this memory address is marked readable to the process.
- ///
- /// @return
- /// true if this memory address is marked readable
- //------------------------------------------------------------------
- bool
- IsReadable ();
-
- //------------------------------------------------------------------
- /// Check if this memory address is marked writable to the process.
- ///
- /// @return
- /// true if this memory address is marked writable
- //------------------------------------------------------------------
- bool
- IsWritable ();
-
- //------------------------------------------------------------------
- /// Check if this memory address is marked executable to the process.
- ///
- /// @return
- /// true if this memory address is marked executable
- //------------------------------------------------------------------
- bool
- IsExecutable ();
-
- //------------------------------------------------------------------
- /// Check if this memory address is mapped into the process address
- /// space.
- ///
- /// @return
- /// true if this memory address is in the process address space.
- //------------------------------------------------------------------
- bool
- IsMapped ();
-
- bool
- operator == (const lldb::SBMemoryRegionInfo &rhs) const;
-
- bool
- operator != (const lldb::SBMemoryRegionInfo &rhs) const;
-
- bool
- GetDescription (lldb::SBStream &description);
+ SBMemoryRegionInfo();
+
+ SBMemoryRegionInfo(const lldb::SBMemoryRegionInfo &rhs);
+
+ ~SBMemoryRegionInfo();
+
+ const lldb::SBMemoryRegionInfo &
+ operator=(const lldb::SBMemoryRegionInfo &rhs);
+
+ void Clear();
+
+ //------------------------------------------------------------------
+ /// Get the base address of this memory range.
+ ///
+ /// @return
+ /// The base address of this memory range.
+ //------------------------------------------------------------------
+ lldb::addr_t GetRegionBase();
+
+ //------------------------------------------------------------------
+ /// Get the end address of this memory range.
+ ///
+ /// @return
+ /// The base address of this memory range.
+ //------------------------------------------------------------------
+ lldb::addr_t GetRegionEnd();
+
+ //------------------------------------------------------------------
+ /// Check if this memory address is marked readable to the process.
+ ///
+ /// @return
+ /// true if this memory address is marked readable
+ //------------------------------------------------------------------
+ bool IsReadable();
+
+ //------------------------------------------------------------------
+ /// Check if this memory address is marked writable to the process.
+ ///
+ /// @return
+ /// true if this memory address is marked writable
+ //------------------------------------------------------------------
+ bool IsWritable();
+
+ //------------------------------------------------------------------
+ /// Check if this memory address is marked executable to the process.
+ ///
+ /// @return
+ /// true if this memory address is marked executable
+ //------------------------------------------------------------------
+ bool IsExecutable();
+
+ //------------------------------------------------------------------
+ /// Check if this memory address is mapped into the process address
+ /// space.
+ ///
+ /// @return
+ /// true if this memory address is in the process address space.
+ //------------------------------------------------------------------
+ bool IsMapped();
+
+ //------------------------------------------------------------------
+ /// Returns the name of the memory region mapped at the given
+ /// address.
+ ///
+ /// @return
+ /// In case of memory mapped files it is the absolute path of
+ /// the file otherwise it is a name associated with the memory
+ /// region. If no name can be determined the returns nullptr.
+ //------------------------------------------------------------------
+ const char *GetName();
+
+ bool operator==(const lldb::SBMemoryRegionInfo &rhs) const;
+
+ bool operator!=(const lldb::SBMemoryRegionInfo &rhs) const;
+
+ bool GetDescription(lldb::SBStream &description);
private:
+ friend class SBProcess;
+ friend class SBMemoryRegionInfoList;
- friend class SBProcess;
- friend class SBMemoryRegionInfoList;
+ lldb_private::MemoryRegionInfo &ref();
- lldb_private::MemoryRegionInfo &
- ref();
+ const lldb_private::MemoryRegionInfo &ref() const;
- const lldb_private::MemoryRegionInfo &
- ref() const;
+ SBMemoryRegionInfo(const lldb_private::MemoryRegionInfo *lldb_object_ptr);
- SBMemoryRegionInfo (const lldb_private::MemoryRegionInfo *lldb_object_ptr);
-
- lldb::MemoryRegionInfoUP m_opaque_ap;
+ lldb::MemoryRegionInfoUP m_opaque_ap;
};
-
} // namespace lldb
#endif // LLDB_SBMemoryRegionInfo_h_