module Cfg:sig..end
val computeFileCFG : Cil.file -> unitCompute the CFG for an entire file, by calling cfgFun on each function.
val clearFileCFG : Cil.file -> unitclear the sid, succs, and preds fields of each statement.
val cfgFun : Cil.fundec -> intCompute a control flow graph for fd. Stmts in fd have preds and succs filled in
val clearCFGinfo : Cil.fundec -> unitclear the sid, succs, and preds fields of each statment in a function
val printCfgChannel : Stdlib.out_channel -> Cil.fundec -> unitprint control flow graph (in dot form) for fundec to channel
val printCfgFilename : string -> Cil.fundec -> unitPrint control flow graph (in dot form) for fundec to file
val start_id : int Stdlib.refNext statement id that will be assigned.
val allStmts : Cil.file -> Cil.stmt listReturn all statements in a file - valid after computeFileCfg only