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