- constify
[libfirm] / include / libfirm / irtypeinfo.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    Data structure to hold type information for nodes.
23  * @author   Goetz Lindenmaier
24  * @date     28.8.2003
25  * @version  $Id$
26  * @summary
27  *   Data structure to hold type information for nodes.
28  *
29  *   This module defines a field "type" of type "type *" for each ir node.
30  *   It defines a flag for irgraphs to mark whether the type info of the
31  *   graph is valid.  Further it defines an auxiliary type "init_type".
32  */
33 #ifndef FIRM_ANA_IRTYPEINFO_H
34 #define FIRM_ANA_IRTYPEINFO_H
35
36 #include "firm_types.h"
37
38 /* ------------ Auxiliary type. --------------------------------------- */
39
40 /** An auxiliary type used to express that a field is uninitialized.
41  *
42  *  This auxiliary type expresses that a field is uninitialized.  The
43  *  variable is initialized by init_irtypeinfo().  The type is freed by
44  *  free_irtypeinfo().
45  */
46 extern ir_type *initial_type;
47
48
49
50 /* ------------ Initializing this module. ----------------------------- */
51
52 /** Initializes the type information module.
53  *
54  *  Initializes the type information module.
55  *  Generates a type inititial_type and sets the type of all nodes to this type.
56  *  Calling set/get_irn_typeinfo_type() is invalid before calling init. Requires memory
57  *  in the order of MIN(<calls to set_irn_typeinfo_type>, #irnodes).
58  */
59 void init_irtypeinfo(void);
60 void free_irtypeinfo(void);
61
62 /* ------------ Irgraph state handling. ------------------------------- */
63
64 /*
65 #define irg_typeinfo_none         ir_typeinfo_none
66 #define irg_typeinfo_consistent   ir_typeinfo_consistent
67 #define irg_typeinfo_inconsistent ir_typeinfo_inconsistent
68 #define irg_typeinfo_state        ir_typeinfo_state
69 */
70
71 typedef enum {
72   ir_typeinfo_none,         /**< No typeinfo computed, calls to set/get_irn_typeinfo_type()
73                                   are invalid. */
74   ir_typeinfo_consistent,   /**< Type info valid, calls to set/get_irn_typeinfo_type() return
75                                   the proper type. */
76   ir_typeinfo_inconsistent  /**< Type info can be accessed, but it can be invalid
77                                   because of other transformations. */
78 } ir_typeinfo_state;
79
80 void              set_irg_typeinfo_state(ir_graph *irg, ir_typeinfo_state s);
81 ir_typeinfo_state get_irg_typeinfo_state(const ir_graph *irg);
82
83 /** Returns accumulated type information state information.
84  *
85  * Returns ir_typeinfo_consistent if the type information of all irgs is
86  * consistent.  Returns ir_typeinfo_inconsistent if at least one irg has inconsistent
87  * or no type information.  Returns ir_typeinfo_none if no irg contains type information.
88  */
89 ir_typeinfo_state get_irp_typeinfo_state(void);
90 void              set_irp_typeinfo_state(ir_typeinfo_state s);
91 /** If typeinfo is consistent, sets it to inconsistent. */
92 void              set_irp_typeinfo_inconsistent(void);
93
94 /* ------------ Irnode type information. ------------------------------ */
95
96 /** Accessing the type information.
97  *
98  * These routines only work properly if the ir_graph is in state
99  * ir_typeinfo_consistent or ir_typeinfo_inconsistent.  They
100  * assume current_ir_graph set properly.
101  */
102 ir_type *get_irn_typeinfo_type(const ir_node *n);
103 void    set_irn_typeinfo_type(ir_node *n, ir_type *tp);
104
105 #endif