mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 23:49:22 +08:00
Add a more general purpose qMemoryRegionInfo packet which can describe various attributes about a memory region. Currently it will return the start address, size, and permissions (read, write, executable) for the memory region. It may be possible to add additional attributes in the future such as whether the region is designated as stack memory or jitted code a la vmmap. I still haven't implemented the lldb side of the code to use this packet yet so there may be unexpected behavior - but the basic implementation looks about right. I'll hook it up to lldb soon and fix any problems that crop up. llvm-svn: 144175
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
//===-- MachVMMemory.h ------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Created by Greg Clayton on 6/26/07.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef __MachVMMemory_h__
|
|
#define __MachVMMemory_h__
|
|
|
|
#include "DNBDefs.h"
|
|
#include "DNBError.h"
|
|
#include <mach/mach.h>
|
|
|
|
class MachVMMemory
|
|
{
|
|
public:
|
|
enum { kInvalidPageSize = ~0 };
|
|
MachVMMemory();
|
|
~MachVMMemory();
|
|
nub_size_t Read(task_t task, nub_addr_t address, void *data, nub_size_t data_count);
|
|
nub_size_t Write(task_t task, nub_addr_t address, const void *data, nub_size_t data_count);
|
|
nub_size_t PageSize();
|
|
int MemoryRegionInfo(task_t task, nub_addr_t address, char *outbuf, nub_size_t outbufsize);
|
|
|
|
protected:
|
|
nub_size_t MaxBytesLeftInPage(nub_addr_t addr, nub_size_t count);
|
|
|
|
nub_size_t WriteRegion(task_t task, const nub_addr_t address, const void *data, const nub_size_t data_count);
|
|
vm_size_t m_page_size;
|
|
DNBError m_err;
|
|
};
|
|
|
|
|
|
#endif // #ifndef __MachVMMemory_h__
|