X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbera.h;h=ee107fba561a51b3d926df76f634672e697db313;hb=226c238839ce84c2c310c8e7522838160c6f71af;hp=10658af589dc8fba66215cf08d89cbbe821506ec;hpb=0161c9599a7082e078193440aec516576b3764a8;p=libfirm diff --git a/ir/be/bera.h b/ir/be/bera.h index 10658af58..ee107fba5 100644 --- a/ir/be/bera.h +++ b/ir/be/bera.h @@ -1,20 +1,6 @@ /* - * 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. + * Copyright (C) 2012 University of Karlsruhe. */ /** @@ -22,18 +8,14 @@ * @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,8 +23,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); - -int (values_interfere)(const be_irg_t *birg, const ir_node *a, const ir_node *b); +void be_allocate_registers(ir_graph *irg); -#endif /* FIRM_BE_BERA_H */ +#endif