2 * Symbol lookup and handling.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003-2004 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
20 #include "expression.h"
25 * Secondary symbol list for stuff that needs to be output because it
28 struct symbol_list
*translation_unit_used_list
= NULL
;
31 * If the symbol is an inline symbol, add it to the list of symbols to parse
33 void access_symbol(struct symbol
*sym
)
35 if (sym
->ctype
.modifiers
& MOD_INLINE
) {
36 if (!(sym
->ctype
.modifiers
& MOD_ACCESSED
)) {
37 add_symbol(&translation_unit_used_list
, sym
);
38 sym
->ctype
.modifiers
|= MOD_ACCESSED
;
43 struct symbol
*lookup_symbol(struct ident
*ident
, enum namespace ns
)
47 for (sym
= ident
->symbols
; sym
; sym
= sym
->next_id
) {
48 if (sym
->namespace & ns
) {
56 struct symbol
*alloc_symbol(struct position pos
, int type
)
58 struct symbol
*sym
= __alloc_symbol(0);
64 struct struct_union_info
{
65 unsigned long max_align
;
66 unsigned long bit_size
;
71 * Unions are fairly easy to lay out ;)
73 static void lay_out_union(struct symbol
*sym
, struct struct_union_info
*info
)
75 examine_symbol_type(sym
);
77 // Unnamed bitfields do not affect alignment.
78 if (sym
->ident
|| !is_bitfield_type(sym
)) {
79 if (sym
->ctype
.alignment
> info
->max_align
)
80 info
->max_align
= sym
->ctype
.alignment
;
83 if (sym
->bit_size
> info
->bit_size
)
84 info
->bit_size
= sym
->bit_size
;
89 static int bitfield_base_size(struct symbol
*sym
)
91 if (sym
->type
== SYM_NODE
)
92 sym
= sym
->ctype
.base_type
;
93 if (sym
->type
== SYM_BITFIELD
)
94 sym
= sym
->ctype
.base_type
;
99 * Structures are a bit more interesting to lay out
101 static void lay_out_struct(struct symbol
*sym
, struct struct_union_info
*info
)
103 unsigned long bit_size
, align_bit_mask
;
106 examine_symbol_type(sym
);
108 // Unnamed bitfields do not affect alignment.
109 if (sym
->ident
|| !is_bitfield_type(sym
)) {
110 if (sym
->ctype
.alignment
> info
->max_align
)
111 info
->max_align
= sym
->ctype
.alignment
;
114 bit_size
= info
->bit_size
;
115 base_size
= sym
->bit_size
;
118 * Unsized arrays cause us to not align the resulting
122 info
->align_size
= 0;
126 align_bit_mask
= (sym
->ctype
.alignment
<< 3) - 1;
129 * Bitfields have some very special rules..
131 if (is_bitfield_type (sym
)) {
132 unsigned long bit_offset
= bit_size
& align_bit_mask
;
133 int room
= bitfield_base_size(sym
) - bit_offset
;
134 // Zero-width fields just fill up the unit.
135 int width
= base_size
? : (bit_offset
? room
: 0);
138 bit_size
= (bit_size
+ align_bit_mask
) & ~align_bit_mask
;
141 sym
->offset
= (bit_size
- bit_offset
) >> 3;
142 sym
->bit_offset
= bit_offset
;
143 sym
->ctype
.base_type
->bit_offset
= bit_offset
;
144 info
->bit_size
= bit_size
+ width
;
145 // warning (sym->pos, "bitfield: offset=%d:%d size=:%d", sym->offset, sym->bit_offset, width);
151 * Otherwise, just align it right and add it up..
153 bit_size
= (bit_size
+ align_bit_mask
) & ~align_bit_mask
;
154 sym
->offset
= bit_size
>> 3;
156 info
->bit_size
= bit_size
+ base_size
;
157 // warning (sym->pos, "regular: offset=%d", sym->offset);
160 static struct symbol
* examine_struct_union_type(struct symbol
*sym
, int advance
)
162 struct struct_union_info info
= {
167 unsigned long bit_size
, bit_align
;
168 void (*fn
)(struct symbol
*, struct struct_union_info
*);
169 struct symbol
*member
;
171 fn
= advance
? lay_out_struct
: lay_out_union
;
172 FOR_EACH_PTR(sym
->symbol_list
, member
) {
174 } END_FOR_EACH_PTR(member
);
176 if (!sym
->ctype
.alignment
)
177 sym
->ctype
.alignment
= info
.max_align
;
178 bit_size
= info
.bit_size
;
179 if (info
.align_size
) {
180 bit_align
= (sym
->ctype
.alignment
<< 3)-1;
181 bit_size
= (bit_size
+ bit_align
) & ~bit_align
;
183 sym
->bit_size
= bit_size
;
187 static struct symbol
*examine_base_type(struct symbol
*sym
)
189 struct symbol
*base_type
;
191 /* Check the basetype */
192 base_type
= sym
->ctype
.base_type
;
194 base_type
= examine_symbol_type(base_type
);
196 /* "typeof" can cause this */
197 if (base_type
&& base_type
->type
== SYM_NODE
)
198 merge_type(sym
, base_type
);
203 static struct symbol
* examine_array_type(struct symbol
*sym
)
205 struct symbol
*base_type
= examine_base_type(sym
);
206 unsigned long bit_size
, alignment
;
210 bit_size
= base_type
->bit_size
* get_expression_value(sym
->array_size
);
211 if (!sym
->array_size
|| sym
->array_size
->type
!= EXPR_VALUE
)
213 alignment
= base_type
->ctype
.alignment
;
214 if (!sym
->ctype
.alignment
)
215 sym
->ctype
.alignment
= alignment
;
216 sym
->bit_size
= bit_size
;
220 static struct symbol
*examine_bitfield_type(struct symbol
*sym
)
222 struct symbol
*base_type
= examine_base_type(sym
);
223 unsigned long bit_size
, alignment
, modifiers
;
227 bit_size
= base_type
->bit_size
;
228 if (sym
->bit_size
> bit_size
)
229 warning(sym
->pos
, "impossible field-width, %d, for this type", sym
->bit_size
);
231 alignment
= base_type
->ctype
.alignment
;
232 if (!sym
->ctype
.alignment
)
233 sym
->ctype
.alignment
= alignment
;
234 modifiers
= base_type
->ctype
.modifiers
;
236 /* Bitfields are unsigned, unless the base type was explicitly signed */
237 if (!(modifiers
& MOD_EXPLICITLY_SIGNED
))
238 modifiers
= (modifiers
& ~MOD_SIGNED
) | MOD_UNSIGNED
;
239 sym
->ctype
.modifiers
|= modifiers
& MOD_SIGNEDNESS
;
244 * "typeof" will have to merge the types together
246 void merge_type(struct symbol
*sym
, struct symbol
*base_type
)
248 sym
->ctype
.as
|= base_type
->ctype
.as
;
249 sym
->ctype
.modifiers
|= (base_type
->ctype
.modifiers
& ~MOD_STORAGE
);
250 sym
->ctype
.in_context
+= base_type
->ctype
.in_context
;
251 sym
->ctype
.out_context
+= base_type
->ctype
.out_context
;
252 sym
->ctype
.base_type
= base_type
->ctype
.base_type
;
255 static int count_array_initializer(struct expression
*expr
)
259 switch (expr
->type
) {
261 nr
= expr
->string
->length
;
263 case EXPR_INITIALIZER
: {
264 struct expression
*entry
;
265 FOR_EACH_PTR(expr
->expr_list
, entry
) {
266 switch (entry
->type
) {
268 nr
+= entry
->string
->length
;
271 if (entry
->idx_to
>= nr
)
272 nr
= entry
->idx_to
+1;
277 } END_FOR_EACH_PTR(entry
);
286 static struct symbol
* examine_node_type(struct symbol
*sym
)
288 struct symbol
*base_type
= examine_base_type(sym
);
290 unsigned long alignment
, modifiers
;
292 /* SYM_NODE - figure out what the type of the node was.. */
293 modifiers
= sym
->ctype
.modifiers
;
300 bit_size
= base_type
->bit_size
;
301 alignment
= base_type
->ctype
.alignment
;
303 /* Pick up signedness information into the node */
304 sym
->ctype
.modifiers
|= (MOD_SIGNEDNESS
& base_type
->ctype
.modifiers
);
306 if (!sym
->ctype
.alignment
)
307 sym
->ctype
.alignment
= alignment
;
309 /* Unsized array? The size might come from the initializer.. */
310 if (bit_size
< 0 && base_type
->type
== SYM_ARRAY
&& sym
->initializer
) {
311 int count
= count_array_initializer(sym
->initializer
);
312 struct symbol
*node_type
= base_type
->ctype
.base_type
;
314 if (node_type
&& node_type
->bit_size
>= 0)
315 bit_size
= node_type
->bit_size
* count
;
318 sym
->bit_size
= bit_size
;
322 static struct symbol
*examine_enum_type(struct symbol
*sym
)
324 struct symbol
*base_type
= examine_base_type(sym
);
326 if (!base_type
|| base_type
== &bad_ctype
) {
327 warning(sym
->pos
, "invalid enum type");
331 sym
->ctype
.modifiers
|= (base_type
->ctype
.modifiers
& MOD_SIGNEDNESS
);
332 sym
->bit_size
= bits_in_enum
;
333 if (base_type
->bit_size
> sym
->bit_size
)
334 sym
->bit_size
= base_type
->bit_size
;
335 sym
->ctype
.alignment
= enum_alignment
;
336 if (base_type
->ctype
.alignment
> sym
->ctype
.alignment
)
337 sym
->ctype
.alignment
= base_type
->ctype
.alignment
;
341 static struct symbol
*examine_pointer_type(struct symbol
*sym
)
344 * We need to set the pointer size first, and
345 * examine the thing we point to only afterwards.
346 * That's because this pointer type may end up
347 * being needed for the base type size evalutation.
350 sym
->bit_size
= bits_in_pointer
;
351 if (!sym
->ctype
.alignment
)
352 sym
->ctype
.alignment
= pointer_alignment
;
353 examine_base_type(sym
);
358 * Fill in type size and alignment information for
359 * regular SYM_TYPE things.
361 struct symbol
*examine_symbol_type(struct symbol
* sym
)
374 return examine_node_type(sym
);
376 return examine_array_type(sym
);
378 return examine_struct_union_type(sym
, 1);
380 return examine_struct_union_type(sym
, 0);
382 return examine_pointer_type(sym
);
384 return examine_enum_type(sym
);
386 return examine_bitfield_type(sym
);
388 /* Size and alignment had better already be set up */
391 struct symbol
*base
= evaluate_expression(sym
->initializer
);
393 if (is_bitfield_type(base
))
394 warning(base
->pos
, "typeof applied to bitfield type");
395 if (base
->type
== SYM_NODE
)
396 base
= base
->ctype
.base_type
;
397 sym
->type
= SYM_NODE
;
398 sym
->ctype
.base_type
= base
;
399 sym
->bit_size
= base
->bit_size
;
403 case SYM_PREPROCESSOR
:
404 warning(sym
->pos
, "ctype on preprocessor command? (%s)", show_ident(sym
->ident
));
406 case SYM_UNINITIALIZED
:
407 warning(sym
->pos
, "ctype on uninitialized symbol %p", sym
);
410 examine_base_type(sym
);
413 warning(sym
->pos
, "Examining unknown symbol type %d", sym
->type
);
419 void check_declaration(struct symbol
*sym
)
421 struct symbol
*next
= sym
;
423 while ((next
= next
->next_id
) != NULL
) {
424 if (next
->namespace != sym
->namespace)
426 if (sym
->scope
== next
->scope
) {
427 sym
->same_symbol
= next
;
430 if (sym
->ctype
.modifiers
& next
->ctype
.modifiers
& MOD_EXTERN
) {
431 sym
->same_symbol
= next
;
435 // This may make sense from a warning standpoint:
436 // consider top-level symbols to clash with everything
437 // (but the scoping rules will mean that we actually
438 // _use_ the innermost version)
439 if (toplevel(next
->scope
)) {
440 sym
->same_symbol
= next
;
447 void bind_symbol(struct symbol
*sym
, struct ident
*ident
, enum namespace ns
)
451 warning(sym
->pos
, "internal error: symbol type already bound");
454 if (ident
->reserved
&& (ns
& (NS_TYPEDEF
| NS_STRUCT
| NS_LABEL
| NS_SYMBOL
))) {
455 warning(sym
->pos
, "Trying to use reserved word '%s' as identifier", show_ident(ident
));
459 sym
->next_id
= ident
->symbols
;
460 ident
->symbols
= sym
;
461 sym
->id_list
= &ident
->symbols
;
462 if (sym
->ident
&& sym
->ident
!= ident
)
463 warning(sym
->pos
, "Symbol '%s' already bound", show_ident(sym
->ident
));
467 if (ns
== NS_SYMBOL
&& toplevel(scope
)) {
468 sym
->ctype
.modifiers
|= MOD_TOPLEVEL
;
469 if (sym
->ctype
.modifiers
& MOD_STATIC
)
472 sym
->ctype
.modifiers
|= MOD_ADDRESSABLE
;
475 scope
= function_scope
;
476 bind_scope(sym
, scope
);
479 struct symbol
*create_symbol(int stream
, const char *name
, int type
, int namespace)
481 struct token
*token
= built_in_token(stream
, name
);
482 struct symbol
*sym
= alloc_symbol(token
->pos
, type
);
484 bind_symbol(sym
, token
->ident
, namespace);
488 static int evaluate_to_integer(struct expression
*expr
)
490 expr
->ctype
= &int_ctype
;
495 * __builtin_warning() has type "int" and always returns 1,
496 * so that you can use it in conditionals or whatever
498 static int expand_warning(struct expression
*expr
, int cost
)
500 struct expression
*arg
;
501 struct expression_list
*arglist
= expr
->args
;
503 FOR_EACH_PTR (arglist
, arg
) {
505 * Constant strings get printed out as a warning. By the
506 * time we get here, the EXPR_STRING has been fully
507 * evaluated, so by now it's an anonymous symbol with a
508 * string initializer.
510 * Just for the heck of it, allow any constant string
513 if (arg
->type
== EXPR_SYMBOL
) {
514 struct symbol
*sym
= arg
->symbol
;
515 if (sym
->initializer
&& sym
->initializer
->type
== EXPR_STRING
) {
516 struct string
*string
= sym
->initializer
->string
;
517 warning(expr
->pos
, "%*s", string
->length
-1, string
->data
);
523 * Any other argument is a conditional. If it's
524 * non-constant, or it is false, we exit and do
525 * not print any warning.
527 if (arg
->type
!= EXPR_VALUE
)
531 } END_FOR_EACH_PTR(arg
);
533 expr
->type
= EXPR_VALUE
;
539 * Type and storage class keywords need to have the symbols
540 * created for them, so that the parser can have enough semantic
541 * information to do parsing.
543 * "double" == "long float", "long double" == "long long float"
547 struct symbol
*base_type
;
548 unsigned int modifiers
;
549 struct symbol_op
*op
;
550 } symbol_init_table
[] = {
552 { "auto", NULL
, MOD_AUTO
},
553 { "register", NULL
, MOD_REGISTER
},
554 { "static", NULL
, MOD_STATIC
},
555 { "extern", NULL
, MOD_EXTERN
},
557 /* Type specifiers */
558 { "void", &void_ctype
, 0 },
559 { "char", NULL
, MOD_CHAR
},
560 { "short", NULL
, MOD_SHORT
},
561 { "int", &int_type
, 0 },
562 { "long", NULL
, MOD_LONG
},
563 { "float", &fp_type
, 0 },
564 { "double", &fp_type
, MOD_LONG
},
565 { "signed", NULL
, MOD_SIGNED
| MOD_EXPLICITLY_SIGNED
},
566 { "__signed", NULL
, MOD_SIGNED
| MOD_EXPLICITLY_SIGNED
},
567 { "__signed__", NULL
, MOD_SIGNED
| MOD_EXPLICITLY_SIGNED
},
568 { "unsigned", NULL
, MOD_UNSIGNED
},
569 { "__label__", &label_ctype
, MOD_LABEL
| MOD_UNSIGNED
},
570 { "_Bool", &bool_ctype
, MOD_UNSIGNED
},
572 /* Type qualifiers */
573 { "const", NULL
, MOD_CONST
},
574 { "__const", NULL
, MOD_CONST
},
575 { "__const__", NULL
, MOD_CONST
},
576 { "volatile", NULL
, MOD_VOLATILE
},
577 { "__volatile", NULL
, MOD_VOLATILE
},
578 { "__volatile__", NULL
, MOD_VOLATILE
},
580 /* Predeclared types */
581 { "__builtin_va_list", &int_type
, 0 },
584 { "typedef", NULL
, MOD_TYPEDEF
},
587 { "typeof", NULL
, MOD_TYPEOF
},
588 { "__typeof", NULL
, MOD_TYPEOF
},
589 { "__typeof__", NULL
, MOD_TYPEOF
},
592 { "attribute", NULL
, MOD_ATTRIBUTE
},
594 { "__attribute", NULL
, MOD_ATTRIBUTE
},
595 { "__attribute__", NULL
, MOD_ATTRIBUTE
},
597 { "struct", NULL
, MOD_STRUCTOF
},
598 { "union", NULL
, MOD_UNIONOF
},
599 { "enum", NULL
, MOD_ENUMOF
},
601 { "inline", NULL
, MOD_INLINE
},
602 { "__inline", NULL
, MOD_INLINE
},
603 { "__inline__", NULL
, MOD_INLINE
},
605 /* Ignored for now.. */
606 { "restrict", NULL
, 0 },
607 { "__restrict", NULL
, 0 },
612 static struct symbol_op constant_p_op
= {
613 .evaluate
= evaluate_to_integer
,
614 .expand
= expand_constant_p
617 static struct symbol_op safe_p_op
= {
618 .evaluate
= evaluate_to_integer
,
619 .expand
= expand_safe_p
622 static struct symbol_op warning_op
= {
623 .evaluate
= evaluate_to_integer
,
624 .expand
= expand_warning
630 static struct symbol builtin_fn_type
= { .type
= SYM_FN
/* , .variadic =1 */ };
631 static struct sym_init eval_init_table
[] = {
632 { "__builtin_constant_p", &builtin_fn_type
, MOD_TOPLEVEL
, &constant_p_op
},
633 { "__builtin_safe_p", &builtin_fn_type
, MOD_TOPLEVEL
, &safe_p_op
},
634 { "__builtin_warning", &builtin_fn_type
, MOD_TOPLEVEL
, &warning_op
},
642 struct symbol int_type
,
646 * C types (ie actual instances that the abstract types
649 struct symbol bool_ctype
, void_ctype
, type_ctype
,
650 char_ctype
, schar_ctype
, uchar_ctype
,
651 short_ctype
, sshort_ctype
, ushort_ctype
,
652 int_ctype
, sint_ctype
, uint_ctype
,
653 long_ctype
, slong_ctype
, ulong_ctype
,
654 llong_ctype
, sllong_ctype
, ullong_ctype
,
655 float_ctype
, double_ctype
, ldouble_ctype
,
656 string_ctype
, ptr_ctype
, lazy_ptr_ctype
,
657 incomplete_ctype
, label_ctype
, bad_ctype
;
660 #define __INIT_IDENT(str, res) { .len = sizeof(str)-1, .name = str, .reserved = res }
661 #define __IDENT(n,str,res) \
662 struct ident n = __INIT_IDENT(str,res)
664 #include "ident-list.h"
666 void init_symbols(void)
668 int stream
= init_stream("builtin", -1, includepath
);
669 struct sym_init
*ptr
;
671 #define __IDENT(n,str,res) \
673 #include "ident-list.h"
675 for (ptr
= symbol_init_table
; ptr
->name
; ptr
++) {
677 sym
= create_symbol(stream
, ptr
->name
, SYM_NODE
, NS_TYPEDEF
);
678 sym
->ident
->reserved
= 1;
679 sym
->ctype
.base_type
= ptr
->base_type
;
680 sym
->ctype
.modifiers
= ptr
->modifiers
;
683 builtin_fn_type
.variadic
= 1;
684 for (ptr
= eval_init_table
; ptr
->name
; ptr
++) {
686 sym
= create_symbol(stream
, ptr
->name
, SYM_NODE
, NS_SYMBOL
);
687 sym
->ctype
.base_type
= ptr
->base_type
;
688 sym
->ctype
.modifiers
= ptr
->modifiers
;
693 #define MOD_ESIGNED (MOD_SIGNED | MOD_EXPLICITLY_SIGNED)
694 #define MOD_LL (MOD_LONG | MOD_LONGLONG)
695 static const struct ctype_declare
{
698 unsigned long modifiers
;
701 struct symbol
*base_type
;
702 } ctype_declaration
[] = {
703 { &bool_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
, &bits_in_bool
, &max_int_alignment
, &int_type
},
704 { &void_ctype
, SYM_BASETYPE
, 0, NULL
, NULL
, NULL
},
705 { &type_ctype
, SYM_BASETYPE
, MOD_TYPE
, NULL
, NULL
, NULL
},
706 { &incomplete_ctype
,SYM_BASETYPE
, 0, NULL
, NULL
, NULL
},
707 { &bad_ctype
, SYM_BASETYPE
, 0, NULL
, NULL
, NULL
},
709 { &char_ctype
, SYM_BASETYPE
, MOD_SIGNED
| MOD_CHAR
, &bits_in_char
, &max_int_alignment
, &int_type
},
710 { &schar_ctype
, SYM_BASETYPE
, MOD_ESIGNED
| MOD_CHAR
, &bits_in_char
, &max_int_alignment
, &int_type
},
711 { &uchar_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
| MOD_CHAR
, &bits_in_char
, &max_int_alignment
, &int_type
},
712 { &short_ctype
, SYM_BASETYPE
, MOD_SIGNED
| MOD_SHORT
, &bits_in_short
, &max_int_alignment
, &int_type
},
713 { &sshort_ctype
, SYM_BASETYPE
, MOD_ESIGNED
| MOD_SHORT
, &bits_in_short
, &max_int_alignment
, &int_type
},
714 { &ushort_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
| MOD_SHORT
, &bits_in_short
, &max_int_alignment
, &int_type
},
715 { &int_ctype
, SYM_BASETYPE
, MOD_SIGNED
, &bits_in_int
, &max_int_alignment
, &int_type
},
716 { &sint_ctype
, SYM_BASETYPE
, MOD_ESIGNED
, &bits_in_int
, &max_int_alignment
, &int_type
},
717 { &uint_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
, &bits_in_int
, &max_int_alignment
, &int_type
},
718 { &long_ctype
, SYM_BASETYPE
, MOD_SIGNED
| MOD_LONG
, &bits_in_long
, &max_int_alignment
, &int_type
},
719 { &slong_ctype
, SYM_BASETYPE
, MOD_ESIGNED
| MOD_LONG
, &bits_in_long
, &max_int_alignment
, &int_type
},
720 { &ulong_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
| MOD_LONG
, &bits_in_long
, &max_int_alignment
, &int_type
},
721 { &llong_ctype
, SYM_BASETYPE
, MOD_SIGNED
| MOD_LL
, &bits_in_longlong
, &max_int_alignment
, &int_type
},
722 { &sllong_ctype
, SYM_BASETYPE
, MOD_ESIGNED
| MOD_LL
, &bits_in_longlong
, &max_int_alignment
, &int_type
},
723 { &ullong_ctype
, SYM_BASETYPE
, MOD_UNSIGNED
| MOD_LL
, &bits_in_longlong
, &max_int_alignment
, &int_type
},
725 { &float_ctype
, SYM_BASETYPE
, 0, &bits_in_float
, &max_fp_alignment
, &fp_type
},
726 { &double_ctype
, SYM_BASETYPE
, MOD_LONG
, &bits_in_double
, &max_fp_alignment
, &fp_type
},
727 { &ldouble_ctype
, SYM_BASETYPE
, MOD_LONG
| MOD_LONGLONG
, &bits_in_longdouble
, &max_fp_alignment
, &fp_type
},
729 { &string_ctype
, SYM_PTR
, 0, &bits_in_pointer
, &pointer_alignment
, &char_ctype
},
730 { &ptr_ctype
, SYM_PTR
, 0, &bits_in_pointer
, &pointer_alignment
, &void_ctype
},
731 { &label_ctype
, SYM_PTR
, 0, &bits_in_pointer
, &pointer_alignment
, &void_ctype
},
732 { &lazy_ptr_ctype
, SYM_PTR
, 0, &bits_in_pointer
, &pointer_alignment
, &void_ctype
},
738 void init_ctype(void)
740 const struct ctype_declare
*ctype
;
742 for (ctype
= ctype_declaration
; ctype
->ptr
; ctype
++) {
743 struct symbol
*sym
= ctype
->ptr
;
744 unsigned long bit_size
= ctype
->bit_size
? *ctype
->bit_size
: -1;
745 unsigned long maxalign
= ctype
->maxalign
? *ctype
->maxalign
: 0;
746 unsigned long alignment
= bit_size
>> 3;
748 if (alignment
> maxalign
)
749 alignment
= maxalign
;
750 sym
->type
= ctype
->type
;
751 sym
->bit_size
= bit_size
;
752 sym
->ctype
.alignment
= alignment
;
753 sym
->ctype
.base_type
= ctype
->base_type
;
754 sym
->ctype
.modifiers
= ctype
->modifiers
;