Merge branch 'makefilefix'
[cparser] / attribute.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include <assert.h>
23 #include "diagnostic.h"
24 #include "warning.h"
25 #include "attribute_t.h"
26 #include "symbol_t.h"
27 #include "adt/error.h"
28 #include "type_t.h"
29
30 static const char *const attribute_names[ATTRIBUTE_LAST+1] = {
31         [ATTRIBUTE_GNU_CONST]                  = "const",
32         [ATTRIBUTE_GNU_VOLATILE]               = "volatile",
33         [ATTRIBUTE_GNU_CDECL]                  = "cdecl",
34         [ATTRIBUTE_GNU_STDCALL]                = "stdcall",
35         [ATTRIBUTE_GNU_FASTCALL]               = "fastcall",
36         [ATTRIBUTE_GNU_DEPRECATED]             = "deprecated",
37         [ATTRIBUTE_GNU_NOINLINE]               = "noinline",
38         [ATTRIBUTE_GNU_RETURNS_TWICE]          = "returns_twice",
39         [ATTRIBUTE_GNU_NORETURN]               = "noreturn",
40         [ATTRIBUTE_GNU_NAKED]                  = "naked",
41         [ATTRIBUTE_GNU_PURE]                   = "pure",
42         [ATTRIBUTE_GNU_ALWAYS_INLINE]          = "always_inline",
43         [ATTRIBUTE_GNU_MALLOC]                 = "malloc",
44         [ATTRIBUTE_GNU_WEAK]                   = "weak",
45         [ATTRIBUTE_GNU_CONSTRUCTOR]            = "constructor",
46         [ATTRIBUTE_GNU_DESTRUCTOR]             = "destructor",
47         [ATTRIBUTE_GNU_NOTHROW]                = "nothrow",
48         [ATTRIBUTE_GNU_TRANSPARENT_UNION]      = "transparent_union",
49         [ATTRIBUTE_GNU_COMMON]                 = "common",
50         [ATTRIBUTE_GNU_NOCOMMON]               = "nocommon",
51         [ATTRIBUTE_GNU_PACKED]                 = "packed",
52         [ATTRIBUTE_GNU_SHARED]                 = "shared",
53         [ATTRIBUTE_GNU_NOTSHARED]              = "notshared",
54         [ATTRIBUTE_GNU_USED]                   = "used",
55         [ATTRIBUTE_GNU_UNUSED]                 = "unused",
56         [ATTRIBUTE_GNU_NO_INSTRUMENT_FUNCTION] = "no_instrument_function",
57         [ATTRIBUTE_GNU_WARN_UNUSED_RESULT]     = "warn_unused_result",
58         [ATTRIBUTE_GNU_LONGCALL]               = "longcall",
59         [ATTRIBUTE_GNU_SHORTCALL]              = "shortcall",
60         [ATTRIBUTE_GNU_LONG_CALL]              = "long_call",
61         [ATTRIBUTE_GNU_SHORT_CALL]             = "short_call",
62         [ATTRIBUTE_GNU_FUNCTION_VECTOR]        = "function_vector",
63         [ATTRIBUTE_GNU_INTERRUPT]              = "interrupt",
64         [ATTRIBUTE_GNU_INTERRUPT_HANDLER]      = "interrupt_handler",
65         [ATTRIBUTE_GNU_NMI_HANDLER]            = "nmi_handler",
66         [ATTRIBUTE_GNU_NESTING]                = "nesting",
67         [ATTRIBUTE_GNU_NEAR]                   = "near",
68         [ATTRIBUTE_GNU_FAR]                    = "far",
69         [ATTRIBUTE_GNU_SIGNAL]                 = "signal",
70         [ATTRIBUTE_GNU_EIGTHBIT_DATA]          = "eightbit_data",
71         [ATTRIBUTE_GNU_TINY_DATA]              = "tiny_data",
72         [ATTRIBUTE_GNU_SAVEALL]                = "saveall",
73         [ATTRIBUTE_GNU_FLATTEN]                = "flatten",
74         [ATTRIBUTE_GNU_SSEREGPARM]             = "sseregparm",
75         [ATTRIBUTE_GNU_EXTERNALLY_VISIBLE]     = "externally_visible",
76         [ATTRIBUTE_GNU_MAY_ALIAS]              = "may_alias",
77         [ATTRIBUTE_GNU_MS_STRUCT]              = "ms_struct",
78         [ATTRIBUTE_GNU_GCC_STRUCT]             = "gcc_struct",
79         [ATTRIBUTE_GNU_DLLIMPORT]              = "dllimport",
80         [ATTRIBUTE_GNU_DLLEXPORT]              = "dllexport",
81         [ATTRIBUTE_GNU_ALIGNED]                = "aligned",
82         [ATTRIBUTE_GNU_ALIAS]                  = "alias",
83         [ATTRIBUTE_GNU_SECTION]                = "section",
84         [ATTRIBUTE_GNU_FORMAT]                 = "format",
85         [ATTRIBUTE_GNU_FORMAT_ARG]             = "format_arg",
86         [ATTRIBUTE_GNU_WEAKREF]                = "weakref",
87         [ATTRIBUTE_GNU_NONNULL]                = "nonnull",
88         [ATTRIBUTE_GNU_TLS_MODEL]              = "tls_model",
89         [ATTRIBUTE_GNU_VISIBILITY]             = "visibility",
90         [ATTRIBUTE_GNU_REGPARM]                = "regparm",
91         [ATTRIBUTE_GNU_MODE]                   = "mode",
92         [ATTRIBUTE_GNU_MODEL]                  = "model",
93         [ATTRIBUTE_GNU_TRAP_EXIT]              = "trap_exit",
94         [ATTRIBUTE_GNU_SP_SWITCH]              = "sp_switch",
95         [ATTRIBUTE_GNU_SENTINEL]               = "sentinel",
96
97         [ATTRIBUTE_MS_ALIGN]                   = "align",
98         [ATTRIBUTE_MS_ALLOCATE]                = "allocate",
99         [ATTRIBUTE_MS_DLLIMPORT]               = "dllimport",
100         [ATTRIBUTE_MS_DLLEXPORT]               = "dllexport",
101         [ATTRIBUTE_MS_NAKED]                   = "naked",
102         [ATTRIBUTE_MS_NOINLINE]                = "noinline",
103         [ATTRIBUTE_MS_RETURNS_TWICE]           = "returns_twice",
104         [ATTRIBUTE_MS_NORETURN]                = "noreturn",
105         [ATTRIBUTE_MS_NOTHROW]                 = "nothrow",
106         [ATTRIBUTE_MS_NOVTABLE]                = "novtable",
107         [ATTRIBUTE_MS_PROPERTY]                = "property",
108         [ATTRIBUTE_MS_SELECTANY]               = "selectany",
109         [ATTRIBUTE_MS_THREAD]                  = "thread",
110         [ATTRIBUTE_MS_UUID]                    = "uuid",
111         [ATTRIBUTE_MS_DEPRECATED]              = "deprecated",
112         [ATTRIBUTE_MS_RESTRICT]                = "restrict",
113         [ATTRIBUTE_MS_NOALIAS]                 = "noalias",
114 };
115
116 const char *get_attribute_name(attribute_kind_t kind)
117 {
118         assert(kind <= ATTRIBUTE_LAST);
119         return attribute_names[kind];
120 }
121
122 /**
123  * compare two string, ignoring double underscores on the second.
124  */
125 static int strcmp_underscore(const char *s1, const char *s2)
126 {
127         if (s2[0] == '_' && s2[1] == '_') {
128                 size_t len2 = strlen(s2);
129                 size_t len1 = strlen(s1);
130                 if (len1 == len2-4 && s2[len2-2] == '_' && s2[len2-1] == '_') {
131                         return strncmp(s1, s2+2, len2-4);
132                 }
133         }
134
135         return strcmp(s1, s2);
136 }
137
138 type_t *handle_attribute_mode(const attribute_t *attribute, type_t *orig_type)
139 {
140         type_t *type = skip_typeref(orig_type);
141
142         /* at least: byte, word, pointer, list of machine modes
143          * __XXX___ is interpreted as XXX */
144
145         /* This isn't really correct, the backend should provide a list of machine
146          * specific modes (according to gcc philosophy that is...) */
147         attribute_argument_t *arg = attribute->a.arguments;
148         if (arg == NULL) {
149                 errorf(&attribute->source_position,
150                        "__attribute__((mode(X))) misses argument");
151                 return orig_type;
152         }
153
154         const char         *symbol_str = arg->v.symbol->string;
155         bool                sign       = is_type_signed(type);
156         atomic_type_kind_t  akind;
157         if (strcmp_underscore("QI",   symbol_str) == 0 ||
158             strcmp_underscore("byte", symbol_str) == 0) {
159                 akind = sign ? ATOMIC_TYPE_CHAR : ATOMIC_TYPE_UCHAR;
160         } else if (strcmp_underscore("HI", symbol_str) == 0) {
161                 akind = sign ? ATOMIC_TYPE_SHORT : ATOMIC_TYPE_USHORT;
162         } else if (strcmp_underscore("SI",      symbol_str) == 0
163                 || strcmp_underscore("word",    symbol_str) == 0
164                 || strcmp_underscore("pointer", symbol_str) == 0) {
165                 akind = sign ? ATOMIC_TYPE_INT : ATOMIC_TYPE_UINT;
166         } else if (strcmp_underscore("DI", symbol_str) == 0) {
167                 akind = sign ? ATOMIC_TYPE_LONGLONG : ATOMIC_TYPE_ULONGLONG;
168         } else {
169                 source_position_t const *const pos = &attribute->source_position;
170                 warningf(WARN_OTHER, pos, "ignoring unknown mode '%s'", symbol_str);
171                 return orig_type;
172         }
173
174         if (type->kind == TYPE_ATOMIC) {
175                 type_t *copy       = duplicate_type(type);
176                 copy->atomic.akind = akind;
177                 return identify_new_type(copy);
178         } else if (type->kind == TYPE_ENUM) {
179                 type_t *copy      = duplicate_type(type);
180                 copy->enumt.akind = akind;
181                 return identify_new_type(copy);
182         } else if (is_type_pointer(type)) {
183                 source_position_t const *const pos = &attribute->source_position;
184                 warningf(WARN_OTHER, pos, "__attribute__((mode)) on pointers not implemented yet (ignored)");
185                 return type;
186         }
187
188         errorf(&attribute->source_position,
189                "__attribute__((mode)) only allowed on integer, enum or pointer type");
190         return orig_type;
191 }
192
193 static inline bool is_po2(unsigned x)
194 {
195         return (x & (x-1)) == 0;
196 }
197
198 static void handle_attribute_aligned(const attribute_t *attribute,
199                                      entity_t *entity)
200 {
201         int alignment = 32; /* TODO: fill in maximum useful alignment for
202                                                    target machine */
203         if (attribute->a.arguments) {
204                 attribute_argument_t *argument = attribute->a.arguments;
205                 alignment = fold_constant_to_int(argument->v.expression);
206         }
207
208         if (!is_po2(alignment)) {
209                 errorf(&attribute->source_position,
210                            "alignment must be a power of 2 but is %d\n",
211                            alignment);
212                 return;
213         }
214         if (alignment <= 0) {
215                 errorf(&attribute->source_position,
216                            "alignment must be bigger than 0 but is %d\n",
217                            alignment);
218                 return;
219         }
220
221         switch (entity->kind) {
222         DECLARATION_KIND_CASES
223                 entity->declaration.alignment = alignment;
224         case ENTITY_TYPEDEF:
225                 entity->typedefe.alignment = alignment;
226                 break;
227         case ENTITY_STRUCT:
228         case ENTITY_UNION:
229                 if (alignment > (int)entity->compound.alignment) {
230                         entity->compound.alignment = alignment;
231                 }
232                 break;
233         default: {
234                 source_position_t const *const pos  = &attribute->source_position;
235                 char              const *const what = get_entity_kind_name(entity->kind);
236                 symbol_t          const *const sym  = entity->base.symbol;
237                 warningf(WARN_OTHER, pos, "alignment attribute specification on %s '%S' ignored", what, sym);
238                 break;
239         }
240         }
241 }
242
243 static const char *get_argument_string(const attribute_argument_t *argument)
244 {
245         if (argument == NULL)
246                 return NULL;
247         if (argument->kind != ATTRIBUTE_ARGUMENT_EXPRESSION)
248                 return NULL;
249         expression_t *expression = argument->v.expression;
250         if (expression->kind != EXPR_STRING_LITERAL)
251                 return NULL;
252         return expression->literal.value.begin;
253 }
254
255 static void handle_attribute_visibility(const attribute_t *attribute,
256                                         entity_t *entity)
257 {
258         /* This isn't really correct, the backend should provide a list of machine
259          * specific modes (according to gcc philosophy that is...) */
260         attribute_argument_t *arg = attribute->a.arguments;
261         if (arg == NULL) {
262                 errorf(&attribute->source_position,
263                        "__attribute__((visibility(X))) misses argument");
264                 return;
265         }
266         const char *string = get_argument_string(arg);
267         if (string == NULL) {
268                 errorf(&attribute->source_position,
269                        "__attribute__((visibility(X))) argument is not a string");
270                 return;
271         }
272         elf_visibility_tag_t visibility = get_elf_visibility_from_string(string);
273         if (visibility == ELF_VISIBILITY_ERROR) {
274                 errorf(&attribute->source_position,
275                        "unknown visibility type '%s'", string);
276                 return;
277         }
278
279         switch (entity->kind) {
280         case ENTITY_VARIABLE:
281                 entity->variable.elf_visibility = visibility;
282                 break;
283         case ENTITY_FUNCTION:
284                 entity->function.elf_visibility = visibility;
285                 break;
286         default: {
287                 source_position_t const *const pos  = &attribute->source_position;
288                 char              const *const what = get_entity_kind_name(entity->kind);
289                 symbol_t          const *const sym  = entity->base.symbol;
290                 warningf(WARN_OTHER, pos, "visibility attribute specification on %s '%S' ignored", what, sym);
291                 break;
292         }
293         }
294 }
295
296 static void warn_arguments(const attribute_t *attribute)
297 {
298         if (attribute->a.arguments == NULL)
299                 return;
300
301         source_position_t const *const pos  = &attribute->source_position;
302         char              const *const what = get_attribute_name(attribute->kind);
303         warningf(WARN_OTHER, pos, "attribute '%s' needs no arguments", what);
304 }
305
306 static void handle_attribute_packed_e(const attribute_t *attribute,
307                                       entity_t *entity)
308 {
309 #if 0
310         if (entity->kind != ENTITY_STRUCT) {
311                 source_position_t const *const pos  = &attribute->source_position;
312                 char              const *const what = get_entity_kind_name(entity->kind);
313                 symbol_t          const *const sym  = entity->base.symbol;
314                 warningf(WARN_OTHER, pos, "packed attribute on %s '%S' ignored", what, sym);
315                 return;
316         }
317 #endif
318
319         warn_arguments(attribute);
320         entity->compound.packed = true;
321 }
322
323 static void handle_attribute_packed(const attribute_t *attribute, type_t *type)
324 {
325         if (type->kind != TYPE_COMPOUND_STRUCT) {
326                 source_position_t const *const pos  = &attribute->source_position;
327                 warningf(WARN_OTHER, pos, "packed attribute on type '%T' ignored", type);
328                 return;
329         }
330
331         handle_attribute_packed_e(attribute, (entity_t*) type->compound.compound);
332 }
333
334 static void handle_attribute_asm(const attribute_t *attribute,
335                                       entity_t *entity)
336 {
337         attribute_argument_t *argument = attribute->a.arguments;
338         assert (argument->kind == ATTRIBUTE_ARGUMENT_EXPRESSION);
339         expression_t *expression = argument->v.expression;
340         if (expression->kind != EXPR_STRING_LITERAL)
341                 errorf(&attribute->source_position,
342                        "Invalid asm attribute expression");
343         symbol_t *sym = symbol_table_insert(expression->string_literal.value.begin);
344         entity->function.actual_name = sym;
345         assert(argument->next == NULL);
346         return;
347 }
348
349 void handle_entity_attributes(const attribute_t *attributes, entity_t *entity)
350 {
351         if (entity->kind == ENTITY_TYPEDEF) {
352                 type_t *type = entity->typedefe.type;
353                 type = handle_type_attributes(attributes, type);
354                 entity->typedefe.type = type;
355         } else if (is_declaration(entity)) {
356                 type_t *type = entity->declaration.type;
357                 type = handle_type_attributes(attributes, type);
358                 entity->declaration.type = type;
359         }
360
361         decl_modifiers_t modifiers = 0;
362         const attribute_t *attribute = attributes;
363         for ( ; attribute != NULL; attribute = attribute->next) {
364                 switch(attribute->kind) {
365                 case ATTRIBUTE_GNU_CONST:         modifiers |= DM_CONST; break;
366                 case ATTRIBUTE_GNU_DEPRECATED:    modifiers |= DM_DEPRECATED; break;
367                 case ATTRIBUTE_GNU_NOINLINE:      modifiers |= DM_NOINLINE; break;
368                 case ATTRIBUTE_GNU_RETURNS_TWICE: modifiers |= DM_RETURNS_TWICE; break;
369                 case ATTRIBUTE_GNU_NORETURN:      modifiers |= DM_NORETURN; break;
370                 case ATTRIBUTE_GNU_NAKED:         modifiers |= DM_NAKED; break;
371                 case ATTRIBUTE_GNU_PURE:          modifiers |= DM_PURE; break;
372                 case ATTRIBUTE_GNU_ALWAYS_INLINE: modifiers |= DM_FORCEINLINE; break;
373                 case ATTRIBUTE_GNU_MALLOC:        modifiers |= DM_MALLOC; break;
374                 case ATTRIBUTE_GNU_CONSTRUCTOR:   modifiers |= DM_CONSTRUCTOR; break;
375                 case ATTRIBUTE_GNU_DESTRUCTOR:    modifiers |= DM_DESTRUCTOR; break;
376                 case ATTRIBUTE_GNU_NOTHROW:       modifiers |= DM_NOTHROW; break;
377                 case ATTRIBUTE_GNU_TRANSPARENT_UNION:
378                                                                                   modifiers |= DM_TRANSPARENT_UNION;
379                                                                                   break;
380                 case ATTRIBUTE_GNU_USED:          modifiers |= DM_USED; break;
381                 case ATTRIBUTE_GNU_UNUSED:        modifiers |= DM_UNUSED; break;
382                 case ATTRIBUTE_GNU_DLLIMPORT:     modifiers |= DM_DLLIMPORT; break;
383                 case ATTRIBUTE_GNU_DLLEXPORT:     modifiers |= DM_DLLEXPORT; break;
384                 case ATTRIBUTE_GNU_WEAK:          modifiers |= DM_WEAK; break;
385
386                 case ATTRIBUTE_MS_ALLOCATE:      modifiers |= DM_MALLOC; break;
387                 case ATTRIBUTE_MS_DLLIMPORT:     modifiers |= DM_DLLIMPORT; break;
388                 case ATTRIBUTE_MS_DLLEXPORT:     modifiers |= DM_DLLEXPORT; break;
389                 case ATTRIBUTE_MS_NAKED:         modifiers |= DM_NAKED; break;
390                 case ATTRIBUTE_MS_NOINLINE:      modifiers |= DM_NOINLINE; break;
391                 case ATTRIBUTE_MS_RETURNS_TWICE: modifiers |= DM_RETURNS_TWICE; break;
392                 case ATTRIBUTE_MS_NORETURN:      modifiers |= DM_NORETURN; break;
393                 case ATTRIBUTE_MS_NOTHROW:       modifiers |= DM_NOTHROW; break;
394                 case ATTRIBUTE_MS_THREAD:        modifiers |= DM_THREAD; break;
395                 case ATTRIBUTE_MS_DEPRECATED:    modifiers |= DM_DEPRECATED; break;
396                 case ATTRIBUTE_MS_RESTRICT:      modifiers |= DM_RESTRICT; break;
397                 case ATTRIBUTE_MS_NOALIAS:       modifiers |= DM_NOALIAS; break;
398
399                 case ATTRIBUTE_GNU_PACKED:
400                         handle_attribute_packed_e(attribute, entity);
401                         break;
402
403                 case ATTRIBUTE_GNU_ASM:
404                         handle_attribute_asm(attribute, entity);
405                         break;
406
407                 case ATTRIBUTE_GNU_VISIBILITY:
408                         handle_attribute_visibility(attribute, entity);
409                         break;
410
411                 case ATTRIBUTE_MS_ALIGN:
412                 case ATTRIBUTE_GNU_ALIGNED:
413                         handle_attribute_aligned(attribute, entity);
414                         break;
415                 default: break;
416                 }
417         }
418
419         if (modifiers != 0) {
420                 switch(entity->kind) {
421                 case ENTITY_TYPEDEF:
422                         entity->typedefe.modifiers |= modifiers;
423                         break;
424                 case ENTITY_UNION:
425                 case ENTITY_STRUCT:
426                         entity->compound.modifiers |= modifiers;
427                         break;
428                 case ENTITY_COMPOUND_MEMBER:
429                 case ENTITY_VARIABLE:
430                 case ENTITY_FUNCTION:
431                         entity->declaration.modifiers |= modifiers;
432                         break;
433                 default:
434                         /* TODO: warning */
435                         break;
436                 }
437         }
438 }
439
440 static type_t *change_calling_convention(type_t *type, cc_kind_t cconv)
441 {
442         if (is_typeref(type) || !is_type_function(type)) {
443                 return type;
444         }
445
446         if (type->function.calling_convention == cconv)
447                 return type;
448
449         type_t* new_type = duplicate_type(type);
450         new_type->function.calling_convention = cconv;
451         return identify_new_type(new_type);
452 }
453
454 type_t *handle_type_attributes(const attribute_t *attributes, type_t *type)
455 {
456         const attribute_t *attribute = attributes;
457         for ( ; attribute != NULL; attribute = attribute->next) {
458                 switch(attribute->kind) {
459                 case ATTRIBUTE_GNU_PACKED:
460                         handle_attribute_packed(attribute, type);
461                         break;
462                 case ATTRIBUTE_GNU_CDECL:
463                 case ATTRIBUTE_MS_CDECL:
464                         type = change_calling_convention(type, CC_CDECL);
465                         break;
466                 case ATTRIBUTE_MS_STDCALL:
467                 case ATTRIBUTE_GNU_STDCALL:
468                         type = change_calling_convention(type, CC_STDCALL);
469                         break;
470                 case ATTRIBUTE_MS_FASTCALL:
471                 case ATTRIBUTE_GNU_FASTCALL:
472                         type = change_calling_convention(type, CC_FASTCALL);
473                         break;
474                 case ATTRIBUTE_MS_THISCALL:
475                         type = change_calling_convention(type, CC_THISCALL);
476                         break;
477                 case ATTRIBUTE_GNU_MODE:
478                         type = handle_attribute_mode(attribute, type);
479                         break;
480                 default:
481                         break;
482                 }
483         }
484
485         return type;
486 }
487
488 const char *get_deprecated_string(const attribute_t *attribute)
489 {
490         for ( ; attribute != NULL; attribute = attribute->next) {
491                 if (attribute->kind != ATTRIBUTE_MS_DEPRECATED)
492                         continue;
493
494                 attribute_argument_t *argument = attribute->a.arguments;
495                 return get_argument_string(argument);
496         }
497         return NULL;
498 }
499
500 static bool property_attribute_equal(const attribute_property_argument_t *prop1,
501                                      const attribute_property_argument_t *prop2)
502 {
503         return prop1->put_symbol == prop2->put_symbol
504                 && prop1->get_symbol == prop2->get_symbol;
505 }
506
507 static bool attribute_argument_equal(const attribute_argument_t *arg1,
508                                      const attribute_argument_t *arg2)
509 {
510         if (arg1->kind != arg2->kind)
511                 return false;
512
513         switch (arg1->kind) {
514         case ATTRIBUTE_ARGUMENT_SYMBOL:
515                 return arg1->v.symbol == arg2->v.symbol;
516         case ATTRIBUTE_ARGUMENT_EXPRESSION:
517                 /* TODO */
518                 return false;
519         }
520         panic("Unknown argument type found");
521 }
522
523 static bool attribute_arguments_equal(const attribute_argument_t *args1,
524                                       const attribute_argument_t *args2)
525 {
526         for ( ; args1 != NULL && args2 != NULL;
527              args1 = args1->next, args2 = args2->next) {
528                 if (!attribute_argument_equal(args1, args2))
529                         return false;
530         }
531         /* both should be NULL now */
532         return args1 == args2;
533 }
534
535 bool attributes_equal(const attribute_t *attr1, const attribute_t *attr2)
536 {
537         if (attr1->kind != attr2->kind)
538                 return false;
539
540         switch (attr1->kind) {
541         case ATTRIBUTE_MS_PROPERTY:
542                 return property_attribute_equal(attr1->a.property, attr2->a.property);
543         default:
544                 return attribute_arguments_equal(attr1->a.arguments,
545                                                  attr2->a.arguments);
546         }
547 }