f52f14218297456a7f2a2da08345a93ff2d8d7e9
[libfirm] / ir / tv / tv.c
1 /*
2  * Copyright (C) 1995-2008 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    Representation of and static computations on target machine
23  *           values.
24  * @date     2003
25  * @author   Mathias Heil
26  * @version  $Id$
27  * @summary
28  *
29  * Values are stored in a format depending upon chosen arithmetic
30  * module. Default uses strcalc and fltcalc.
31  * This implementation assumes:
32  *  - target has IEEE-754 floating-point arithmetic.
33  */
34 #ifdef HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <assert.h>         /* assertions */
39 #include <stdlib.h>         /* atoi() */
40 #ifdef HAVE_STRING_H
41 # include <string.h>         /* nice things for strings */
42 #endif
43 #ifdef HAVE_STRINGS_H
44 #include <strings.h>        /* strings.h also includes bsd only function strcasecmp */
45 #endif
46 #ifdef HAVE_STDLIB_H
47 # include <stdlib.h>
48 #endif
49
50 #include "tv_t.h"
51 #include "set.h"            /* to store tarvals in */
52 #include "entity_t.h"       /* needed to store pointers to entities */
53 #include "irmode_t.h"
54 #include "irnode.h"         /* defines boolean return values (pnc_number)*/
55 #include "strcalc.h"
56 #include "fltcalc.h"
57 #include "irtools.h"
58 #include "xmalloc.h"
59 #include "firm_common.h"
60 #include "error.h"
61
62 /** Size of hash tables.  Should correspond to average number of distinct constant
63     target values */
64 #define N_CONSTANTS 2048
65
66 /* get the integer overflow mode */
67 #define GET_OVERFLOW_MODE() int_overflow_mode
68
69 /* unused, float to int doesn't work yet */
70 enum float_to_int_mode {
71         TRUNCATE,
72         ROUND
73 };
74
75 #define GET_FLOAT_TO_INT_MODE() TRUNCATE
76
77 #define SWITCH_NOINFINITY 0
78 #define SWITCH_NODENORMALS 0
79
80 /****************************************************************************
81  *   local definitions and macros
82  ****************************************************************************/
83 #ifndef NDEBUG
84 #  define TARVAL_VERIFY(a) tarval_verify((a))
85 #else
86 #  define TARVAL_VERIFY(a) ((void)0)
87 #endif
88
89 #define INSERT_TARVAL(tv) ((tarval*)set_insert(tarvals, (tv), sizeof(tarval), hash_tv((tv))))
90 #define FIND_TARVAL(tv) ((tarval*)set_find(tarvals, (tv), sizeof(tarval), hash_tv((tv))))
91
92 #define INSERT_VALUE(val, size) (set_insert(values, (val), size, hash_val((val), size)))
93 #define FIND_VALUE(val, size) (set_find(values, (val), size, hash_val((val), size)))
94
95 #define fail_verify(a) _fail_verify((a), __FILE__, __LINE__)
96
97 /****************************************************************************
98  *   private variables
99  ****************************************************************************/
100 static struct set *tarvals = NULL;   /* container for tarval structs */
101 static struct set *values = NULL;    /* container for values */
102 static tarval_int_overflow_mode_t int_overflow_mode = TV_OVERFLOW_WRAP;
103
104 /** if this is set non-zero, the constant folding for floating point is OFF */
105 static int no_float = 0;
106
107 /****************************************************************************
108  *   private functions
109  ****************************************************************************/
110 #ifndef NDEBUG
111 static int hash_val(const void *value, unsigned int length);
112 static int hash_tv(tarval *tv);
113 static void _fail_verify(tarval *tv, const char* file, int line)
114 {
115         /* print a memory image of the tarval and throw an assertion */
116         if (tv)
117                 printf("%s:%d: Invalid tarval:\n  mode: %s\n value: [%p]\n", file, line, get_mode_name(tv->mode), tv->value);
118         else
119                 printf("%s:%d: Invalid tarval (null)", file, line);
120         assert(0);
121 }
122 #ifdef __GNUC__
123 INLINE static void tarval_verify(tarval *tv) __attribute__ ((unused));
124 #endif
125
126 INLINE static void tarval_verify(tarval *tv)
127 {
128         assert(tv);
129         assert(tv->mode);
130         assert(tv->value);
131
132         if ((tv == tarval_bad) || (tv == tarval_undefined)) return;
133         if ((tv == tarval_b_true) || (tv == tarval_b_false)) return;
134
135         if (!FIND_TARVAL(tv)) fail_verify(tv);
136         if (tv->length > 0 && !FIND_VALUE(tv->value, tv->length)) fail_verify(tv);
137
138         return;
139 }
140 #endif /* NDEBUG */
141
142 /** Hash a tarval. */
143 static int hash_tv(tarval *tv) {
144         return (PTR_TO_INT(tv->value) ^ PTR_TO_INT(tv->mode)) + tv->length;
145 }
146
147 /** Hash a value. Treat it as a byte array. */
148 static int hash_val(const void *value, unsigned int length) {
149         unsigned int i;
150         unsigned int hash = 0;
151
152         /* scramble the byte - array */
153         for (i = 0; i < length; ++i) {
154                 hash += (hash << 5) ^ (hash >> 27) ^ ((char*)value)[i];
155                 hash += (hash << 11) ^ (hash >> 17);
156         }
157
158         return hash;
159 }
160
161 static int cmp_tv(const void *p1, const void *p2, size_t n) {
162         const tarval *tv1 = p1;
163         const tarval *tv2 = p2;
164         (void) n;
165
166         assert(tv1->kind == k_tarval);
167         assert(tv2->kind == k_tarval);
168         if(tv1->mode < tv2->mode)
169                 return -1;
170         if(tv1->mode > tv2->mode)
171                 return 1;
172         if(tv1->length < tv2->length)
173                 return -1;
174         if(tv1->length > tv2->length)
175                 return 1;
176         if(tv1->value < tv2->value)
177                 return -1;
178         if(tv1->value > tv2->value)
179                 return 1;
180
181         return 0;
182 }
183
184 /** finds tarval with value/mode or creates new tarval */
185 static tarval *get_tarval(const void *value, int length, ir_mode *mode) {
186         tarval tv;
187
188         tv.kind   = k_tarval;
189         tv.mode   = mode;
190         tv.length = length;
191         if (length > 0) {
192                 /* if there already is such a value, it is returned, else value
193                  * is copied into the set */
194                 char *temp = alloca(length);
195                 memcpy(temp, value, length);
196                 if (get_mode_arithmetic(mode) == irma_twos_complement) {
197                         sign_extend(temp, mode);
198                 }
199                 tv.value = INSERT_VALUE(temp, length);
200         } else {
201                 tv.value = value;
202         }
203         /* if there is such a tarval, it is returned, else tv is copied
204          * into the set */
205         return (tarval *)INSERT_TARVAL(&tv);
206 }
207
208 /**
209  * handle overflow
210  */
211 static tarval *get_tarval_overflow(const void *value, int length, ir_mode *mode)
212 {
213         char *temp;
214
215         switch (get_mode_sort(mode)) {
216         case irms_reference:
217                 /* addresses always wrap around */
218                 temp = alloca(sc_get_buffer_length());
219                 memcpy(temp, value, sc_get_buffer_length());
220                 sc_truncate(get_mode_size_bits(mode), temp);
221                 /* the sc_ module expects that all bits are set ... */
222                 sign_extend(temp, mode);
223                 return get_tarval(temp, length, mode);
224
225         case irms_int_number:
226                 if (sc_comp(value, get_mode_max(mode)->value) == 1) {
227                         switch (GET_OVERFLOW_MODE()) {
228                         case TV_OVERFLOW_SATURATE:
229                                 return get_mode_max(mode);
230                         case TV_OVERFLOW_WRAP:
231                                 temp = alloca(sc_get_buffer_length());
232                                 memcpy(temp, value, sc_get_buffer_length());
233                                 sc_truncate(get_mode_size_bits(mode), temp);
234                                 /* the sc_ module expects that all bits are set ... */
235                                 sign_extend(temp, mode);
236                                 return get_tarval(temp, length, mode);
237                         case TV_OVERFLOW_BAD:
238                                 return tarval_bad;
239                         default:
240                                 return get_tarval(value, length, mode);
241                         }
242                 }
243                 if (sc_comp(value, get_mode_min(mode)->value) == -1) {
244                         switch (GET_OVERFLOW_MODE()) {
245                         case TV_OVERFLOW_SATURATE:
246                                 return get_mode_min(mode);
247                         case TV_OVERFLOW_WRAP: {
248                                 char *temp = alloca(sc_get_buffer_length());
249                                 memcpy(temp, value, sc_get_buffer_length());
250                                 sc_truncate(get_mode_size_bits(mode), temp);
251                                 return get_tarval(temp, length, mode);
252                         }
253                         case TV_OVERFLOW_BAD:
254                                 return tarval_bad;
255                         default:
256                                 return get_tarval(value, length, mode);
257                         }
258                 }
259                 break;
260
261         case irms_float_number:
262                 if (SWITCH_NOINFINITY && fc_is_inf(value)) {
263                         /* clip infinity to maximum value */
264                         return fc_is_negative(value) ? get_mode_min(mode) : get_mode_max(mode);
265                 }
266
267                 if (SWITCH_NODENORMALS && fc_is_subnormal(value)) {
268                         /* clip denormals to zero */
269                         return get_mode_null(mode);
270                 }
271                 break;
272
273         default:
274                 break;
275         }
276         return get_tarval(value, length, mode);
277 }
278
279 /*
280  *   public variables declared in tv.h
281  */
282 static tarval reserved_tv[6];
283
284 tarval *tarval_b_false     = &reserved_tv[0];
285 tarval *tarval_b_true      = &reserved_tv[1];
286 tarval *tarval_bad         = &reserved_tv[2];
287 tarval *tarval_undefined   = &reserved_tv[3];
288 tarval *tarval_reachable   = &reserved_tv[4];
289 tarval *tarval_unreachable = &reserved_tv[5];
290
291 /*
292  *   public functions declared in tv.h
293  */
294
295 /*
296  * Constructors =============================================================
297  */
298 tarval *new_tarval_from_str(const char *str, size_t len, ir_mode *mode)
299 {
300         assert(str);
301         assert(len);
302         assert(mode);
303
304         switch (get_mode_sort(mode)) {
305         case irms_control_flow:
306         case irms_memory:
307         case irms_auxiliary:
308                 assert(0);
309                 break;
310
311         case irms_internal_boolean:
312                 /* match [tT][rR][uU][eE]|[fF][aA][lL][sS][eE] */
313                 if (strcasecmp(str, "true"))
314                         return tarval_b_true;
315                 else if (strcasecmp(str, "false"))
316                         return tarval_b_true;
317                 else
318                         /* XXX This is C semantics */
319                         return atoi(str) ? tarval_b_true : tarval_b_false;
320
321         case irms_float_number:
322                 switch (get_mode_size_bits(mode)) {
323                 case 32:
324                         fc_val_from_str(str, len, 8, 23, NULL);
325                         break;
326                 case 64:
327                         fc_val_from_str(str, len, 11, 52, NULL);
328                         break;
329                 case 80:
330                 case 96:
331                         fc_val_from_str(str, len, 15, 64, NULL);
332                         break;
333                 default:
334                         panic("Unsupported mode in new_tarval_from_str()");
335                 }
336                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
337
338         case irms_reference:
339                 /* same as integer modes */
340         case irms_int_number:
341                 sc_val_from_str(str, len, NULL, mode);
342                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
343         }
344
345         assert(0);  /* can't be reached, can it? */
346         return NULL;
347 }
348
349 /*
350  * helper function, create a tarval from long
351  */
352 tarval *new_tarval_from_long(long l, ir_mode *mode) {
353         assert(mode);
354
355         switch (get_mode_sort(mode))   {
356         case irms_internal_boolean:
357                 /* XXX C semantics ! */
358                 return l ? tarval_b_true : tarval_b_false ;
359
360         case irms_reference:
361                 /* same as integer modes */
362         case irms_int_number:
363                 sc_val_from_long(l, NULL);
364                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
365
366         case irms_float_number:
367                 return new_tarval_from_double((long double)l, mode);
368
369         default:
370                 assert(0 && "unsupported mode sort");
371         }
372         return NULL;
373 }
374
375 /* returns non-zero if can be converted to long */
376 int tarval_is_long(tarval *tv) {
377         if (!mode_is_int(tv->mode) && !mode_is_reference(tv->mode))
378                 return 0;
379
380         if (get_mode_size_bits(tv->mode) > (int) (sizeof(long) << 3)) {
381                 /* the value might be too big to fit in a long */
382                 sc_max_from_bits(sizeof(long) << 3, 0, NULL);
383                 if (sc_comp(sc_get_buffer(), tv->value) == -1) {
384                         /* really doesn't fit */
385                         return 0;
386                 }
387         }
388         return 1;
389 }
390
391 /* this might overflow the machine's long, so use only with small values */
392 long get_tarval_long(tarval* tv) {
393         assert(tarval_is_long(tv) && "tarval too big to fit in long");
394
395         return sc_val_to_long(tv->value);
396 }
397
398 tarval *new_tarval_from_double(long double d, ir_mode *mode) {
399         assert(mode && (get_mode_sort(mode) == irms_float_number));
400
401         switch (get_mode_size_bits(mode)) {
402         case 32:
403                 fc_val_from_ieee754(d, 8, 23, NULL);
404                 break;
405         case 64:
406                 fc_val_from_ieee754(d, 11, 52, NULL);
407                 break;
408         case 80:
409         case 96:
410                 fc_val_from_ieee754(d, 15, 64, NULL);
411                 break;
412         default:
413                 panic("Unsupported mode in new_tarval_from_double()");
414         }
415         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
416 }
417
418 /* returns non-zero if can be converted to double */
419 int tarval_is_double(tarval *tv) {
420         assert(tv);
421
422         return (get_mode_sort(tv->mode) == irms_float_number);
423 }
424
425 long double get_tarval_double(tarval *tv) {
426         assert(tarval_is_double(tv));
427
428         return fc_val_to_ieee754(tv->value);
429 }
430
431
432 /*
433  * Access routines for tarval fields ========================================
434  */
435
436 /* get the mode of the tarval */
437 ir_mode *(get_tarval_mode)(const tarval *tv) {
438         return _get_tarval_mode(tv);
439 }
440
441 /*
442  * Special value query functions ============================================
443  *
444  * These functions calculate and return a tarval representing the requested
445  * value.
446  * The functions get_mode_{Max,Min,...} return tarvals retrieved from these
447  * functions, but these are stored on initialization of the irmode module and
448  * therefore the irmode functions should be preferred to the functions below.
449  */
450
451 tarval *(get_tarval_bad)(void) {
452         return _get_tarval_bad();
453 }
454
455 tarval *(get_tarval_undefined)(void) {
456         return _get_tarval_undefined();
457 }
458
459 tarval *(get_tarval_b_false)(void) {
460         return _get_tarval_b_false();
461 }
462
463 tarval *(get_tarval_b_true)(void) {
464         return _get_tarval_b_true();
465 }
466
467 tarval *(get_tarval_reachable)(void) {
468         return _get_tarval_reachable();
469 }
470
471 tarval *(get_tarval_unreachable)(void) {
472         return _get_tarval_unreachable();
473 }
474
475 tarval *get_tarval_max(ir_mode *mode) {
476         assert(mode);
477
478         if (get_mode_n_vector_elems(mode) > 1) {
479                 /* vector arithmetic not implemented yet */
480                 return tarval_bad;
481         }
482
483         switch(get_mode_sort(mode)) {
484         case irms_control_flow:
485         case irms_memory:
486         case irms_auxiliary:
487                 assert(0);
488                 break;
489
490         case irms_internal_boolean:
491                 return tarval_b_true;
492
493         case irms_float_number:
494                 switch(get_mode_size_bits(mode)) {
495                 case 32:
496                         fc_get_max(8, 23, NULL);
497                         break;
498                 case 64:
499                         fc_get_max(11, 52, NULL);
500                         break;
501                 case 80:
502                 case 96:
503                         fc_get_max(15, 64, NULL);
504                         break;
505                 default:
506                         panic("Unsupported mode in get_tarval_max()");
507                 }
508                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
509
510         case irms_reference:
511         case irms_int_number:
512                 sc_max_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
513                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
514         }
515         return tarval_bad;
516 }
517
518 tarval *get_tarval_min(ir_mode *mode) {
519         assert(mode);
520
521         if (get_mode_n_vector_elems(mode) > 1) {
522                 /* vector arithmetic not implemented yet */
523                 return tarval_bad;
524         }
525
526         switch(get_mode_sort(mode)) {
527         case irms_control_flow:
528         case irms_memory:
529         case irms_auxiliary:
530                 assert(0);
531                 break;
532
533         case irms_internal_boolean:
534                 return tarval_b_false;
535
536         case irms_float_number:
537                 switch(get_mode_size_bits(mode)) {
538                 case 32:
539                         fc_get_min(8, 23, NULL);
540                         break;
541                 case 64:
542                         fc_get_min(11, 52, NULL);
543                         break;
544                 case 80:
545                 case 96:
546                         fc_get_min(15, 64, NULL);
547                         break;
548                 default:
549                         panic("Unsupported mode in get_tarval_min()");
550                 }
551                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
552
553         case irms_reference:
554         case irms_int_number:
555                 sc_min_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
556                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
557         }
558         return tarval_bad;
559 }
560
561 /** The bit pattern for the pointer NULL */
562 static long _null_value = 0;
563
564 tarval *get_tarval_null(ir_mode *mode) {
565         assert(mode);
566
567         if (get_mode_n_vector_elems(mode) > 1) {
568                 /* vector arithmetic not implemented yet */
569                 return tarval_bad;
570         }
571
572         switch(get_mode_sort(mode)) {
573         case irms_control_flow:
574         case irms_memory:
575         case irms_auxiliary:
576                 assert(0);
577                 break;
578
579         case irms_float_number:
580                 return new_tarval_from_double(0.0, mode);
581
582         case irms_internal_boolean:
583         case irms_int_number:
584                 return new_tarval_from_long(0l,  mode);
585
586         case irms_reference:
587                 return new_tarval_from_long(_null_value, mode);
588         }
589         return tarval_bad;
590 }
591
592 tarval *get_tarval_one(ir_mode *mode) {
593         assert(mode);
594
595         if (get_mode_n_vector_elems(mode) > 1) {
596                 /* vector arithmetic not implemented yet */
597                 assert(0);
598                 return tarval_bad;
599         }
600
601         switch(get_mode_sort(mode)) {
602         case irms_control_flow:
603         case irms_memory:
604         case irms_auxiliary:
605                 assert(0);
606                 break;
607
608         case irms_internal_boolean:
609                 return tarval_b_true;
610
611         case irms_float_number:
612                 return new_tarval_from_double(1.0, mode);
613
614         case irms_reference:
615         case irms_int_number:
616                 return new_tarval_from_long(1l, mode);
617         }
618         return tarval_bad;
619 }
620
621 tarval *get_tarval_all_one(ir_mode *mode) {
622         assert(mode);
623
624         if (get_mode_n_vector_elems(mode) > 1) {
625                 /* vector arithmetic not implemented yet */
626                 assert(0);
627                 return tarval_bad;
628         }
629
630         switch(get_mode_sort(mode)) {
631         case irms_control_flow:
632         case irms_memory:
633         case irms_auxiliary:
634                 assert(0);
635                 return tarval_bad;
636
637         case irms_int_number:
638         case irms_internal_boolean:
639         case irms_reference:
640                 return tarval_not(get_mode_null(mode));
641
642
643         case irms_float_number:
644                 return new_tarval_from_double(1.0, mode);
645         }
646         return tarval_bad;
647 }
648
649 int tarval_is_constant(tarval *tv) {
650         int num_res = sizeof(reserved_tv) / sizeof(reserved_tv[0]);
651
652         /* reserved tarvals are NOT constants. Note that although
653            tarval_b_true and tarval_b_false are reserved, they are constants of course. */
654         return (tv < &reserved_tv[2] || tv > &reserved_tv[num_res - 1]);
655 }
656
657 tarval *get_tarval_minus_one(ir_mode *mode) {
658         assert(mode);
659
660         if (get_mode_n_vector_elems(mode) > 1) {
661                 /* vector arithmetic not implemented yet */
662                 return tarval_bad;
663         }
664
665         switch(get_mode_sort(mode)) {
666         case irms_control_flow:
667         case irms_memory:
668         case irms_auxiliary:
669         case irms_internal_boolean:
670                 assert(0);
671                 break;
672
673         case irms_reference:
674                 return tarval_bad;
675
676         case irms_float_number:
677                 return mode_is_signed(mode) ? new_tarval_from_double(-1.0, mode) : tarval_bad;
678
679         case irms_int_number:
680                 return new_tarval_from_long(-1l, mode);
681         }
682         return tarval_bad;
683 }
684
685 tarval *get_tarval_nan(ir_mode *mode) {
686         assert(mode);
687
688         if (get_mode_n_vector_elems(mode) > 1) {
689                 /* vector arithmetic not implemented yet */
690                 return tarval_bad;
691         }
692
693         if (get_mode_sort(mode) == irms_float_number) {
694                 switch(get_mode_size_bits(mode)) {
695                 case 32:
696                         fc_get_qnan(8, 23, NULL);
697                         break;
698                 case 64:
699                         fc_get_qnan(11, 52, NULL);
700                         break;
701                 case 80:
702                 case 96:
703                         fc_get_qnan(15, 64, NULL);
704                         break;
705                 default:
706                         panic("Unsupported mode in get_tarval_nan()");
707                 }
708                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
709         } else {
710                 assert(0 && "tarval is not floating point");
711                 return tarval_bad;
712         }
713 }
714
715 tarval *get_tarval_plus_inf(ir_mode *mode) {
716         assert(mode);
717
718         if (get_mode_n_vector_elems(mode) > 1) {
719                 /* vector arithmetic not implemented yet */
720                 return tarval_bad;
721         }
722
723         if (get_mode_sort(mode) == irms_float_number) {
724                 switch(get_mode_size_bits(mode)) {
725                 case 32:
726                         fc_get_plusinf(8, 23, NULL);
727                         break;
728                 case 64:
729                         fc_get_plusinf(11, 52, NULL);
730                         break;
731                 case 80:
732                 case 96:
733                         fc_get_plusinf(15, 64, NULL);
734                         break;
735                 default:
736                         panic("Unsupported mode in get_tarval_plus_inf()");
737                 }
738                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
739         } else {
740                 assert(0 && "tarval is not floating point");
741                 return tarval_bad;
742         }
743 }
744
745 tarval *get_tarval_minus_inf(ir_mode *mode) {
746         assert(mode);
747
748         if (get_mode_n_vector_elems(mode) > 1) {
749                 /* vector arithmetic not implemented yet */
750                 return tarval_bad;
751         }
752
753         if (get_mode_sort(mode) == irms_float_number) {
754                 switch(get_mode_size_bits(mode)) {
755                 case 32:
756                         fc_get_minusinf(8, 23, NULL);
757                         break;
758                 case 64:
759                         fc_get_minusinf(11, 52, NULL);
760                         break;
761                 case 80:
762                 case 96:
763                         fc_get_minusinf(15, 64, NULL);
764                         break;
765                 default:
766                         panic("Unsupported mode in get_tarval_minus_inf()");
767                 }
768                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
769         } else {
770                 assert(0 && "tarval is not floating point");
771                 return tarval_bad;
772         }
773 }
774
775 /*
776  * Arithmethic operations on tarvals ========================================
777  */
778
779 /*
780  * test if negative number, 1 means 'yes'
781  */
782 int tarval_is_negative(tarval *a) {
783         assert(a);
784
785         if (get_mode_n_vector_elems(a->mode) > 1) {
786                 /* vector arithmetic not implemented yet */
787                 assert(0 && "tarval_is_negative is not allowed for vector modes");
788                 return 0;
789         }
790
791         switch (get_mode_sort(a->mode)) {
792         case irms_int_number:
793                 if (!mode_is_signed(a->mode)) return 0;
794                 else
795                         return sc_comp(a->value, get_mode_null(a->mode)->value) == -1 ? 1 : 0;
796
797         case irms_float_number:
798                 return fc_is_negative(a->value);
799
800         default:
801                 assert(0 && "not implemented");
802                 return 0;
803         }
804 }
805
806 /*
807  * test if null, 1 means 'yes'
808  */
809 int tarval_is_null(tarval *a) {
810         return
811                 a != tarval_bad &&
812                 a == get_mode_null(get_tarval_mode(a));
813 }
814
815 /*
816  * test if one, 1 means 'yes'
817  */
818 int tarval_is_one(tarval *a) {
819         return
820                 a != tarval_bad &&
821                 a == get_mode_one(get_tarval_mode(a));
822 }
823
824 int tarval_is_all_one(tarval *tv) {
825         return
826                 tv != tarval_bad &&
827                 tv == get_mode_all_one(get_tarval_mode(tv));
828 }
829
830 /*
831  * test if one, 1 means 'yes'
832  */
833 int tarval_is_minus_one(tarval *a) {
834         return
835                 a != tarval_bad &&
836                 a == get_mode_minus_one(get_tarval_mode(a));
837 }
838
839 /*
840  * comparison
841  */
842 pn_Cmp tarval_cmp(tarval *a, tarval *b) {
843         assert(a);
844         assert(b);
845
846         if (a == tarval_bad || b == tarval_bad) {
847                 assert(0 && "Comparison with tarval_bad");
848                 return pn_Cmp_False;
849         }
850
851         if (a == tarval_undefined || b == tarval_undefined)
852                 return pn_Cmp_False;
853
854         if (a->mode != b->mode)
855                 return pn_Cmp_False;
856
857         if (get_mode_n_vector_elems(a->mode) > 1) {
858                 /* vector arithmetic not implemented yet */
859                 assert(0 && "cmp not implemented for vector modes");
860         }
861
862         /* Here the two tarvals are unequal and of the same mode */
863         switch (get_mode_sort(a->mode)) {
864         case irms_control_flow:
865         case irms_memory:
866         case irms_auxiliary:
867                 if (a == b)
868                         return pn_Cmp_Eq;
869                 return pn_Cmp_False;
870
871         case irms_float_number:
872                 /* it should be safe to enable this even if other arithmetic is disabled */
873                 /*if (no_float)
874                         return pn_Cmp_False;*/
875                 /*
876                  * BEWARE: we cannot compare a == b here, because
877                  * a NaN is always Unordered to any other value, even to itself!
878                  */
879                 switch (fc_comp(a->value, b->value)) {
880                 case -1: return pn_Cmp_Lt;
881                 case  0: return pn_Cmp_Eq;
882                 case  1: return pn_Cmp_Gt;
883                 case  2: return pn_Cmp_Uo;
884                 default: return pn_Cmp_False;
885                 }
886         case irms_reference:
887         case irms_int_number:
888                 if (a == b)
889                         return pn_Cmp_Eq;
890                 return sc_comp(a->value, b->value) == 1 ? pn_Cmp_Gt : pn_Cmp_Lt;
891
892         case irms_internal_boolean:
893                 if (a == b)
894                         return pn_Cmp_Eq;
895                 return a == tarval_b_true ? pn_Cmp_Gt : pn_Cmp_Lt;
896         }
897         return pn_Cmp_False;
898 }
899
900 /*
901  * convert to other mode
902  */
903 tarval *tarval_convert_to(tarval *src, ir_mode *dst_mode) {
904         char *buffer;
905         fp_value *res;
906
907         assert(src);
908         assert(dst_mode);
909
910         if (src->mode == dst_mode) return src;
911
912         if (get_mode_n_vector_elems(src->mode) > 1) {
913                 /* vector arithmetic not implemented yet */
914                 return tarval_bad;
915         }
916
917         switch (get_mode_sort(src->mode)) {
918         case irms_control_flow:
919         case irms_memory:
920         case irms_auxiliary:
921                 break;
922
923                 /* cast float to something */
924         case irms_float_number:
925                 switch (get_mode_sort(dst_mode)) {
926                 case irms_float_number:
927                         switch (get_mode_size_bits(dst_mode)) {
928                         case 32:
929                                 fc_cast(src->value, 8, 23, NULL);
930                                 break;
931                         case 64:
932                                 fc_cast(src->value, 11, 52, NULL);
933                                 break;
934                         case 80:
935                         case 96:
936                                 fc_cast(src->value, 15, 64, NULL);
937                                 break;
938                         default:
939                                 panic("Unsupported mode in tarval_convert_to()");
940                         }
941                         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), dst_mode);
942
943                 case irms_int_number:
944                         switch (GET_FLOAT_TO_INT_MODE()) {
945                         case TRUNCATE:
946                                 res = fc_int(src->value, NULL);
947                                 break;
948                         case ROUND:
949                                 res = fc_rnd(src->value, NULL);
950                                 break;
951                         default:
952                                 panic("Unsupported float to int conversion mode in tarval_convert_to()");
953                                 break;
954                         }
955                         buffer = alloca(sc_get_buffer_length());
956                         if (! fc_flt2int(res, buffer, dst_mode))
957                                 return tarval_bad;
958                         return get_tarval(buffer, sc_get_buffer_length(), dst_mode);
959
960                 default:
961                         /* the rest can't be converted */
962                         return tarval_bad;
963                 }
964                 break;
965
966         /* cast int/characters to something */
967         case irms_int_number:
968                 switch (get_mode_sort(dst_mode)) {
969
970                 case irms_reference:
971                 case irms_int_number:
972                         buffer = alloca(sc_get_buffer_length());
973                         memcpy(buffer, src->value, sc_get_buffer_length());
974                         sign_extend(buffer, dst_mode);
975                         return get_tarval_overflow(buffer, src->length, dst_mode);
976
977                 case irms_internal_boolean:
978                         /* XXX C semantics */
979                         if (src == get_mode_null(src->mode)) return tarval_b_false;
980                         else return tarval_b_true;
981
982                 case irms_float_number:
983                         /* XXX floating point unit does not understand internal integer
984                          * representation, convert to string first, then create float from
985                          * string */
986                         buffer = alloca(100);
987                         /* decimal string representation because hexadecimal output is
988                          * interpreted unsigned by fc_val_from_str, so this is a HACK */
989                         snprintf(buffer, 100, "%s",
990                                 sc_print(src->value, get_mode_size_bits(src->mode), SC_DEC, mode_is_signed(src->mode)));
991                         buffer[100 - 1] = '\0';
992                         switch (get_mode_size_bits(dst_mode)) {
993                         case 32:
994                                 fc_val_from_str(buffer, 0, 8, 23, NULL);
995                                 break;
996                         case 64:
997                                 fc_val_from_str(buffer, 0, 11, 52, NULL);
998                                 break;
999                         case 80:
1000                         case 96:
1001                                 fc_val_from_str(buffer, 0, 15, 64, NULL);
1002                                 break;
1003                         default:
1004                                 panic("Unsupported mode in tarval_convert_to()");
1005                         }
1006                         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), dst_mode);
1007
1008                 default:
1009                         break;
1010                 }
1011                 break;
1012
1013         case irms_internal_boolean:
1014                 /* beware: this is C semantic for the INTERNAL boolean mode */
1015                 if (get_mode_sort(dst_mode) == irms_int_number)
1016                         return src == tarval_b_true ? get_mode_one(dst_mode) : get_mode_null(dst_mode);
1017                 break;
1018
1019         case irms_reference:
1020                 if (get_mode_sort(dst_mode) == irms_int_number) {
1021                         buffer = alloca(sc_get_buffer_length());
1022                         memcpy(buffer, src->value, sc_get_buffer_length());
1023                         sign_extend(buffer, src->mode);
1024                         return get_tarval_overflow(buffer, src->length, dst_mode);
1025                 }
1026                 break;
1027         }
1028
1029         return tarval_bad;
1030 }
1031
1032 /*
1033  * bitwise negation
1034  */
1035 tarval *tarval_not(tarval *a) {
1036         char *buffer;
1037
1038         assert(a);
1039
1040         /* works for vector mode without changes */
1041
1042         switch (get_mode_sort(a->mode)) {
1043         case irms_reference:
1044         case irms_int_number:
1045                 buffer = alloca(sc_get_buffer_length());
1046                 sc_not(a->value, buffer);
1047                 return get_tarval(buffer, a->length, a->mode);
1048
1049         case irms_internal_boolean:
1050                 if (a == tarval_b_true)
1051                         return tarval_b_false;
1052                 if (a == tarval_b_false)
1053                         return tarval_b_true;
1054                 return tarval_bad;
1055
1056         default:
1057                 assert(0 && "bitwise negation is only allowed for integer and boolean");
1058                 return tarval_bad;
1059         }
1060 }
1061
1062 /*
1063  * arithmetic negation
1064  */
1065 tarval *tarval_neg(tarval *a) {
1066         char *buffer;
1067
1068         assert(a);
1069         assert(mode_is_num(a->mode)); /* negation only for numerical values */
1070
1071         /* note: negation is allowed even for unsigned modes. */
1072
1073         if (get_mode_n_vector_elems(a->mode) > 1) {
1074                 /* vector arithmetic not implemented yet */
1075                 return tarval_bad;
1076         }
1077
1078         switch (get_mode_sort(a->mode)) {
1079         case irms_int_number:
1080                 buffer = alloca(sc_get_buffer_length());
1081                 sc_neg(a->value, buffer);
1082                 return get_tarval_overflow(buffer, a->length, a->mode);
1083
1084         case irms_float_number:
1085                 /* it should be safe to enable this even if other arithmetic is disabled */
1086                 /*if (no_float)
1087                         return tarval_bad;*/
1088
1089                 fc_neg(a->value, NULL);
1090                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1091
1092         default:
1093                 return tarval_bad;
1094         }
1095 }
1096
1097 /*
1098  * addition
1099  */
1100 tarval *tarval_add(tarval *a, tarval *b) {
1101         char *buffer;
1102
1103         assert(a);
1104         assert(b);
1105         assert(a->mode == b->mode);
1106
1107         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
1108                 /* vector arithmetic not implemented yet */
1109                 return tarval_bad;
1110         }
1111
1112         switch (get_mode_sort(a->mode)) {
1113         case irms_int_number:
1114                 /* modes of a,b are equal, so result has mode of a as this might be the character */
1115                 buffer = alloca(sc_get_buffer_length());
1116                 sc_add(a->value, b->value, buffer);
1117                 return get_tarval_overflow(buffer, a->length, a->mode);
1118
1119         case irms_float_number:
1120                 if (no_float)
1121                         return tarval_bad;
1122
1123                 fc_add(a->value, b->value, NULL);
1124                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1125
1126         default:
1127                 return tarval_bad;
1128         }
1129 }
1130
1131 /*
1132  * subtraction
1133  */
1134 tarval *tarval_sub(tarval *a, tarval *b) {
1135         char *buffer;
1136
1137         assert(a);
1138         assert(b);
1139         assert(a->mode == b->mode);
1140
1141         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
1142                 /* vector arithmetic not implemented yet */
1143                 return tarval_bad;
1144         }
1145         switch (get_mode_sort(a->mode)) {
1146         case irms_int_number:
1147                 /* modes of a,b are equal, so result has mode of a as this might be the character */
1148                 buffer = alloca(sc_get_buffer_length());
1149                 sc_sub(a->value, b->value, buffer);
1150                 return get_tarval_overflow(buffer, a->length, a->mode);
1151
1152         case irms_float_number:
1153                 if (no_float)
1154                         return tarval_bad;
1155
1156                 fc_sub(a->value, b->value, NULL);
1157                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1158
1159         default:
1160                 return tarval_bad;
1161         }
1162 }
1163
1164 /*
1165  * multiplication
1166  */
1167 tarval *tarval_mul(tarval *a, tarval *b) {
1168         char *buffer;
1169
1170         assert(a);
1171         assert(b);
1172         assert(a->mode == b->mode);
1173
1174         if (get_mode_n_vector_elems(a->mode) > 1) {
1175                 /* vector arithmetic not implemented yet */
1176                 return tarval_bad;
1177         }
1178
1179         switch (get_mode_sort(a->mode)) {
1180         case irms_int_number:
1181                 /* modes of a,b are equal */
1182                 buffer = alloca(sc_get_buffer_length());
1183                 sc_mul(a->value, b->value, buffer);
1184                 return get_tarval_overflow(buffer, a->length, a->mode);
1185
1186         case irms_float_number:
1187                 if (no_float)
1188                         return tarval_bad;
1189
1190                 fc_mul(a->value, b->value, NULL);
1191                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1192
1193         default:
1194                 return tarval_bad;
1195         }
1196 }
1197
1198 /*
1199  * floating point division
1200  */
1201 tarval *tarval_quo(tarval *a, tarval *b) {
1202         assert(a);
1203         assert(b);
1204         assert((a->mode == b->mode) && mode_is_float(a->mode));
1205
1206         if (no_float)
1207                 return tarval_bad;
1208
1209         if (get_mode_n_vector_elems(a->mode) > 1) {
1210                 /* vector arithmetic not implemented yet */
1211                 return tarval_bad;
1212         }
1213
1214         fc_div(a->value, b->value, NULL);
1215         return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1216 }
1217
1218 /*
1219  * integer division
1220  * overflow is impossible, but look out for division by zero
1221  */
1222 tarval *tarval_div(tarval *a, tarval *b) {
1223         assert(a);
1224         assert(b);
1225         assert((a->mode == b->mode) && mode_is_int(a->mode));
1226
1227         if (get_mode_n_vector_elems(a->mode) > 1) {
1228                 /* vector arithmetic not implemented yet */
1229                 return tarval_bad;
1230         }
1231
1232         /* x/0 error */
1233         if (b == get_mode_null(b->mode)) return tarval_bad;
1234         /* modes of a,b are equal */
1235         sc_div(a->value, b->value, NULL);
1236         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1237 }
1238
1239 /*
1240  * remainder
1241  * overflow is impossible, but look out for division by zero
1242  */
1243 tarval *tarval_mod(tarval *a, tarval *b) {
1244         assert(a);
1245         assert(b);
1246         assert((a->mode == b->mode) && mode_is_int(a->mode));
1247
1248         if (get_mode_n_vector_elems(a->mode) > 1) {
1249                 /* vector arithmetic not implemented yet */
1250                 return tarval_bad;
1251         }
1252
1253         /* x/0 error */
1254         if (b == get_mode_null(b->mode)) return tarval_bad;
1255         /* modes of a,b are equal */
1256         sc_mod(a->value, b->value, NULL);
1257         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1258 }
1259
1260 /*
1261  * integer division AND remainder
1262  * overflow is impossible, but look out for division by zero
1263  */
1264 tarval *tarval_divmod(tarval *a, tarval *b, tarval **mod) {
1265         int len = sc_get_buffer_length();
1266         char *div_res = alloca(len);
1267         char *mod_res = alloca(len);
1268
1269         assert(a);
1270         assert(b);
1271         assert((a->mode == b->mode) && mode_is_int(a->mode));
1272
1273         if (get_mode_n_vector_elems(a->mode) > 1) {
1274                 /* vector arithmetic not implemented yet */
1275                 return tarval_bad;
1276         }
1277
1278
1279         /* x/0 error */
1280         if (b == get_mode_null(b->mode)) return tarval_bad;
1281         /* modes of a,b are equal */
1282         sc_divmod(a->value, b->value, div_res, mod_res);
1283         *mod = get_tarval(mod_res, len, a->mode);
1284         return get_tarval(div_res, len, a->mode);
1285 }
1286
1287 /*
1288  * absolute value
1289  */
1290 tarval *tarval_abs(tarval *a) {
1291         char *buffer;
1292
1293         assert(a);
1294         assert(mode_is_num(a->mode));
1295
1296         if (get_mode_n_vector_elems(a->mode) > 1) {
1297                 /* vector arithmetic not implemented yet */
1298                 return tarval_bad;
1299         }
1300
1301         switch (get_mode_sort(a->mode)) {
1302         case irms_int_number:
1303                 if (sc_comp(a->value, get_mode_null(a->mode)->value) == -1) {
1304                         buffer = alloca(sc_get_buffer_length());
1305                         sc_neg(a->value, buffer);
1306                         return get_tarval_overflow(buffer, a->length, a->mode);
1307                 }
1308                 return a;
1309
1310         case irms_float_number:
1311                 /* it should be safe to enable this even if other arithmetic is disabled */
1312                 /*if (no_float)
1313                         return tarval_bad;*/
1314
1315                 if (fc_comp(a->value, get_mode_null(a->mode)->value) == -1) {
1316                         fc_neg(a->value, NULL);
1317                         return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1318                 }
1319                 return a;
1320
1321         default:
1322                 return tarval_bad;
1323         }
1324         return tarval_bad;
1325 }
1326
1327 /*
1328  * bitwise and
1329  */
1330 tarval *tarval_and(tarval *a, tarval *b) {
1331         assert(a);
1332         assert(b);
1333         assert(a->mode == b->mode);
1334
1335         /* works even for vector modes */
1336
1337         switch(get_mode_sort(a->mode)) {
1338         case irms_internal_boolean:
1339                 return (a == tarval_b_false) ? a : b;
1340
1341         case irms_int_number:
1342                 sc_and(a->value, b->value, NULL);
1343                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1344
1345         default:
1346                 assert(0 && "operation not defined on mode");
1347                 return tarval_bad;
1348         }
1349 }
1350
1351 /*
1352  * bitwise or
1353  */
1354 tarval *tarval_or(tarval *a, tarval *b) {
1355         assert(a);
1356         assert(b);
1357         assert(a->mode == b->mode);
1358
1359         /* works even for vector modes */
1360
1361         switch (get_mode_sort(a->mode)) {
1362         case irms_internal_boolean:
1363                 return (a == tarval_b_true) ? a : b;
1364
1365         case irms_int_number:
1366                 sc_or(a->value, b->value, NULL);
1367                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1368
1369         default:
1370                 assert(0 && "operation not defined on mode");
1371                 return tarval_bad;
1372         }
1373 }
1374
1375 /*
1376  * bitwise exclusive or (xor)
1377  */
1378 tarval *tarval_eor(tarval *a, tarval *b) {
1379         assert(a);
1380         assert(b);
1381         assert((a->mode == b->mode));
1382
1383         /* works even for vector modes */
1384
1385         switch (get_mode_sort(a->mode)) {
1386         case irms_internal_boolean:
1387                 return (a == b)? tarval_b_false : tarval_b_true;
1388
1389         case irms_int_number:
1390                 sc_xor(a->value, b->value, NULL);
1391                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1392
1393         default:
1394                 assert(0 && "operation not defined on mode");
1395                 return tarval_bad;;
1396         }
1397 }
1398
1399 /*
1400  * bitwise left shift
1401  */
1402 tarval *tarval_shl(tarval *a, tarval *b) {
1403         char *temp_val = NULL;
1404
1405         assert(a);
1406         assert(b);
1407         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1408
1409         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1410                 /* vector arithmetic not implemented yet */
1411                 return tarval_bad;
1412         }
1413
1414         if (get_mode_modulo_shift(a->mode) != 0) {
1415                 temp_val = alloca(sc_get_buffer_length());
1416
1417                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1418                 sc_mod(b->value, temp_val, temp_val);
1419         } else
1420                 temp_val = (char*)b->value;
1421
1422         sc_shl(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1423         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1424 }
1425
1426 /*
1427  * bitwise unsigned right shift
1428  */
1429 tarval *tarval_shr(tarval *a, tarval *b) {
1430         char *temp_val = NULL;
1431
1432         assert(a);
1433         assert(b);
1434         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1435
1436         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1437                 /* vector arithmetic not implemented yet */
1438                 return tarval_bad;
1439         }
1440
1441         if (get_mode_modulo_shift(a->mode) != 0) {
1442                 temp_val = alloca(sc_get_buffer_length());
1443
1444                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1445                 sc_mod(b->value, temp_val, temp_val);
1446         } else
1447                 temp_val = (char*)b->value;
1448
1449         sc_shr(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1450         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1451 }
1452
1453 /*
1454  * bitwise signed right shift
1455  */
1456 tarval *tarval_shrs(tarval *a, tarval *b) {
1457         char *temp_val = NULL;
1458
1459         assert(a);
1460         assert(b);
1461         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1462
1463         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1464                 /* vector arithmetic not implemented yet */
1465                 return tarval_bad;
1466         }
1467
1468         if (get_mode_modulo_shift(a->mode) != 0) {
1469                 temp_val = alloca(sc_get_buffer_length());
1470
1471                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1472                 sc_mod(b->value, temp_val, temp_val);
1473         } else
1474                 temp_val = (char*)b->value;
1475
1476         sc_shrs(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1477         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1478 }
1479
1480 /*
1481  * bitwise rotation to left
1482  */
1483 tarval *tarval_rotl(tarval *a, tarval *b) {
1484         char *temp_val = NULL;
1485
1486         assert(a);
1487         assert(b);
1488         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1489
1490         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1491                 /* vector arithmetic not implemented yet */
1492                 return tarval_bad;
1493         }
1494
1495         if (get_mode_modulo_shift(a->mode) != 0) {
1496                 temp_val = alloca(sc_get_buffer_length());
1497
1498                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1499                 sc_mod(b->value, temp_val, temp_val);
1500         } else
1501                 temp_val = (char*)b->value;
1502
1503         sc_rotl(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1504         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1505 }
1506
1507 /*
1508  * carry flag of the last operation
1509  */
1510 int tarval_carry(void) {
1511         panic("tarval_carry() requetsed: not implemented on all operations");
1512         return sc_had_carry();
1513 }
1514
1515 /*
1516  * Output of tarvals
1517  */
1518 int tarval_snprintf(char *buf, size_t len, tarval *tv) {
1519         static const tarval_mode_info default_info = { TVO_NATIVE, NULL, NULL };
1520
1521         const char *str;
1522         char tv_buf[100];
1523         const tarval_mode_info *mode_info;
1524         const char *prefix, *suffix;
1525
1526         mode_info = tv->mode->tv_priv;
1527         if (! mode_info)
1528                 mode_info = &default_info;
1529         prefix = mode_info->mode_prefix ? mode_info->mode_prefix : "";
1530         suffix = mode_info->mode_suffix ? mode_info->mode_suffix : "";
1531
1532         switch (get_mode_sort(tv->mode)) {
1533         case irms_reference:
1534                 if (tv == tv->mode->null) return snprintf(buf, len, "NULL");
1535                 /* fall through */
1536         case irms_int_number:
1537                 switch (mode_info->mode_output) {
1538
1539                 case TVO_DECIMAL:
1540                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_DEC, mode_is_signed(tv->mode));
1541                         break;
1542
1543                 case TVO_OCTAL:
1544                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_OCT, 0);
1545                         break;
1546
1547                 case TVO_HEX:
1548                 case TVO_NATIVE:
1549                 default:
1550                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_HEX, 0);
1551                         break;
1552                 }
1553                 return snprintf(buf, len, "%s%s%s", prefix, str, suffix);
1554
1555         case irms_float_number:
1556                 switch (mode_info->mode_output) {
1557                 case TVO_HEX:
1558                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_PACKED), suffix);
1559
1560                 case TVO_HEXFLOAT:
1561                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_HEX), suffix);
1562
1563                 case TVO_FLOAT:
1564                 case TVO_NATIVE:
1565                 default:
1566                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_DEC), suffix);
1567                 }
1568                 break;
1569
1570         case irms_internal_boolean:
1571                 switch (mode_info->mode_output) {
1572
1573                 case TVO_DECIMAL:
1574                 case TVO_OCTAL:
1575                 case TVO_HEX:
1576                 case TVO_BINARY:
1577                         return snprintf(buf, len, "%s%c%s", prefix, (tv == tarval_b_true) ? '1' : '0', suffix);
1578
1579                 case TVO_NATIVE:
1580                 default:
1581                         return snprintf(buf, len, "%s%s%s", prefix, (tv == tarval_b_true) ? "true" : "false", suffix);
1582                 }
1583
1584         case irms_control_flow:
1585         case irms_memory:
1586         case irms_auxiliary:
1587                 if (tv == tarval_bad)
1588                         return snprintf(buf, len, "<TV_BAD>");
1589                 if (tv == tarval_undefined)
1590                         return snprintf(buf, len, "<TV_UNDEF>");
1591                 if (tv == tarval_unreachable)
1592                         return snprintf(buf, len, "<TV_UNREACHABLE>");
1593                 if (tv == tarval_reachable)
1594                         return snprintf(buf, len, "<TV_REACHABLE>");
1595                 return snprintf(buf, len, "<TV_??""?>");
1596         }
1597
1598         return 0;
1599 }
1600
1601 /**
1602  * Output of tarvals to stdio.
1603  */
1604 int tarval_printf(tarval *tv) {
1605         char buf[1024];
1606         int res;
1607
1608         res = tarval_snprintf(buf, sizeof(buf), tv);
1609         assert(res < (int) sizeof(buf) && "buffer to small for tarval_snprintf");
1610         printf(buf);
1611         return res;
1612 }
1613
1614 char *get_tarval_bitpattern(tarval *tv) {
1615         int i, j, pos = 0;
1616         int n = get_mode_size_bits(tv->mode);
1617         int bytes = (n + 7) / 8;
1618         char *res = xmalloc((n + 1) * sizeof(char));
1619         unsigned char byte;
1620
1621         for(i = 0; i < bytes; i++) {
1622                 byte = get_tarval_sub_bits(tv, i);
1623                 for(j = 1; j < 256; j <<= 1)
1624                         if(pos < n)
1625                                 res[pos++] = j & byte ? '1' : '0';
1626         }
1627
1628         res[n] = '\0';
1629
1630         return res;
1631 }
1632
1633 /*
1634  * access to the bitpattern
1635  */
1636 unsigned char get_tarval_sub_bits(tarval *tv, unsigned byte_ofs) {
1637         switch (get_mode_arithmetic(tv->mode)) {
1638         case irma_twos_complement:
1639                 return sc_sub_bits(tv->value, get_mode_size_bits(tv->mode), byte_ofs);
1640         case irma_ieee754:
1641                 return fc_sub_bits(tv->value, get_mode_size_bits(tv->mode), byte_ofs);
1642         default:
1643                 panic("get_tarval_sub_bits(): arithmetic mode not supported");
1644         }
1645 }
1646
1647 /*
1648  * Specify the output options of one mode.
1649  *
1650  * This functions stores the modinfo, so DO NOT DESTROY it.
1651  *
1652  * Returns zero on success.
1653  */
1654 int  set_tarval_mode_output_option(ir_mode *mode, const tarval_mode_info *modeinfo) {
1655         assert(mode);
1656
1657         mode->tv_priv = modeinfo;
1658         return 0;
1659 }
1660
1661 /*
1662  * Returns the output options of one mode.
1663  *
1664  * This functions returns the mode info of a given mode.
1665  */
1666 const tarval_mode_info *get_tarval_mode_output_option(ir_mode *mode) {
1667         assert(mode);
1668
1669         return mode->tv_priv;
1670 }
1671
1672 /*
1673  * Returns non-zero if a given (integer) tarval has only one single bit
1674  * set.
1675  */
1676 int tarval_is_single_bit(tarval *tv) {
1677         int i, l;
1678         int bits;
1679
1680         if (!tv || tv == tarval_bad) return 0;
1681         if (! mode_is_int(tv->mode)) return 0;
1682
1683         l = get_mode_size_bytes(tv->mode);
1684         for (bits = 0, i = l - 1; i >= 0; --i) {
1685                 unsigned char v = get_tarval_sub_bits(tv, (unsigned)i);
1686
1687                 /* check for more than one bit in these */
1688                 if (v) {
1689                         if (v & (v-1))
1690                                 return 0;
1691                         if (++bits > 1)
1692                                 return 0;
1693                 }
1694         }
1695         return bits;
1696 }
1697
1698 /*
1699  * Returns non-zero if the mantissa of a floating point IEEE-754
1700  * tarval is zero (i.e. 1.0Exxx)
1701  */
1702 int tarval_ieee754_zero_mantissa(tarval *tv) {
1703         assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
1704         return fc_zero_mantissa(tv->value);
1705 }
1706
1707 /* Returns the exponent of a floating point IEEE-754 tarval. */
1708 int tarval_ieee754_get_exponent(tarval *tv) {
1709         assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
1710         return fc_get_exponent(tv->value);
1711 }
1712
1713 /*
1714  * Check if the tarval can be converted to the given mode without
1715  * precision loss.
1716  */
1717 int tarval_ieee754_can_conv_lossless(tarval *tv, ir_mode *mode) {
1718         char exp_size, mant_size;
1719         switch (get_mode_size_bits(mode)) {
1720         case 32:
1721                 exp_size = 8; mant_size = 23;
1722                 break;
1723         case 64:
1724                 exp_size = 11; mant_size = 52;
1725                 break;
1726         case 80:
1727         case 96:
1728                 exp_size = 15; mant_size = 64;
1729                 break;
1730         default:
1731                 panic("Unsupported mode in tarval_ieee754_can_conv_lossless()");
1732                 return 0;
1733         }
1734         return fc_can_lossless_conv_to(tv->value, exp_size, mant_size);
1735 }
1736
1737 /* Set the immediate precision for IEEE-754 results. */
1738 unsigned tarval_ieee754_set_immediate_precision(unsigned bits) {
1739         return fc_set_immediate_precision(bits);
1740 }
1741
1742 /* Returns non-zero if the result of the last IEEE-754 operation was exact. */
1743 unsigned tarval_ieee754_get_exact(void) {
1744         return fc_is_exact();
1745 }
1746
1747 /* check if its the a floating point NaN */
1748 int tarval_is_NaN(tarval *tv) {
1749         if (! mode_is_float(tv->mode))
1750                 return 0;
1751         return fc_is_nan(tv->value);
1752 }
1753
1754 /* check if its the a floating point +inf */
1755 int tarval_is_plus_inf(tarval *tv) {
1756         if (! mode_is_float(tv->mode))
1757                 return 0;
1758         return fc_is_inf(tv->value) && !fc_is_negative(tv->value);
1759 }
1760
1761 /* check if its the a floating point -inf */
1762 int tarval_is_minus_inf(tarval *tv) {
1763         if (! mode_is_float(tv->mode))
1764                 return 0;
1765         return fc_is_inf(tv->value) && fc_is_negative(tv->value);
1766 }
1767
1768 /* check if the tarval represents a finite value */
1769 int tarval_is_finite(tarval *tv) {
1770         if (mode_is_float(tv->mode))
1771                 return !fc_is_nan(tv->value) && !fc_is_inf(tv->value);
1772         return 1;
1773 }
1774
1775 /*
1776  * Sets the overflow mode for integer operations.
1777  */
1778 void tarval_set_integer_overflow_mode(tarval_int_overflow_mode_t ov_mode) {
1779         int_overflow_mode = ov_mode;
1780 }
1781
1782 /* Get the overflow mode for integer operations. */
1783 tarval_int_overflow_mode_t tarval_get_integer_overflow_mode(void) {
1784         return int_overflow_mode;
1785 }
1786
1787 /* Enable/Disable floating point constant folding. */
1788 int tarval_enable_fp_ops(int enable) {
1789         int old = !no_float;
1790
1791         no_float = !enable;
1792         return old;
1793 }
1794
1795 /**
1796  * default mode_info for output as HEX
1797  */
1798 static const tarval_mode_info hex_output = {
1799         TVO_HEX,
1800         "0x",
1801         NULL,
1802 };
1803
1804 /*
1805  * Initialization of the tarval module: called before init_mode()
1806  */
1807 void init_tarval_1(long null_value) {
1808         /* if these assertion fail, tarval_is_constant() will follow ... */
1809         assert(tarval_b_false == &reserved_tv[0] && "b_false MUST be the first reserved tarval!");
1810         assert(tarval_b_true  == &reserved_tv[1] && "b_true MUST be the second reserved tarval!");
1811
1812         _null_value = null_value;
1813
1814         /* initialize the sets holding the tarvals with a comparison function and
1815          * an initial size, which is the expected number of constants */
1816         tarvals = new_set(cmp_tv, N_CONSTANTS);
1817         values  = new_set(memcmp, N_CONSTANTS);
1818         /* init strcalc with precision of 68 to support floating point values with 64
1819          * bit mantissa (needs extra bits for rounding and overflow) */
1820         init_strcalc(68);
1821         init_fltcalc(0);
1822 }
1823
1824 /*
1825  * Initialization of the tarval module: called after init_mode()
1826  */
1827 void init_tarval_2(void) {
1828         tarval_bad->kind          = k_tarval;
1829         tarval_bad->mode          = mode_BAD;
1830         tarval_bad->value         = INT_TO_PTR(resid_tarval_bad);
1831
1832         tarval_undefined->kind    = k_tarval;
1833         tarval_undefined->mode    = mode_ANY;
1834         tarval_undefined->value   = INT_TO_PTR(resid_tarval_undefined);
1835
1836         tarval_b_true->kind       = k_tarval;
1837         tarval_b_true->mode       = mode_b;
1838         tarval_b_true->value      = INT_TO_PTR(resid_tarval_b_true);
1839
1840         tarval_b_false->kind      = k_tarval;
1841         tarval_b_false->mode      = mode_b;
1842         tarval_b_false->value     = INT_TO_PTR(resid_tarval_b_false);
1843
1844         tarval_unreachable->kind  = k_tarval;
1845         tarval_unreachable->mode  = mode_X;
1846         tarval_unreachable->value = INT_TO_PTR(resid_tarval_unreachable);
1847
1848         tarval_reachable->kind    = k_tarval;
1849         tarval_reachable->mode    = mode_X;
1850         tarval_reachable->value   = INT_TO_PTR(resid_tarval_reachable);
1851
1852         /*
1853          * assign output modes that are compatible with the
1854          * old implementation: Hex output
1855          */
1856         set_tarval_mode_output_option(mode_Bs, &hex_output);
1857         set_tarval_mode_output_option(mode_Bu, &hex_output);
1858         set_tarval_mode_output_option(mode_Hs, &hex_output);
1859         set_tarval_mode_output_option(mode_Hu, &hex_output);
1860         set_tarval_mode_output_option(mode_Is, &hex_output);
1861         set_tarval_mode_output_option(mode_Iu, &hex_output);
1862         set_tarval_mode_output_option(mode_Ls, &hex_output);
1863         set_tarval_mode_output_option(mode_Lu, &hex_output);
1864         set_tarval_mode_output_option(mode_P,  &hex_output);
1865 }
1866
1867 /* free all memory occupied by tarval. */
1868 void finish_tarval(void) {
1869         finish_strcalc();
1870         finish_fltcalc();
1871         del_set(tarvals); tarvals = NULL;
1872         del_set(values);  values = NULL;
1873 }
1874
1875 int (is_tarval)(const void *thing) {
1876         return _is_tarval(thing);
1877 }
1878
1879 /****************************************************************************
1880  *   end of tv.c
1881  ****************************************************************************/