summaryrefslogtreecommitdiff
path: root/polly/lib/External/isl/isl_scheduler_scc.h
blob: e92c5e163f7ea5ada905f9108f91d3c135962df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef ISL_SCHEDULER_SCC_H
#define ISL_SCHEDULER_SCC_H

#include <isl/ctx.h>

#include "isl_scheduler.h"
#include "isl_scheduler_clustering.h"

struct isl_scc_graph;

struct isl_scc_graph *isl_scc_graph_from_sched_graph(isl_ctx *ctx,
	struct isl_sched_graph *graph, struct isl_clustering *c);
__isl_give isl_schedule_node *isl_scc_graph_decompose(
	struct isl_scc_graph *scc_graph, __isl_take isl_schedule_node *node);
struct isl_scc_graph *isl_scc_graph_free(struct isl_scc_graph *scc_graph);

void isl_scc_graph_dump(struct isl_scc_graph *scc_graph);

#endif