2 writes to _supportedInstructionSets
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (2)
238
_supportedInstructionSets
= new SortedSet<string>();
245
_supportedInstructionSets
= new SortedSet<string>(other._supportedInstructionSets);
16 references to _supportedInstructionSets
ILCompiler.Compiler (16)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (16)
245
_supportedInstructionSets = new SortedSet<string>(other.
_supportedInstructionSets
);
251
=> (
_supportedInstructionSets
.Count > 0 ? "+" : "")
252
+ string.Join(",+",
_supportedInstructionSets
)
253
+ (
_supportedInstructionSets
.Count > 0 && _unsupportedInstructionSets.Count > 0 ? "," : "")
278
_supportedInstructionSets
.Add(set);
287
_supportedInstructionSets
.Add(instructionSet);
301
_supportedInstructionSets
.Remove(instructionSet);
331
if (
_supportedInstructionSets
.Any(iSet => iSet.Contains("avx512")))
336
if (
_supportedInstructionSets
.Contains("gfni"))
337
_supportedInstructionSets
.Add("gfni_v512");
339
if (
_supportedInstructionSets
.Contains("vpclmul"))
340
_supportedInstructionSets
.Add("vpclmul_v512");
343
if (
_supportedInstructionSets
.Any(iSet => iSet.Contains("avx")))
348
if (
_supportedInstructionSets
.Contains("gfni"))
349
_supportedInstructionSets
.Add("gfni_v256");
352
foreach (string supported in
_supportedInstructionSets
)