Crate midenc_dialect_cf Copy item path Source Br An unstructured control flow primitive representing an unconditional branch to target
BrBuilder A specialized builder for Br , which is used by calling it like a function. CondBr An unstructured control flow primitive representing a conditional branch to either then_dest
or else_dest
depending on the value of condition
, a boolean value. CondBrBuilder A specialized builder for CondBr , which is used by calling it like a function. ControlFlowDialect Select Choose a value based on a boolean condition SelectBuilder A specialized builder for Select , which is used by calling it like a function. Switch An unstructured control flow primitive that represents a multi-way branch to one of multiple
branch targets, depending on the value of selector
. SwitchBuilder A specialized builder for Switch , which is used by calling it like a function. SwitchCase Represents a single branch target by matching a specific selector value in a Switch
operation. ControlFlowOpBuilder