not needed
[libfirm] / ir / be / bessadestrsimple.h
1 /*
2  * Copyright (C) 1995-2007 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 #include "pset.h"
21
22 /**
23  * Insert copys to destruct SSA form and
24  * define variables (numbers) for all SSA-values.
25  * All values in a phi class get assigned the same variable name.
26  * The link field maps values to the var-name
27  *
28  * @return A set mapping SSA values to variables
29  */
30 set *be_ssa_destr_simple(ir_graph *irg, const arch_env_t *aenv);
31
32 void free_ssa_destr_simple(set *vars);
33
34 /**
35  * This struct maps a variable (nr) to the values belonging to this variable
36  */
37 typedef struct _be_var_info_t {
38         int var_nr;             /* the key */
39         pset *values;   /* the ssa-values belonging to this variable */
40 } be_var_info_t;
41
42 /**
43  * The link field of an irn points to the var_info struct
44  * representing the corresponding variable.
45  */
46 #define be_get_var_info(irn)                            ((be_var_info_t *)get_irn_link(irn))
47
48 #define SET_REMOVED -1
49
50 pset *be_get_var_values(set *vals, int var_nr);
51 be_var_info_t *be_var_add_value(set *vars, int var_nr, ir_node *irn);
52 be_var_info_t *be_var_find_or_insert(set *vars, int var_nr);
53 be_var_info_t *be_var_find(set *vars, int var_nr);