Home
last modified time | relevance | path

Searched refs:NumInEdges (Results 1 – 1 of 1) sorted by relevance

/llvm-project/bolt/runtime/
H A Dinstr.cpp846 uint32_t NumInEdges{0}; // Input edge count used to size InEdge member
927 CFGNodes[D.Edges[I].ToNode].NumInEdges++; in Graph()
932 SpanningTreeNodes[D.Edges[I].ToNode].NumInEdges++; in Graph()
937 if (CFGNodes[I].NumInEdges > 0) in Graph()
938 CFGNodes[I].InEdges = new (Alloc) Edge[CFGNodes[I].NumInEdges]; in Graph()
941 if (SpanningTreeNodes[I].NumInEdges > 0) in Graph()
943 new (Alloc) Edge[SpanningTreeNodes[I].NumInEdges]; in Graph()
947 CFGNodes[I].NumInEdges = 0; in Graph()
949 SpanningTreeNodes[I].NumInEdges = 0; in Graph()
961 E = &CFGNodes[Dst].InEdges[CFGNodes[Dst].NumInEdges++]; in Graph()
[all …]