put register classes into arch_env struct, no need for complicated callbacks
[libfirm] / ir / be / beinfo.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       additional backend node infos
23  * @author      Matthias Braun
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_BEINFO_H
27 #define FIRM_BE_BEINFO_H
28
29 #include "be_types.h"
30 #include "irnode_t.h"
31
32 /**
33  * The schedule structure which is present at each ir node.
34  *
35  * Currently, only basic blocks are scheduled. The list head of
36  * every block schedule list is the Block list.
37  */
38 struct sched_info_t {
39         ir_node          *next;
40         ir_node          *prev;
41         sched_timestep_t  time_step;    /**< If a is after b in a schedule, its time step is larger than b's. */
42 };
43
44 struct reg_out_info_t {
45         const arch_register_t     *reg;
46         const arch_register_req_t *req;
47 };
48
49 struct backend_info_t {
50         sched_info_t                sched_info;
51         const arch_register_req_t **in_reqs;
52         reg_out_info_t             *out_infos;
53         arch_irn_flags_t            flags;
54 };
55
56 static inline backend_info_t *be_get_info(const ir_node *node)
57 {
58         return (backend_info_t*) node->backend_info;
59 }
60
61 void be_info_init(void);
62 void be_info_free(void);
63 void be_info_init_irg(ir_graph *irg);
64 void be_info_new_node(ir_node *node);
65 void be_info_duplicate(const ir_node *old_node, ir_node *new_node);
66 int be_info_initialized(const ir_graph *irg);
67
68 int be_nodes_equal(ir_node *node1, ir_node *node2);
69
70 #endif