new attributes added
[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 typedef enum {
27         ia32_am_N = 0, ia32_am_O, ia32_am_B, ia32_am_I, ia32_am_IS, ia32_am_OB, ia32_am_OI, ia32_am_OIS, ia32_am_OBIS
28 } ia32_am_flavour_t;
29
30 typedef struct _ia32_register_req_t {
31         const arch_register_req_t req;
32         int pos;   /**<< in case of "should be same/different" we need to remember the pos to get the irn */
33 } ia32_register_req_t;
34
35 typedef struct _ia32_attr_t {
36         ia32_op_type_t    tp;           /**<< ia32 node type */
37         ia32_am_type_t    am_support;   /**<< indicates addrmode type supported by this node */
38         ia32_am_flavour_t am_flavour;   /**<< the concrete addrmode characteristics */
39
40         struct obstack *am_offs;  /**<< offsets for AddrMode */
41         int             am_scale; /**<< addrmode scale for index register */
42
43         tarval *tv;   /**<< tarval for immediate operations */
44         char   *sc;   /**<< symconst name */
45         char   *cnst; /**<< points to the string representation of the constant value (either tv or sc) */
46
47         ia32_op_flavour_t op_flav;   /**<< flavour of an op (flavour_Div/Mod/DivMod/Mul/Mulh) */
48         long              pn_code;   /**<< projnum "types" (e.g. indicate compare operators and argument numbers) */
49         long              n_res;     /**<< number of results */
50         arch_irn_flags_t  flags;     /**<< indicating if spillable and/or rematerializeable */
51
52         const ia32_register_req_t **in_req;  /**<< register requirements for arguments */
53         const ia32_register_req_t **out_req; /**<< register requirements for results */
54
55         const arch_register_t **slots;          /**<< register slots for assigned registers */
56 } ia32_attr_t;
57
58 #endif /* _IA32_NODES_ATTR_H_ */