1e8b0265d18cf500a2ce0ade32eab182ca2c6767
[libfirm] / ir / be / ia32 / ia32_nodes_attr.h
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Type definitions for ia32 node attributes.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_IA32_IA32_NODES_ATTR_H
27 #define FIRM_BE_IA32_IA32_NODES_ATTR_H
28
29 #include "firm_config.h"
30
31 #include "firm_types.h"
32 #include "../bearch_t.h"
33 #include "../bemachine.h"
34
35 typedef enum { flavour_Div = 1, flavour_Mod, flavour_DivMod } ia32_op_flavour_t;
36 typedef enum { pn_EAX, pn_EDX } pn_ia32_Register;
37
38 typedef enum {
39         ia32_Normal,
40         ia32_AddrModeD,
41         ia32_AddrModeS
42 } ia32_op_type_t;
43
44 typedef enum {
45         ia32_ImmNone     = 0,
46         ia32_ImmConst    = 1,
47         ia32_ImmSymConst = 2
48 } ia32_immop_type_t;
49
50 typedef enum {
51         ia32_am_None   = 0,   /**<< no addrmode support */
52         ia32_am_Dest   = 1,   /**<< addrmode for destination only */
53         ia32_am_Source = 2,   /**<< addrmode for source only */
54         ia32_am_Full   = 3    /**<< full addmode support */
55 } ia32_am_type_t;
56
57 /**
58  * Different Address Mode properties:
59  * O - Offset is set
60  * B - Base is set
61  * I - Index is set
62  * S - Scale is set
63  */
64 enum {
65         ia32_O = (1 << 0),  /**< O - Offset is set */
66         ia32_B = (1 << 1),  /**< B - Base is set */
67         ia32_I = (1 << 2),  /**< I - Index is set */
68         ia32_S = (1 << 3)   /**< S - Scale is set */
69 };
70
71 /** Possible Address mode types */
72 typedef enum {
73         ia32_am_N    = 0,
74         ia32_am_O    = ia32_O,
75         ia32_am_B    = ia32_B,
76         ia32_am_I    = ia32_I,
77         ia32_am_IS   = ia32_I | ia32_S,
78         ia32_am_BI   = ia32_B | ia32_I,
79         ia32_am_OB   = ia32_O | ia32_B,
80         ia32_am_OIS  = ia32_O | ia32_I | ia32_S,
81         ia32_am_OBIS = ia32_O | ia32_B | ia32_I | ia32_S
82 } ia32_am_flavour_t;
83
84 enum {
85         ia32_pn_Cmp_Unsigned = 0x100 /**< set this flag in a pnc to indicate an unsigned compare operation */
86 };
87
88 typedef struct ia32_attr_t ia32_attr_t;
89 struct ia32_attr_t {
90         struct {
91                 unsigned tp:3;              /**< ia32 node type. */
92                 unsigned imm_tp:2;          /**< ia32 immop type. */
93                 unsigned am_support:2;      /**< Indicates the address mode type supported by this node. */
94                 unsigned am_flavour:4;      /**< The concrete address mode characteristics. */
95                 unsigned am_scale:2;        /**< The address mode scale for index register. */
96                 unsigned am_sc_sign:1;      /**< The sign bit of the address mode symconst. */
97
98                 unsigned use_frame:1;       /**< Indicates whether the operation uses the frame pointer or not. */
99                 unsigned except_label:1;    /**< Set if this node needs a label because of posiible exception. */
100
101                 ia32_op_flavour_t op_flav:2;/**< Flavour of an op (flavour_Div/Mod/DivMod). */
102
103                 unsigned flags:4;           /**< Indicating if spillable, rematerializeable, stack modifying and/or ignore. */
104
105                 unsigned is_commutative:1;  /**< Indicates whether op is commutative or not. */
106
107                 unsigned emit_cl:1;         /**< Indicates whether we must emit cl instead of ecx (needed for shifts). */
108
109                 unsigned got_lea:1;         /**< Indicates whether or not this node already consumed a LEA. */
110
111                 unsigned need_stackent:1;   /**< Set to 1 if node need space on stack. */
112
113                 unsigned n_res:6;           /**< Number of results produced by this node. */
114         } data;
115
116         int       *out_flags;     /**< flags for each produced value */
117
118         int        am_offs;       /**< offsets for AddrMode */
119         ir_entity *am_sc;         /**< SymConst for AddrMode */
120
121         union {
122                 tarval    *tv;        /**< tarval for immediate operations */
123                 ir_entity *sc;        /**< the symconst ident */
124                 ident     *asm_text;  /**< used by asm node */
125         } cnst_val;
126
127         ir_mode *ls_mode;     /**< Load/Store mode: This is the mode of the value
128                                    that is manipulated by this node. */
129
130         ir_entity *frame_ent; /**< the frame entity attached to this node */
131
132         long pn_code;       /**< projnum "types" (e.g. indicate compare operators and argument numbers for switches) */
133
134         unsigned latency;   /**< the latency of the instruction in clock cycles */
135
136 #ifndef NDEBUG
137         const char *orig_node;      /**< holds the name of the original ir node for debugging purposes */
138 #endif /* NDEBUG */
139
140         const be_execution_unit_t ***exec_units; /**< list of units this operation can be executed on */
141
142         const arch_register_req_t **in_req;  /**< register requirements for arguments */
143         const arch_register_req_t **out_req; /**< register requirements for results */
144
145         const arch_register_t *x87[3];       /**< register slots for x87 register */
146
147         /* must be last, dynamic */
148         const arch_register_t *slots[1];     /**< register slots for assigned registers */
149 };
150
151 #endif /* FIRM_BE_IA32_IA32_NODES_ATTR_H */