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