Created
July 16, 2022 19:21
-
-
Save hypeartist/c2acae20dc1f0fa3a629df8e274a64ea to your computer and use it in GitHub Desktop.
Type instantiation (.ctor with parameters)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object obj; | |
var r = 0; | |
const int cnt = 1000000; | |
var constructorInfo = typeof(Class).GetConstructor(new[] { typeof(int) })!; | |
var hCtor = constructorInfo.MethodHandle; | |
RuntimeHelpers.PrepareMethod(RuntimeMethodHandle.FromIntPtr(hCtor.Value)); | |
var pCtor = (delegate* managed<object, int, void>)hCtor.GetFunctionPointer(); | |
var t1 = Stopwatch.GetTimestamp(); | |
for (int i = 0; i < cnt; i++) | |
{ | |
obj = RuntimeHelpers.GetUninitializedObject(typeof(Class)); | |
pCtor(obj, i); | |
var inst = Unsafe.As<object, Class>(ref obj); | |
r += inst._f; | |
} | |
var t2 = Stopwatch.GetTimestamp(); | |
Console.WriteLine($"RuntimeHelpers.GetUninitializedObject + .ctor invocation via function pointer:\t{TimeSpan.FromTicks(t2 - t1).Milliseconds} ms"); | |
t1 = Stopwatch.GetTimestamp(); | |
for (int i = 0; i < cnt; i++) | |
{ | |
obj = constructorInfo.Invoke(new object?[] { i }); | |
var inst = Unsafe.As<object, Class>(ref obj); | |
r += inst._f; | |
} | |
t2 = Stopwatch.GetTimestamp(); | |
Console.WriteLine($"ConstructorInfo.Invoke:\t{TimeSpan.FromTicks(t2 - t1).Milliseconds} ms"); | |
t1 = Stopwatch.GetTimestamp(); | |
for (int i = 0; i < cnt; i++) | |
{ | |
var c = Activator.CreateInstance(typeof(Class), i); | |
var inst = Unsafe.As<object, Class>(ref c!); | |
r += inst._f; | |
} | |
t2 = Stopwatch.GetTimestamp(); | |
Console.WriteLine($"Activator.CreateInstance:\t\t\t\t\t\t\t{TimeSpan.FromTicks(t2 - t1).Milliseconds} ms"); | |
t1 = Stopwatch.GetTimestamp(); | |
for (int i = 0; i < cnt; i++) | |
{ | |
var inst = new Class(i); | |
r += inst._f; | |
} | |
t2 = Stopwatch.GetTimestamp(); | |
Console.WriteLine($"Implicit call via 'new':\t\t\t\t\t\t\t{TimeSpan.FromTicks(t2 - t1).Milliseconds} ms"); | |
Console.WriteLine(); | |
Console.WriteLine($"Dummy output = {r}"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. It is very compact and educational example of function pointer machinery.