make it possible to specify custom mode for set lowering
[libfirm] / include / libfirm / tv.h
index 8a407c2..b031a8e 100644 (file)
@@ -250,6 +250,11 @@ int tarval_is_null(tarval *a);
  */
 int tarval_is_one(tarval *a);
 
+/*
+ * returns non-zero if all bits in the tarval are set
+ */
+int tarval_is_all_one(tarval *tv);
+
 /** The 'bad' tarval. */
 extern tarval *tarval_bad;
 /** Returns the 'bad tarval. */
@@ -294,6 +299,10 @@ tarval *get_tarval_one(ir_mode *mode);
  *  Returns tarval bad for unsigned modes */
 tarval *get_tarval_minus_one(ir_mode *mode);
 
+/** returns the value where all bits are 1 of a given mode.
+ * returns tarval_bad for float modes */
+tarval *get_tarval_all_one(ir_mode *mode);
+
 /** Return quite nan for float_number modes. */
 tarval *get_tarval_nan(ir_mode *mode);
 
@@ -415,6 +424,9 @@ tarval *tarval_div(tarval *a, tarval *b);
 /** Remainder of integer division. */
 tarval *tarval_mod(tarval *a, tarval *b);
 
+/** Integer division AND remainder. */
+tarval *tarval_divmod(tarval *a, tarval *b, tarval **mod_res);
+
 /** Absolute value. */
 tarval *tarval_abs(tarval *a);
 
@@ -549,29 +561,6 @@ char *get_tarval_bitpattern(tarval *tv);
  */
 unsigned char get_tarval_sub_bits(tarval *tv, unsigned byte_ofs);
 
-/**
- * Return values of tarval classify
- */
-typedef enum _tarval_classification_t {
-  TV_CLASSIFY_NULL    =  0, /**< the tarval represents the additive neutral element */
-  TV_CLASSIFY_ONE     = +1, /**< the tarval represents the multiplicative neutral element */
-  TV_CLASSIFY_ALL_ONE = -1, /**< the tarval represents the bitwise-and neutral element */
-  TV_CLASSIFY_OTHER   =  2  /**< all other tarvals */
-} tarval_classification_t;
-
-/**
- * Identifying tarvals values for algebraic simplifications.
- *
- * @param tv        the tarval
- *
- * @return
- *   - TV_CLASSIFY_NULL    for additive neutral or the NULL tarval for reference modes,
- *   - TV_CLASSIFY_ONE     for multiplicative neutral,
- *   - TV_CLASSIFY_ALL_ONE for bitwise-and neutral
- *   - TV_CLASSIFY_OTHER   else
- */
-tarval_classification_t classify_tarval(tarval *tv);
-
 /**
  * Returns non-zero if a given (integer) tarval has only one single bit
  * set.