removed unused header
[libfirm] / ir / be / ppc32 / ppc32_new_nodes.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 #ifndef _PPC32_NEW_NODES_H_
21 #define _PPC32_NEW_NODES_H_
22
23 /**
24  * Function prototypes for the assembler ir node constructors.
25  * $Id$
26  */
27
28 #include "ppc32_nodes_attr.h"
29
30 /***************************************************************************************************
31  *        _   _                   _       __        _                    _   _               _
32  *       | | | |                 | |     / /       | |                  | | | |             | |
33  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
34  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
35  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
36  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
37  *                                        __/ |
38  *                                       |___/
39  ***************************************************************************************************/
40
41 /**
42  * Returns the attributes of an ppc node.
43  */
44 ppc32_attr_t *get_ppc32_attr(const ir_node *node);
45
46 /**
47  * Returns the argument register requirements of an ppc node.
48  */
49 const arch_register_req_t **get_ppc32_in_req_all(const ir_node *node);
50
51 /**
52  * Returns the result register requirements of an ppc node.
53  */
54 const arch_register_req_t **get_ppc32_out_req_all(const ir_node *node);
55
56 /**
57  * Returns the argument register requirements of an ppc node.
58  */
59 const arch_register_req_t *get_ppc32_in_req(const ir_node *node, int pos);
60
61 /**
62  * Returns the result register requirements of an ppc node.
63  */
64 const arch_register_req_t *get_ppc32_out_req(const ir_node *node, int pos);
65
66 /**
67  * Sets the OUT register requirements at position pos.
68  */
69 void set_ppc32_req_out(ir_node *node, const arch_register_req_t *req, int pos);
70
71 /**
72  * Sets the IN register requirements at position pos.
73  */
74 void set_ppc32_req_in(ir_node *node, const arch_register_req_t *req, int pos);
75
76 /**
77  * Returns the register flag of an ppc node.
78  */
79 arch_irn_flags_t get_ppc32_flags(const ir_node *node);
80
81 /**
82  * Sets the register flag of an ppc node.
83  */
84 void set_ppc32_flags(const ir_node *node, arch_irn_flags_t flags);
85
86 /**
87  * Returns the result register slots of an ppc node.
88  */
89 const arch_register_t **get_ppc32_slots(const ir_node *node);
90
91 /**
92  * Returns the name of the OUT register at position pos.
93  */
94 const char *get_ppc32_out_reg_name(const ir_node *node, int pos);
95
96 /**
97  * Returns the index of the OUT register at position pos within its register class.
98  */
99 int get_ppc32_out_regnr(const ir_node *node, int pos);
100
101 /**
102  * Returns the OUT register at position pos.
103  */
104 const arch_register_t *get_ppc32_out_reg(const ir_node *node, int pos);
105
106 /**
107  * Sets the number of results.
108  */
109 void set_ppc32_n_res(ir_node *node, int n_res);
110
111 /**
112  * Returns the number of results.
113  */
114 int get_ppc32_n_res(const ir_node *node);
115
116 ppc32_attr_content_type get_ppc32_type(const ir_node *node);
117
118 void set_ppc32_constant_tarval(const ir_node *node, tarval *const_tarval);
119 tarval *get_ppc32_constant_tarval(const ir_node *node);
120
121 void set_ppc32_symconst_ident(const ir_node *node, ident *symconst_ident);
122 ident *get_ppc32_symconst_ident(const ir_node *node);
123
124 void set_ppc32_frame_entity(const ir_node *node, ir_entity *ent);
125 ir_entity *get_ppc32_frame_entity(const ir_node *node);
126
127 void set_ppc32_rlwimi_const(const ir_node *node, unsigned shift, unsigned maskA, unsigned maskB);
128 rlwimi_const_t *get_ppc32_rlwimi_const(const ir_node *node);
129
130 void set_ppc32_proj_nr(const ir_node *node, int proj_nr);
131 int get_ppc32_proj_nr(const ir_node *node);
132
133 void set_ppc32_offset(const ir_node *node, int offset);
134 int get_ppc32_offset(const ir_node *node);
135
136 void set_ppc32_offset_mode(const ir_node *node, ppc32_attr_offset_mode mode);
137 ppc32_attr_offset_mode get_ppc32_offset_mode(const ir_node *node);
138
139 void init_ppc32_attributes(ir_node *node, int flags,
140                                                  const arch_register_req_t **in_reqs, const arch_register_req_t **out_reqs,
141                                                  const be_execution_unit_t ***execution_units,
142                                                  int n_res, unsigned latency);
143
144 void ppc32_register_additional_opcodes(int opcode_num);
145
146 /* Include the generated headers */
147 #include "gen_ppc32_new_nodes.h"
148
149 #endif /* _PPC32_NEW_NODES_H_ */