10 references to GetKnownValues
illink (10)
Linker.Dataflow\InterproceduralState.cs (1)
57
var methodsList = new List<MethodIL>(MethodBodies.
GetKnownValues
());
Linker.Dataflow\MethodBodyScanner.cs (2)
267
foreach (var methodIL in oldInterproceduralState.MethodBodies.
GetKnownValues
())
285
Debug.Assert(interproceduralState.MethodBodies.
GetKnownValues
().Count() == 1);
src\runtime\src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (6)
262
var values = new EnumerableValues(left.DeepCopy().
GetKnownValues
());
263
values.UnionWith(right.DeepCopy().
GetKnownValues
());
288
var values = new EnumerableValues(left.DeepCopy().
GetKnownValues
());
289
values.IntersectWith(right.
GetKnownValues
());
303
sb.Append(string.Join(",",
GetKnownValues
().Select(v => v.ToString())));
327
return new ValueSet<TValue>(
GetKnownValues
().Select(value => value is IDeepCopyValue<TValue> copyValue ? copyValue.DeepCopy() : value));
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\ValueExtensions.cs (1)
70
: multiValue.
GetKnownValues
();