tv: Remove mul_table[][][] and simply use * and <<.
[libfirm] / ir / be / bechordal.h
index b30b770..fa94cdb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * 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 */