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