summaryrefslogtreecommitdiffstatshomepage
path: root/flowgraph.h
blob: 7226c55f080523577092b2ef79f05abca0365dc0 (plain)
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