besched: Add and use sched_replace().
[libfirm] / ir / be / bera.h
index 126b260..573d9bb 100644 (file)
  * @brief       Base routines for register allocation.
  * @author      Sebastian Hack
  * @date        13.01.2005
- * @version     $Id$
  */
 #ifndef FIRM_BE_BERA_H
 #define FIRM_BE_BERA_H
 
-#include "irnode.h"
-
-#include "belive.h"
-#include "beirg.h"
+#include "firm_types.h"
 
 typedef struct be_ra_t {
-       void (*allocate)(be_irg_t *bi);   /**< allocate registers on a graph */
+       void (*allocate)(ir_graph *irg);   /**< allocate registers on a graph */
 } be_ra_t;
 
 void be_register_allocator(const char *name, be_ra_t *allocator);
@@ -41,6 +37,6 @@ void be_register_allocator(const char *name, be_ra_t *allocator);
 /**
  * Do register allocation with currently selected register allocator
  */
-void be_allocate_registers(be_irg_t *birg);
+void be_allocate_registers(ir_graph *irg);
 
 #endif