X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal.h;h=fa94cdb2c48ab6168a7025a7cbb43fc8cf78aba9;hb=3db23eee84cbabb3f399f1ca820948114a9c837c;hp=695a7c8638a4d2bb7b948e6488cabb971e43fd54;hpb=205396c4f4f5abe7abd6dc2350c8c398a7623afc;p=libfirm diff --git a/ir/be/bechordal.h b/ir/be/bechordal.h index 695a7c863..fa94cdb2c 100644 --- a/ir/be/bechordal.h +++ b/ir/be/bechordal.h @@ -1,16 +1,39 @@ +/* + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. + */ /** - * Chordal register allocation. - * @author Sebastian Hack - * @date 14.12.2004 + * @file + * @brief Chordal register allocation. + * @author Sebastian Hack + * @date 14.12.2004 */ +#ifndef FIRM_BE_BECHORDAL_H +#define FIRM_BE_BECHORDAL_H -#ifndef __BECHORDAL_H -#define __BECHORDAL_H +typedef struct be_chordal_env_t be_chordal_env_t; +typedef struct be_ra_chordal_opts_t be_ra_chordal_opts_t; +typedef struct border_t border_t; -#include "bearch_t.h" -#include "bera.h" +typedef struct be_ra_chordal_coloring_t { + void (*allocate)(be_chordal_env_t *env); +} be_ra_chordal_coloring_t; -typedef struct be_chordal_env_t be_chordal_env_t; +void be_register_chordal_coloring(const char *name, be_ra_chordal_coloring_t *coloring); -#endif +#endif /* FIRM_BE_BECHORDAL_H */