-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathJitSupportDetector.cs
43 lines (38 loc) · 1.07 KB
/
JitSupportDetector.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
using System;
#if !NETSTANDARD1_3
using System.Reflection.Emit;
#endif
namespace GameDevWare.Dynamic.Expressions
{
internal sealed class JitSupportDetector
{
private static bool? IsDynamicCompilationResult;
public static bool IsDynamicCompilationAvailable()
{
if (AotCompilation.IsAotRuntime)
{
return false;
}
if (IsDynamicCompilationResult.HasValue)
{
return IsDynamicCompilationResult.Value;
}
try
{
#if NETSTANDARD1_3
// check lambdas are supported
System.Linq.Expressions.Expression.Lambda<Func<bool>>(System.Linq.Expressions.Expression.Constant(true)).Compile();
#else
// check dynamic methods are supported
var voidDynamicMethod = new DynamicMethod("TestVoidMethod", typeof(void), Type.EmptyTypes, restrictedSkipVisibility: true);
var il = voidDynamicMethod.GetILGenerator();
il.Emit(OpCodes.Nop);
voidDynamicMethod.CreateDelegate(typeof(Action));
#endif
IsDynamicCompilationResult = true;
}
catch (Exception) { IsDynamicCompilationResult = false; }
return IsDynamicCompilationResult.Value;
}
}
}