1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-10 02:35:42 +00:00

Reduce allocations in MarshalManagedToNative

This commit is contained in:
Oliver Booth 2022-11-30 00:46:18 +00:00
parent 0d0ce72cb2
commit 2d8dc52c3e
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -1,4 +1,4 @@
using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
using System.Text;
namespace VpSharp.Internal;
@ -26,13 +26,19 @@ internal sealed class Utf8StringToNative : ICustomMarshaler
return -1;
}
public nint MarshalManagedToNative(object managedObj)
public unsafe nint MarshalManagedToNative(object managedObj)
{
byte[] utf8Data = Encoding.UTF8.GetBytes((string)managedObj);
nint buffer = Marshal.AllocHGlobal(utf8Data.Length + 1);
Marshal.Copy(utf8Data, 0, buffer, utf8Data.Length);
Marshal.WriteByte(buffer, utf8Data.Length, 0);
return buffer;
var managedString = (string)managedObj;
Span<byte> utf8Bytes = stackalloc byte[managedString.Length];
Encoding.UTF8.GetBytes(managedString, utf8Bytes);
fixed (byte* data = &MemoryMarshal.GetReference(utf8Bytes))
{
IntPtr buffer = Marshal.AllocHGlobal(utf8Bytes.Length + 1);
Buffer.MemoryCopy(data, (void*)buffer, utf8Bytes.Length, utf8Bytes.Length);
Marshal.WriteByte(buffer, utf8Bytes.Length, 0);
return buffer;
}
}
public object MarshalNativeToManaged(nint pNativeData)