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); 331if (_supportedInstructionSets.Any(iSet => iSet.Contains("avx512"))) 336if (_supportedInstructionSets.Contains("gfni")) 337_supportedInstructionSets.Add("gfni_v512"); 339if (_supportedInstructionSets.Contains("vpclmul")) 340_supportedInstructionSets.Add("vpclmul_v512"); 343if (_supportedInstructionSets.Any(iSet => iSet.Contains("avx"))) 348if (_supportedInstructionSets.Contains("gfni")) 349_supportedInstructionSets.Add("gfni_v256"); 352foreach (string supported in _supportedInstructionSets)