mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
237 lines
6.8 KiB
237 lines
6.8 KiB
using System; |
|
using System.Reflection; |
|
|
|
[assembly: AssemblyFileVersion("4.0.0.0")] |
|
[assembly: AssemblyInformationalVersion("4.0.0.0")] |
|
[assembly: AssemblyTitle("System.Runtime.CompilerServices.Unsafe")] |
|
[assembly: AssemblyDescription("System.Runtime.CompilerServices.Unsafe")] |
|
[assembly: AssemblyMetadata(".NETFrameworkAssembly", "")] |
|
[assembly: AssemblyMetadata("Serviceable", "True")] |
|
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] |
|
[assembly: AssemblyCompany("Microsoft Corporation")] |
|
[assembly: AssemblyProduct("Microsoft® .NET Framework")] |
|
[assembly: CLSCompliant(false)] |
|
|
|
namespace System.Runtime.CompilerServices |
|
{ |
|
public static class Unsafe |
|
{ |
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static T Read<T>(void* source) |
|
{ |
|
return *(T*)source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static T ReadUnaligned<T>(void* source) |
|
{ |
|
return *(T*)source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static T ReadUnaligned<T>(ref byte source) |
|
{ |
|
return *(T*)(&source); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void Write<T>(void* destination, T value) |
|
{ |
|
*(T*)destination = value; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void WriteUnaligned<T>(void* destination, T value) |
|
{ |
|
*(T*)destination = value; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void WriteUnaligned<T>(ref byte destination, T value) |
|
{ |
|
*(T*)(&destination) = value; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void Copy<T>(void* destination, ref T source) |
|
{ |
|
*(T*)destination = source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void Copy<T>(ref T destination, void* source) |
|
{ |
|
destination = *(T*)source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void* AsPointer<T>(ref T value) |
|
{ |
|
return &value; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static int SizeOf<T>() |
|
{ |
|
return sizeof(T); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void CopyBlock(void* destination, void* source, uint byteCount) |
|
{ |
|
// IL cpblk instruction |
|
Unsafe.CopyBlock(destination, source, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static void CopyBlock(ref byte destination, ref byte source, uint byteCount) |
|
{ |
|
// IL cpblk instruction |
|
Unsafe.CopyBlock(ref destination, ref source, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void CopyBlockUnaligned(void* destination, void* source, uint byteCount) |
|
{ |
|
// IL cpblk instruction |
|
Unsafe.CopyBlockUnaligned(destination, source, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static void CopyBlockUnaligned(ref byte destination, ref byte source, uint byteCount) |
|
{ |
|
// IL cpblk instruction |
|
Unsafe.CopyBlockUnaligned(ref destination, ref source, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void InitBlock(void* startAddress, byte value, uint byteCount) |
|
{ |
|
// IL initblk instruction |
|
Unsafe.InitBlock(startAddress, value, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static void InitBlock(ref byte startAddress, byte value, uint byteCount) |
|
{ |
|
// IL initblk instruction |
|
Unsafe.InitBlock(ref startAddress, value, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void InitBlockUnaligned(void* startAddress, byte value, uint byteCount) |
|
{ |
|
// IL initblk instruction |
|
Unsafe.InitBlockUnaligned(startAddress, value, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static void InitBlockUnaligned(ref byte startAddress, byte value, uint byteCount) |
|
{ |
|
// IL initblk instruction |
|
Unsafe.InitBlockUnaligned(ref startAddress, value, byteCount); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static T As<T>(object o) where T : class |
|
{ |
|
return (T)o; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static ref T AsRef<T>(void* source) |
|
{ |
|
return ref *(T*)source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T AsRef<T>(in T source) |
|
{ |
|
return ref source; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static ref TTo As<TFrom, TTo>(ref TFrom source) |
|
{ |
|
return ref *(TTo*)(&source); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T Unbox<T>(object box) where T : struct |
|
{ |
|
return ref (T)box; |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T Add<T>(ref T source, int elementOffset) |
|
{ |
|
return ref Unsafe.Add(ref source, elementOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void* Add<T>(void* source, int elementOffset) |
|
{ |
|
return (byte*)source + (long)elementOffset * (long)sizeof(T); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T Add<T>(ref T source, IntPtr elementOffset) |
|
{ |
|
return ref Unsafe.Add(ref source, elementOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T AddByteOffset<T>(ref T source, IntPtr byteOffset) |
|
{ |
|
return ref Unsafe.AddByteOffset(ref source, byteOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T Subtract<T>(ref T source, int elementOffset) |
|
{ |
|
return ref Unsafe.Subtract(ref source, elementOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public unsafe static void* Subtract<T>(void* source, int elementOffset) |
|
{ |
|
return (byte*)source - (long)elementOffset * (long)sizeof(T); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T Subtract<T>(ref T source, IntPtr elementOffset) |
|
{ |
|
return ref Unsafe.Subtract(ref source, elementOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static ref T SubtractByteOffset<T>(ref T source, IntPtr byteOffset) |
|
{ |
|
return ref Unsafe.SubtractByteOffset(ref source, byteOffset); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static IntPtr ByteOffset<T>(ref T origin, ref T target) |
|
{ |
|
return Unsafe.ByteOffset(ref target, ref origin); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static bool AreSame<T>(ref T left, ref T right) |
|
{ |
|
return (ref left) == (ref right); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static bool IsAddressGreaterThan<T>(ref T left, ref T right) |
|
{ |
|
return (ref left) > (ref right); |
|
} |
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
public static bool IsAddressLessThan<T>(ref T left, ref T right) |
|
{ |
|
return (ref left) < (ref right); |
|
} |
|
} |
|
}
|
|
|