mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
7107c3badf
1. Move IncludeFile.h to System library 2. Move IncludeFile.cpp to System library 3. #1 and #2 required to prevent cyclic library dependencies for libSystem 4. Convert all existing uses of Support/IncludeFile.h to System/IncludeFile.h 5. Add IncludeFile support to various lib/System classes. 6. Add new lib/System classes to LinkAllVMCore.h All this in an attempt to pull in lib/System to what's required for VMCore git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29287 91177308-0d34-0410-b5e6-96231b3b80d8
77 lines
2.7 KiB
C++
77 lines
2.7 KiB
C++
//===- llvm/System/Memory.h - Memory Support --------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Reid Spencer and is distributed under the
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the llvm::sys::Memory class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SYSTEM_MEMORY_H
|
|
#define LLVM_SYSTEM_MEMORY_H
|
|
|
|
#include <string>
|
|
#include "llvm/System/IncludeFile.h"
|
|
|
|
namespace llvm {
|
|
namespace sys {
|
|
|
|
/// This class encapsulates the notion of a memory block which has an address
|
|
/// and a size. It is used by the Memory class (a friend) as the result of
|
|
/// various memory allocation operations.
|
|
/// @see Memory
|
|
/// @brief Memory block abstraction.
|
|
class MemoryBlock {
|
|
public:
|
|
void *base() const { return Address; }
|
|
unsigned size() const { return Size; }
|
|
private:
|
|
void *Address; ///< Address of first byte of memory area
|
|
unsigned Size; ///< Size, in bytes of the memory area
|
|
friend class Memory;
|
|
};
|
|
|
|
/// This class provides various memory handling functions that manipulate
|
|
/// MemoryBlock instances.
|
|
/// @since 1.4
|
|
/// @brief An abstraction for memory operations.
|
|
class Memory {
|
|
/// @name Functions
|
|
/// @{
|
|
public:
|
|
/// This method allocates a block of Read/Write/Execute memory that is
|
|
/// suitable for executing dynamically generated code (e.g. JIT). An
|
|
/// attempt to allocate \p NumBytes bytes of virtual memory is made.
|
|
/// \p NearBlock may point to an existing allocation in which case
|
|
/// an attempt is made to allocate more memory near the existing block.
|
|
///
|
|
/// On success, this returns a non-null memory block, otherwise it returns
|
|
/// a null memory block and fills in *ErrMsg.
|
|
///
|
|
/// @brief Allocate Read/Write/Execute memory.
|
|
static MemoryBlock AllocateRWX(unsigned NumBytes,
|
|
const MemoryBlock *NearBlock,
|
|
std::string *ErrMsg = 0);
|
|
|
|
/// This method releases a block of Read/Write/Execute memory that was
|
|
/// allocated with the AllocateRWX method. It should not be used to
|
|
/// release any memory block allocated any other way.
|
|
///
|
|
/// On success, this returns false, otherwise it returns true and fills
|
|
/// in *ErrMsg.
|
|
/// @throws std::string if an error occurred.
|
|
/// @brief Release Read/Write/Execute memory.
|
|
static bool ReleaseRWX(MemoryBlock &block, std::string *ErrMsg = 0);
|
|
/// @}
|
|
};
|
|
}
|
|
}
|
|
|
|
FORCE_DEFINING_FILE_TO_BE_LINKED(SystemMemory)
|
|
|
|
#endif
|