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); 336if (_supportedInstructionSets.Any(iSet => iSet.Contains("avx512"))) 341if (_supportedInstructionSets.Contains("gfni")) 342_supportedInstructionSets.Add("gfni_v512"); 344if (_supportedInstructionSets.Contains("vpclmul")) 345_supportedInstructionSets.Add("vpclmul_v512"); 348if (_supportedInstructionSets.Any(iSet => iSet.Contains("avx"))) 353if (_supportedInstructionSets.Contains("gfni")) 354_supportedInstructionSets.Add("gfni_v256"); 357foreach (string supported in _supportedInstructionSets)