60941f9cd5fcf2215d9e8532549b5bd9e3ac55c8
[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  * @brief
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 typedef enum {
65         ir_typeinfo_none,        /**< No typeinfo computed, calls to set/get_irn_typeinfo_type()
66                                       are invalid. */
67         ir_typeinfo_consistent,  /**< Type info valid, calls to set/get_irn_typeinfo_type() return
68                                       the proper type. */
69         ir_typeinfo_inconsistent /**< Type info can be accessed, but it can be invalid
70                                       because of other transformations. */
71 } ir_typeinfo_state;
72
73 void              set_irg_typeinfo_state(ir_graph *irg, ir_typeinfo_state s);
74 ir_typeinfo_state get_irg_typeinfo_state(const ir_graph *irg);
75
76 /** Returns accumulated type information state information.
77  *
78  * Returns ir_typeinfo_consistent if the type information of all irgs is
79  * consistent.  Returns ir_typeinfo_inconsistent if at least one irg has inconsistent
80  * or no type information.  Returns ir_typeinfo_none if no irg contains type information.
81  */
82 ir_typeinfo_state get_irp_typeinfo_state(void);
83 void              set_irp_typeinfo_state(ir_typeinfo_state s);
84 /** If typeinfo is consistent, sets it to inconsistent. */
85 void              set_irp_typeinfo_inconsistent(void);
86
87 /* ------------ Irnode type information. ------------------------------ */
88
89 /** Accessing the type information.
90  *
91  * These routines only work properly if the ir_graph is in state
92  * ir_typeinfo_consistent or ir_typeinfo_inconsistent.  They
93  * assume current_ir_graph set properly.
94  */
95 ir_type *get_irn_typeinfo_type(const ir_node *n);
96 void    set_irn_typeinfo_type(ir_node *n, ir_type *tp);
97
98 #endif