X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Fircons_t.h;h=1d18668a717e6acf25b57c543eaceec3e1953965;hb=fad022b108892a74b02bef7dfb13315caef5a3fc;hp=22c6ea3683d452f64a5c5c690c3096af175f442c;hpb=db44b33a0812306bc02d27a63290c96511bfb567;p=libfirm diff --git a/ir/ir/ircons_t.h b/ir/ir/ircons_t.h index 22c6ea368..1d18668a7 100644 --- a/ir/ir/ircons_t.h +++ b/ir/ir/ircons_t.h @@ -1,42 +1,64 @@ /* - * 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-2007 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. */ -#ifndef _IRCONS_T_H_ -#define _IRCONS_T_H_ + +/** + * @file + * @brief Various irnode constructors. Automatic construction + * of SSA representation. Private Header + * @author Martin Trapp, Christian Schaefer, Michael Beck + * @version $Id$ + */ +#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. * - * @param func @see uninitialized_local_variable_func_t + * @param func callback that is called if a uninitialized + * variable is detected + * + * @see uninitialized_local_variable_func_t */ 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->bad; + return get_irg_bad(current_ir_graph); } static INLINE ir_node * _new_d_NoMem(void) { - return current_ir_graph->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