2 instantiations of MethodBodyValue
ILCompiler.Compiler (2)
Compiler\Dataflow\InterproceduralState.cs (2)
72methodsList.Add(new MethodBodyValue(methodBody)); 85methodsList.Add(new MethodBodyValue(stateMachineMethodBody));
10 references to MethodBodyValue
ILCompiler.Compiler (10)
Compiler\Dataflow\InterproceduralState.cs (9)
23internal readonly record struct MethodBodyValue(MethodIL MethodBody) : IEquatable<MethodBodyValue> 25bool IEquatable<MethodBodyValue>.Equals(ILCompiler.Dataflow.MethodBodyValue other) 38public ValueSet<MethodBodyValue> MethodBodies; 42public InterproceduralState(ILProvider ilProvider, ValueSet<MethodBodyValue> methodBodies, HoistedLocalState hoistedLocals, InterproceduralStateLattice lattice) 71var methodsList = new List<MethodBodyValue>(MethodBodies.GetKnownValues()); 90MethodBodies = new ValueSet<MethodBodyValue>(methodsList); 149public readonly ValueSetLattice<MethodBodyValue> MethodBodyLattice; 154ValueSetLattice<MethodBodyValue> methodBodyLattice,
Compiler\Dataflow\MethodBodyScanner.cs (1)
310foreach (var methodBodyValue in oldInterproceduralState.MethodBodies.GetKnownValues())