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