more work on parser
[cparser] / type_hash.c
1 #include <config.h>
2
3 #include "type_hash.h"
4
5 #include "adt/error.h"
6 #include "type_t.h"
7
8 #include <assert.h>
9
10 #define HashSet         type_hash_t
11 #define HashSetIterator type_hash_iterator_t
12 #define ValueType       type_t*
13 #include "adt/hashset.h"
14 #undef ValueType
15 #undef HashSetIterator
16 #undef HashSet
17
18 static
19 unsigned hash_ptr(const void *ptr)
20 {
21         unsigned ptr_int = (ptr - NULL);
22         return ptr_int >> 3;
23 }
24
25 static
26 unsigned hash_atomic_type(const atomic_type_t *type)
27 {
28         unsigned some_prime = 27644437;
29
30         return type->atype * some_prime;
31 }
32
33 static
34 unsigned hash_pointer_type(const pointer_type_t *type)
35 {
36         return hash_ptr(type->points_to);
37 }
38
39 static
40 unsigned hash_compound_type(const compound_type_t *type)
41 {
42         unsigned result = hash_ptr(type->symbol);
43
44         return result;
45 }
46
47 static
48 unsigned hash_type(const type_t *type);
49
50 static
51 unsigned hash_method_type(const method_type_t *type)
52 {
53         unsigned result = hash_ptr(type->result_type);
54
55         method_parameter_type_t *parameter = type->parameter_types;
56         while(parameter != NULL) {
57                 result ^= hash_ptr(parameter->type);
58                 parameter = parameter->next;
59         }
60         result ^= hash_ptr(type->abi_style);
61
62         return result;
63 }
64
65 static
66 unsigned hash_enum_type(const enum_type_t *type)
67 {
68         unsigned result = hash_ptr(type->symbol);
69
70         /* TODO */
71
72         return result;
73 }
74
75 static
76 unsigned hash_type(const type_t *type)
77 {
78         unsigned hash;
79
80         switch(type->type) {
81         case TYPE_INVALID:
82                 panic("internalizing void or invalid types not possible");
83                 return 0;
84         case TYPE_ATOMIC:
85                 hash = hash_atomic_type((const atomic_type_t*) type);
86                 break;
87         case TYPE_ENUM:
88                 hash = hash_enum_type((const enum_type_t*) type);
89                 break;
90         case TYPE_COMPOUND_STRUCT:
91         case TYPE_COMPOUND_UNION:
92                 hash = hash_compound_type((const compound_type_t*) type);
93                 break;
94         case TYPE_METHOD:
95                 hash = hash_method_type((const method_type_t*) type);
96                 break;
97         case TYPE_POINTER:
98                 hash = hash_pointer_type((const pointer_type_t*) type);
99                 break;
100         }
101
102         unsigned some_prime = 99991;
103         hash ^= some_prime * type->qualifiers;
104
105         return hash;
106 }
107
108 static
109 int atomic_types_equal(const atomic_type_t *type1, const atomic_type_t *type2)
110 {
111         return type1->atype == type2->atype;
112 }
113
114 static
115 int compound_types_equal(const compound_type_t *type1,
116                          const compound_type_t *type2)
117 {
118         if(type1->symbol != type2->symbol)
119                 return 0;
120
121 #if 0
122         struct_entry_t *entry1 = type1->entries;
123         struct_entry_t *entry2 = type2->entries;
124
125         while(entry1 != NULL && entry2 != NULL) {
126                 if(entry1->type != entry2->type)
127                         return 0;
128                 entry1 = entry1->next;
129                 entry2 = entry2->next;
130         }
131         if(entry1 != NULL || entry2 != NULL)
132                 return 0;
133 #endif
134
135         return 1;
136 }
137
138 static
139 int method_types_equal(const method_type_t *type1, const method_type_t *type2)
140 {
141         if(type1->result_type != type2->result_type)
142                 return 0;
143
144         if(type1->abi_style != type2->abi_style)
145                 return 0;
146
147         method_parameter_type_t *param1 = type1->parameter_types;
148         method_parameter_type_t *param2 = type2->parameter_types;
149         while(param1 != NULL && param2 != NULL) {
150                 if(param1->type != param2->type)
151                         return 0;
152                 param1 = param1->next;
153                 param2 = param2->next;
154         }
155         if(param1 != NULL || param2 != NULL)
156                 return 0;
157
158         return 1;
159 }
160
161 static
162 int pointer_types_equal(const pointer_type_t *type1,
163                         const pointer_type_t *type2)
164 {
165         return type1->points_to == type2->points_to;
166 }
167
168 static
169 int enum_types_equal(const enum_type_t *type1, const enum_type_t *type2)
170 {
171         /* TODO */
172         return type1->symbol == type2->symbol;
173 }
174
175 static
176 int types_equal(const type_t *type1, const type_t *type2)
177 {
178         if(type1 == type2)
179                 return 1;
180         if(type1->type != type2->type)
181                 return 0;
182         if(type1->qualifiers != type2->qualifiers)
183                 return 0;
184
185         switch(type1->type) {
186         case TYPE_INVALID:
187                 return 0;
188         case TYPE_ATOMIC:
189                 return atomic_types_equal((const atomic_type_t*) type1,
190                                           (const atomic_type_t*) type2);
191         case TYPE_COMPOUND_STRUCT:
192         case TYPE_COMPOUND_UNION:
193                 return compound_types_equal((const compound_type_t*) type1,
194                                             (const compound_type_t*) type2);
195         case TYPE_ENUM:
196                 return enum_types_equal((const enum_type_t*) type1,
197                                         (const enum_type_t*) type2);
198         case TYPE_METHOD:
199                 return method_types_equal((const method_type_t*) type1,
200                                           (const method_type_t*) type2);
201         case TYPE_POINTER:
202                 return pointer_types_equal((const pointer_type_t*) type1,
203                                            (const pointer_type_t*) type2);
204         }
205
206         abort();
207 }
208
209 #define HashSet                    type_hash_t
210 #define HashSetIterator            type_hash_iterator_t
211 #define ValueType                  type_t*
212 #define NullValue                  NULL
213 #define DeletedValue               ((type_t*)-1)
214 #define Hash(this, key)            hash_type(key)
215 #define KeysEqual(this,key1,key2)  types_equal(key1, key2)
216 #define SetRangeEmpty(ptr,size)    memset(ptr, 0, (size) * sizeof(*(ptr)))
217
218 #define hashset_init             _typehash_init
219 #define hashset_init_size        _typehash_init_size
220 #define hashset_destroy          _typehash_destroy
221 #define hashset_insert           _typehash_insert
222 #define hashset_remove           typehash_remove
223 #define hashset_find             typehash_find
224 #define hashset_size             typehash_size
225 #define hashset_iterator_init    typehash_iterator_init
226 #define hashset_iterator_next    typehash_iterator_next
227 #define hashset_remove_iterator  typehash_remove_iterator
228
229 #include "adt/hashset.c"
230
231 static type_hash_t typehash;
232
233 void init_typehash(void)
234 {
235         _typehash_init(&typehash);
236 }
237
238 void exit_typehash(void)
239 {
240         _typehash_destroy(&typehash);
241 }
242
243 type_t *typehash_insert(type_t *type)
244 {
245         return _typehash_insert(&typehash, type);
246 }