6a9e0460b092fe7f9c8907c72277bef32ee357c9
[libfirm] / ir / be / ia32 / ia32_nodes_attr.h
1 /**
2  * Type definitions for ia32 node attributes.
3  * @author Christian Wuerdig
4  * $Id$
5  */
6
7 #ifndef _IA32_NODES_ATTR_H_
8 #define _IA32_NODES_ATTR_H_
9
10 #include "firm_config.h"
11
12 #include <obstack.h>
13
14 #include "firm_types.h"
15 #include "../bearch.h"
16 #include "../bemachine.h"
17
18 typedef enum { flavour_Div = 1, flavour_Mod, flavour_DivMod } ia32_op_flavour_t;
19 typedef enum { pn_EAX, pn_EDX } pn_ia32_Register;
20
21 typedef enum {
22         ia32_Normal,
23         ia32_Const,
24         ia32_SymConst,
25         ia32_AddrModeD,
26         ia32_AddrModeS
27 } ia32_op_type_t;
28
29 typedef enum {
30         ia32_ImmNone,
31         ia32_ImmConst,
32         ia32_ImmSymConst
33 } ia32_immop_type_t;
34
35 typedef enum {
36         ia32_am_None   = 0,   /**<< no addrmode support */
37         ia32_am_Dest   = 1,   /**<< addrmode for destination only */
38         ia32_am_Source = 2,   /**<< addrmode for source only */
39         ia32_am_Full   = 3    /**<< full addmode support */
40 } ia32_am_type_t;
41
42 /**
43  * Different AM types:
44  * O - Offset is set
45  * B - Base is set
46  * I - Index is set
47  * S - Scale is set
48  */
49
50 enum {
51         ia32_O = (1 << 0),
52         ia32_B = (1 << 1),
53         ia32_I = (1 << 2),
54         ia32_S = (1 << 3)
55 };
56
57 typedef enum {
58         ia32_am_N    = 0,
59         ia32_am_O    = ia32_O,
60         ia32_am_B    = ia32_B,
61         ia32_am_I    = ia32_I,
62         ia32_am_IS   = ia32_I | ia32_S,
63         ia32_am_BI   = ia32_B | ia32_I,
64         ia32_am_OB   = ia32_O | ia32_B,
65         ia32_am_OI   = ia32_O | ia32_I,
66         ia32_am_OIS  = ia32_O | ia32_I | ia32_S,
67         ia32_am_OBIS = ia32_O | ia32_B | ia32_I | ia32_S
68 } ia32_am_flavour_t;
69
70 typedef struct _ia32_register_req_t {
71         const arch_register_req_t req;
72         int same_pos;        /**< in case of "should be same" we need to remember the pos to get the irn */
73         int different_pos;   /**< in case of "should be different" we need to remember the pos to get the irn */
74 } ia32_register_req_t;
75
76 typedef struct _ia32_attr_t {
77         struct {
78                 unsigned tp:3;              /**< ia32 node type */
79                 unsigned imm_tp:2;          /**< ia32 immop type */
80
81                 unsigned am_support:2;      /**< indicates addrmode type supported by this node */
82                 unsigned am_flavour:4;      /**< the concrete addrmode characteristics */
83                 unsigned am_scale:2;        /**< addrmode scale for index register */
84
85                 unsigned offs_sign:1;       /**< sign bit of the first offset */
86                 unsigned am_sc_sign:1;      /**< sign bit of the address mode symconst */
87
88                 unsigned use_frame:1;       /**< indicates whether the operation uses the frame pointer or not */
89
90                 unsigned op_flav:2;         /**< flavour of an op (flavour_Div/Mod/DivMod) */
91
92                 unsigned flags:4;           /**< indicating if spillable, rematerializeable, stack modifying and/or ignore */
93
94                 unsigned is_commutative:1;  /**< indicates whether op is commutative or not */
95
96                 unsigned emit_cl:1;         /**< indicates whether we must emit cl instead of ecx (needed for shifts) */
97
98                 unsigned got_lea:1;         /**< indicates whether or not this node already consumed a LEA */
99
100                 unsigned got_reload:1;      /**< set to 1 if node cosumed a reload */
101
102                 unsigned n_res:6;           /**< number of results produced by this node */
103         } data;
104
105         int *out_flags;     /**< flags for each produced value */
106
107         int   am_offs;      /**< offsets for AddrMode */
108         ident *am_sc;       /**< SymConst for AddrMode */
109
110         union {
111                 tarval *tv;     /**< tarval for immediate operations */
112                 ident  *sc;     /**< the symconst ident */
113         } cnst_val;
114
115         ident *cnst;        /**< points to the string representation of the constant value (either tv or sc) */
116
117         ir_mode *ls_mode;   /**< the mode of the stored/loaded value */
118         ir_mode *res_mode;  /**< the mode of the result */
119         ir_mode *src_mode;  /**< source mode for conversion */
120         ir_mode *tgt_mode;  /**< target mode for conversion */
121
122         ir_entity *frame_ent; /**< the frame entity attached to this node */
123
124         long pn_code;       /**< projnum "types" (e.g. indicate compare operators and argument numbers) */
125
126         unsigned latency;   /**< the latency of the instruction in clock cycles */
127
128 #ifndef NDEBUG
129         const char *orig_node;      /**< holds the name of the original ir node for debugging purposes */
130 #endif /* NDEBUG */
131
132         const be_execution_unit_t ***exec_units; /**< list of units this operation can be executed on */
133
134         const ia32_register_req_t **in_req;  /**< register requirements for arguments */
135         const ia32_register_req_t **out_req; /**< register requirements for results */
136
137         const arch_register_t *x87[3];       /**< register slots for x87 register */
138
139         /* must be last, dynamic */
140         const arch_register_t *slots[1];     /**< register slots for assigned registers */
141 } ia32_attr_t;
142
143 #endif /* _IA32_NODES_ATTR_H_ */