rework liveness dumper
[libfirm] / ir / tv / tv.c
index ac2d4f6..8552fc8 100644 (file)
@@ -23,7 +23,6 @@
  *           values.
  * @date     2003
  * @author   Mathias Heil
- * @version  $Id$
  * @brief
  *
  * Values are stored in a format depending upon chosen arithmetic
@@ -47,7 +46,7 @@
 #include "irnode.h"
 #include "strcalc.h"
 #include "fltcalc.h"
-#include "irtools.h"
+#include "util.h"
 #include "xmalloc.h"
 #include "firm_common.h"
 #include "error.h"
@@ -78,11 +77,11 @@ static float_to_int_mode current_float_to_int_mode = TRUNCATE;
 #  define TARVAL_VERIFY(a) ((void)0)
 #endif
 
-#define INSERT_TARVAL(tv) ((ir_tarval*)set_insert(tarvals, (tv), sizeof(ir_tarval), hash_tv((tv))))
-#define FIND_TARVAL(tv) ((ir_tarval*)set_find(tarvals, (tv), sizeof(ir_tarval), hash_tv((tv))))
+#define INSERT_TARVAL(tv) (set_insert(ir_tarval, tarvals, (tv), sizeof(ir_tarval), hash_tv((tv))))
+#define FIND_TARVAL(tv) (set_find(ir_tarval, tarvals, (tv), sizeof(ir_tarval), hash_tv((tv))))
 
-#define INSERT_VALUE(val, size) (set_insert(values, (val), size, hash_val((val), size)))
-#define FIND_VALUE(val, size) (set_find(values, (val), size, hash_val((val), size)))
+#define INSERT_VALUE(val, size) (set_insert(char, values, (val), size, hash_val((val), size)))
+#define FIND_VALUE(val, size) (set_find(char, values, (val), size, hash_val((val), size)))
 
 #define fail_verify(a) _fail_verify((a), __FILE__, __LINE__)
 
@@ -100,18 +99,6 @@ static tarval_int_overflow_mode_t int_overflow_mode = TV_OVERFLOW_WRAP;
 /** if this is set non-zero, the constant folding for floating point is OFF */
 static int no_float = 0;
 
-/** IEEE-754r half precision */
-static const ieee_descriptor_t half_desc     = {  5,  10, 0, NORMAL };
-/** IEEE-754 single precision */
-static const ieee_descriptor_t single_desc   = {  8,  23, 0, NORMAL };
-/** IEEE-754 double precision */
-static const ieee_descriptor_t double_desc   = { 11,  52, 0, NORMAL };
-/** Intel x87 extended precision */
-static const ieee_descriptor_t extended_desc = { 15,  63, 1, NORMAL };
-
-/** IEEE-754r quad precision */
-static const ieee_descriptor_t quad_desc     = { 15, 112, 0, NORMAL };
-
 /****************************************************************************
  *   private functions
  ****************************************************************************/
@@ -212,7 +199,7 @@ static ir_tarval *get_tarval(const void *value, size_t length, ir_mode *mode)
        }
        /* if there is such a tarval, it is returned, else tv is copied
         * into the set */
-       return (ir_tarval *)INSERT_TARVAL(&tv);
+       return INSERT_TARVAL(&tv);
 }
 
 /**
@@ -304,22 +291,9 @@ ir_tarval *tarval_unreachable = &reserved_tv[5];
 /**
  * get the float descriptor for given mode.
  */
-static const ieee_descriptor_t *get_descriptor(const ir_mode *mode)
-{
-       switch (get_mode_size_bits(mode)) {
-       case 16:  return &half_desc;
-       case 32:  return &single_desc;
-       case 64:  return &double_desc;
-       case 80:
-       case 96:
-       case 128: return &extended_desc; /* FIXME: HACK for x86 where we have
-                                                                               sizeof(long double)==16 with 10 byte
-                                                                               real payload */
-       /* case 128: return &quad_desc; */
-       default:
-               (void) quad_desc;
-               panic("Unsupported mode in get_descriptor()");
-       }
+static const float_descriptor_t *get_descriptor(const ir_mode *mode)
+{
+       return &mode->float_desc;
 }
 
 ir_tarval *new_integer_tarval_from_str(const char *str, size_t len, char sign,
@@ -370,6 +344,10 @@ static ir_tarval *new_tarval_from_str_int(const char *str, size_t len,
                        str += 2;
                        len -= 2;
                        base = 16;
+               } else if (str[1] == 'b' || str[1] == 'B') {
+                       str += 2;
+                       len -= 2;
+                       base = 2;
                } else {
                        ++str;
                        --len;
@@ -393,18 +371,13 @@ static ir_tarval *new_tarval_from_str_int(const char *str, size_t len,
  */
 ir_tarval *new_tarval_from_str(const char *str, size_t len, ir_mode *mode)
 {
-       const ieee_descriptor_t *desc;
+       const float_descriptor_t *desc;
 
        assert(str);
        assert(len);
        assert(mode);
 
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("Unsupported tarval creation with mode %F", mode);
-
        case irms_internal_boolean:
                /* match [tT][rR][uU][eE]|[fF][aA][lL][sS][eE] */
                if (!strcasecmp(str, "true"))
@@ -426,8 +399,9 @@ ir_tarval *new_tarval_from_str(const char *str, size_t len, ir_mode *mode)
                /* FALLTHROUGH */
        case irms_int_number:
                return new_tarval_from_str_int(str, len, mode);
+       default:
+               panic("Unsupported tarval creation with mode %F", mode);
        }
-       panic("Unsupported tarval creation with mode %F", mode);
 }
 
 /*
@@ -483,7 +457,7 @@ long get_tarval_long(ir_tarval* tv)
 
 ir_tarval *new_tarval_from_long_double(long double d, ir_mode *mode)
 {
-       const ieee_descriptor_t *desc;
+       const float_descriptor_t *desc;
 
        assert(mode && (get_mode_sort(mode) == irms_float_number));
        desc = get_descriptor(mode);
@@ -569,20 +543,9 @@ ir_tarval *(get_tarval_unreachable)(void)
 
 ir_tarval *get_tarval_max(ir_mode *mode)
 {
-       const ieee_descriptor_t *desc;
-
-       assert(mode);
-       if (get_mode_n_vector_elems(mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
+       const float_descriptor_t *desc;
 
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("mode %F does not support maximum value", mode);
-
        case irms_internal_boolean:
                return tarval_b_true;
 
@@ -595,26 +558,16 @@ ir_tarval *get_tarval_max(ir_mode *mode)
        case irms_int_number:
                sc_max_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
+       default:
+               panic("mode %F does not support maximum value", mode);
        }
-       return tarval_bad;
 }
 
 ir_tarval *get_tarval_min(ir_mode *mode)
 {
-       const ieee_descriptor_t *desc;
-
-       assert(mode);
-       if (get_mode_n_vector_elems(mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
+       const float_descriptor_t *desc;
 
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("mode %F does not support minimum value", mode);
-
        case irms_internal_boolean:
                return tarval_b_false;
 
@@ -627,8 +580,9 @@ ir_tarval *get_tarval_min(ir_mode *mode)
        case irms_int_number:
                sc_min_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
+       default:
+               panic("mode %F does not support minimum value", mode);
        }
-       return tarval_bad;
 }
 
 /** The bit pattern for the pointer NULL */
@@ -636,19 +590,7 @@ static long _null_value = 0;
 
 ir_tarval *get_tarval_null(ir_mode *mode)
 {
-       assert(mode);
-
-       if (get_mode_n_vector_elems(mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("mode %F does not support null value", mode);
-
        case irms_float_number:
                return new_tarval_from_double(0.0, mode);
 
@@ -658,23 +600,14 @@ ir_tarval *get_tarval_null(ir_mode *mode)
 
        case irms_reference:
                return new_tarval_from_long(_null_value, mode);
+       default:
+               panic("mode %F does not support null value", mode);
        }
-       return tarval_bad;
 }
 
 ir_tarval *get_tarval_one(ir_mode *mode)
 {
-       assert(mode);
-
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("mode %F does not support one value", mode);
-
        case irms_internal_boolean:
                return tarval_b_true;
 
@@ -684,38 +617,30 @@ ir_tarval *get_tarval_one(ir_mode *mode)
        case irms_reference:
        case irms_int_number:
                return new_tarval_from_long(1l, mode);
+       default:
+               panic("mode %F does not support one value", mode);
        }
-       return tarval_bad;
 }
 
 ir_tarval *get_tarval_all_one(ir_mode *mode)
 {
-       assert(mode);
-
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               panic("mode %F does not support all-one value", mode);
-
        case irms_int_number:
        case irms_internal_boolean:
        case irms_reference:
                return tarval_not(get_mode_null(mode));
 
-
        case irms_float_number:
                return new_tarval_from_double(1.0, mode);
+
+       default:
+               panic("mode %F does not support all-one value", mode);
        }
-       return tarval_bad;
 }
 
 int tarval_is_constant(ir_tarval *tv)
 {
-       int num_res = sizeof(reserved_tv) / sizeof(reserved_tv[0]);
+       size_t const num_res = ARRAY_SIZE(reserved_tv);
 
        /* reserved tarvals are NOT constants. Note that although
           tarval_b_true and tarval_b_false are reserved, they are constants of course. */
@@ -724,18 +649,7 @@ int tarval_is_constant(ir_tarval *tv)
 
 ir_tarval *get_tarval_minus_one(ir_mode *mode)
 {
-       assert(mode);
-
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        switch (get_mode_sort(mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-       case irms_internal_boolean:
-               panic("mode %F does not support minus one value", mode);
-
        case irms_reference:
                return tarval_bad;
 
@@ -744,17 +658,15 @@ ir_tarval *get_tarval_minus_one(ir_mode *mode)
 
        case irms_int_number:
                return new_tarval_from_long(-1l, mode);
+
+       default:
+               panic("mode %F does not support minus one value", mode);
        }
-       return tarval_bad;
 }
 
 ir_tarval *get_tarval_nan(ir_mode *mode)
 {
-       const ieee_descriptor_t *desc;
-
-       assert(mode);
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
+       const float_descriptor_t *desc;
 
        if (get_mode_sort(mode) == irms_float_number) {
                desc = get_descriptor(mode);
@@ -766,12 +678,8 @@ ir_tarval *get_tarval_nan(ir_mode *mode)
 
 ir_tarval *get_tarval_plus_inf(ir_mode *mode)
 {
-       assert(mode);
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        if (get_mode_sort(mode) == irms_float_number) {
-               const ieee_descriptor_t *desc = get_descriptor(mode);
+               const float_descriptor_t *desc = get_descriptor(mode);
                fc_get_plusinf(desc, NULL);
                return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
        } else
@@ -780,13 +688,8 @@ ir_tarval *get_tarval_plus_inf(ir_mode *mode)
 
 ir_tarval *get_tarval_minus_inf(ir_mode *mode)
 {
-       assert(mode);
-
-       if (get_mode_n_vector_elems(mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        if (get_mode_sort(mode) == irms_float_number) {
-               const ieee_descriptor_t *desc = get_descriptor(mode);
+               const float_descriptor_t *desc = get_descriptor(mode);
                fc_get_minusinf(desc, NULL);
                return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
        } else
@@ -802,9 +705,6 @@ ir_tarval *get_tarval_minus_inf(ir_mode *mode)
  */
 int tarval_is_negative(ir_tarval *a)
 {
-       if (get_mode_n_vector_elems(a->mode) > 1)
-               panic("vector arithmetic not implemented yet");
-
        switch (get_mode_sort(a->mode)) {
        case irms_int_number:
                if (!mode_is_signed(a->mode)) return 0;
@@ -873,20 +773,8 @@ ir_relation tarval_cmp(ir_tarval *a, ir_tarval *b)
        if (a->mode != b->mode)
                return ir_relation_false;
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               panic("cmp not implemented for vector modes");
-       }
-
        /* Here the two tarvals are unequal and of the same mode */
        switch (get_mode_sort(a->mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               if (a == b)
-                       return ir_relation_equal;
-               return ir_relation_false;
-
        case irms_float_number:
                /*
                 * BEWARE: we cannot compare a == b here, because
@@ -909,8 +797,10 @@ ir_relation tarval_cmp(ir_tarval *a, ir_tarval *b)
                if (a == b)
                        return ir_relation_equal;
                return a == tarval_b_true ? ir_relation_greater : ir_relation_less;
+
+       default:
+               panic("can't compare values of mode %F", a->mode);
        }
-       return ir_relation_false;
 }
 
 /*
@@ -920,7 +810,7 @@ ir_tarval *tarval_convert_to(ir_tarval *src, ir_mode *dst_mode)
 {
        char                    *buffer;
        fp_value                *res = NULL;
-       const ieee_descriptor_t *desc;
+       const float_descriptor_t *desc;
        int                      len;
 
        carry_flag = -1;
@@ -931,18 +821,8 @@ ir_tarval *tarval_convert_to(ir_tarval *src, ir_mode *dst_mode)
        if (src->mode == dst_mode)
                return src;
 
-       if (get_mode_n_vector_elems(src->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        switch (get_mode_sort(src->mode)) {
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
-               break;
-
-               /* cast float to something */
+       /* cast float to something */
        case irms_float_number:
                switch (get_mode_sort(dst_mode)) {
                case irms_float_number:
@@ -978,7 +858,6 @@ ir_tarval *tarval_convert_to(ir_tarval *src, ir_mode *dst_mode)
                case irms_int_number:
                        buffer = (char*) alloca(sc_get_buffer_length());
                        memcpy(buffer, src->value, sc_get_buffer_length());
-                       sign_extend(buffer, dst_mode);
                        return get_tarval_overflow(buffer, src->length, dst_mode);
 
                case irms_internal_boolean:
@@ -1019,6 +898,8 @@ ir_tarval *tarval_convert_to(ir_tarval *src, ir_mode *dst_mode)
                        return get_tarval_overflow(buffer, src->length, dst_mode);
                }
                break;
+       default:
+               return tarval_bad;
        }
 
        return tarval_bad;
@@ -1067,11 +948,6 @@ ir_tarval *tarval_neg(ir_tarval *a)
 
        /* note: negation is allowed even for unsigned modes. */
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        switch (get_mode_sort(a->mode)) {
        case irms_int_number:
                buffer = (char*) alloca(sc_get_buffer_length());
@@ -1100,11 +976,6 @@ ir_tarval *tarval_add(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (mode_is_reference(a->mode) && a->mode != b->mode) {
                b = tarval_convert_to(b, a->mode);
        } else if (mode_is_reference(b->mode) && b->mode != a->mode) {
@@ -1143,11 +1014,6 @@ ir_tarval *tarval_sub(ir_tarval *a, ir_tarval *b, ir_mode *dst_mode)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (dst_mode != NULL) {
                if (a->mode != dst_mode)
                        a = tarval_convert_to(a, dst_mode);
@@ -1188,11 +1054,6 @@ ir_tarval *tarval_mul(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        switch (get_mode_sort(a->mode)) {
        case irms_int_number:
                /* modes of a,b are equal */
@@ -1223,11 +1084,6 @@ ir_tarval *tarval_div(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (mode_is_int(mode)) {
                /* x/0 error */
                if (b == get_mode_null(mode))
@@ -1253,11 +1109,6 @@ ir_tarval *tarval_mod(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        /* x/0 error */
        if (b == get_mode_null(b->mode)) return tarval_bad;
        /* modes of a,b are equal */
@@ -1279,12 +1130,6 @@ ir_tarval *tarval_divmod(ir_tarval *a, ir_tarval *b, ir_tarval **mod)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
-
        /* x/0 error */
        if (b == get_mode_null(b->mode)) return tarval_bad;
        /* modes of a,b are equal */
@@ -1303,11 +1148,6 @@ ir_tarval *tarval_abs(ir_tarval *a)
        carry_flag = -1;
        assert(mode_is_num(a->mode));
 
-       if (get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        switch (get_mode_sort(a->mode)) {
        case irms_int_number:
                if (sc_comp(a->value, get_mode_null(a->mode)->value) == -1) {
@@ -1349,6 +1189,7 @@ ir_tarval *tarval_and(ir_tarval *a, ir_tarval *b)
        case irms_internal_boolean:
                return (a == tarval_b_false) ? a : b;
 
+       case irms_reference:
        case irms_int_number:
                sc_and(a->value, b->value, NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
@@ -1369,6 +1210,7 @@ ir_tarval *tarval_andnot(ir_tarval *a, ir_tarval *b)
        case irms_internal_boolean:
                return a == tarval_b_true && b == tarval_b_false ? tarval_b_true : tarval_b_false;
 
+       case irms_reference:
        case irms_int_number:
                sc_andnot(a->value, b->value, NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
@@ -1392,6 +1234,7 @@ ir_tarval *tarval_or(ir_tarval *a, ir_tarval *b)
        case irms_internal_boolean:
                return (a == tarval_b_true) ? a : b;
 
+       case irms_reference:
        case irms_int_number:
                sc_or(a->value, b->value, NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
@@ -1415,6 +1258,7 @@ ir_tarval *tarval_eor(ir_tarval *a, ir_tarval *b)
        case irms_internal_boolean:
                return (a == b)? tarval_b_false : tarval_b_true;
 
+       case irms_reference:
        case irms_int_number:
                sc_xor(a->value, b->value, NULL);
                return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
@@ -1435,11 +1279,6 @@ ir_tarval *tarval_shl(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (get_mode_modulo_shift(a->mode) != 0) {
                temp_val = (char*) alloca(sc_get_buffer_length());
 
@@ -1452,6 +1291,17 @@ ir_tarval *tarval_shl(ir_tarval *a, ir_tarval *b)
        return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
 }
 
+ir_tarval *tarval_shl_unsigned(ir_tarval *a, unsigned b)
+{
+       ir_mode *mode   = a->mode;
+       unsigned modulo = get_mode_modulo_shift(mode);
+       if (modulo != 0)
+               b %= modulo;
+       assert((unsigned)(long)b==b);
+       sc_shlI(a->value, (long)b, get_mode_size_bits(mode), mode_is_signed(mode), NULL);
+       return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
+}
+
 /*
  * bitwise unsigned right shift
  */
@@ -1463,11 +1313,6 @@ ir_tarval *tarval_shr(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (get_mode_modulo_shift(a->mode) != 0) {
                temp_val = (char*) alloca(sc_get_buffer_length());
 
@@ -1480,6 +1325,17 @@ ir_tarval *tarval_shr(ir_tarval *a, ir_tarval *b)
        return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
 }
 
+ir_tarval *tarval_shr_unsigned(ir_tarval *a, unsigned b)
+{
+       ir_mode *mode   = a->mode;
+       unsigned modulo = get_mode_modulo_shift(mode);
+       if (modulo != 0)
+               b %= modulo;
+       assert((unsigned)(long)b==b);
+       sc_shrI(a->value, (long)b, get_mode_size_bits(mode), mode_is_signed(mode), NULL);
+       return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
+}
+
 /*
  * bitwise signed right shift
  */
@@ -1491,11 +1347,6 @@ ir_tarval *tarval_shrs(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (get_mode_modulo_shift(a->mode) != 0) {
                temp_val = (char*) alloca(sc_get_buffer_length());
 
@@ -1508,6 +1359,17 @@ ir_tarval *tarval_shrs(ir_tarval *a, ir_tarval *b)
        return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
 }
 
+ir_tarval *tarval_shrs_unsigned(ir_tarval *a, unsigned b)
+{
+       ir_mode *mode   = a->mode;
+       unsigned modulo = get_mode_modulo_shift(mode);
+       if (modulo != 0)
+               b %= modulo;
+       assert((unsigned)(long)b==b);
+       sc_shrsI(a->value, (long)b, get_mode_size_bits(mode), mode_is_signed(mode), NULL);
+       return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
+}
+
 /*
  * bitwise rotation to left
  */
@@ -1519,11 +1381,6 @@ ir_tarval *tarval_rotl(ir_tarval *a, ir_tarval *b)
 
        carry_flag = -1;
 
-       if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
-               /* vector arithmetic not implemented yet */
-               return tarval_bad;
-       }
-
        if (get_mode_modulo_shift(a->mode) != 0) {
                temp_val = (char*) alloca(sc_get_buffer_length());
 
@@ -1616,21 +1473,18 @@ int tarval_snprintf(char *buf, size_t len, ir_tarval *tv)
                        return snprintf(buf, len, "%s%s%s", prefix, (tv == tarval_b_true) ? "true" : "false", suffix);
                }
 
-       case irms_control_flow:
-       case irms_memory:
-       case irms_auxiliary:
+       default:
                if (tv == tarval_bad)
                        return snprintf(buf, len, "<TV_BAD>");
-               if (tv == tarval_undefined)
-                       return snprintf(buf, len, "<TV_UNDEF>");
-               if (tv == tarval_unreachable)
-                       return snprintf(buf, len, "<TV_UNREACHABLE>");
-               if (tv == tarval_reachable)
+               else if (tv == tarval_undefined)
+                       return snprintf(buf, len, "<TV_UNDEFINED>");
+               else if (tv == tarval_reachable)
                        return snprintf(buf, len, "<TV_REACHABLE>");
-               return snprintf(buf, len, "<TV_??""?>");
+               else if (tv == tarval_unreachable)
+                       return snprintf(buf, len, "<TV_UNREACHABLE>");
+               else
+                       return snprintf(buf, len, "<TV_??""?>");
        }
-
-       return 0;
 }
 
 /**
@@ -1676,9 +1530,10 @@ unsigned char get_tarval_sub_bits(ir_tarval *tv, unsigned byte_ofs)
        case irma_twos_complement:
                return sc_sub_bits(tv->value, get_mode_size_bits(tv->mode), byte_ofs);
        case irma_ieee754:
+       case irma_x86_extended_float:
                return fc_sub_bits((const fp_value*) tv->value, get_mode_size_bits(tv->mode), byte_ofs);
        default:
-               panic("get_tarval_sub_bits(): arithmetic mode not supported");
+               panic("arithmetic mode not supported");
        }
 }
 
@@ -1784,16 +1639,18 @@ int get_tarval_lowest_bit(ir_tarval *tv)
  * Returns non-zero if the mantissa of a floating point IEEE-754
  * tarval is zero (i.e. 1.0Exxx)
  */
-int tarval_ieee754_zero_mantissa(ir_tarval *tv)
+int tarval_zero_mantissa(ir_tarval *tv)
 {
-       assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
+       assert(get_mode_arithmetic(tv->mode) == irma_ieee754
+              || get_mode_arithmetic(tv->mode) == irma_x86_extended_float);
        return fc_zero_mantissa((const fp_value*) tv->value);
 }
 
 /* Returns the exponent of a floating point IEEE-754 tarval. */
-int tarval_ieee754_get_exponent(ir_tarval *tv)
+int tarval_get_exponent(ir_tarval *tv)
 {
-       assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
+       assert(get_mode_arithmetic(tv->mode) == irma_ieee754
+              || get_mode_arithmetic(tv->mode) == irma_x86_extended_float);
        return fc_get_exponent((const fp_value*) tv->value);
 }
 
@@ -1803,34 +1660,16 @@ int tarval_ieee754_get_exponent(ir_tarval *tv)
  */
 int tarval_ieee754_can_conv_lossless(ir_tarval *tv, ir_mode *mode)
 {
-       const ieee_descriptor_t *desc = get_descriptor(mode);
+       const float_descriptor_t *desc = get_descriptor(mode);
        return fc_can_lossless_conv_to((const fp_value*) tv->value, desc);
 }
 
-/* Set the immediate precision for IEEE-754 results. */
-unsigned tarval_ieee754_set_immediate_precision(unsigned bits)
-{
-       return fc_set_immediate_precision(bits);
-}
-
 /* Returns non-zero if the result of the last IEEE-754 operation was exact. */
 unsigned tarval_ieee754_get_exact(void)
 {
        return fc_is_exact();
 }
 
-/* Return the size of the mantissa in bits (including possible
-   implicit bits) for the given mode. */
-unsigned tarval_ieee754_get_mantissa_size(const ir_mode *mode)
-{
-       const ieee_descriptor_t *desc;
-
-       assert(get_mode_arithmetic(mode) == irma_ieee754);
-       desc = get_descriptor(mode);
-
-       return desc->mantissa_size + desc->explicit_one;
-}
-
 /* check if its the a floating point NaN */
 int tarval_is_NaN(ir_tarval *tv)
 {