X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftype_identify.c;h=70b899806dba2101ae0ef597e7a63517de01d4cd;hb=ffb44cf6888d05f8928cfc2bf5719977515baead;hp=684af480ca40c3f006a517501503c2e147664b2e;hpb=c9bea48f570667bbc5d50504a8e6372260d73145;p=libfirm diff --git a/ir/tr/type_identify.c b/ir/tr/type_identify.c index 684af480c..70b899806 100644 --- a/ir/tr/type_identify.c +++ b/ir/tr/type_identify.c @@ -1,6 +1,6 @@ /* * Project: libFIRM - * File name: ir/tr/type.c + * File name: ir/tr/type_identify.c * Purpose: Representation of types. * Author: Goetz Lindenmaier * Modified by: @@ -11,19 +11,18 @@ */ /** + * @file type_identify.c * - * file type.c - implementation of the datastructure to hold - * type information. * (C) 2004 by Universitaet Karlsruhe * Goetz Lindenmaier * */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif -#include "type_identify.h" +#include "type_identify_t.h" #include #include @@ -37,44 +36,41 @@ #include "irprog_t.h" #include "mangle.h" #include "pset.h" +#include "irtools.h" /* The hash set for types. */ static pset *type_table = NULL; +/* hash and compare types */ +static hash_types_func_t *hash_types_func; +static compare_types_func_t *compare_types_func; int compare_names (const void *tp1, const void *tp2) { - type *t1 = (type *) tp1; - type *t2 = (type *) tp2; + ir_type *t1 = (ir_type *) tp1; + ir_type *t2 = (ir_type *) tp2; return (t1 != t2 && (t1->type_op != t2->type_op || t1->name != t2->name ) ); } - /* stuff for comparing two types. */ -//int compare_strict (type *tp1, type *tp2) { int compare_strict (const void *tp1, const void *tp2) { - type *t1 = (type *) tp1; - type *t2 = (type *) tp2; + ir_type *t1 = (ir_type *) tp1; + ir_type *t2 = (ir_type *) tp2; return t1 != t2; } -compare_types_func_tp compare_types_func = compare_strict; - /* stuff to compute a hash value for a type. */ -int hash_name (type *tp) { - unsigned h = (unsigned)tp->type_op; - h = 9*h + (unsigned)tp->name; +int firm_hash_name (ir_type *tp) { + unsigned h = (unsigned)PTR_TO_INT(tp->type_op); + h = 9*h + (unsigned)PTR_TO_INT(tp->name); return h; } -hash_types_func_tp hash_types_func = hash_name; - - /* The function that hashes a type. */ -type *mature_type(type *tp) { - type *o; +ir_type *mature_type(ir_type *tp) { + ir_type *o; assert(type_table); @@ -89,8 +85,8 @@ type *mature_type(type *tp) { /* The function that hashes a type. */ -type *mature_type_free(type *tp) { - type *o; +ir_type *mature_type_free(ir_type *tp) { + ir_type *o; assert(type_table); @@ -105,8 +101,8 @@ type *mature_type_free(type *tp) { } /* The function that hashes a type. */ -type *mature_type_free_entities(type *tp) { - type *o; +ir_type *mature_type_free_entities(ir_type *tp) { + ir_type *o; assert(type_table); @@ -120,9 +116,10 @@ type *mature_type_free_entities(type *tp) { return o; } -void init_type_identify(void) { - //type_table = new_pset ((int (const void *, const void *))compare_types_func, 8); +/* initialize this module */ +void init_type_identify(type_identify_if_t *ti_if) { + compare_types_func = ti_if && ti_if->cmp ? ti_if->cmp : compare_strict; + hash_types_func = ti_if && ti_if->hash ? ti_if->hash : firm_hash_name; type_table = new_pset (compare_types_func, 8); - //type_table = new_pset (compare_names, 8); }