fixed warning
[libfirm] / ir / be / ia32 / ia32_nodes_attr.h
1 #ifndef _IA32_NODES_ATTR_H_
2 #define _IA32_NODES_ATTR_H_
3
4 #include "firm_config.h"
5
6 #include <obstack.h>
7
8 #include "firm_types.h"
9 #include "../bearch.h"
10
11 typedef enum { flavour_Div = 1, flavour_Mod, flavour_DivMod } ia32_op_flavour_t;
12 typedef enum { pn_EAX, pn_EDX } pn_ia32_Register;
13
14 typedef enum {
15         ia32_Normal,
16         ia32_Const,
17         ia32_SymConst,
18         ia32_AddrModeD,
19         ia32_AddrModeS
20 } ia32_op_type_t;
21
22 typedef enum {
23         ia32_ImmNone,
24         ia32_ImmConst,
25         ia32_ImmSymConst
26 } ia32_immop_type_t;
27
28 typedef enum {
29         ia32_am_None   = 0,   /**<< no addrmode support */
30         ia32_am_Dest   = 1,   /**<< addrmode for destination only */
31         ia32_am_Source = 2,   /**<< addrmode for source only */
32         ia32_am_Full   = 3    /**<< full addmode support */
33 } ia32_am_type_t;
34
35 /**
36  * Different AM types:
37  * O - Offset is set
38  * B - Base is set
39  * I - Index is set
40  * S - Scale is set
41  */
42
43 enum {
44         ia32_O = (1 << 0),
45         ia32_B = (1 << 1),
46         ia32_I = (1 << 2),
47         ia32_S = (1 << 3)
48 };
49
50 typedef enum {
51         ia32_am_N    = 0,
52         ia32_am_O    = ia32_O,
53         ia32_am_B    = ia32_B,
54         ia32_am_I    = ia32_I,
55         ia32_am_IS   = ia32_I | ia32_S,
56         ia32_am_BI   = ia32_B | ia32_I,
57         ia32_am_OB   = ia32_O | ia32_B,
58         ia32_am_OI   = ia32_O | ia32_I,
59         ia32_am_OIS  = ia32_O | ia32_I | ia32_S,
60         ia32_am_OBIS = ia32_O | ia32_B | ia32_I | ia32_S
61 } ia32_am_flavour_t;
62
63 typedef struct _ia32_register_req_t {
64         const arch_register_req_t req;
65         int same_pos;        /**< in case of "should be same" we need to remember the pos to get the irn */
66         int different_pos;   /**< in case of "should be different" we need to remember the pos to get the irn */
67 } ia32_register_req_t;
68
69 typedef struct _ia32_attr_t {
70         struct {
71                 unsigned tp:3;              /**< ia32 node type */
72                 unsigned imm_tp:2;          /**< ia32 immop type */
73
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
80                 unsigned use_frame:1;       /**< indicates whether the operation uses the frame pointer or not */
81
82                 unsigned op_flav:2;         /**< flavour of an op (flavour_Div/Mod/DivMod) */
83
84                 unsigned flags:4;           /**< indicating if spillable and/or rematerializeable */
85
86                 unsigned is_commutative:1;  /**< indicates whether op is commutative or not */
87
88                 unsigned n_res:10;          /**< number of results produced by this node */
89         } data;
90
91         struct obstack *am_offs;    /**< offsets for AddrMode */
92
93         union {
94                 tarval *tv;     /**< tarval for immediate operations */
95                 ident  *sc;     /**< the symconst ident */
96         } cnst_val;
97
98         ident *cnst;        /**< points to the string representation of the constant value (either tv or sc) */
99
100         ir_mode *ls_mode;   /**< the mode of the stored/loaded value */
101         ir_mode *res_mode;  /**< the mode of the result */
102
103         entity *frame_ent;  /**< the frame entity attached to this node */
104
105         long pn_code;       /**< projnum "types" (e.g. indicate compare operators and argument numbers) */
106
107 #ifndef NDEBUG
108         const char *orig_node;      /**< holds the name of the original ir node for debugging purposes */
109 #endif /* NDEBUG */
110
111         const ia32_register_req_t **in_req;  /**< register requirements for arguments */
112         const ia32_register_req_t **out_req; /**< register requirements for results */
113
114         const arch_register_t **slots;       /**< register slots for assigned registers */
115         const arch_register_t *x87[3];       /**< register slots for x87 register */
116 } ia32_attr_t;
117
118 #endif /* _IA32_NODES_ATTR_H_ */