becopyheur4: Clean up co_mst_irn_init().
[libfirm] / ir / be / bechordal.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief       Chordal register allocation.
9  * @author      Sebastian Hack
10  * @date        14.12.2004
11  */
12 #ifndef FIRM_BE_BECHORDAL_H
13 #define FIRM_BE_BECHORDAL_H
14
15 typedef struct be_chordal_env_t     be_chordal_env_t;
16 typedef struct be_ra_chordal_opts_t be_ra_chordal_opts_t;
17 typedef struct border_t             border_t;
18
19 typedef struct be_ra_chordal_coloring_t {
20         void (*allocate)(be_chordal_env_t *env);
21 } be_ra_chordal_coloring_t;
22
23 void be_register_chordal_coloring(const char *name, be_ra_chordal_coloring_t *coloring);
24
25 #endif /* FIRM_BE_BECHORDAL_H */