Home | History | Annotate | Download | only in docs

Lines Matching full:blocks

1317 Basic Blocks
1320 Concretely, an instance of ``CFG`` is a collection of basic blocks. Each basic
1325 <ConditionalControlFlow>` is represented using edges between basic blocks. The
1332 the ordering the blocks were created, but no assumptions should be made on how
1334 are numbered from 0..N-1 (where N is the number of basic blocks in the CFG).
1336 Entry and Exit Blocks
1339 Each instance of ``CFG`` contains two special blocks: an *entry* block
1344 presence of these empty blocks greatly simplifies the implementation of many
1357 nature of the conditional control-flow between blocks. For example, in the
1431 *predecessor* blocks (blocks that have outgoing control-flow to the given
1432 block) and *successor* blocks (blocks that have control-flow that have incoming
1434 and exit blocks at the beginning and end of the pretty-printed output. For the
1435 blocks is 0, while for the
1436 exit block (block B0) the number of successor blocks is 0.