X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal.h;h=4cb739680513dd9bd70bbe5bdfa94c0c16b4d19f;hb=712cea35fe399ae20e3a33eb9bf81360b5000cf3;hp=c946a744e168b1df7738d290e668405819a7541d;hpb=165e48ff9dc8753e95565ddf6c58b3f128490406;p=libfirm diff --git a/ir/be/bechordal.h b/ir/be/bechordal.h index c946a744e..4cb739680 100644 --- a/ir/be/bechordal.h +++ b/ir/be/bechordal.h @@ -8,32 +8,14 @@ #ifndef __BECHORDAL_H #define __BECHORDAL_H -#include "irgraph.h" -#include "irnode.h" - #include "bearch.h" - -typedef struct _be_chordal_env_t be_chordal_env_t; +#include "bera.h" /** - * Allocate registers for an ir graph. - * @param irg The graph. - * @return Some internal data to be freed with be_ra_chordal_done(). + * The register allocator structure. */ -be_chordal_env_t *be_ra_chordal(ir_graph *irg, - const arch_env_t *arch_env, - const arch_register_class_t *cls); +extern const be_ra_t be_ra_chordal_allocator; -/** - * Free data from the chordal register allocation. - * @param irg The graph. - */ -void be_ra_chordal_done(be_chordal_env_t *info); - -/** - * Init some things for the chordal register allocator. - * This must be called before Firm is inited. - */ -void be_ra_chordal_init(void); +typedef struct _be_chordal_env_t be_chordal_env_t; #endif