0eac7eeddc672f6a25982b545c741aa3b56379c5
[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, flavour_Mul, flavour_Mulh } 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,
29         ia32_B = 2,
30         ia32_I = 4,
31         ia32_S = 8
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         ia32_op_type_t    tp;           /**<< ia32 node type */
54         ia32_am_type_t    am_support;   /**<< indicates addrmode type supported by this node */
55         ia32_am_flavour_t am_flavour;   /**<< the concrete addrmode characteristics */
56
57         struct obstack *am_offs;  /**<< offsets for AddrMode */
58         int             am_scale; /**<< addrmode scale for index register */
59
60         tarval *tv;   /**<< tarval for immediate operations */
61         char   *sc;   /**<< symconst name */
62         char   *cnst; /**<< points to the string representation of the constant value (either tv or sc) */
63
64         ia32_op_flavour_t op_flav;   /**<< flavour of an op (flavour_Div/Mod/DivMod/Mul/Mulh) */
65         long              pn_code;   /**<< projnum "types" (e.g. indicate compare operators and argument numbers) */
66         long              n_res;     /**<< number of results */
67         arch_irn_flags_t  flags;     /**<< indicating if spillable and/or rematerializeable */
68
69         const ia32_register_req_t **in_req;  /**<< register requirements for arguments */
70         const ia32_register_req_t **out_req; /**<< register requirements for results */
71
72         const arch_register_t **slots;          /**<< register slots for assigned registers */
73 } ia32_attr_t;
74
75 #endif /* _IA32_NODES_ATTR_H_ */