move backend into libfirm
[libfirm] / ir / ir / irmode.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irmode.h
4  * Purpose:     Data modes of operations.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Mathias Heil, Michael Beck
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2007 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 /**
14  * @file irmode.h
15  *    irmode -- Modes for ir operators
16  *
17  * @author Christian Schaefer, Matthias Heil
18  *
19  * This module specifies the modes that type the firm nodes.  It defines
20  * a datasturcture that describes a mode and implements constructors and
21  * access routines to this datastructure. Further it defines a set of
22  * predefined modes.
23  *
24  * SEE ALSO:
25  *    UKA tech report 1999-44 for more information about modes.
26  *
27  */
28
29 #ifndef _FIRM_IR_IRMODE_H_
30 #define _FIRM_IR_IRMODE_H_
31
32 #include "firm_types.h"
33 #include "ident.h"
34
35 /**
36  * Contains relevant information about a mode.
37  *
38  * Necessary information about a mode is stored in this struct
39  * which is used by the tarval module to perform calculations
40  * and comparisons of values of a such described mode.
41  *
42  * ATTRIBUTES:
43  *  -  modecode code:           An unambiguous int (enum) for the mode
44  *  -  ident *name:             Name of this mode. Two modes are different if the name is different.
45  *  -  mode_sort sort:          sort of mode specifying possible usage categories
46  *  -  int    size:             size of the mode in Bits.
47  *  -  unsigned sign:1:         signedness of this mode
48  *  -  ... more to come
49  *  -  modulo_shift             specifies for modes of kind irms_int_number
50  *                              whether shift applies modulo to value of bits to shift
51  *
52  * SEE ALSO:
53  *    The tech report 1999-44 describing FIRM and predefined modes
54  *    tarval.h
55  */
56 #ifndef _IR_MODE_TYPEDEF_
57 #define _IR_MODE_TYPEDEF_
58 typedef struct ir_mode ir_mode;
59 #endif
60
61 /* ********** Predefined modes ********** */
62
63 /**
64  * Predefined mode according to tech report 1999-14.
65  */
66 typedef enum { /* irm is short for `ir mode' */
67         irm_BB,                       /**< basic block */
68         irm_X,                        /**< execution */
69         irm_F,                        /**< float(32) */
70         irm_D,                        /**< double(64) */
71         irm_E,                        /**< extended(80) */
72         irm_Bs,                       /**< signed byte(8) */
73         irm_Bu,                       /**< unsigned byte(8) */
74         irm_Hs,                       /**< signed short(16) */
75         irm_Hu,                       /**< unsigned short(16) */
76         irm_Is,                       /**< signed int(32) */
77         irm_Iu,                       /**< unsigned int(32) */
78         irm_Ls,                       /**< signed long(64) */
79         irm_Lu,                       /**< unsigned long(64) */
80         irm_LLs,                      /**< signed long long(128) */
81         irm_LLu,                      /**< unsigned long long(128) */
82         irm_C,                        /**< character */
83         irm_P,                        /**< pointer */
84         irm_b,                        /**< internal boolean */
85         irm_M,                        /**< memory */
86         irm_T,                        /**< tuple */
87         irm_U,                        /**< unicode character */
88         irm_ANY,                      /**< undefined mode */
89         irm_BAD,                      /**< bad mode */
90         irm_max                       /**< maximum value for modecode */
91 } modecode;
92
93 /** These values represent the different mode classes of value representations.
94  */
95 typedef enum {
96         /* Predefined sorts of modes */
97         irms_auxiliary,         /**< Only for Firm use. Not extensible. (irm_T) */
98         irms_control_flow,      /**< Marks all control flow modes. Not extensible. (irm_BB, irm_X) */
99         irms_memory,            /**< Marks the memory mode.  Not extensible. (irm_M) */
100         irms_internal_boolean,  /**< Internal boolean representation.
101                                      Storing to memory impossible, convert first. (irm_b) */
102         /* user-extensible sorts of modes */
103         irms_int_number,        /**< A mode to represent int numbers.
104                                      Integer computations can be performed. */
105         irms_float_number,      /**< A mode to represent float numbers.
106                                      Floating point computations can be performed. */
107         irms_reference,         /**< A mode to represent entities.
108                                      Restricted int computations can be performed */
109         irms_character          /**< A mode to represent characters/symbols
110                                      ?? Are computations allowed? as int?? */
111 } mode_sort;
112
113 /** These values represent the different arithmetic operations possible with a mode.
114     Further arithmetics can be defined, e.g., for @@@ modes.
115  */
116 typedef enum {
117         irma_uninitialized = 0,
118         irma_none = 1,              /**< For modes for which no representation is specified.
119                                          These are modes of sort auxiliary, internal_boolean and character. */
120         irma_twos_complement = 2,   /**< Values of the mode are represented as two's complement.
121                                      Only legal for modes of sort int_number and reference. */
122         irma_ones_complement,       /**< Values of the mode are represented  as one's complement.
123                                          Only legal for modes of sort int_number and reference. */
124         irma_int_BCD,               /**< Values of the mode are represented as binary coded decimals.
125                                          Only legal for modes of sort int_number and reference. */
126         irma_ieee754 = 256,         /**< Values of the mode are represented according to ieee754
127                                      floatingpoint standard.  Only legal for modes of sort float_number. */
128         irma_float_BCD,             /**< Values of the mode are represented  as binary coded decimals
129                                          according to @@@ which standards??? Only legal for modes of
130                                          sort float_number. */
131         irma_max
132 } mode_arithmetic;
133
134
135 /* ********** Constructor for user defined modes **************** */
136 /**
137  * Creates a new mode.
138  *
139  * @param name          the name of the mode to be created
140  * @param sort          the mode_sort of the mode to be created
141  * @param bit_size      number of bits this mode allocate
142  * @param sign          non-zero if this is a signed mode
143  * @param arithmetic    arithmetic operations possible with a mode
144  * @param modulo_shift  Is ignored for modes other than integer.
145  *
146  * This function constructs a new mode given by the parameters.
147  * If the parameters match an already defined mode, this mode is returned
148  * (including the default modes).
149  * If the mode is newly allocated, a new unique mode_code is chosen.
150  * Also, special value tarvals will be calculated such as null,
151  * min, max and can be retrieved using the get_mode_* functions
152  *
153  * @return
154  *   The new mode or NULL on error.
155  *
156  * @note
157  *   It is allowed to construct the default modes. So, a call
158  *   new_ir_mode("Is", irms_int_number, 32, 1, irma_twos_complement, 32) will return mode_Is.
159  */
160 ir_mode *new_ir_mode(const char *name, mode_sort sort, int bit_size, int sign, mode_arithmetic arithmetic, unsigned int modulo_shift);
161
162 /**
163  * Creates a new vector mode.
164  *
165  * @param name          the name of the mode to be created
166  * @param sort          the mode_sort of the mode to be created
167  * @param bit_size      number of bits for one element of this mode
168  * @param num_of_elem   number of elements in this vector mode
169  * @param sign          non-zero if this is a signed mode
170  * @param arithmetic    arithmetic operations possible with a mode
171  * @param modulo_shift  Is ignored for modes other than integer.
172  *
173  * This function constructs a new vector mode given by the parameters.
174  * If the parameters match an already defined mode, this mode is returned.
175  * If the mode is newly allocated, a new unique mode_code is chosen.
176  * Also, special value tarvals will be calculated such as null,
177  * min, max and can be retrieved using the get_mode_* functions
178  *
179  * @return
180  *   The new mode or NULL on error.
181  */
182 ir_mode *new_ir_vector_mode(const char *name, mode_sort sort, int bit_size, unsigned num_of_elem, int sign,
183                             mode_arithmetic arithmetic, unsigned int modulo_shift);
184
185 /**
186  * Checks whether a pointer points to a mode.
187  *
188  * @param thing     an arbitrary pointer
189  *
190  * @return
191  *     true if the thing is a mode, else false
192  */
193 int is_mode(void *thing);
194
195 /* ********** Access methods to read mode information *********** */
196
197 /** Returns the classification of the mode */
198 modecode    get_mode_modecode(const ir_mode *mode);
199
200 /** Returns the ident* of the mode */
201 ident      *get_mode_ident(const ir_mode *mode);
202
203 /** Returns the null-terminated name of this mode. */
204 const char *get_mode_name(const ir_mode *mode);
205
206 /** Returns a coarse classification of the mode. */
207 mode_sort   get_mode_sort(const ir_mode *mode);
208
209 /** Returns the size of values of the mode in bits. */
210 int get_mode_size_bits(const ir_mode *mode);
211
212 /** Returns the size of values of the mode in bytes.
213  *  If the size is not dividable by 8 returns -1. */
214 int get_mode_size_bytes(const ir_mode *mode);
215
216 /** Returns the signess of a mode.
217  *
218  * Returns the signess of a mode: 1 if mode is signed. */
219 int get_mode_sign(const ir_mode *mode);
220
221 /** Returns the arithmetic of a mode */
222 int get_mode_arithmetic(const ir_mode *mode);
223
224 /** Get the modulo shift attribute.
225  *
226  *  Attribute modulo shift specifies for modes of kind irms_int_number
227  *  whether shift applies modulo to value of bits to shift.  Zero for
228  *  modes that are not integer.
229  */
230 unsigned int get_mode_modulo_shift(const ir_mode *mode);
231
232 /** Return the number of vector elements.
233  *
234  *  Attribute vector_elem specifies the number of vector elements of
235  *  a vector mode. For non-vector modes it returns 1 for data and 0
236  *  for all other modes
237  */
238 unsigned int get_mode_n_vector_elems(const ir_mode *mode);
239
240 /** Returns the stored intermediate information. */
241 void *get_mode_link(const ir_mode *mode);
242
243 /** Stores new intermediate information. */
244 void  set_mode_link(ir_mode *mode, void *l);
245
246 /**
247  * Returns the smallest representable value of a given mode.
248  *
249  * For modes of the sort float_number this is the most negative value
250  * bigger than -infinite.
251  */
252 tarval *get_mode_min(ir_mode *mode);
253
254 /**
255  * Returns the biggest representable value o f a given mode.
256  *
257  * For modes of the sort float_number this is the largest value lower
258  * than infinite.
259  */
260 tarval *get_mode_max(ir_mode *mode);
261
262 /**
263  * Returns the value Zero represented in this mode.
264  *
265  * Zero is the additive neutral element and as such
266  * is defined only for modes allowing addition, i.e.
267  * op_pin_state_floats and ints, and references (NULL-Pointer)
268  * else returns tarval_bad.
269  */
270 tarval *get_mode_null(ir_mode *mode);
271
272 /**
273  * Returns the value One, represented in this mode.
274  *
275  * One, being the multiplicative neutral element,
276  * is defined only for modes allowing multiplication,
277  * i.e. ints and floats.
278  */
279 tarval *get_mode_one(ir_mode *mode);
280
281 /**
282  * Returns the value Minus One, represented in this mode.
283  *
284  * Minus One is defined only for modes allowing
285  * multiplication with signed values, i.e. signed ints and floats.
286  */
287 tarval *get_mode_minus_one(ir_mode *mode);
288
289 /**
290  * Returns the positive infinite value of a mode.
291  *
292  * This is only valid for float_numbers, other modes
293  * will result in tarval_bad.
294  */
295 tarval *get_mode_infinite(ir_mode *mode);
296
297 /**
298  * Returns the NAN value of a given mode.
299  *
300  * This is only valid for float_numbers, other modes
301  * will result in tarval_bad.
302  */
303 tarval *get_mode_NAN(ir_mode *mode);
304
305 extern ir_mode *mode_M;  /**< memory */
306
307 /* -- A set of predefined, numerical modes according to Techreport 1999-44 -- */
308 extern ir_mode *mode_F;   /**< signed float(32) */
309 extern ir_mode *mode_D;   /**< signed double(64) */
310 extern ir_mode *mode_E;   /**< signed extended(80) */
311 extern ir_mode *mode_Bs;  /**< signed byte (former char) */
312 extern ir_mode *mode_Bu;  /**< unsigned byte (former char) */
313 extern ir_mode *mode_Hs;  /**< signed short integer */
314 extern ir_mode *mode_Hu;  /**< unsigned short integer */
315 extern ir_mode *mode_Is;  /**< signed integer */
316 extern ir_mode *mode_Iu;  /**< unsigned integer */
317 extern ir_mode *mode_Ls;  /**< signed long integer */
318 extern ir_mode *mode_Lu;  /**< unsigned long integer */
319 extern ir_mode *mode_LLs; /**< signed long long integer */
320 extern ir_mode *mode_LLu; /**< unsigned long long integer */
321
322 extern ir_mode *mode_C;   /**< 8 bit char */
323 extern ir_mode *mode_U;   /**< 16 bit unicode char */
324
325 extern ir_mode *mode_P;   /**< pointer */
326 extern ir_mode *mode_P_code; /**< A pointer mode that is set by the client of libfirm.  This mode
327                                   represents the pointer size of the target machine code addresses. Is initialized
328                                   to mode_P. */
329 extern ir_mode *mode_P_data; /**< A pointer mode that is set by the client of libfirm.  This mode
330                                   represents the pointer size of the target machine data addresses. Is initialized
331                                   to mode_P. */
332
333 /* -- Auxiliary modes necessary for the Firm representation -- */
334 extern ir_mode *mode_b;  /**< internal boolean */
335
336 extern ir_mode *mode_X;  /**< execution */
337 extern ir_mode *mode_BB; /**< block */
338
339 extern ir_mode *mode_T;  /**< tuple (none) */
340 extern ir_mode *mode_ANY;/**< undefined mode */
341 extern ir_mode *mode_BAD;/**< bad mode */
342
343 /*@{*/
344 /** Access routines for JNI Interface */
345 ir_mode *get_modeF(void);
346 ir_mode *get_modeD(void);
347 ir_mode *get_modeE(void);
348 ir_mode *get_modeBs(void);
349 ir_mode *get_modeBu(void);
350 ir_mode *get_modeHs(void);
351 ir_mode *get_modeHu(void);
352 ir_mode *get_modeIs(void);
353 ir_mode *get_modeIu(void);
354 ir_mode *get_modeLs(void);
355 ir_mode *get_modeLu(void);
356 ir_mode *get_modeLLs(void);
357 ir_mode *get_modeLLu(void);
358 ir_mode *get_modeC(void);
359 ir_mode *get_modeU(void);
360 ir_mode *get_modeP(void);
361 ir_mode *get_modeb(void);
362 ir_mode *get_modeX(void);
363 ir_mode *get_modeBB(void);
364 ir_mode *get_modeM(void);
365 ir_mode *get_modeT(void);
366 ir_mode *get_modeANY(void);
367 ir_mode *get_modeBAD(void);
368
369 /** Returns the machine specific pointer mode for code addresses. */
370 ir_mode *get_modeP_code(void);
371
372 /** Returns the machine specific pointer mode for data addresses. */
373 ir_mode *get_modeP_data(void);
374
375 /**
376  * Sets the machine specific pointer mode for code addresses.
377  * If not set, the predefined mode mode_P will be used.
378  */
379 void set_modeP_code(ir_mode *p);
380
381 /**
382  * Sets the machine specific pointer mode for data addresses.
383  * If not set, the predefined mode mode_P will be used.
384  */
385 void set_modeP_data(ir_mode *p);
386
387 /**
388    Functions to check, whether a modecode is signed, float, int, character,
389    reference, num, numP, data, datab or dataM.
390
391    For more exact definitions read the corresponding pages
392    in the firm documentation or the following enumeration
393
394    The set of "float" is defined as:
395    float = {irm_F, irm_D, irm_E}
396
397    The set of "int" is defined as:
398    int   = {irm_Bs, irm_Bu, irm_Hs, irm_Hu, irm_Is, irm_Iu, irm_Ls, irm_Lu}
399
400    The set of "character" is defined as:
401    character  = {irm_C, irm_U}
402
403    The set of "reference" is defined as:
404    reference  = {irm_P}
405
406    The set of "num" is defined as:
407    num   = {float || int}
408
409    The set of "numP" is defined as:
410    numP  =  {float || int || reference}
411
412    The set of "data" is defined as:
413    data  =  {num || character || reference}
414
415    The set of "datab" is defined as:
416    datab =  {data || irm_b }
417
418    The set of "dataM" is defined as:
419    dataM =  {data || irm_M}
420
421    Vector "int" and "float" are defined by the arithmetic and vector_elem > 1.
422 */
423 /*@}*/
424 /* Test for a certain class of modes. */
425 int mode_is_signed (const ir_mode *mode);
426 int mode_is_float (const ir_mode *mode);
427 int mode_is_int (const ir_mode *mode);
428 int mode_is_character (const ir_mode *mode);
429 int mode_is_reference (const ir_mode *mode);
430 int mode_is_num (const ir_mode *mode);
431 int mode_is_numP (const ir_mode *mode);
432 int mode_is_data (const ir_mode *mode);
433 int mode_is_datab (const ir_mode *mode);
434 int mode_is_dataM (const ir_mode *mode);
435 int mode_is_float_vector (const ir_mode *mode);
436 int mode_is_int_vector (const ir_mode *mode);
437
438 /** Returns true if sm can be converted to lm without loss
439    according to firm definiton */
440 int smaller_mode(const ir_mode *sm, const ir_mode *lm);
441
442 /**
443  * Returns a matching unsigned mode for a given integer signed mode.
444  * Returns NULL if no matching mode exists.
445  */
446 ir_mode *find_unsigned_mode(const ir_mode *mode);
447
448 /**
449  * Returns a matching signed mode for a given integer unsigned mode.
450  * Returns NULL if no matching mode exists.
451  */
452 ir_mode *find_signed_mode(const ir_mode *mode);
453
454 /**
455  * Returns an integer mode with 2*n bits for a given integer mode with n bits.
456  * Returns NULL if no matching mode exists.
457  */
458 ir_mode *find_double_bits_int_mode(const ir_mode *mode);
459
460 /**
461  * Returns non-zero if the given mode honors signed zero's, i.e.,
462  * a +0 and a -0 exists and handled differently.
463  */
464 int mode_honor_signed_zeros(const ir_mode *mode);
465
466 /**
467  * Returns non-zero if the given mode might overflow on unary Minus.
468  */
469 int mode_overflow_on_unary_Minus(const ir_mode *mode);
470
471 /**
472  * Returns non-zero if the mode has a reversed wrap-around
473  * logic, especially (a + x) - x == a.
474  * This is normally true for integer modes, not for floating
475  * point modes.
476  */
477 int mode_wrap_around(const ir_mode *mode);
478
479 /**
480  * Return the signed integer equivalent mode for an reference mode.
481  */
482 ir_mode *get_reference_mode_signed_eq(ir_mode *mode);
483
484 /**
485  * Sets the signed integer equivalent mode for an reference mode.
486  */
487 void set_reference_mode_signed_eq(ir_mode *ref_mode, ir_mode *int_mode);
488
489 /**
490  * Return the unsigned integer equivalent mode for an reference mode.
491  */
492 ir_mode *get_reference_mode_unsigned_eq(ir_mode *mode);
493
494 /**
495  * Sets the unsigned integer equivalent mode for an reference mode.
496  */
497 void set_reference_mode_unsigned_eq(ir_mode *ref_mode, ir_mode *int_mode);
498
499 #endif /* _FIRM_IR_IRMODE_H_ */