X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Fircons_t.h;h=4a7a8b88921287d58cac1100b77298a9441529b9;hb=8f355cb9b3d20c10f71d1b1e17cbf59a51ced83b;hp=99953652ac8924c8a35fd8a4082623533ee620c3;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/ir/ir/ircons_t.h b/ir/ir/ircons_t.h index 99953652a..4a7a8b889 100644 --- a/ir/ir/ircons_t.h +++ b/ir/ir/ircons_t.h @@ -1,20 +1,34 @@ /* - * Project: libFIRM - * File name: ir/ir/ircons_t.h - * Purpose: Various irnode constructors. Automatic construction - * of SSA representation. - * Author: Martin Trapp, Christian Schaefer - * Modified by: Michael Beck - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2003 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * 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. + */ + +/** + * @file + * @brief Various irnode constructors. Automatic construction + * of SSA representation. Private Header + * @author Martin Trapp, Christian Schaefer, Michael Beck + * @version $Id$ */ -#ifndef _IRCONS_T_H_ -#define _IRCONS_T_H_ +#ifndef FIRM_IR_IRCONS_T_H +#define FIRM_IR_IRCONS_T_H #include "ircons.h" -# include "irgraph_t.h" +#include "irgraph_t.h" /** * Initializes the graph construction. @@ -26,20 +40,25 @@ */ void init_cons(uninitialized_local_variable_func_t *func); +/** + * Creates a new Anchor node. + */ +ir_node *new_Anchor(ir_graph *irg); + /* inline functions */ static INLINE ir_node * _new_d_Bad(void) { - return current_ir_graph->anchors[anchor_bad]; + return get_irg_bad(current_ir_graph); } static INLINE ir_node * _new_d_NoMem(void) { - return current_ir_graph->anchors[anchor_no_mem]; + return get_irg_no_mem(current_ir_graph); } #define new_d_Bad() _new_d_Bad() #define new_d_NoMem() _new_d_NoMem() -#endif /* _IRCONS_T_H_ */ +#endif