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