2 writes to _supportedInstructionSets
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (2)
243
_supportedInstructionSets
= new SortedSet<string>();
250
_supportedInstructionSets
= new SortedSet<string>(other._supportedInstructionSets);
16 references to _supportedInstructionSets
ILCompiler.Compiler (16)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (16)
250
_supportedInstructionSets = new SortedSet<string>(other.
_supportedInstructionSets
);
256
=> (
_supportedInstructionSets
.Count > 0 ? "+" : "")
257
+ string.Join(",+",
_supportedInstructionSets
)
258
+ (
_supportedInstructionSets
.Count > 0 && _unsupportedInstructionSets.Count > 0 ? "," : "")
283
_supportedInstructionSets
.Add(set);
292
_supportedInstructionSets
.Add(instructionSet);
306
_supportedInstructionSets
.Remove(instructionSet);
336
if (
_supportedInstructionSets
.Any(iSet => iSet.Contains("avx512")))
341
if (
_supportedInstructionSets
.Contains("gfni"))
342
_supportedInstructionSets
.Add("gfni_v512");
344
if (
_supportedInstructionSets
.Contains("vpclmul"))
345
_supportedInstructionSets
.Add("vpclmul_v512");
348
if (
_supportedInstructionSets
.Any(iSet => iSet.Contains("avx")))
353
if (
_supportedInstructionSets
.Contains("gfni"))
354
_supportedInstructionSets
.Add("gfni_v256");
357
foreach (string supported in
_supportedInstructionSets
)