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