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);
325
foreach (string unsupported in
_unsupportedInstructionSets
)
362
foreach (string unsupported in
_unsupportedInstructionSets
)