type fixed
[libfirm] / ir / ir / irmode.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2  * All rights reserved.
3  */
4 /* $Id$ */
5
6 /**
7  * @file irmode.h
8  *    irmode -- Modes for ir operators
9  *
10  * @author Christian Schaefer, Matthias Heil
11  *
12  * This module specifies the modes that type the firm nodes.  It defines
13  * a datasturcture that describes a mode and implements constructors and
14  * access routines to this datastructure. Further it defines a set of
15  * predefined modes.
16  *
17  * SEE ALSO:
18  *    UKA tech report 1999-44 for more information about modes.
19  *
20  */
21 #ifndef _IRMODE_H_
22 #define _IRMODE_H_
23
24 #include "ident.h"
25
26 #ifndef _TARVAL_TYPEDEF_
27 #define _TARVAL_TYPEDEF_
28   typedef struct tarval tarval;
29 #endif
30
31 /**
32  * Contains relevant information about a mode.
33  *
34  * Neccessary information about a mode is stored in this struct
35  * which is used by the tarval module to perform calculations
36  * and comparisons of values of a such described mode.
37  *
38  * ATTRIBUTES:
39  *  -  modecode code:           An unambigous int (enum) for the mode
40  *  -  ident *name:             Name of this mode. Two modes are different if the name is different.
41  *  -  mode_sort sort:          sort of mode specifying possible usage kategories
42  *  -  int    size:             size of the mode in Bits.
43  *  -  int    align:            byte alignment
44  *  -  unsigned sign:1:         signedness of this mode
45  *  -  ... more to come
46  *
47  * SEE ALSO:
48  *    The tech report 1999-44 describing FIRM and predefined modes
49  *    tarval.h
50  */
51 typedef struct ir_mode ir_mode;
52
53 /* ********** Predefined modes ********** */
54
55 /**
56  * Predefined mode according to tech report 1999-14.
57  */
58 typedef enum { /* irm is short for `ir mode' */
59   irm_BB,                       /**< basic block */
60   irm_X,                        /**< execution */
61   irm_F,                        /**< float(32) */
62   irm_D,                        /**< double(64) */
63   irm_E,                        /**< extended(80) */
64   irm_Bs,                       /**< signed byte(8) */
65   irm_Bu,                       /**< unsigned byte(8) */
66   irm_Hs,                       /**< signed short(16) */
67   irm_Hu,                       /**< unsigned short(16) */
68   irm_Is,                       /**< signed int(32) */
69   irm_Iu,                       /**< unsigned int(32) */
70   irm_Ls,                       /**< signed long(64) */
71   irm_Lu,                       /**< unsigned long(64) */
72   irm_C,                        /**< character */
73   irm_P,                        /**< pointer */
74   irm_b,                        /**< internal boolean */
75   irm_M,                        /**< memory */
76   irm_T,                        /**< tuple */
77   irm_U,                        /**< unicode character */
78   irm_ANY,                      /**< undefined mode */
79   irm_BAD,                      /**< bad mode */
80   irm_max                       /**< maximum value for modecode */
81 } modecode;
82
83 /** These values represent the different mode classes of value representations.
84  */
85 typedef enum {
86   /* Predefined sorts of modes */
87   irms_auxiliary,         /**< Only for Firm use. Not extensible. (irm_T) */
88   irms_control_flow,       /**< Marks all control flow modes. Not extensible. (irm_BB, irm_X) */
89   irms_memory,             /**< Marks the memory mode.  Not extensible. (irm_M) */
90   irms_internal_boolean,  /**< Internal boolean representation.
91                                Storing to memory impossible, convert first. (irm_b) */
92                             /** user-extensible sorts of modes **/
93   irms_int_number,        /**< A mode to represent int numbers.
94                                Integer computations can be performed. */
95   irms_float_number,      /**< A mode to represent float numbers.
96                                Floating point computations can be performed. */
97   irms_reference,         /**< A mode to represent entities.
98                                Restricted int computations can be performed */
99   irms_character          /**< A mode to represent characters/symbols
100                                ?? Are computations allowed? as int?? */
101 } mode_sort;
102
103 /** These values represent the different arithmetic operations possible with a mode.
104     Further arithmetics can be defined, e.g., for @@@ modes.
105  */
106 typedef enum {
107   irma_uninitialized = 0,
108   irma_none = 1,              /**< For modes for which no representation is specified.
109                                    These are modes of sort auxiliary, internal_boolean and
110                                    character. */
111   irma_twos_complement = 2,   /**< Values of the mode are represented as two's complement.
112                                    Only legal for modes of sort int_number and reference. */
113   irma_ones_complement,       /**< Values of the mode are represented  as one's complement.
114                                    Only legal for modes of sort int_number and reference. */
115   irma_int_BCD,               /**< Values of the mode are represented as binary coded decimals.
116                                    Only legal for modes of sort int_number and reference. */
117   irma_ieee754 = 256,         /**< Values of the mode are represented according to ieee754
118                                    floatingpoint standard.  Only legal for modes of sort float_number. */
119   irma_float_BCD,             /**< Values of the mode are represented  as binary coded decimals
120                                    according to @@@ which standars??? Only legal for modes of
121                                    sort float_number. */
122   irma_max
123 } mode_arithmetic;
124
125
126 /* ********** Constructor for user defined modes **************** */
127 /**
128  * Creates a new mode.
129  *
130  * @param name          the name of the mode to be created
131  * @param sort          the mode_sort of the mode to be created
132  * @param bit_size      number of bits this mode allocate
133  * @param align         the byte alignment for an entity of this mode (in bits)
134  * @param sign          non-zero if this is a signed mode
135  * @param arithmetic    arithmetic operations possible with a mode
136  *
137  * This function constructs a new mode given by the parameters.
138  * If the parameters match an already defined mode, this mode is returned
139  * (including the default modes).
140  * If the mode is newly allocated, a new unique mode_code is choosen.
141  * Also, special value tarvals will be calculated such as null,
142  * min, max and can be retrieved using the get_mode_* fuctions
143  *
144  * @return
145  *      The new mode or NULL on error.
146  *
147  * @note
148  *      It is allowed to construct the default modes. So, a call
149  *      new_ir_mode("Is", irms_int_number, 32, 4, 1) will return mode_Is.
150  */
151 ir_mode *new_ir_mode(const char *name, mode_sort sort, int bit_size, int align, int sign, mode_arithmetic arithmetic);
152
153 /**
154  *   Checks whether a pointer points to a mode.
155  *
156  *   @param thing     an arbitrary pointer
157  *
158  *   @return
159  *       true if the thing is a mode, else false
160  */
161 int is_mode (void *thing);
162
163 /* ********** Access methods to read mode information *********** */
164
165 /** Returns the classification of the mode */
166 modecode get_mode_modecode(const ir_mode *mode);
167
168 /** Returns the ident* of the mode */
169 ident *get_mode_ident(const ir_mode *mode);
170
171 /** Returns the null-terminated name of this mode. */
172 const char *get_mode_name(const ir_mode *mode);
173
174 /** Returns a coarse classification of the mode. */
175 mode_sort get_mode_sort(const ir_mode *mode);
176
177 /** Returns the size of values of the mode in bits. */
178 int get_mode_size_bits(const ir_mode *mode);
179
180 /** Returns the size of values of the mode in bytes.  If the size is not
181     dividable by 8 returns -1. */
182 int get_mode_size_bytes(const ir_mode *mode);
183
184 /** Returns the alignment of values of the mode in bytes. */
185 int get_mode_align(const ir_mode *mode);
186
187 /** Returns the signess of a mode */
188 int get_mode_sign (const ir_mode *mode);
189
190 /** Returns the arithmetic of a mode */
191 int get_mode_arithmetic (const ir_mode *mode);
192
193 /** Returns the stored intermediate information. */
194 void* get_mode_link(const ir_mode *mode);
195
196 /** Stores new intermediate information. */
197 void set_mode_link(ir_mode *mode, void *l);
198
199 /**
200  * Returns the smallest representable value of a given mode.
201  *
202  * For modes of the sort float_number this is the most negative value
203  * bigger than -infinit.
204  */
205 tarval *get_mode_min(ir_mode *mode);
206
207 /**
208  * Returns the biggest representable value o f a given mode.
209  *
210  * For modes of the sort float_number this is the largest value lower
211  * than infinit.
212  */
213 tarval *get_mode_max(ir_mode *mode);
214
215 /**
216  * Returns the value Zero represented in this mode.
217  *
218  * Zero is the additive neutral element and as such
219  * is defined only for modes allowing addition, i.e.
220  * floats and ints, and references (NULL-Pointer)
221  * else returns tarval_bad.
222  */
223 tarval *get_mode_null(ir_mode *mode);
224
225 /**
226  * Returns the value One, represented in this mode.
227  *
228  * One, being the multiplicative neutral element,
229  * is defined only for modes allowing multiplication,
230  * i.e. ints and floats.
231  */
232 tarval *get_mode_one(ir_mode *mode);
233
234 /**
235  * Returns the positive infinite value of a mode.
236  *
237  * This is only valid for float_numbers, other modes
238  * will result in tarval_bad.
239  */
240 tarval *get_mode_infinite(ir_mode *mode);
241
242 /**
243  * Returns the NAN value of a given mode.
244  *
245  * This is only valid for float_numbers, other modes
246  * will result in tarval_bad.
247  */
248 tarval *get_mode_NAN(ir_mode *mode);
249
250 /* -- Auxiliary modes necessary for the Firm representation -- */
251 extern ir_mode *mode_T;  /**< tuple (none) */
252 extern ir_mode *mode_X;  /**< execution */
253 extern ir_mode *mode_M;  /**< memory */
254 extern ir_mode *mode_BB; /**< block */
255
256 /* -- A set of predifined, numerical modes according to Techreport 1999-44 -- */
257 extern ir_mode *mode_F;  /**< signed float(32) */
258 extern ir_mode *mode_D;  /**< signed double(64) */
259 extern ir_mode *mode_E;  /**< signed extended(80) */
260 extern ir_mode *mode_Bs; /**< signed byte (former char) */
261 extern ir_mode *mode_Bu; /**< unsigned byte (former char) */
262 extern ir_mode *mode_Hs; /**< signed short integer */
263 extern ir_mode *mode_Hu; /**< unsigened short integer */
264 extern ir_mode *mode_Is; /**< signed integer */
265 extern ir_mode *mode_Iu; /**< unsigned integer */
266 extern ir_mode *mode_Ls; /**< signed long integer */
267 extern ir_mode *mode_Lu; /**< unsigned long integer */
268
269 extern ir_mode *mode_b;  /**< internal boolean */
270 extern ir_mode *mode_C;  /**< 8 bit char */
271 extern ir_mode *mode_U;  /**< 16 bit unicode char */
272 extern ir_mode *mode_P;  /**< pointer */
273
274 extern ir_mode *mode_ANY;/**< undefined mode */
275 extern ir_mode *mode_BAD;/**< bad mode */
276
277 /*@{*/
278 /** Access routines for JNI Interface */
279 ir_mode *get_modeT(void);
280 ir_mode *get_modeF(void);
281 ir_mode *get_modeD(void);
282 ir_mode *get_modeE(void);
283 ir_mode *get_modeBs(void);
284 ir_mode *get_modeBu(void);
285 ir_mode *get_modeHs(void);
286 ir_mode *get_modeHu(void);
287 ir_mode *get_modeIs(void);
288 ir_mode *get_modeIu(void);
289 ir_mode *get_modeLs(void);
290 ir_mode *get_modeLu(void);
291 ir_mode *get_modeC(void);
292 ir_mode *get_modeU(void);
293 ir_mode *get_modeP(void);
294 ir_mode *get_modeb(void);
295 ir_mode *get_modeX(void);
296 ir_mode *get_modeM(void);
297 ir_mode *get_modeBB(void);
298 ir_mode *get_modeANY(void);
299 ir_mode *get_modeBAD(void);
300
301 /**
302    Functions to check, whether a modecode is signed, float, int, num, data,
303    datab or dataM.
304
305    For more exact definitions read the corresponding pages
306    in the firm documentation or the following enumeration
307
308    The set of "float" is defined as:
309    float = {irm_F, irm_D, irm_E}
310
311    The set of "int" is defined as:
312    int   = {irm_Bs, irm_Bu, irm_Hs, irm_Hu, irm_Is, irm_Iu, irm_Ls, irm_Lu}
313
314    The set of "num" is defined as:
315    num   = {irm_F, irm_D, irm_E, irm_Bs, irm_Bu, irm_Hs, irm_Hu,
316             irm_Is, irm_Iu, irm_Ls, irm_Lu}
317             = {float || int}
318
319    The set of "data" is defined as:
320    data  = {irm_F, irm_D, irm_E irm_Bs, irm_Bu, irm_Hs, irm_Hu,
321             irm_Is, irm_Iu, irm_Ls, irm_Lu, irm_C, irm_U, irm_P}
322             = {num || irm_C || irm_P}
323
324    The set of "datab" is defined as:
325    datab = {irm_F, irm_D, irm_E, irm_Bs, irm_Bu, irm_Hs, irm_Hu,
326             irm_Is, irm_Iu, irm_Ls, irm_Lu, irm_C, irm_U, irm_P, irm_b}
327             = {data || irm_b }
328
329    The set of "dataM" is defined as:
330    dataM = {irm_F, irm_D, irm_E, irm_Bs, irm_Bu, irm_Hs, irm_Hu,
331             irm_Is, irm_Iu, irm_Ls, irm_Lu, irm_C, irm_U, irm_P, irm_M}
332             = {data || irm_M}
333 */
334 /*@}*/
335 /* Test for a certain class of modes. */
336 int mode_is_signed (const ir_mode *mode);
337 int mode_is_float (const ir_mode *mode);
338 int mode_is_int (const ir_mode *mode);
339 int mode_is_character (const ir_mode *mode);
340 int mode_is_reference (const ir_mode *mode);
341 int mode_is_num (const ir_mode *mode);
342 int mode_is_data (const ir_mode *mode);
343 int mode_is_datab (const ir_mode *mode);
344 int mode_is_dataM (const ir_mode *mode);
345
346 /** Returns true if sm can be converted to lm without loss
347    according to firm definiton */
348 int smaller_mode(const ir_mode *sm, const ir_mode *lm);
349
350 /** mode module initialization, call once before use of any other function **/
351 void init_mode (void);
352
353 #endif /* _IRMODE_H_ */