- Split bearch.h correctly into bearch.h and bearch_t.h
[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_t.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 enum {
69         ia32_pn_Cmp_Unsigned = 0x100 /**< set this flag in a pnc to indicate an unsigned compare operation */
70 };
71
72 typedef struct _ia32_attr_t {
73         struct {
74                 unsigned tp:3;              /**< ia32 node type */
75                 unsigned imm_tp:2;          /**< ia32 immop type */
76                 unsigned am_support:2;      /**< indicates addrmode type supported by this node */
77                 unsigned am_flavour:4;      /**< the concrete addrmode characteristics */
78                 unsigned am_scale:2;        /**< addrmode scale for index register */
79
80                 unsigned offs_sign:1;       /**< sign bit of the first offset */
81                 unsigned am_sc_sign:1;      /**< sign bit of the address mode symconst */
82
83                 unsigned use_frame:1;       /**< indicates whether the operation uses the frame pointer or not */
84
85                 ia32_op_flavour_t op_flav:2;/**< flavour of an op (flavour_Div/Mod/DivMod) */
86
87                 unsigned flags:4;           /**< indicating if spillable, rematerializeable, stack modifying and/or ignore */
88
89                 unsigned is_commutative:1;  /**< indicates whether op is commutative or not */
90
91                 unsigned emit_cl:1;         /**< indicates whether we must emit cl instead of ecx (needed for shifts) */
92
93                 unsigned got_lea:1;         /**< indicates whether or not this node already consumed a LEA */
94
95                 unsigned need_stackent:1;   /**< set to 1 if node need space on stack */
96
97                 unsigned n_res:6;           /**< number of results produced by this node */
98         } data;
99
100         int       *out_flags;     /**< flags for each produced value */
101
102         int        am_offs;       /**< offsets for AddrMode */
103         ir_entity *am_sc;         /**< SymConst for AddrMode */
104
105         union {
106                 tarval    *tv;        /**< tarval for immediate operations */
107                 ir_entity *sc;        /**< the symconst ident */
108         } cnst_val;
109
110         ir_mode *ls_mode;     /**< Load/Store mode: This is the mode of the value
111                                    that is manipulated by this node. */
112
113         ir_entity *frame_ent; /**< the frame entity attached to this node */
114
115         long pn_code;       /**< projnum "types" (e.g. indicate compare operators and argument numbers for switches) */
116
117         unsigned latency;   /**< the latency of the instruction in clock cycles */
118
119 #ifndef NDEBUG
120         const char *orig_node;      /**< holds the name of the original ir node for debugging purposes */
121 #endif /* NDEBUG */
122
123         const be_execution_unit_t ***exec_units; /**< list of units this operation can be executed on */
124
125         const arch_register_req_t **in_req;  /**< register requirements for arguments */
126         const arch_register_req_t **out_req; /**< register requirements for results */
127
128         const arch_register_t *x87[3];       /**< register slots for x87 register */
129
130         /* must be last, dynamic */
131         const arch_register_t *slots[1];     /**< register slots for assigned registers */
132 } ia32_attr_t;
133
134 #endif /* _IA32_NODES_ATTR_H_ */