Module Absint.Scheduler

module type S = sig ... end
module ReversePostorder : functor (CFG : ProcCfg.S) -> S with module CFG = CFG

simple scheduler that visits CFG nodes in reverse postorder. fast/precise for straightline code and conditionals; not as good for loops (may visit nodes after a loop multiple times).