Frama_c_kernel.DominatorsComputation of dominators.
val get_idom : Cil_types.stmt -> Cil_types.stmt optionImmediate dominator of the statement.
val dominates : Cil_types.stmt -> Cil_types.stmt -> booldominates a b tells whether a dominates b.
val nearest_common_ancestor : Cil_types.stmt list -> Cil_types.stmtFinds the statement lowest in the function that dominates all the statements in the list passed as argument. The list must not be empty, and must contain statements that are all in the same function.