some fixes for xml dumper / still buggy.
[libfirm] / ir / tv / tv.h
index 463ee2c..7fc684c 100644 (file)
@@ -284,13 +284,20 @@ ir_mode *get_tarval_mode (tarval *tv);
 
 /* Testing properties of the represented values */
 
-/** Returns 0 if tv is positive, else > 0.
+/**
+ * Returns 1 if tv is negative
  *
- * @todo
- *   not tested!
+ * @param a    the tarval
  */
 int tarval_is_negative(tarval *a);
 
+/**
+ * Returns 1 if tv is null
+ *
+ * @param a    the tarval
+ */
+int tarval_is_null(tarval *a);
+
 /** The 'bad' tarval. */
 extern tarval *tarval_bad;
 /** Returns the 'bad tarval. */
@@ -440,7 +447,7 @@ tarval *tarval_abs(tarval *a);
 tarval *tarval_and(tarval *a, tarval *b);
 
 /** Bitwise or. */
-tarval *tarval_or (tarval *a, tarval *b);
+tarval *tarval_or(tarval *a, tarval *b);
 
 /** Bitwise exclusive or. */
 tarval *tarval_eor(tarval *a, tarval *b);
@@ -467,25 +474,25 @@ tarval *tarval_rot(tarval *a, tarval *b);
  * one and let every backend convert it into the 'right' one.
  * However, we can do this in the tarval much simplier...
  */
-enum tv_output_mode {
+typedef enum {
   TVO_NATIVE,                  /**< the default output mode, depends on the mode */
   TVO_HEX,                     /**< use hex representation, always possible */
   TVO_DECIMAL,                 /**< use decimal representation */
   TVO_OCTAL,                   /**< use octal representation */
   TVO_BINARY,                  /**< use binary representation */
-  TVO_FLOAT,                   /**< use floating point representation */
-};
+  TVO_FLOAT                    /**< use floating point representation */
+} tv_output_mode;
 
 /**
  * This structure contains helper information to format the output
  * of a tarval of an mode.
  */
 typedef struct tarval_mode_info {
-    enum tv_output_mode mode_output;   /**< if != TVO_NATIVE select a special mode */
-    const char *mode_prefix;           /**< if set, this prefix will be print
-                                            before a value of this mode */
-    const char *mode_suffix;           /**< if set, this suffixx will be print
+    tv_output_mode mode_output;                /**< if != TVO_NATIVE select a special mode */
+    const char *mode_prefix;           /**< if set, this prefix will be printed
                                             before a value of this mode */
+    const char *mode_suffix;           /**< if set, this suffix will be printed
+                                            after a value of this mode */
 } tarval_mode_info;
 
 /**
@@ -496,10 +503,21 @@ typedef struct tarval_mode_info {
  * @param mode         a ir_mode that should be associated
  * @param modeinfo     the output format info
  *
- * Returns zero on success.
+ * @return zero on success.
  */
 int tarval_set_mode_output_option(ir_mode *mode, const tarval_mode_info *modeinfo);
 
+/**
+ * Returns the output options of one mode.
+ *
+ * This functions returns the modinfo of a given mode.
+ *
+ * @param mode         a ir_mode that should be associated
+ *
+ * @return the output option
+ */
+const tarval_mode_info *tarval_get_mode_output_option(ir_mode *mode);
+
 /**
  * Returns Bit representation of a tarval value, as string of '0' and '1'
  *
@@ -525,11 +543,6 @@ int tarval_set_mode_output_option(ir_mode *mode, const tarval_mode_info *modeinf
  */
 char *tarval_bitpattern(tarval *tv);
 
-/**
- * Returns bitpattern [from, to[.
- */
-char *tarval_sub_bitpattern(tarval *tv, int from, int to);
-
 /**
  * Returns the bitpattern of the bytes_ofs byte.
  *
@@ -586,7 +599,14 @@ void init_tarval_1(void);
  */
 void init_tarval_2(void);
 
-typedef int printf_func (void* , const char *, ...) ;
-int tarval_xprintf(printf_func , void * , tarval *);
+/**
+ * Output of tarvals to a buffer.
+ */
+int tarval_snprintf(char *buf, size_t buflen, tarval *tv);
+
+/**
+ * Output of tarvals to stdio.
+ */
+int tarval_printf(tarval *tv);
 
 #endif  /* _TV_H_ */