1 //===- llvm/Support/Memory.h - Memory Support -------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file declares the llvm::sys::Memory class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_SUPPORT_MEMORY_H
14 #define LLVM_SUPPORT_MEMORY_H
16 #include "llvm/Support/DataTypes.h"
18 #include <system_error>
22 // Forward declare raw_ostream: it is used for debug dumping below.
27 /// This class encapsulates the notion of a memory block which has an address
28 /// and a size. It is used by the Memory class (a friend) as the result of
29 /// various memory allocation operations.
31 /// Memory block abstraction.
34 MemoryBlock() : Address(nullptr), AllocatedSize(0) {}
35 MemoryBlock(void *addr
, size_t allocatedSize
)
36 : Address(addr
), AllocatedSize(allocatedSize
) {}
37 void *base() const { return Address
; }
38 /// The size as it was allocated. This is always greater or equal to the
39 /// size that was originally requested.
40 size_t allocatedSize() const { return AllocatedSize
; }
43 void *Address
; ///< Address of first byte of memory area
44 size_t AllocatedSize
; ///< Size, in bytes of the memory area
49 /// This class provides various memory handling functions that manipulate
50 /// MemoryBlock instances.
52 /// An abstraction for memory operations.
55 enum ProtectionFlags
{
59 MF_RWE_MASK
= 0x7000000,
60 MF_HUGE_HINT
= 0x0000001
63 /// This method allocates a block of memory that is suitable for loading
64 /// dynamically generated code (e.g. JIT). An attempt to allocate
65 /// \p NumBytes bytes of virtual memory is made.
66 /// \p NearBlock may point to an existing allocation in which case
67 /// an attempt is made to allocate more memory near the existing block.
68 /// The actual allocated address is not guaranteed to be near the requested
70 /// \p Flags is used to set the initial protection flags for the block
72 /// \p EC [out] returns an object describing any error that occurs.
74 /// This method may allocate more than the number of bytes requested. The
75 /// actual number of bytes allocated is indicated in the returned
78 /// The start of the allocated block must be aligned with the
79 /// system allocation granularity (64K on Windows, page size on Linux).
80 /// If the address following \p NearBlock is not so aligned, it will be
81 /// rounded up to the next allocation granularity boundary.
83 /// \r a non-null MemoryBlock if the function was successful,
84 /// otherwise a null MemoryBlock is with \p EC describing the error.
86 /// Allocate mapped memory.
87 static MemoryBlock
allocateMappedMemory(size_t NumBytes
,
88 const MemoryBlock
*const NearBlock
,
92 /// This method releases a block of memory that was allocated with the
93 /// allocateMappedMemory method. It should not be used to release any
94 /// memory block allocated any other way.
95 /// \p Block describes the memory to be released.
97 /// \r error_success if the function was successful, or an error_code
98 /// describing the failure if an error occurred.
100 /// Release mapped memory.
101 static std::error_code
releaseMappedMemory(MemoryBlock
&Block
);
103 /// This method sets the protection flags for a block of memory to the
104 /// state specified by /p Flags. The behavior is not specified if the
105 /// memory was not allocated using the allocateMappedMemory method.
106 /// \p Block describes the memory block to be protected.
107 /// \p Flags specifies the new protection state to be assigned to the block.
108 /// \p ErrMsg [out] returns a string describing any error that occurred.
110 /// If \p Flags is MF_WRITE, the actual behavior varies
111 /// with the operating system (i.e. MF_READ | MF_WRITE on Windows) and the
112 /// target architecture (i.e. MF_WRITE -> MF_READ | MF_WRITE on i386).
114 /// \r error_success if the function was successful, or an error_code
115 /// describing the failure if an error occurred.
117 /// Set memory protection state.
118 static std::error_code
protectMappedMemory(const MemoryBlock
&Block
,
121 /// InvalidateInstructionCache - Before the JIT can run a block of code
122 /// that has been emitted it must invalidate the instruction cache on some
124 static void InvalidateInstructionCache(const void *Addr
, size_t Len
);
127 /// Owning version of MemoryBlock.
128 class OwningMemoryBlock
{
130 OwningMemoryBlock() = default;
131 explicit OwningMemoryBlock(MemoryBlock M
) : M(M
) {}
132 OwningMemoryBlock(OwningMemoryBlock
&&Other
) {
134 Other
.M
= MemoryBlock();
136 OwningMemoryBlock
& operator=(OwningMemoryBlock
&&Other
) {
138 Other
.M
= MemoryBlock();
141 ~OwningMemoryBlock() {
142 Memory::releaseMappedMemory(M
);
144 void *base() const { return M
.base(); }
145 /// The size as it was allocated. This is always greater or equal to the
146 /// size that was originally requested.
147 size_t allocatedSize() const { return M
.allocatedSize(); }
148 MemoryBlock
getMemoryBlock() const { return M
; }
154 /// Debugging output for Memory::ProtectionFlags.
155 raw_ostream
&operator<<(raw_ostream
&OS
, const Memory::ProtectionFlags
&PF
);
157 /// Debugging output for MemoryBlock.
158 raw_ostream
&operator<<(raw_ostream
&OS
, const MemoryBlock
&MB
);
159 #endif // ifndef NDEBUG
160 } // end namespace sys
161 } // end namespace llvm