2018-05-12 01:10:27 +02:00
|
|
|
using System.Runtime.Intrinsics.X86;
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
public static class AOptimizations
|
|
|
|
{
|
2018-03-11 00:39:16 +01:00
|
|
|
public static bool DisableMemoryChecks = false;
|
2018-04-22 06:21:49 +02:00
|
|
|
|
|
|
|
public static bool GenerateCallStack = true;
|
2018-05-12 01:10:27 +02:00
|
|
|
|
|
|
|
public static bool UseSse2IfAvailable = true;
|
|
|
|
|
|
|
|
internal static bool UseSse2 = UseSse2IfAvailable && Sse2.IsSupported;
|
2018-02-20 21:09:23 +01:00
|
|
|
}
|