7 references to OutgoingEdges
ILCompiler.ReadyToRun (7)
Compiler\PettisHansenSort\CallGraphNode.cs (3)
20
if (
OutgoingEdges
.TryGetValue(callee, out long curCount))
21
OutgoingEdges
[callee] = curCount + count;
23
OutgoingEdges
.Add(callee, count);
Compiler\PettisHansenSort\PettisHansen.cs (4)
27
var dict = new Dictionary<int, long>(node.
OutgoingEdges
.Count);
44
foreach (var kvp in graph[i].
OutgoingEdges
)
90
graph[a].
OutgoingEdges
.TryGetValue(graph[b], out long ab);
91
graph[b].
OutgoingEdges
.TryGetValue(graph[a], out long ba);