flowgraph.h 266 B

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