2 writes to _unsupportedInstructionSets
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (2)
244_unsupportedInstructionSets = new SortedSet<string>(); 251_unsupportedInstructionSets = new SortedSet<string>(other._unsupportedInstructionSets);
9 references to _unsupportedInstructionSets
ILCompiler.Compiler (9)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (9)
251_unsupportedInstructionSets = new SortedSet<string>(other._unsupportedInstructionSets); 258+ (_supportedInstructionSets.Count > 0 && _unsupportedInstructionSets.Count > 0 ? "," : "") 259+ (_unsupportedInstructionSets.Count > 0 ? "-" : "") 260+ string.Join(",-", _unsupportedInstructionSets); 284_unsupportedInstructionSets.Remove(set); 293_unsupportedInstructionSets.Remove(instructionSet); 307_unsupportedInstructionSets.Add(instructionSet); 325foreach (string unsupported in _unsupportedInstructionSets) 362foreach (string unsupported in _unsupportedInstructionSets)