1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef FLOWGRAPH_H #define FLOWGRAPH_H #include <stdbool.h> struct entrypoint; struct basic_block; int cfg_postorder(struct entrypoint *ep); void domtree_build(struct entrypoint *ep); bool domtree_dominates(struct basic_block *a, struct basic_block *b); #endif