ControlFlowGraph

struct ControlFlowGraph : Sendable
extension ControlFlowGraph: CustomStringConvertible

A control-flow graph.

This data structure describes relation between the basic blocks of a function. The direction of the graph’s edges denotes the direction of the control flow from one block to another: there an edge from A to B if the former’s terminator points to the latter.