-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBumpPointerNativeAllocator.cs
53 lines (46 loc) · 1.86 KB
/
BumpPointerNativeAllocator.cs
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
#region Copyright (c) Pixeval.Caching/Pixeval.Caching
// GPL v3 License
//
// Pixeval.Caching/Pixeval.Caching
// Copyright (c) 2024 Pixeval.Caching/ManagedNativeAllocator.cs
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#endregion
using System.Runtime.CompilerServices;
namespace Pixeval.Caching;
public unsafe class BumpPointerNativeAllocator(ref byte ptrStart, nint heapSize) : INativeAllocator
{
public nint BumpingPointer { get; private set; } = new(Unsafe.AsPointer(ref ptrStart));
private readonly byte* _endPointer = (byte*) Unsafe.AsPointer(ref ptrStart) + heapSize;
public AllocatorState TryAllocate(nint size, out Span<byte> span)
{
ref var ptr = ref Unsafe.AsRef<byte>((byte*) BumpingPointer);
var newAddress = (byte*) BumpingPointer + size;
if (newAddress >= _endPointer)
{
span = [];
return AllocatorState.OutOfMemory;
}
BumpingPointer = new IntPtr(newAddress);
span = new Span<byte>(Unsafe.AsPointer(ref ptr), (int) size);
return AllocatorState.AllocationSuccess;
}
public AllocatorState TryAllocateZeroed(nint size, out Span<byte> span)
{
var result = TryAllocate(size, out var s);
s.Clear();
span = s;
return result;
}
}