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