rename set_using_visited to set_using_irn_visited, some cosmetics, remove obsolete...
[libfirm] / ir / ir / ircons_t.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief     Various irnode constructors.  Automatic construction
23  *            of SSA representation. Private Header
24  * @author    Martin Trapp, Christian Schaefer, Michael Beck
25  * @version   $Id$
26  */
27 #ifndef FIRM_IR_IRCONS_T_H
28 #define FIRM_IR_IRCONS_T_H
29
30 #include "ircons.h"
31 #include "irgraph_t.h"
32
33 /**
34  * Initializes the graph construction.
35  *
36  * @param func  callback that is called if a uninitialized
37  *              variable is detected
38  *
39  * @see uninitialized_local_variable_func_t
40  */
41 void init_cons(uninitialized_local_variable_func_t *func);
42
43 /**
44  * Creates a new Anchor node.
45  */
46 ir_node *new_Anchor(ir_graph *irg);
47
48 /* inline functions */
49
50 static INLINE ir_node *
51 _new_d_Bad(void) {
52         return get_irg_bad(current_ir_graph);
53 }
54
55 static INLINE ir_node *
56 _new_d_NoMem(void) {
57         return get_irg_no_mem(current_ir_graph);
58 }
59
60
61 #define new_d_Bad()               _new_d_Bad()
62 #define new_d_NoMem()             _new_d_NoMem()
63
64 #endif