Remove the unused attribute const arch_env_t *arch_env from struct dump_env and also...
[libfirm] / ir / ident / ident.c
index 16192a9..3a4e38d 100644 (file)
@@ -1,30 +1,45 @@
 /*
- * Project:     libFIRM
- * File name:   ir/common/ident.c
- * Purpose:     Hash table to store names.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
  */
 
+/**
+ * @file
+ * @brief     Hash table to store names.
+ * @author    Goetz Lindenmaier
+ * @version   $Id$
+ */
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
 #include <assert.h>
 #include <ctype.h>
+#include <stdio.h>
 #include <string.h>
 #include <stddef.h>
 #include <stdlib.h>
 
 #include "ident_t.h"
 #include "set.h"
+#include "xmalloc.h"
 
 /* for debugging only, not the real implementation */
-struct ident {
+struct _ident {
   char reserved[sizeof(unsigned) + sizeof(size_t)];
   char data[1];
 };
@@ -49,7 +64,7 @@ static ident *set_new_id_from_chars(void *handle, const char *str, int len)
 
   /* GL: Who added this assert?  And why? */
   //assert(len > 0);
-  return (ident *)set_hinsert0(id_set, str, len, ID_HASH(str, len));
+  return (ident *)set_hinsert0(id_set, str, len, ID_HASH(unsigned char, str, len));
 }
 
 /**
@@ -77,6 +92,7 @@ static ident *set_new_id_from_str(void *handle, const char *str)
 static const char *set_get_id_str(void *handle, ident *id)
 {
   struct set_entry *entry = (struct set_entry *)id;
+  (void) handle;
 
   return (const char *)entry->dptr;
 }
@@ -92,6 +108,7 @@ static const char *set_get_id_str(void *handle, ident *id)
 static int set_get_id_strlen(void *handle, ident *id)
 {
   struct set_entry *entry = (struct set_entry *)id;
+  (void) handle;
 
   return entry->size;
 }
@@ -131,14 +148,14 @@ void init_ident(ident_if_t *id_if, int initial_n_idents)
       impl.new_id_from_str = def_new_id_from_str;
     if (! impl.get_id_strlen)
       impl.get_id_strlen = def_get_id_strlen;
-  }
-  else {
-   impl.new_id_from_str   = set_new_id_from_str;
-   impl.new_id_from_chars = set_new_id_from_chars;
-   impl.get_id_str        = set_get_id_str;
-   impl.get_id_strlen     = set_get_id_strlen;
-   impl.finish_ident      = set_finish_ident;
-
+  } else {
+   impl.new_id_from_str    = set_new_id_from_str;
+   impl.new_id_from_chars  = set_new_id_from_chars;
+   impl.get_id_str         = set_get_id_str;
+   impl.get_id_strlen      = set_get_id_strlen;
+   impl.finish_ident       = set_finish_ident;
+
+   /* it's ok to use memcmp here, we check only strings */
    impl.handle = new_set(memcmp, initial_n_idents);
   }
 }
@@ -195,12 +212,12 @@ int id_contains_char(ident *id, char c)
   return strchr(get_id_str(id), c) != NULL;
 }
 
-int print_id (ident *id)
+ident *id_unique(const char *tag)
 {
-  return printf("%s", get_id_str(id));
-}
+       static unsigned unique_id = 0;
+       char buf[256];
 
-int fprint_id (FILE *F, ident *id)
-{
-  return fprintf(F, "%s", get_id_str(id));
+       snprintf(buf, sizeof(buf), tag, unique_id);
+       unique_id++;
+       return new_id_from_str(buf);
 }