1 instantiation of CallGraphNode
ILCompiler.RyuJit (1)
parent\ILCompiler.ReadyToRun\Compiler\FileLayoutOptimizer.cs (1)
334graphNodes.Add(new CallGraphNode(index));
6 references to CallGraphNode
ILCompiler.RyuJit (6)
parent\ILCompiler.ReadyToRun\Compiler\FileLayoutOptimizer.cs (1)
328var graphNodes = new List<CallGraphNode>(methodsToPlace.Count);
parent\ILCompiler.ReadyToRun\Compiler\PettisHansenSort\CallGraphNode.cs (3)
16public Dictionary<CallGraphNode, long> OutgoingEdges { get; } = new Dictionary<CallGraphNode, long>(); 18public void IncreaseEdge(CallGraphNode callee, long count)
parent\ILCompiler.ReadyToRun\Compiler\PettisHansenSort\PettisHansen.cs (2)
15public static List<List<int>> Sort(List<CallGraphNode> graph) 25CallGraphNode node = graph[i];