aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Memory/NativeMemoryManager.cs
blob: cb8d5c243d05bcdb80b254d204e4c243d63b9b80 (plain) (blame)
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
using System;
using System.Buffers;

namespace Ryujinx.Memory
{
    public unsafe class NativeMemoryManager<T> : MemoryManager<T> where T : unmanaged
    {
        private readonly T* _pointer;
        private readonly int _length;

        public NativeMemoryManager(nuint pointer, int length)
            : this((T*)pointer, length)
        {
        }

        public NativeMemoryManager(T* pointer, int length)
        {
            _pointer = pointer;
            _length = length;
        }

        public unsafe T* Pointer => _pointer;

        public int Length => _length;

        public override Span<T> GetSpan()
        {
            return new Span<T>((void*)_pointer, _length);
        }

        public override MemoryHandle Pin(int elementIndex = 0)
        {
            if ((uint)elementIndex >= _length)
            {
                throw new ArgumentOutOfRangeException(nameof(elementIndex));
            }

            return new MemoryHandle((void*)(_pointer + elementIndex));
        }

        public override void Unpin()
        {
            // No need to do anything as pointer already points no native memory, not GC tracked.
        }

        protected override void Dispose(bool disposing)
        {
            // Nothing to dispose, MemoryBlock still owns the memory.
        }
    }
}