package goblint

  1. Overview
  2. Docs
Static analysis framework for C

Install

dune-project
 Dependency

Authors

Maintainers

Sources

goblint-2.6.0.tbz
sha256=20d5b7332a9f6072ab9ba86c4a53b898eaf681286c56a8805c41850bbf3ddf41
sha512=7c7685cfcd9aa866bc40e813df2bfcb3c79b3d40e615d8d6d0939c5798b9d70dd7f2ba87a741f5ba0ce891e9d254627207fb28057f1f2f6611e4e0d128fd6a71

doc/goblint.lib/Goblint_lib/DeadCode/index.html

Module Goblint_lib.DeadCode

Dead code elimination transformation (remove_dead_code).

val empty_block : unit -> GoblintCil.block
val filter_map_block : ?unchecked_condition:(unit -> GoblintCil.exp) -> (GoblintCil.stmt -> bool) -> GoblintCil.block -> bool

Filter statements out of a block (recursively). CFG fields (prev/next, Loop continue/break) are no longer valid after calling. Returns true if anything is left in block, false if the block is now empty. Invariants:

  • f (goto label) ==> f (labelled stmt), i.e. if a goto statement is not filtered out, the target may not be filtered out either.
  • block may not contain switch statements.
val may_stop_execution : GoblintCil.stmt -> bool

Is it possible for this statement to begin executing normally, but not finish?

val find_live_statements : (MyCFG.node -> bool) -> (MyCFG.node -> MyCFG.edges -> MyCFG.node -> GoblintCil.stmt list) -> MyCFG.cfg -> MyCFG.node -> BatSet.Int.t

Perform a depth first search over the CFG. Record the IDs of live statements; for each traversed edge, record the skipped statements along the edge as live, if the nodes on both ends of the edge are live. Record live statements in the nodes themselves as well.