10 references to TargetMethod
ILCompiler.Compiler (10)
Compiler\DependencyAnalysis\DispatchCellNode.cs (2)
118int result = _comparer.Compare(x.TargetMethod, y.TargetMethod);
Compiler\DependencyAnalysis\DispatchCellSectionNode.cs (2)
51protected override bool ShouldEmitCell(DispatchCellNode cell) => !cell.TargetMethod.HasInstantiation; 61protected override bool ShouldEmitCell(DispatchCellNode cell) => cell.TargetMethod.HasInstantiation;
Compiler\DependencyAnalysis\GvmDispatchCellInfoSectionNode.cs (3)
38if (!node.TargetMethod.HasInstantiation) 55MethodDesc targetMethod = cells[firstCell].TargetMethod; 57while (nextCell < cells.Count && cells[nextCell].TargetMethod == targetMethod)
Compiler\DependencyAnalysis\InterfaceDispatchCellInfoSectionNode.cs (3)
38if (node.TargetMethod.HasInstantiation) 55MethodDesc targetMethod = cells[firstCell].TargetMethod; 57while (nextCell < cells.Count && cells[nextCell].TargetMethod == targetMethod)