added after_ra hook
[libfirm] / ir / be / ia32 / ia32_nodes_attr.h
1 #ifndef _IA32_NODES_ATTR_H_
2 #define _IA32_NODES_ATTR_H_
3
4 #include <obstack.h>
5
6 #include "firm_types.h"
7 #include "../bearch.h"
8
9 typedef enum { flavour_Div = 1, flavour_Mod, flavour_DivMod } ia32_op_flavour_t;
10 typedef enum { pn_EAX, pn_EDX } pn_ia32_Register;
11 typedef enum { ia32_Normal, ia32_Const, ia32_SymConst, ia32_AddrModeD, ia32_AddrModeS } ia32_op_type_t;
12 typedef enum {
13         ia32_am_None   = 0,   /**<< no addrmode support */
14         ia32_am_Dest   = 1,   /**<< addrmode for destination only */
15         ia32_am_Source = 2,   /**<< addrmode for source only */
16         ia32_am_Full   = 3    /**<< full addmode support */
17 } ia32_am_type_t;
18
19 /**
20  * Different AM types:
21  * O - Offset is set
22  * B - Base is set
23  * I - Index is set
24  * S - Scale is set
25  */
26
27 enum {
28         ia32_O = (1 << 0),
29         ia32_B = (1 << 1),
30         ia32_I = (1 << 2),
31         ia32_S = (1 << 3)
32 };
33
34 typedef enum {
35         ia32_am_N    = 0,
36         ia32_am_O    = ia32_O,
37         ia32_am_B    = ia32_B,
38         ia32_am_I    = ia32_I,
39         ia32_am_IS   = ia32_I | ia32_S,
40         ia32_am_OB   = ia32_O | ia32_B,
41         ia32_am_OI   = ia32_O | ia32_I,
42         ia32_am_OIS  = ia32_O | ia32_I | ia32_S,
43         ia32_am_OBIS = ia32_O | ia32_B | ia32_I | ia32_S
44 } ia32_am_flavour_t;
45
46 typedef struct _ia32_register_req_t {
47         const arch_register_req_t req;
48         int same_pos;        /**< in case of "should be same" we need to remember the pos to get the irn */
49         int different_pos;   /**< in case of "should be different" we need to remember the pos to get the irn */
50 } ia32_register_req_t;
51
52 typedef struct _ia32_attr_t {
53         struct {
54                 unsigned tp:3;              /**< ia32 node type */
55
56                 unsigned am_support:2;      /**< indicates addrmode type supported by this node */
57                 unsigned am_flavour:4;      /**< the concrete addrmode characteristics */
58                 unsigned am_scale:2;        /**< addrmode scale for index register */
59
60                 unsigned offs_sign:1;       /**< sign bit of the first offset */
61
62                 unsigned use_frame:1;       /**< indicates whether the operation uses the frame pointer or not */
63
64                 unsigned op_flav:2;         /**< flavour of an op (flavour_Div/Mod/DivMod) */
65
66                 unsigned flags:4;           /**< indicating if spillable and/or rematerializeable */
67
68                 unsigned is_commutative:1;  /**< indicates whether op is commutative or not */
69
70                 unsigned n_res:10;          /**< number of results produced by this node */
71         } data;
72
73         struct obstack *am_offs;    /**< offsets for AddrMode */
74
75         tarval *tv;   /**< tarval for immediate operations */
76         char   *sc;   /**< symconst name */
77         char   *cnst; /**< points to the string representation of the constant value (either tv or sc) */
78
79         ir_mode *ls_mode;  /**< the mode of the stored/loaded value */
80
81         entity *frame_ent; /**< the frame entity attached to this node */
82
83         long pn_code;   /**< projnum "types" (e.g. indicate compare operators and argument numbers) */
84
85         const ia32_register_req_t **in_req;  /**< register requirements for arguments */
86         const ia32_register_req_t **out_req; /**< register requirements for results */
87
88         const arch_register_t **slots;          /**< register slots for assigned registers */
89 } ia32_attr_t;
90
91 #endif /* _IA32_NODES_ATTR_H_ */