2 writes to _unsupportedInstructionSets
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (2)
239_unsupportedInstructionSets = new SortedSet<string>(); 246_unsupportedInstructionSets = new SortedSet<string>(other._unsupportedInstructionSets);
9 references to _unsupportedInstructionSets
ILCompiler.Compiler (9)
src\runtime\src\coreclr\tools\Common\Compiler\InstructionSetSupport.cs (9)
246_unsupportedInstructionSets = new SortedSet<string>(other._unsupportedInstructionSets); 253+ (_supportedInstructionSets.Count > 0 && _unsupportedInstructionSets.Count > 0 ? "," : "") 254+ (_unsupportedInstructionSets.Count > 0 ? "-" : "") 255+ string.Join(",-", _unsupportedInstructionSets); 279_unsupportedInstructionSets.Remove(set); 288_unsupportedInstructionSets.Remove(instructionSet); 302_unsupportedInstructionSets.Add(instructionSet); 320foreach (string unsupported in _unsupportedInstructionSets) 357foreach (string unsupported in _unsupportedInstructionSets)