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