OSDN Git Service

* stor-layout.c (place_union_field): Apply ADJUST_FIELD_ALIGN
[pf3gnuchains/gcc-fork.git] / gcc / stor-layout.c
1 /* C-compiler utilities for types and variables storage layout
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1996, 1998,
3    1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "tree.h"
26 #include "rtl.h"
27 #include "tm_p.h"
28 #include "flags.h"
29 #include "function.h"
30 #include "expr.h"
31 #include "toplev.h"
32 #include "ggc.h"
33 #include "target.h"
34 #include "langhooks.h"
35
36 /* Set to one when set_sizetype has been called.  */
37 static int sizetype_set;
38
39 /* List of types created before set_sizetype has been called.  We do not
40    make this a GGC root since we want these nodes to be reclaimed.  */
41 static tree early_type_list;
42
43 /* Data type for the expressions representing sizes of data types.
44    It is the first integer type laid out.  */
45 tree sizetype_tab[(int) TYPE_KIND_LAST];
46
47 /* If nonzero, this is an upper limit on alignment of structure fields.
48    The value is measured in bits.  */
49 unsigned int maximum_field_alignment;
50
51 /* If non-zero, the alignment of a bitstring or (power-)set value, in bits.
52    May be overridden by front-ends.  */
53 unsigned int set_alignment = 0;
54
55 /* Nonzero if all REFERENCE_TYPEs are internal and hence should be
56    allocated in Pmode, not ptr_mode.   Set only by internal_reference_types
57    called only by a front end.  */
58 static int reference_types_internal = 0;
59
60 static void finalize_record_size        PARAMS ((record_layout_info));
61 static void finalize_type_size          PARAMS ((tree));
62 static void place_union_field           PARAMS ((record_layout_info, tree));
63 extern void debug_rli                   PARAMS ((record_layout_info));
64 \f
65 /* SAVE_EXPRs for sizes of types and decls, waiting to be expanded.  */
66
67 static GTY(()) tree pending_sizes;
68
69 /* Nonzero means cannot safely call expand_expr now,
70    so put variable sizes onto `pending_sizes' instead.  */
71
72 int immediate_size_expand;
73
74 /* Show that REFERENCE_TYPES are internal and should be Pmode.  Called only
75    by front end.  */
76
77 void
78 internal_reference_types ()
79 {
80   reference_types_internal = 1;
81 }
82
83 /* Get a list of all the objects put on the pending sizes list.  */
84
85 tree
86 get_pending_sizes ()
87 {
88   tree chain = pending_sizes;
89   tree t;
90
91   /* Put each SAVE_EXPR into the current function.  */
92   for (t = chain; t; t = TREE_CHAIN (t))
93     SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = current_function_decl;
94
95   pending_sizes = 0;
96   return chain;
97 }
98
99 /* Return non-zero if EXPR is present on the pending sizes list.  */
100
101 int
102 is_pending_size (expr)
103      tree expr;
104 {
105   tree t;
106
107   for (t = pending_sizes; t; t = TREE_CHAIN (t))
108     if (TREE_VALUE (t) == expr)
109       return 1;
110   return 0;
111 }
112
113 /* Add EXPR to the pending sizes list.  */
114
115 void
116 put_pending_size (expr)
117      tree expr;
118 {
119   /* Strip any simple arithmetic from EXPR to see if it has an underlying
120      SAVE_EXPR.  */
121   while (TREE_CODE_CLASS (TREE_CODE (expr)) == '1'
122          || (TREE_CODE_CLASS (TREE_CODE (expr)) == '2'
123             && TREE_CONSTANT (TREE_OPERAND (expr, 1))))
124     expr = TREE_OPERAND (expr, 0);
125
126   if (TREE_CODE (expr) == SAVE_EXPR)
127     pending_sizes = tree_cons (NULL_TREE, expr, pending_sizes);
128 }
129
130 /* Put a chain of objects into the pending sizes list, which must be
131    empty.  */
132
133 void
134 put_pending_sizes (chain)
135      tree chain;
136 {
137   if (pending_sizes)
138     abort ();
139
140   pending_sizes = chain;
141 }
142
143 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR
144    to serve as the actual size-expression for a type or decl.  */
145
146 tree
147 variable_size (size)
148      tree size;
149 {
150   /* If the language-processor is to take responsibility for variable-sized
151      items (e.g., languages which have elaboration procedures like Ada),
152      just return SIZE unchanged.  Likewise for self-referential sizes and
153      constant sizes.  */
154   if (TREE_CONSTANT (size)
155       || (*lang_hooks.decls.global_bindings_p) () < 0
156       || contains_placeholder_p (size))
157     return size;
158
159   size = save_expr (size);
160
161   /* If an array with a variable number of elements is declared, and
162      the elements require destruction, we will emit a cleanup for the
163      array.  That cleanup is run both on normal exit from the block
164      and in the exception-handler for the block.  Normally, when code
165      is used in both ordinary code and in an exception handler it is
166      `unsaved', i.e., all SAVE_EXPRs are recalculated.  However, we do
167      not wish to do that here; the array-size is the same in both
168      places.  */
169   if (TREE_CODE (size) == SAVE_EXPR)
170     SAVE_EXPR_PERSISTENT_P (size) = 1;
171
172   if ((*lang_hooks.decls.global_bindings_p) ())
173     {
174       if (TREE_CONSTANT (size))
175         error ("type size can't be explicitly evaluated");
176       else
177         error ("variable-size type declared outside of any function");
178
179       return size_one_node;
180     }
181
182   if (immediate_size_expand)
183     /* NULL_RTX is not defined; neither is the rtx type.
184        Also, we would like to pass const0_rtx here, but don't have it.  */
185     expand_expr (size, expand_expr (integer_zero_node, NULL_RTX, VOIDmode, 0),
186                  VOIDmode, 0);
187   else if (cfun != 0 && cfun->x_dont_save_pending_sizes_p)
188     /* The front-end doesn't want us to keep a list of the expressions
189        that determine sizes for variable size objects.  */
190     ;
191   else
192     put_pending_size (size);
193
194   return size;
195 }
196 \f
197 #ifndef MAX_FIXED_MODE_SIZE
198 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
199 #endif
200
201 /* Return the machine mode to use for a nonscalar of SIZE bits.
202    The mode must be in class CLASS, and have exactly that many bits.
203    If LIMIT is nonzero, modes of wider than MAX_FIXED_MODE_SIZE will not
204    be used.  */
205
206 enum machine_mode
207 mode_for_size (size, class, limit)
208      unsigned int size;
209      enum mode_class class;
210      int limit;
211 {
212   enum machine_mode mode;
213
214   if (limit && size > MAX_FIXED_MODE_SIZE)
215     return BLKmode;
216
217   /* Get the first mode which has this size, in the specified class.  */
218   for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
219        mode = GET_MODE_WIDER_MODE (mode))
220     if (GET_MODE_BITSIZE (mode) == size)
221       return mode;
222
223   return BLKmode;
224 }
225
226 /* Similar, except passed a tree node.  */
227
228 enum machine_mode
229 mode_for_size_tree (size, class, limit)
230      tree size;
231      enum mode_class class;
232      int limit;
233 {
234   if (TREE_CODE (size) != INTEGER_CST
235       /* What we really want to say here is that the size can fit in a
236          host integer, but we know there's no way we'd find a mode for
237          this many bits, so there's no point in doing the precise test.  */
238       || compare_tree_int (size, 1000) > 0)
239     return BLKmode;
240   else
241     return mode_for_size (TREE_INT_CST_LOW (size), class, limit);
242 }
243
244 /* Similar, but never return BLKmode; return the narrowest mode that
245    contains at least the requested number of bits.  */
246
247 enum machine_mode
248 smallest_mode_for_size (size, class)
249      unsigned int size;
250      enum mode_class class;
251 {
252   enum machine_mode mode;
253
254   /* Get the first mode which has at least this size, in the
255      specified class.  */
256   for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
257        mode = GET_MODE_WIDER_MODE (mode))
258     if (GET_MODE_BITSIZE (mode) >= size)
259       return mode;
260
261   abort ();
262 }
263
264 /* Find an integer mode of the exact same size, or BLKmode on failure.  */
265
266 enum machine_mode
267 int_mode_for_mode (mode)
268      enum machine_mode mode;
269 {
270   switch (GET_MODE_CLASS (mode))
271     {
272     case MODE_INT:
273     case MODE_PARTIAL_INT:
274       break;
275
276     case MODE_COMPLEX_INT:
277     case MODE_COMPLEX_FLOAT:
278     case MODE_FLOAT:
279     case MODE_VECTOR_INT:
280     case MODE_VECTOR_FLOAT:
281       mode = mode_for_size (GET_MODE_BITSIZE (mode), MODE_INT, 0);
282       break;
283
284     case MODE_RANDOM:
285       if (mode == BLKmode)
286         break;
287
288       /* ... fall through ...  */
289
290     case MODE_CC:
291     default:
292       abort ();
293     }
294
295   return mode;
296 }
297
298 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
299    This can only be applied to objects of a sizetype.  */
300
301 tree
302 round_up (value, divisor)
303      tree value;
304      int divisor;
305 {
306   tree arg = size_int_type (divisor, TREE_TYPE (value));
307
308   return size_binop (MULT_EXPR, size_binop (CEIL_DIV_EXPR, value, arg), arg);
309 }
310
311 /* Likewise, but round down.  */
312
313 tree
314 round_down (value, divisor)
315      tree value;
316      int divisor;
317 {
318   tree arg = size_int_type (divisor, TREE_TYPE (value));
319
320   return size_binop (MULT_EXPR, size_binop (FLOOR_DIV_EXPR, value, arg), arg);
321 }
322 \f
323 /* Set the size, mode and alignment of a ..._DECL node.
324    TYPE_DECL does need this for C++.
325    Note that LABEL_DECL and CONST_DECL nodes do not need this,
326    and FUNCTION_DECL nodes have them set up in a special (and simple) way.
327    Don't call layout_decl for them.
328
329    KNOWN_ALIGN is the amount of alignment we can assume this
330    decl has with no special effort.  It is relevant only for FIELD_DECLs
331    and depends on the previous fields.
332    All that matters about KNOWN_ALIGN is which powers of 2 divide it.
333    If KNOWN_ALIGN is 0, it means, "as much alignment as you like":
334    the record will be aligned to suit.  */
335
336 void
337 layout_decl (decl, known_align)
338      tree decl;
339      unsigned int known_align;
340 {
341   tree type = TREE_TYPE (decl);
342   enum tree_code code = TREE_CODE (decl);
343
344   if (code == CONST_DECL)
345     return;
346   else if (code != VAR_DECL && code != PARM_DECL && code != RESULT_DECL
347            && code != TYPE_DECL && code != FIELD_DECL)
348     abort ();
349
350   if (type == error_mark_node)
351     type = void_type_node;
352
353   /* Usually the size and mode come from the data type without change,
354      however, the front-end may set the explicit width of the field, so its
355      size may not be the same as the size of its type.  This happens with
356      bitfields, of course (an `int' bitfield may be only 2 bits, say), but it
357      also happens with other fields.  For example, the C++ front-end creates
358      zero-sized fields corresponding to empty base classes, and depends on
359      layout_type setting DECL_FIELD_BITPOS correctly for the field.  Set the
360      size in bytes from the size in bits.  If we have already set the mode,
361      don't set it again since we can be called twice for FIELD_DECLs.  */
362
363   TREE_UNSIGNED (decl) = TREE_UNSIGNED (type);
364   if (DECL_MODE (decl) == VOIDmode)
365     DECL_MODE (decl) = TYPE_MODE (type);
366
367   if (DECL_SIZE (decl) == 0)
368     {
369       DECL_SIZE (decl) = TYPE_SIZE (type);
370       DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
371     }
372   else
373     DECL_SIZE_UNIT (decl)
374       = convert (sizetype, size_binop (CEIL_DIV_EXPR, DECL_SIZE (decl),
375                                        bitsize_unit_node));
376
377   /* Force alignment required for the data type.
378      But if the decl itself wants greater alignment, don't override that.
379      Likewise, if the decl is packed, don't override it.  */
380   if (! (code == FIELD_DECL && DECL_BIT_FIELD (decl))
381       && (DECL_ALIGN (decl) == 0
382           || (! (code == FIELD_DECL && DECL_PACKED (decl))
383               && TYPE_ALIGN (type) > DECL_ALIGN (decl))))
384     {
385       DECL_ALIGN (decl) = TYPE_ALIGN (type);
386       DECL_USER_ALIGN (decl) = 0;
387     }
388
389   /* For fields, set the bit field type and update the alignment.  */
390   if (code == FIELD_DECL)
391     {
392       DECL_BIT_FIELD_TYPE (decl) = DECL_BIT_FIELD (decl) ? type : 0;
393       if (maximum_field_alignment != 0)
394         DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), maximum_field_alignment);
395
396       /* If the field is of variable size, we can't misalign it since we
397          have no way to make a temporary to align the result.  But this
398          isn't an issue if the decl is not addressable.  Likewise if it
399          is of unknown size.  */
400       else if (DECL_PACKED (decl)
401                && (DECL_NONADDRESSABLE_P (decl)
402                    || DECL_SIZE_UNIT (decl) == 0
403                    || TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST))
404         {
405           DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), BITS_PER_UNIT);
406           DECL_USER_ALIGN (decl) = 0;
407         }
408     }
409
410   /* See if we can use an ordinary integer mode for a bit-field.
411      Conditions are: a fixed size that is correct for another mode
412      and occupying a complete byte or bytes on proper boundary.  */
413   if (code == FIELD_DECL && DECL_BIT_FIELD (decl)
414       && TYPE_SIZE (type) != 0
415       && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
416       && GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT)
417     {
418       enum machine_mode xmode
419         = mode_for_size_tree (DECL_SIZE (decl), MODE_INT, 1);
420
421       if (xmode != BLKmode && known_align >= GET_MODE_ALIGNMENT (xmode))
422         {
423           DECL_ALIGN (decl) = MAX (GET_MODE_ALIGNMENT (xmode),
424                                    DECL_ALIGN (decl));
425           DECL_MODE (decl) = xmode;
426           DECL_BIT_FIELD (decl) = 0;
427         }
428     }
429
430   /* Turn off DECL_BIT_FIELD if we won't need it set.  */
431   if (code == FIELD_DECL && DECL_BIT_FIELD (decl)
432       && TYPE_MODE (type) == BLKmode && DECL_MODE (decl) == BLKmode
433       && known_align >= TYPE_ALIGN (type)
434       && DECL_ALIGN (decl) >= TYPE_ALIGN (type)
435       && DECL_SIZE_UNIT (decl) != 0)
436     DECL_BIT_FIELD (decl) = 0;
437
438   /* Evaluate nonconstant size only once, either now or as soon as safe.  */
439   if (DECL_SIZE (decl) != 0 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
440     DECL_SIZE (decl) = variable_size (DECL_SIZE (decl));
441   if (DECL_SIZE_UNIT (decl) != 0
442       && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST)
443     DECL_SIZE_UNIT (decl) = variable_size (DECL_SIZE_UNIT (decl));
444
445   /* If requested, warn about definitions of large data objects.  */
446   if (warn_larger_than
447       && (code == VAR_DECL || code == PARM_DECL)
448       && ! DECL_EXTERNAL (decl))
449     {
450       tree size = DECL_SIZE_UNIT (decl);
451
452       if (size != 0 && TREE_CODE (size) == INTEGER_CST
453           && compare_tree_int (size, larger_than_size) > 0)
454         {
455           unsigned int size_as_int = TREE_INT_CST_LOW (size);
456
457           if (compare_tree_int (size, size_as_int) == 0)
458             warning_with_decl (decl, "size of `%s' is %d bytes", size_as_int);
459           else
460             warning_with_decl (decl, "size of `%s' is larger than %d bytes",
461                                larger_than_size);
462         }
463     }
464 }
465 \f
466 /* Hook for a front-end function that can modify the record layout as needed
467    immediately before it is finalized.  */
468
469 void (*lang_adjust_rli) PARAMS ((record_layout_info)) = 0;
470
471 void
472 set_lang_adjust_rli (f)
473      void (*f) PARAMS ((record_layout_info));
474 {
475   lang_adjust_rli = f;
476 }
477
478 /* Begin laying out type T, which may be a RECORD_TYPE, UNION_TYPE, or
479    QUAL_UNION_TYPE.  Return a pointer to a struct record_layout_info which
480    is to be passed to all other layout functions for this record.  It is the
481    responsibility of the caller to call `free' for the storage returned.
482    Note that garbage collection is not permitted until we finish laying
483    out the record.  */
484
485 record_layout_info
486 start_record_layout (t)
487      tree t;
488 {
489   record_layout_info rli
490     = (record_layout_info) xmalloc (sizeof (struct record_layout_info_s));
491
492   rli->t = t;
493
494   /* If the type has a minimum specified alignment (via an attribute
495      declaration, for example) use it -- otherwise, start with a
496      one-byte alignment.  */
497   rli->record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (t));
498   rli->unpacked_align = rli->unpadded_align = rli->record_align;
499   rli->offset_align = MAX (rli->record_align, BIGGEST_ALIGNMENT);
500
501 #ifdef STRUCTURE_SIZE_BOUNDARY
502   /* Packed structures don't need to have minimum size.  */
503   if (! TYPE_PACKED (t))
504     rli->record_align = MAX (rli->record_align, STRUCTURE_SIZE_BOUNDARY);
505 #endif
506
507   rli->offset = size_zero_node;
508   rli->bitpos = bitsize_zero_node;
509   rli->prev_field = 0;
510   rli->pending_statics = 0;
511   rli->packed_maybe_necessary = 0;
512
513   return rli;
514 }
515
516 /* These four routines perform computations that convert between
517    the offset/bitpos forms and byte and bit offsets.  */
518
519 tree
520 bit_from_pos (offset, bitpos)
521      tree offset, bitpos;
522 {
523   return size_binop (PLUS_EXPR, bitpos,
524                      size_binop (MULT_EXPR, convert (bitsizetype, offset),
525                                  bitsize_unit_node));
526 }
527
528 tree
529 byte_from_pos (offset, bitpos)
530      tree offset, bitpos;
531 {
532   return size_binop (PLUS_EXPR, offset,
533                      convert (sizetype,
534                               size_binop (TRUNC_DIV_EXPR, bitpos,
535                                           bitsize_unit_node)));
536 }
537
538 void
539 pos_from_byte (poffset, pbitpos, off_align, pos)
540      tree *poffset, *pbitpos;
541      unsigned int off_align;
542      tree pos;
543 {
544   *poffset
545     = size_binop (MULT_EXPR,
546                   convert (sizetype,
547                            size_binop (FLOOR_DIV_EXPR, pos,
548                                        bitsize_int (off_align
549                                                     / BITS_PER_UNIT))),
550                   size_int (off_align / BITS_PER_UNIT));
551   *pbitpos = size_binop (MULT_EXPR,
552                          size_binop (FLOOR_MOD_EXPR, pos,
553                                      bitsize_int (off_align / BITS_PER_UNIT)),
554                          bitsize_unit_node);
555 }
556
557 void
558 pos_from_bit (poffset, pbitpos, off_align, pos)
559      tree *poffset, *pbitpos;
560      unsigned int off_align;
561      tree pos;
562 {
563   *poffset = size_binop (MULT_EXPR,
564                          convert (sizetype,
565                                   size_binop (FLOOR_DIV_EXPR, pos,
566                                               bitsize_int (off_align))),
567                          size_int (off_align / BITS_PER_UNIT));
568   *pbitpos = size_binop (FLOOR_MOD_EXPR, pos, bitsize_int (off_align));
569 }
570
571 /* Given a pointer to bit and byte offsets and an offset alignment,
572    normalize the offsets so they are within the alignment.  */
573
574 void
575 normalize_offset (poffset, pbitpos, off_align)
576      tree *poffset, *pbitpos;
577      unsigned int off_align;
578 {
579   /* If the bit position is now larger than it should be, adjust it
580      downwards.  */
581   if (compare_tree_int (*pbitpos, off_align) >= 0)
582     {
583       tree extra_aligns = size_binop (FLOOR_DIV_EXPR, *pbitpos,
584                                       bitsize_int (off_align));
585
586       *poffset
587         = size_binop (PLUS_EXPR, *poffset,
588                       size_binop (MULT_EXPR, convert (sizetype, extra_aligns),
589                                   size_int (off_align / BITS_PER_UNIT)));
590
591       *pbitpos
592         = size_binop (FLOOR_MOD_EXPR, *pbitpos, bitsize_int (off_align));
593     }
594 }
595
596 /* Print debugging information about the information in RLI.  */
597
598 void
599 debug_rli (rli)
600      record_layout_info rli;
601 {
602   print_node_brief (stderr, "type", rli->t, 0);
603   print_node_brief (stderr, "\noffset", rli->offset, 0);
604   print_node_brief (stderr, " bitpos", rli->bitpos, 0);
605
606   fprintf (stderr, "\naligns: rec = %u, unpack = %u, unpad = %u, off = %u\n",
607            rli->record_align, rli->unpacked_align, rli->unpadded_align,
608            rli->offset_align);
609   if (rli->packed_maybe_necessary)
610     fprintf (stderr, "packed may be necessary\n");
611
612   if (rli->pending_statics)
613     {
614       fprintf (stderr, "pending statics:\n");
615       debug_tree (rli->pending_statics);
616     }
617 }
618
619 /* Given an RLI with a possibly-incremented BITPOS, adjust OFFSET and
620    BITPOS if necessary to keep BITPOS below OFFSET_ALIGN.  */
621
622 void
623 normalize_rli (rli)
624      record_layout_info rli;
625 {
626   normalize_offset (&rli->offset, &rli->bitpos, rli->offset_align);
627 }
628
629 /* Returns the size in bytes allocated so far.  */
630
631 tree
632 rli_size_unit_so_far (rli)
633      record_layout_info rli;
634 {
635   return byte_from_pos (rli->offset, rli->bitpos);
636 }
637
638 /* Returns the size in bits allocated so far.  */
639
640 tree
641 rli_size_so_far (rli)
642      record_layout_info rli;
643 {
644   return bit_from_pos (rli->offset, rli->bitpos);
645 }
646
647 /* Called from place_field to handle unions.  */
648
649 static void
650 place_union_field (rli, field)
651      record_layout_info rli;
652      tree field;
653 {
654   unsigned int desired_align;
655
656   layout_decl (field, 0);
657
658   DECL_FIELD_OFFSET (field) = size_zero_node;
659   DECL_FIELD_BIT_OFFSET (field) = bitsize_zero_node;
660   SET_DECL_OFFSET_ALIGN (field, BIGGEST_ALIGNMENT);
661
662   desired_align = DECL_ALIGN (field);
663
664 #ifdef BIGGEST_FIELD_ALIGNMENT
665   /* Some targets (i.e. i386) limit union field alignment
666      to a lower boundary than alignment of variables unless
667      it was overridden by attribute aligned.  */
668   if (! DECL_USER_ALIGN (field))
669     desired_align =
670       MIN (desired_align, (unsigned) BIGGEST_FIELD_ALIGNMENT);
671 #endif
672
673 #ifdef ADJUST_FIELD_ALIGN
674   if (! DECL_USER_ALIGN (field))
675     desired_align = ADJUST_FIELD_ALIGN (field, desired_align);
676 #endif
677
678   TYPE_USER_ALIGN (rli->t) |= DECL_USER_ALIGN (field);
679
680   /* Union must be at least as aligned as any field requires.  */
681   rli->record_align = MAX (rli->record_align, desired_align);
682   rli->unpadded_align = MAX (rli->unpadded_align, desired_align);
683
684 #ifdef PCC_BITFIELD_TYPE_MATTERS
685   /* On the m88000, a bit field of declare type `int' forces the
686      entire union to have `int' alignment.  */
687   if (PCC_BITFIELD_TYPE_MATTERS && DECL_BIT_FIELD_TYPE (field))
688     {
689       unsigned int type_align = TYPE_ALIGN (TREE_TYPE (field));
690
691 #ifdef ADJUST_FIELD_ALIGN
692       if (! TYPE_USER_ALIGN (TREE_TYPE (field)))
693         type_align = ADJUST_FIELD_ALIGN (field, type_align);
694 #endif
695       rli->record_align = MAX (rli->record_align, type_align);
696       rli->unpadded_align = MAX (rli->unpadded_align, type_align);
697     }
698 #endif
699
700   /* We assume the union's size will be a multiple of a byte so we don't
701      bother with BITPOS.  */
702   if (TREE_CODE (rli->t) == UNION_TYPE)
703     rli->offset = size_binop (MAX_EXPR, rli->offset, DECL_SIZE_UNIT (field));
704   else if (TREE_CODE (rli->t) == QUAL_UNION_TYPE)
705     rli->offset = fold (build (COND_EXPR, sizetype,
706                                DECL_QUALIFIER (field),
707                                DECL_SIZE_UNIT (field), rli->offset));
708 }
709
710 /* RLI contains information about the layout of a RECORD_TYPE.  FIELD
711    is a FIELD_DECL to be added after those fields already present in
712    T.  (FIELD is not actually added to the TYPE_FIELDS list here;
713    callers that desire that behavior must manually perform that step.)  */
714
715 void
716 place_field (rli, field)
717      record_layout_info rli;
718      tree field;
719 {
720   /* The alignment required for FIELD.  */
721   unsigned int desired_align;
722   /* The alignment FIELD would have if we just dropped it into the
723      record as it presently stands.  */
724   unsigned int known_align;
725   unsigned int actual_align;
726   unsigned int user_align;
727   /* The type of this field.  */
728   tree type = TREE_TYPE (field);
729
730   if (TREE_CODE (field) == ERROR_MARK || TREE_CODE (type) == ERROR_MARK)
731       return;
732
733   /* If FIELD is static, then treat it like a separate variable, not
734      really like a structure field.  If it is a FUNCTION_DECL, it's a
735      method.  In both cases, all we do is lay out the decl, and we do
736      it *after* the record is laid out.  */
737   if (TREE_CODE (field) == VAR_DECL)
738     {
739       rli->pending_statics = tree_cons (NULL_TREE, field,
740                                         rli->pending_statics);
741       return;
742     }
743
744   /* Enumerators and enum types which are local to this class need not
745      be laid out.  Likewise for initialized constant fields.  */
746   else if (TREE_CODE (field) != FIELD_DECL)
747     return;
748
749   /* Unions are laid out very differently than records, so split
750      that code off to another function.  */
751   else if (TREE_CODE (rli->t) != RECORD_TYPE)
752     {
753       place_union_field (rli, field);
754       return;
755     }
756
757   /* Work out the known alignment so far.  Note that A & (-A) is the
758      value of the least-significant bit in A that is one.  */
759   if (! integer_zerop (rli->bitpos))
760     known_align = (tree_low_cst (rli->bitpos, 1)
761                    & - tree_low_cst (rli->bitpos, 1));
762   else if (integer_zerop (rli->offset))
763     known_align = BIGGEST_ALIGNMENT;
764   else if (host_integerp (rli->offset, 1))
765     known_align = (BITS_PER_UNIT
766                    * (tree_low_cst (rli->offset, 1)
767                       & - tree_low_cst (rli->offset, 1)));
768   else
769     known_align = rli->offset_align;
770
771   /* Lay out the field so we know what alignment it needs.  For a
772      packed field, use the alignment as specified, disregarding what
773      the type would want.  */
774   desired_align = DECL_ALIGN (field);
775   user_align = DECL_USER_ALIGN (field);
776   layout_decl (field, known_align);
777   if (! DECL_PACKED (field))
778     {
779       desired_align = DECL_ALIGN (field);
780       user_align = DECL_USER_ALIGN (field);
781     }
782
783   /* Some targets (i.e. i386, VMS) limit struct field alignment
784      to a lower boundary than alignment of variables unless
785      it was overridden by attribute aligned.  */
786 #ifdef BIGGEST_FIELD_ALIGNMENT
787   if (! user_align)
788     desired_align
789       = MIN (desired_align, (unsigned) BIGGEST_FIELD_ALIGNMENT);
790 #endif
791
792 #ifdef ADJUST_FIELD_ALIGN
793   if (! user_align)
794     desired_align = ADJUST_FIELD_ALIGN (field, desired_align);
795 #endif
796
797   /* Record must have at least as much alignment as any field.
798      Otherwise, the alignment of the field within the record is
799      meaningless.  */
800   if ((* targetm.ms_bitfield_layout_p) (rli->t)
801       && type != error_mark_node
802       && DECL_BIT_FIELD_TYPE (field)
803       && ! integer_zerop (TYPE_SIZE (type))
804       && integer_zerop (DECL_SIZE (field)))
805     {
806       if (rli->prev_field
807           && DECL_BIT_FIELD_TYPE (rli->prev_field)
808           && ! integer_zerop (DECL_SIZE (rli->prev_field)))
809         {
810           rli->record_align = MAX (rli->record_align, desired_align);
811           rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
812         }
813       else
814         desired_align = 1;
815     }
816   else
817 #ifdef PCC_BITFIELD_TYPE_MATTERS
818   if (PCC_BITFIELD_TYPE_MATTERS && type != error_mark_node
819       && ! (* targetm.ms_bitfield_layout_p) (rli->t)
820       && DECL_BIT_FIELD_TYPE (field)
821       && ! integer_zerop (TYPE_SIZE (type)))
822     {
823       /* For these machines, a zero-length field does not
824          affect the alignment of the structure as a whole.
825          It does, however, affect the alignment of the next field
826          within the structure.  */
827       if (! integer_zerop (DECL_SIZE (field)))
828         rli->record_align = MAX (rli->record_align, desired_align);
829       else if (! DECL_PACKED (field))
830         desired_align = TYPE_ALIGN (type);
831
832       /* A named bit field of declared type `int'
833          forces the entire structure to have `int' alignment.  */
834       if (DECL_NAME (field) != 0)
835         {
836           unsigned int type_align = TYPE_ALIGN (type);
837
838 #ifdef ADJUST_FIELD_ALIGN
839           if (! TYPE_USER_ALIGN (type))
840             type_align = ADJUST_FIELD_ALIGN (field, type_align);
841 #endif
842
843           if (maximum_field_alignment != 0)
844             type_align = MIN (type_align, maximum_field_alignment);
845           else if (DECL_PACKED (field))
846             type_align = MIN (type_align, BITS_PER_UNIT);
847
848           rli->record_align = MAX (rli->record_align, type_align);
849           rli->unpadded_align = MAX (rli->unpadded_align, DECL_ALIGN (field));
850           if (warn_packed)
851             rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
852         }
853     }
854   else
855 #endif
856     {
857       rli->record_align = MAX (rli->record_align, desired_align);
858       rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
859       rli->unpadded_align = MAX (rli->unpadded_align, DECL_ALIGN (field));
860     }
861
862   if (warn_packed && DECL_PACKED (field))
863     {
864       if (known_align > TYPE_ALIGN (type))
865         {
866           if (TYPE_ALIGN (type) > desired_align)
867             {
868               if (STRICT_ALIGNMENT)
869                 warning_with_decl (field, "packed attribute causes inefficient alignment for `%s'");
870               else
871                 warning_with_decl (field, "packed attribute is unnecessary for `%s'");
872             }
873         }
874       else
875         rli->packed_maybe_necessary = 1;
876     }
877
878   /* Does this field automatically have alignment it needs by virtue
879      of the fields that precede it and the record's own alignment?  */
880   if (known_align < desired_align)
881     {
882       /* No, we need to skip space before this field.
883          Bump the cumulative size to multiple of field alignment.  */
884
885       if (warn_padded)
886         warning_with_decl (field, "padding struct to align `%s'");
887
888       /* If the alignment is still within offset_align, just align
889          the bit position.  */
890       if (desired_align < rli->offset_align)
891         rli->bitpos = round_up (rli->bitpos, desired_align);
892       else
893         {
894           /* First adjust OFFSET by the partial bits, then align.  */
895           rli->offset
896             = size_binop (PLUS_EXPR, rli->offset,
897                           convert (sizetype,
898                                    size_binop (CEIL_DIV_EXPR, rli->bitpos,
899                                                bitsize_unit_node)));
900           rli->bitpos = bitsize_zero_node;
901
902           rli->offset = round_up (rli->offset, desired_align / BITS_PER_UNIT);
903         }
904
905       if (! TREE_CONSTANT (rli->offset))
906         rli->offset_align = desired_align;
907
908     }
909
910   /* Handle compatibility with PCC.  Note that if the record has any
911      variable-sized fields, we need not worry about compatibility.  */
912 #ifdef PCC_BITFIELD_TYPE_MATTERS
913   if (PCC_BITFIELD_TYPE_MATTERS
914       && ! (* targetm.ms_bitfield_layout_p) (rli->t)
915       && TREE_CODE (field) == FIELD_DECL
916       && type != error_mark_node
917       && DECL_BIT_FIELD (field)
918       && ! DECL_PACKED (field)
919       && maximum_field_alignment == 0
920       && ! integer_zerop (DECL_SIZE (field))
921       && host_integerp (DECL_SIZE (field), 1)
922       && host_integerp (rli->offset, 1)
923       && host_integerp (TYPE_SIZE (type), 1))
924     {
925       unsigned int type_align = TYPE_ALIGN (type);
926       tree dsize = DECL_SIZE (field);
927       HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
928       HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
929       HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
930
931 #ifdef ADJUST_FIELD_ALIGN
932       if (! TYPE_USER_ALIGN (type))
933         type_align = ADJUST_FIELD_ALIGN (field, type_align);
934 #endif
935
936       /* A bit field may not span more units of alignment of its type
937          than its type itself.  Advance to next boundary if necessary.  */
938       if ((((offset * BITS_PER_UNIT + bit_offset + field_size +
939              type_align - 1)
940             / type_align)
941            - (offset * BITS_PER_UNIT + bit_offset) / type_align)
942           > tree_low_cst (TYPE_SIZE (type), 1) / type_align)
943         rli->bitpos = round_up (rli->bitpos, type_align);
944     }
945 #endif
946
947 #ifdef BITFIELD_NBYTES_LIMITED
948   if (BITFIELD_NBYTES_LIMITED
949       && ! (* targetm.ms_bitfield_layout_p) (rli->t)
950       && TREE_CODE (field) == FIELD_DECL
951       && type != error_mark_node
952       && DECL_BIT_FIELD_TYPE (field)
953       && ! DECL_PACKED (field)
954       && ! integer_zerop (DECL_SIZE (field))
955       && host_integerp (DECL_SIZE (field), 1)
956       && host_integerp (rli->offset, 1)
957       && host_integerp (TYPE_SIZE (type), 1))
958     {
959       unsigned int type_align = TYPE_ALIGN (type);
960       tree dsize = DECL_SIZE (field);
961       HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
962       HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
963       HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
964
965 #ifdef ADJUST_FIELD_ALIGN
966       if (! TYPE_USER_ALIGN (type))
967         type_align = ADJUST_FIELD_ALIGN (field, type_align);
968 #endif
969
970       if (maximum_field_alignment != 0)
971         type_align = MIN (type_align, maximum_field_alignment);
972       /* ??? This test is opposite the test in the containing if
973          statement, so this code is unreachable currently.  */
974       else if (DECL_PACKED (field))
975         type_align = MIN (type_align, BITS_PER_UNIT);
976
977       /* A bit field may not span the unit of alignment of its type.
978          Advance to next boundary if necessary.  */
979       /* ??? This code should match the code above for the
980          PCC_BITFIELD_TYPE_MATTERS case.  */
981       if ((offset * BITS_PER_UNIT + bit_offset) / type_align
982           != ((offset * BITS_PER_UNIT + bit_offset + field_size - 1)
983               / type_align))
984         rli->bitpos = round_up (rli->bitpos, type_align);
985     }
986 #endif
987
988   /* See the docs for TARGET_MS_BITFIELD_LAYOUT_P for details.  */
989   if ((* targetm.ms_bitfield_layout_p) (rli->t)
990       && TREE_CODE (field) == FIELD_DECL
991       && type != error_mark_node
992       && ! DECL_PACKED (field)
993       && rli->prev_field
994       && DECL_SIZE (field)
995       && host_integerp (DECL_SIZE (field), 1)
996       && DECL_SIZE (rli->prev_field)
997       && host_integerp (DECL_SIZE (rli->prev_field), 1)
998       && host_integerp (rli->offset, 1)
999       && host_integerp (TYPE_SIZE (type), 1)
1000       && host_integerp (TYPE_SIZE (TREE_TYPE (rli->prev_field)), 1)
1001       && ((DECL_BIT_FIELD_TYPE (rli->prev_field)
1002            && ! integer_zerop (DECL_SIZE (rli->prev_field)))
1003           || (DECL_BIT_FIELD_TYPE (field)
1004               && ! integer_zerop (DECL_SIZE (field))))
1005       && (! simple_cst_equal (TYPE_SIZE (type),
1006                               TYPE_SIZE (TREE_TYPE (rli->prev_field)))
1007           /* If the previous field was a zero-sized bit-field, either
1008              it was ignored, in which case we must ensure the proper
1009              alignment of this field here, or it already forced the
1010              alignment of this field, in which case forcing the
1011              alignment again is harmless.  So, do it in both cases.  */
1012           || (DECL_BIT_FIELD_TYPE (rli->prev_field)
1013               && integer_zerop (DECL_SIZE (rli->prev_field)))))
1014     {
1015       unsigned int type_align = TYPE_ALIGN (type);
1016
1017       if (rli->prev_field
1018           && DECL_BIT_FIELD_TYPE (rli->prev_field)
1019           /* If the previous bit-field is zero-sized, we've already
1020              accounted for its alignment needs (or ignored it, if
1021              appropriate) while placing it.  */
1022           && ! integer_zerop (DECL_SIZE (rli->prev_field)))
1023         type_align = MAX (type_align,
1024                           TYPE_ALIGN (TREE_TYPE (rli->prev_field)));
1025
1026       if (maximum_field_alignment != 0)
1027         type_align = MIN (type_align, maximum_field_alignment);
1028
1029       rli->bitpos = round_up (rli->bitpos, type_align);
1030     }
1031
1032   /* Offset so far becomes the position of this field after normalizing.  */
1033   normalize_rli (rli);
1034   DECL_FIELD_OFFSET (field) = rli->offset;
1035   DECL_FIELD_BIT_OFFSET (field) = rli->bitpos;
1036   SET_DECL_OFFSET_ALIGN (field, rli->offset_align);
1037
1038   TYPE_USER_ALIGN (rli->t) |= user_align;
1039
1040   /* If this field ended up more aligned than we thought it would be (we
1041      approximate this by seeing if its position changed), lay out the field
1042      again; perhaps we can use an integral mode for it now.  */
1043   if (! integer_zerop (DECL_FIELD_BIT_OFFSET (field)))
1044     actual_align = (tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
1045                     & - tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1));
1046   else if (integer_zerop (DECL_FIELD_OFFSET (field)))
1047     actual_align = BIGGEST_ALIGNMENT;
1048   else if (host_integerp (DECL_FIELD_OFFSET (field), 1))
1049     actual_align = (BITS_PER_UNIT
1050                    * (tree_low_cst (DECL_FIELD_OFFSET (field), 1)
1051                       & - tree_low_cst (DECL_FIELD_OFFSET (field), 1)));
1052   else
1053     actual_align = DECL_OFFSET_ALIGN (field);
1054
1055   if (known_align != actual_align)
1056     layout_decl (field, actual_align);
1057
1058   rli->prev_field = field;
1059
1060   /* Now add size of this field to the size of the record.  If the size is
1061      not constant, treat the field as being a multiple of bytes and just
1062      adjust the offset, resetting the bit position.  Otherwise, apportion the
1063      size amongst the bit position and offset.  First handle the case of an
1064      unspecified size, which can happen when we have an invalid nested struct
1065      definition, such as struct j { struct j { int i; } }.  The error message
1066      is printed in finish_struct.  */
1067   if (DECL_SIZE (field) == 0)
1068     /* Do nothing.  */;
1069   else if (TREE_CODE (DECL_SIZE_UNIT (field)) != INTEGER_CST
1070            || TREE_CONSTANT_OVERFLOW (DECL_SIZE_UNIT (field)))
1071     {
1072       rli->offset
1073         = size_binop (PLUS_EXPR, rli->offset,
1074                       convert (sizetype,
1075                                size_binop (CEIL_DIV_EXPR, rli->bitpos,
1076                                            bitsize_unit_node)));
1077       rli->offset
1078         = size_binop (PLUS_EXPR, rli->offset, DECL_SIZE_UNIT (field));
1079       rli->bitpos = bitsize_zero_node;
1080       rli->offset_align = MIN (rli->offset_align, DECL_ALIGN (field));
1081     }
1082   else
1083     {
1084       rli->bitpos = size_binop (PLUS_EXPR, rli->bitpos, DECL_SIZE (field));
1085       normalize_rli (rli);
1086     }
1087 }
1088
1089 /* Assuming that all the fields have been laid out, this function uses
1090    RLI to compute the final TYPE_SIZE, TYPE_ALIGN, etc. for the type
1091    inidicated by RLI.  */
1092
1093 static void
1094 finalize_record_size (rli)
1095      record_layout_info rli;
1096 {
1097   tree unpadded_size, unpadded_size_unit;
1098
1099   /* Now we want just byte and bit offsets, so set the offset alignment
1100      to be a byte and then normalize.  */
1101   rli->offset_align = BITS_PER_UNIT;
1102   normalize_rli (rli);
1103
1104   /* Determine the desired alignment.  */
1105 #ifdef ROUND_TYPE_ALIGN
1106   TYPE_ALIGN (rli->t) = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t),
1107                                           rli->record_align);
1108 #else
1109   TYPE_ALIGN (rli->t) = MAX (TYPE_ALIGN (rli->t), rli->record_align);
1110 #endif
1111
1112   /* Compute the size so far.  Be sure to allow for extra bits in the
1113      size in bytes.  We have guaranteed above that it will be no more
1114      than a single byte.  */
1115   unpadded_size = rli_size_so_far (rli);
1116   unpadded_size_unit = rli_size_unit_so_far (rli);
1117   if (! integer_zerop (rli->bitpos))
1118     unpadded_size_unit
1119       = size_binop (PLUS_EXPR, unpadded_size_unit, size_one_node);
1120
1121   /* Record the un-rounded size in the binfo node.  But first we check
1122      the size of TYPE_BINFO to make sure that BINFO_SIZE is available.  */
1123   if (TYPE_BINFO (rli->t) && TREE_VEC_LENGTH (TYPE_BINFO (rli->t)) > 6)
1124     {
1125       TYPE_BINFO_SIZE (rli->t) = unpadded_size;
1126       TYPE_BINFO_SIZE_UNIT (rli->t) = unpadded_size_unit;
1127     }
1128
1129     /* Round the size up to be a multiple of the required alignment */
1130 #ifdef ROUND_TYPE_SIZE
1131   TYPE_SIZE (rli->t) = ROUND_TYPE_SIZE (rli->t, unpadded_size,
1132                                         TYPE_ALIGN (rli->t));
1133   TYPE_SIZE_UNIT (rli->t)
1134     = ROUND_TYPE_SIZE_UNIT (rli->t, unpadded_size_unit,
1135                             TYPE_ALIGN (rli->t) / BITS_PER_UNIT);
1136 #else
1137   TYPE_SIZE (rli->t) = round_up (unpadded_size, TYPE_ALIGN (rli->t));
1138   TYPE_SIZE_UNIT (rli->t) = round_up (unpadded_size_unit,
1139                                       TYPE_ALIGN (rli->t) / BITS_PER_UNIT);
1140 #endif
1141
1142   if (warn_padded && TREE_CONSTANT (unpadded_size)
1143       && simple_cst_equal (unpadded_size, TYPE_SIZE (rli->t)) == 0)
1144     warning ("padding struct size to alignment boundary");
1145
1146   if (warn_packed && TREE_CODE (rli->t) == RECORD_TYPE
1147       && TYPE_PACKED (rli->t) && ! rli->packed_maybe_necessary
1148       && TREE_CONSTANT (unpadded_size))
1149     {
1150       tree unpacked_size;
1151
1152 #ifdef ROUND_TYPE_ALIGN
1153       rli->unpacked_align
1154         = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t), rli->unpacked_align);
1155 #else
1156       rli->unpacked_align = MAX (TYPE_ALIGN (rli->t), rli->unpacked_align);
1157 #endif
1158
1159 #ifdef ROUND_TYPE_SIZE
1160       unpacked_size = ROUND_TYPE_SIZE (rli->t, TYPE_SIZE (rli->t),
1161                                        rli->unpacked_align);
1162 #else
1163       unpacked_size = round_up (TYPE_SIZE (rli->t), rli->unpacked_align);
1164 #endif
1165
1166       if (simple_cst_equal (unpacked_size, TYPE_SIZE (rli->t)))
1167         {
1168           TYPE_PACKED (rli->t) = 0;
1169
1170           if (TYPE_NAME (rli->t))
1171             {
1172               const char *name;
1173
1174               if (TREE_CODE (TYPE_NAME (rli->t)) == IDENTIFIER_NODE)
1175                 name = IDENTIFIER_POINTER (TYPE_NAME (rli->t));
1176               else
1177                 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (rli->t)));
1178
1179               if (STRICT_ALIGNMENT)
1180                 warning ("packed attribute causes inefficient alignment for `%s'", name);
1181               else
1182                 warning ("packed attribute is unnecessary for `%s'", name);
1183             }
1184           else
1185             {
1186               if (STRICT_ALIGNMENT)
1187                 warning ("packed attribute causes inefficient alignment");
1188               else
1189                 warning ("packed attribute is unnecessary");
1190             }
1191         }
1192     }
1193 }
1194
1195 /* Compute the TYPE_MODE for the TYPE (which is a RECORD_TYPE).  */
1196
1197 void
1198 compute_record_mode (type)
1199      tree type;
1200 {
1201   tree field;
1202   enum machine_mode mode = VOIDmode;
1203
1204   /* Most RECORD_TYPEs have BLKmode, so we start off assuming that.
1205      However, if possible, we use a mode that fits in a register
1206      instead, in order to allow for better optimization down the
1207      line.  */
1208   TYPE_MODE (type) = BLKmode;
1209
1210   if (! host_integerp (TYPE_SIZE (type), 1))
1211     return;
1212
1213   /* A record which has any BLKmode members must itself be
1214      BLKmode; it can't go in a register.  Unless the member is
1215      BLKmode only because it isn't aligned.  */
1216   for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1217     {
1218       unsigned HOST_WIDE_INT bitpos;
1219
1220       if (TREE_CODE (field) != FIELD_DECL)
1221         continue;
1222
1223       if (TREE_CODE (TREE_TYPE (field)) == ERROR_MARK
1224           || (TYPE_MODE (TREE_TYPE (field)) == BLKmode
1225               && ! TYPE_NO_FORCE_BLK (TREE_TYPE (field)))
1226           || ! host_integerp (bit_position (field), 1)
1227           || DECL_SIZE (field) == 0
1228           || ! host_integerp (DECL_SIZE (field), 1))
1229         return;
1230
1231       bitpos = int_bit_position (field);
1232
1233       /* Must be BLKmode if any field crosses a word boundary,
1234          since extract_bit_field can't handle that in registers.  */
1235       if (bitpos / BITS_PER_WORD
1236           != ((tree_low_cst (DECL_SIZE (field), 1) + bitpos - 1)
1237               / BITS_PER_WORD)
1238           /* But there is no problem if the field is entire words.  */
1239           && tree_low_cst (DECL_SIZE (field), 1) % BITS_PER_WORD != 0)
1240         return;
1241
1242       /* If this field is the whole struct, remember its mode so
1243          that, say, we can put a double in a class into a DF
1244          register instead of forcing it to live in the stack.  */
1245       if (simple_cst_equal (TYPE_SIZE (type), DECL_SIZE (field)))
1246         mode = DECL_MODE (field);
1247
1248 #ifdef MEMBER_TYPE_FORCES_BLK
1249       /* With some targets, eg. c4x, it is sub-optimal
1250          to access an aligned BLKmode structure as a scalar.  */
1251
1252       if (MEMBER_TYPE_FORCES_BLK (field, mode))
1253         return;
1254 #endif /* MEMBER_TYPE_FORCES_BLK  */
1255     }
1256
1257   /* If we only have one real field; use its mode.  This only applies to
1258      RECORD_TYPE.  This does not apply to unions.  */
1259   if (TREE_CODE (type) == RECORD_TYPE && mode != VOIDmode)
1260     TYPE_MODE (type) = mode;
1261   else
1262     TYPE_MODE (type) = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1263
1264   /* If structure's known alignment is less than what the scalar
1265      mode would need, and it matters, then stick with BLKmode.  */
1266   if (TYPE_MODE (type) != BLKmode
1267       && STRICT_ALIGNMENT
1268       && ! (TYPE_ALIGN (type) >= BIGGEST_ALIGNMENT
1269             || TYPE_ALIGN (type) >= GET_MODE_ALIGNMENT (TYPE_MODE (type))))
1270     {
1271       /* If this is the only reason this type is BLKmode, then
1272          don't force containing types to be BLKmode.  */
1273       TYPE_NO_FORCE_BLK (type) = 1;
1274       TYPE_MODE (type) = BLKmode;
1275     }
1276 }
1277
1278 /* Compute TYPE_SIZE and TYPE_ALIGN for TYPE, once it has been laid
1279    out.  */
1280
1281 static void
1282 finalize_type_size (type)
1283      tree type;
1284 {
1285   /* Normally, use the alignment corresponding to the mode chosen.
1286      However, where strict alignment is not required, avoid
1287      over-aligning structures, since most compilers do not do this
1288      alignment.  */
1289
1290   if (TYPE_MODE (type) != BLKmode && TYPE_MODE (type) != VOIDmode
1291       && (STRICT_ALIGNMENT
1292           || (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE
1293               && TREE_CODE (type) != QUAL_UNION_TYPE
1294               && TREE_CODE (type) != ARRAY_TYPE)))
1295     {
1296       TYPE_ALIGN (type) = GET_MODE_ALIGNMENT (TYPE_MODE (type));
1297       TYPE_USER_ALIGN (type) = 0;
1298     }
1299
1300   /* Do machine-dependent extra alignment.  */
1301 #ifdef ROUND_TYPE_ALIGN
1302   TYPE_ALIGN (type)
1303     = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (type), BITS_PER_UNIT);
1304 #endif
1305
1306   /* If we failed to find a simple way to calculate the unit size
1307      of the type, find it by division.  */
1308   if (TYPE_SIZE_UNIT (type) == 0 && TYPE_SIZE (type) != 0)
1309     /* TYPE_SIZE (type) is computed in bitsizetype.  After the division, the
1310        result will fit in sizetype.  We will get more efficient code using
1311        sizetype, so we force a conversion.  */
1312     TYPE_SIZE_UNIT (type)
1313       = convert (sizetype,
1314                  size_binop (FLOOR_DIV_EXPR, TYPE_SIZE (type),
1315                              bitsize_unit_node));
1316
1317   if (TYPE_SIZE (type) != 0)
1318     {
1319 #ifdef ROUND_TYPE_SIZE
1320       TYPE_SIZE (type)
1321         = ROUND_TYPE_SIZE (type, TYPE_SIZE (type), TYPE_ALIGN (type));
1322       TYPE_SIZE_UNIT (type)
1323         = ROUND_TYPE_SIZE_UNIT (type, TYPE_SIZE_UNIT (type),
1324                                 TYPE_ALIGN (type) / BITS_PER_UNIT);
1325 #else
1326       TYPE_SIZE (type) = round_up (TYPE_SIZE (type), TYPE_ALIGN (type));
1327       TYPE_SIZE_UNIT (type)
1328         = round_up (TYPE_SIZE_UNIT (type), TYPE_ALIGN (type) / BITS_PER_UNIT);
1329 #endif
1330     }
1331
1332   /* Evaluate nonconstant sizes only once, either now or as soon as safe.  */
1333   if (TYPE_SIZE (type) != 0 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
1334     TYPE_SIZE (type) = variable_size (TYPE_SIZE (type));
1335   if (TYPE_SIZE_UNIT (type) != 0
1336       && TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST)
1337     TYPE_SIZE_UNIT (type) = variable_size (TYPE_SIZE_UNIT (type));
1338
1339   /* Also layout any other variants of the type.  */
1340   if (TYPE_NEXT_VARIANT (type)
1341       || type != TYPE_MAIN_VARIANT (type))
1342     {
1343       tree variant;
1344       /* Record layout info of this variant.  */
1345       tree size = TYPE_SIZE (type);
1346       tree size_unit = TYPE_SIZE_UNIT (type);
1347       unsigned int align = TYPE_ALIGN (type);
1348       unsigned int user_align = TYPE_USER_ALIGN (type);
1349       enum machine_mode mode = TYPE_MODE (type);
1350
1351       /* Copy it into all variants.  */
1352       for (variant = TYPE_MAIN_VARIANT (type);
1353            variant != 0;
1354            variant = TYPE_NEXT_VARIANT (variant))
1355         {
1356           TYPE_SIZE (variant) = size;
1357           TYPE_SIZE_UNIT (variant) = size_unit;
1358           TYPE_ALIGN (variant) = align;
1359           TYPE_USER_ALIGN (variant) = user_align;
1360           TYPE_MODE (variant) = mode;
1361         }
1362     }
1363 }
1364
1365 /* Do all of the work required to layout the type indicated by RLI,
1366    once the fields have been laid out.  This function will call `free'
1367    for RLI.  */
1368
1369 void
1370 finish_record_layout (rli)
1371      record_layout_info rli;
1372 {
1373   /* Compute the final size.  */
1374   finalize_record_size (rli);
1375
1376   /* Compute the TYPE_MODE for the record.  */
1377   compute_record_mode (rli->t);
1378
1379   /* Perform any last tweaks to the TYPE_SIZE, etc.  */
1380   finalize_type_size (rli->t);
1381
1382   /* Lay out any static members.  This is done now because their type
1383      may use the record's type.  */
1384   while (rli->pending_statics)
1385     {
1386       layout_decl (TREE_VALUE (rli->pending_statics), 0);
1387       rli->pending_statics = TREE_CHAIN (rli->pending_statics);
1388     }
1389
1390   /* Clean up.  */
1391   free (rli);
1392 }
1393 \f
1394 /* Calculate the mode, size, and alignment for TYPE.
1395    For an array type, calculate the element separation as well.
1396    Record TYPE on the chain of permanent or temporary types
1397    so that dbxout will find out about it.
1398
1399    TYPE_SIZE of a type is nonzero if the type has been laid out already.
1400    layout_type does nothing on such a type.
1401
1402    If the type is incomplete, its TYPE_SIZE remains zero.  */
1403
1404 void
1405 layout_type (type)
1406      tree type;
1407 {
1408   if (type == 0)
1409     abort ();
1410
1411   /* Do nothing if type has been laid out before.  */
1412   if (TYPE_SIZE (type))
1413     return;
1414
1415   switch (TREE_CODE (type))
1416     {
1417     case LANG_TYPE:
1418       /* This kind of type is the responsibility
1419          of the language-specific code.  */
1420       abort ();
1421
1422     case BOOLEAN_TYPE:  /* Used for Java, Pascal, and Chill.  */
1423       if (TYPE_PRECISION (type) == 0)
1424         TYPE_PRECISION (type) = 1; /* default to one byte/boolean.  */
1425
1426       /* ... fall through ...  */
1427
1428     case INTEGER_TYPE:
1429     case ENUMERAL_TYPE:
1430     case CHAR_TYPE:
1431       if (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST
1432           && tree_int_cst_sgn (TYPE_MIN_VALUE (type)) >= 0)
1433         TREE_UNSIGNED (type) = 1;
1434
1435       TYPE_MODE (type) = smallest_mode_for_size (TYPE_PRECISION (type),
1436                                                  MODE_INT);
1437       TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1438       TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1439       break;
1440
1441     case REAL_TYPE:
1442       TYPE_MODE (type) = mode_for_size (TYPE_PRECISION (type), MODE_FLOAT, 0);
1443       TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1444       TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1445       break;
1446
1447     case COMPLEX_TYPE:
1448       TREE_UNSIGNED (type) = TREE_UNSIGNED (TREE_TYPE (type));
1449       TYPE_MODE (type)
1450         = mode_for_size (2 * TYPE_PRECISION (TREE_TYPE (type)),
1451                          (TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE
1452                           ? MODE_COMPLEX_INT : MODE_COMPLEX_FLOAT),
1453                          0);
1454       TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1455       TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1456       break;
1457
1458     case VECTOR_TYPE:
1459       {
1460         tree subtype;
1461
1462         subtype = TREE_TYPE (type);
1463         TREE_UNSIGNED (type) = TREE_UNSIGNED (subtype);
1464         TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1465         TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1466       }
1467       break;
1468
1469     case VOID_TYPE:
1470       /* This is an incomplete type and so doesn't have a size.  */
1471       TYPE_ALIGN (type) = 1;
1472       TYPE_USER_ALIGN (type) = 0;
1473       TYPE_MODE (type) = VOIDmode;
1474       break;
1475
1476     case OFFSET_TYPE:
1477       TYPE_SIZE (type) = bitsize_int (POINTER_SIZE);
1478       TYPE_SIZE_UNIT (type) = size_int (POINTER_SIZE / BITS_PER_UNIT);
1479       /* A pointer might be MODE_PARTIAL_INT,
1480          but ptrdiff_t must be integral.  */
1481       TYPE_MODE (type) = mode_for_size (POINTER_SIZE, MODE_INT, 0);
1482       break;
1483
1484     case FUNCTION_TYPE:
1485     case METHOD_TYPE:
1486       TYPE_MODE (type) = mode_for_size (2 * POINTER_SIZE, MODE_INT, 0);
1487       TYPE_SIZE (type) = bitsize_int (2 * POINTER_SIZE);
1488       TYPE_SIZE_UNIT (type) = size_int ((2 * POINTER_SIZE) / BITS_PER_UNIT);
1489       break;
1490
1491     case POINTER_TYPE:
1492     case REFERENCE_TYPE:
1493       {
1494         int nbits = ((TREE_CODE (type) == REFERENCE_TYPE
1495                       && reference_types_internal)
1496                      ? GET_MODE_BITSIZE (Pmode) : POINTER_SIZE);
1497
1498         TYPE_MODE (type) = nbits == POINTER_SIZE ? ptr_mode : Pmode;
1499         TYPE_SIZE (type) = bitsize_int (nbits);
1500         TYPE_SIZE_UNIT (type) = size_int (nbits / BITS_PER_UNIT);
1501         TREE_UNSIGNED (type) = 1;
1502         TYPE_PRECISION (type) = nbits;
1503       }
1504       break;
1505
1506     case ARRAY_TYPE:
1507       {
1508         tree index = TYPE_DOMAIN (type);
1509         tree element = TREE_TYPE (type);
1510
1511         build_pointer_type (element);
1512
1513         /* We need to know both bounds in order to compute the size.  */
1514         if (index && TYPE_MAX_VALUE (index) && TYPE_MIN_VALUE (index)
1515             && TYPE_SIZE (element))
1516           {
1517             tree ub = TYPE_MAX_VALUE (index);
1518             tree lb = TYPE_MIN_VALUE (index);
1519             tree length;
1520             tree element_size;
1521
1522             /* The initial subtraction should happen in the original type so
1523                that (possible) negative values are handled appropriately.  */
1524             length = size_binop (PLUS_EXPR, size_one_node,
1525                                  convert (sizetype,
1526                                           fold (build (MINUS_EXPR,
1527                                                        TREE_TYPE (lb),
1528                                                        ub, lb))));
1529
1530             /* Special handling for arrays of bits (for Chill).  */
1531             element_size = TYPE_SIZE (element);
1532             if (TYPE_PACKED (type) && INTEGRAL_TYPE_P (element)
1533                 && (integer_zerop (TYPE_MAX_VALUE (element))
1534                     || integer_onep (TYPE_MAX_VALUE (element)))
1535                 && host_integerp (TYPE_MIN_VALUE (element), 1))
1536               {
1537                 HOST_WIDE_INT maxvalue
1538                   = tree_low_cst (TYPE_MAX_VALUE (element), 1);
1539                 HOST_WIDE_INT minvalue
1540                   = tree_low_cst (TYPE_MIN_VALUE (element), 1);
1541
1542                 if (maxvalue - minvalue == 1
1543                     && (maxvalue == 1 || maxvalue == 0))
1544                   element_size = integer_one_node;
1545               }
1546
1547             TYPE_SIZE (type) = size_binop (MULT_EXPR, element_size,
1548                                            convert (bitsizetype, length));
1549
1550             /* If we know the size of the element, calculate the total
1551                size directly, rather than do some division thing below.
1552                This optimization helps Fortran assumed-size arrays
1553                (where the size of the array is determined at runtime)
1554                substantially.
1555                Note that we can't do this in the case where the size of
1556                the elements is one bit since TYPE_SIZE_UNIT cannot be
1557                set correctly in that case.  */
1558             if (TYPE_SIZE_UNIT (element) != 0 && ! integer_onep (element_size))
1559               TYPE_SIZE_UNIT (type)
1560                 = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (element), length);
1561           }
1562
1563         /* Now round the alignment and size,
1564            using machine-dependent criteria if any.  */
1565
1566 #ifdef ROUND_TYPE_ALIGN
1567         TYPE_ALIGN (type)
1568           = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (element), BITS_PER_UNIT);
1569 #else
1570         TYPE_ALIGN (type) = MAX (TYPE_ALIGN (element), BITS_PER_UNIT);
1571 #endif
1572         TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (element);
1573
1574 #ifdef ROUND_TYPE_SIZE
1575         if (TYPE_SIZE (type) != 0)
1576           {
1577             tree tmp
1578               = ROUND_TYPE_SIZE (type, TYPE_SIZE (type), TYPE_ALIGN (type));
1579
1580             /* If the rounding changed the size of the type, remove any
1581                pre-calculated TYPE_SIZE_UNIT.  */
1582             if (simple_cst_equal (TYPE_SIZE (type), tmp) != 1)
1583               TYPE_SIZE_UNIT (type) = NULL;
1584
1585             TYPE_SIZE (type) = tmp;
1586           }
1587 #endif
1588
1589         TYPE_MODE (type) = BLKmode;
1590         if (TYPE_SIZE (type) != 0
1591 #ifdef MEMBER_TYPE_FORCES_BLK
1592             && ! MEMBER_TYPE_FORCES_BLK (type, VOIDmode)
1593 #endif
1594             /* BLKmode elements force BLKmode aggregate;
1595                else extract/store fields may lose.  */
1596             && (TYPE_MODE (TREE_TYPE (type)) != BLKmode
1597                 || TYPE_NO_FORCE_BLK (TREE_TYPE (type))))
1598           {
1599             /* One-element arrays get the component type's mode.  */
1600             if (simple_cst_equal (TYPE_SIZE (type),
1601                                   TYPE_SIZE (TREE_TYPE (type))))
1602               TYPE_MODE (type) = TYPE_MODE (TREE_TYPE (type));
1603             else
1604               TYPE_MODE (type)
1605                 = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1606
1607             if (TYPE_MODE (type) != BLKmode
1608                 && STRICT_ALIGNMENT && TYPE_ALIGN (type) < BIGGEST_ALIGNMENT
1609                 && TYPE_ALIGN (type) < GET_MODE_ALIGNMENT (TYPE_MODE (type))
1610                 && TYPE_MODE (type) != BLKmode)
1611               {
1612                 TYPE_NO_FORCE_BLK (type) = 1;
1613                 TYPE_MODE (type) = BLKmode;
1614               }
1615           }
1616         break;
1617       }
1618
1619     case RECORD_TYPE:
1620     case UNION_TYPE:
1621     case QUAL_UNION_TYPE:
1622       {
1623         tree field;
1624         record_layout_info rli;
1625
1626         /* Initialize the layout information.  */
1627         rli = start_record_layout (type);
1628
1629         /* If this is a QUAL_UNION_TYPE, we want to process the fields
1630            in the reverse order in building the COND_EXPR that denotes
1631            its size.  We reverse them again later.  */
1632         if (TREE_CODE (type) == QUAL_UNION_TYPE)
1633           TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1634
1635         /* Place all the fields.  */
1636         for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1637           place_field (rli, field);
1638
1639         if (TREE_CODE (type) == QUAL_UNION_TYPE)
1640           TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1641
1642         if (lang_adjust_rli)
1643           (*lang_adjust_rli) (rli);
1644
1645         /* Finish laying out the record.  */
1646         finish_record_layout (rli);
1647       }
1648       break;
1649
1650     case SET_TYPE:  /* Used by Chill and Pascal.  */
1651       if (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST
1652           || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST)
1653         abort ();
1654       else
1655         {
1656 #ifndef SET_WORD_SIZE
1657 #define SET_WORD_SIZE BITS_PER_WORD
1658 #endif
1659           unsigned int alignment
1660             = set_alignment ? set_alignment : SET_WORD_SIZE;
1661           int size_in_bits
1662             = (TREE_INT_CST_LOW (TYPE_MAX_VALUE (TYPE_DOMAIN (type)))
1663                - TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) + 1);
1664           int rounded_size
1665             = ((size_in_bits + alignment - 1) / alignment) * alignment;
1666
1667           if (rounded_size > (int) alignment)
1668             TYPE_MODE (type) = BLKmode;
1669           else
1670             TYPE_MODE (type) = mode_for_size (alignment, MODE_INT, 1);
1671
1672           TYPE_SIZE (type) = bitsize_int (rounded_size);
1673           TYPE_SIZE_UNIT (type) = size_int (rounded_size / BITS_PER_UNIT);
1674           TYPE_ALIGN (type) = alignment;
1675           TYPE_USER_ALIGN (type) = 0;
1676           TYPE_PRECISION (type) = size_in_bits;
1677         }
1678       break;
1679
1680     case FILE_TYPE:
1681       /* The size may vary in different languages, so the language front end
1682          should fill in the size.  */
1683       TYPE_ALIGN (type) = BIGGEST_ALIGNMENT;
1684       TYPE_USER_ALIGN (type) = 0;
1685       TYPE_MODE  (type) = BLKmode;
1686       break;
1687
1688     default:
1689       abort ();
1690     }
1691
1692   /* Compute the final TYPE_SIZE, TYPE_ALIGN, etc. for TYPE.  For
1693      records and unions, finish_record_layout already called this
1694      function.  */
1695   if (TREE_CODE (type) != RECORD_TYPE
1696       && TREE_CODE (type) != UNION_TYPE
1697       && TREE_CODE (type) != QUAL_UNION_TYPE)
1698     finalize_type_size (type);
1699
1700   /* If this type is created before sizetype has been permanently set,
1701      record it so set_sizetype can fix it up.  */
1702   if (! sizetype_set)
1703     early_type_list = tree_cons (NULL_TREE, type, early_type_list);
1704
1705   /* If an alias set has been set for this aggregate when it was incomplete,
1706      force it into alias set 0.
1707      This is too conservative, but we cannot call record_component_aliases
1708      here because some frontends still change the aggregates after
1709      layout_type.  */
1710   if (AGGREGATE_TYPE_P (type) && TYPE_ALIAS_SET_KNOWN_P (type))
1711     TYPE_ALIAS_SET (type) = 0;
1712 }
1713 \f
1714 /* Create and return a type for signed integers of PRECISION bits.  */
1715
1716 tree
1717 make_signed_type (precision)
1718      int precision;
1719 {
1720   tree type = make_node (INTEGER_TYPE);
1721
1722   TYPE_PRECISION (type) = precision;
1723
1724   fixup_signed_type (type);
1725   return type;
1726 }
1727
1728 /* Create and return a type for unsigned integers of PRECISION bits.  */
1729
1730 tree
1731 make_unsigned_type (precision)
1732      int precision;
1733 {
1734   tree type = make_node (INTEGER_TYPE);
1735
1736   TYPE_PRECISION (type) = precision;
1737
1738   fixup_unsigned_type (type);
1739   return type;
1740 }
1741 \f
1742 /* Initialize sizetype and bitsizetype to a reasonable and temporary
1743    value to enable integer types to be created.  */
1744
1745 void
1746 initialize_sizetypes ()
1747 {
1748   tree t = make_node (INTEGER_TYPE);
1749
1750   /* Set this so we do something reasonable for the build_int_2 calls
1751      below.  */
1752   integer_type_node = t;
1753
1754   TYPE_MODE (t) = SImode;
1755   TYPE_ALIGN (t) = GET_MODE_ALIGNMENT (SImode);
1756   TYPE_USER_ALIGN (t) = 0;
1757   TYPE_SIZE (t) = build_int_2 (GET_MODE_BITSIZE (SImode), 0);
1758   TYPE_SIZE_UNIT (t) = build_int_2 (GET_MODE_SIZE (SImode), 0);
1759   TREE_UNSIGNED (t) = 1;
1760   TYPE_PRECISION (t) = GET_MODE_BITSIZE (SImode);
1761   TYPE_MIN_VALUE (t) = build_int_2 (0, 0);
1762   TYPE_IS_SIZETYPE (t) = 1;
1763
1764   /* 1000 avoids problems with possible overflow and is certainly
1765      larger than any size value we'd want to be storing.  */
1766   TYPE_MAX_VALUE (t) = build_int_2 (1000, 0);
1767
1768   /* These two must be different nodes because of the caching done in
1769      size_int_wide.  */
1770   sizetype = t;
1771   bitsizetype = copy_node (t);
1772   integer_type_node = 0;
1773 }
1774
1775 /* Set sizetype to TYPE, and initialize *sizetype accordingly.
1776    Also update the type of any standard type's sizes made so far.  */
1777
1778 void
1779 set_sizetype (type)
1780      tree type;
1781 {
1782   int oprecision = TYPE_PRECISION (type);
1783   /* The *bitsizetype types use a precision that avoids overflows when
1784      calculating signed sizes / offsets in bits.  However, when
1785      cross-compiling from a 32 bit to a 64 bit host, we are limited to 64 bit
1786      precision.  */
1787   int precision = MIN (oprecision + BITS_PER_UNIT_LOG + 1,
1788                        2 * HOST_BITS_PER_WIDE_INT);
1789   unsigned int i;
1790   tree t;
1791
1792   if (sizetype_set)
1793     abort ();
1794
1795   /* Make copies of nodes since we'll be setting TYPE_IS_SIZETYPE.  */
1796   sizetype = copy_node (type);
1797   TYPE_DOMAIN (sizetype) = type;
1798   TYPE_IS_SIZETYPE (sizetype) = 1;
1799   bitsizetype = make_node (INTEGER_TYPE);
1800   TYPE_NAME (bitsizetype) = TYPE_NAME (type);
1801   TYPE_PRECISION (bitsizetype) = precision;
1802   TYPE_IS_SIZETYPE (bitsizetype) = 1;
1803
1804   if (TREE_UNSIGNED (type))
1805     fixup_unsigned_type (bitsizetype);
1806   else
1807     fixup_signed_type (bitsizetype);
1808
1809   layout_type (bitsizetype);
1810
1811   if (TREE_UNSIGNED (type))
1812     {
1813       usizetype = sizetype;
1814       ubitsizetype = bitsizetype;
1815       ssizetype = copy_node (make_signed_type (oprecision));
1816       sbitsizetype = copy_node (make_signed_type (precision));
1817     }
1818   else
1819     {
1820       ssizetype = sizetype;
1821       sbitsizetype = bitsizetype;
1822       usizetype = copy_node (make_unsigned_type (oprecision));
1823       ubitsizetype = copy_node (make_unsigned_type (precision));
1824     }
1825
1826   TYPE_NAME (bitsizetype) = get_identifier ("bit_size_type");
1827
1828   /* Show is a sizetype, is a main type, and has no pointers to it.  */
1829   for (i = 0; i < ARRAY_SIZE (sizetype_tab); i++)
1830     {
1831       TYPE_IS_SIZETYPE (sizetype_tab[i]) = 1;
1832       TYPE_MAIN_VARIANT (sizetype_tab[i]) = sizetype_tab[i];
1833       TYPE_NEXT_VARIANT (sizetype_tab[i]) = 0;
1834       TYPE_POINTER_TO (sizetype_tab[i]) = 0;
1835       TYPE_REFERENCE_TO (sizetype_tab[i]) = 0;
1836     }
1837
1838   /* Go down each of the types we already made and set the proper type
1839      for the sizes in them.  */
1840   for (t = early_type_list; t != 0; t = TREE_CHAIN (t))
1841     {
1842       if (TREE_CODE (TREE_VALUE (t)) != INTEGER_TYPE)
1843         abort ();
1844
1845       TREE_TYPE (TYPE_SIZE (TREE_VALUE (t))) = bitsizetype;
1846       TREE_TYPE (TYPE_SIZE_UNIT (TREE_VALUE (t))) = sizetype;
1847     }
1848
1849   early_type_list = 0;
1850   sizetype_set = 1;
1851 }
1852 \f
1853 /* Set the extreme values of TYPE based on its precision in bits,
1854    then lay it out.  Used when make_signed_type won't do
1855    because the tree code is not INTEGER_TYPE.
1856    E.g. for Pascal, when the -fsigned-char option is given.  */
1857
1858 void
1859 fixup_signed_type (type)
1860      tree type;
1861 {
1862   int precision = TYPE_PRECISION (type);
1863
1864   /* We can not represent properly constants greater then
1865      2 * HOST_BITS_PER_WIDE_INT, still we need the types
1866      as they are used by i386 vector extensions and friends.  */
1867   if (precision > HOST_BITS_PER_WIDE_INT * 2)
1868     precision = HOST_BITS_PER_WIDE_INT * 2;
1869
1870   TYPE_MIN_VALUE (type)
1871     = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
1872                     ? 0 : (HOST_WIDE_INT) (-1) << (precision - 1)),
1873                    (((HOST_WIDE_INT) (-1)
1874                      << (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
1875                          ? precision - HOST_BITS_PER_WIDE_INT - 1
1876                          : 0))));
1877   TYPE_MAX_VALUE (type)
1878     = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
1879                     ? -1 : ((HOST_WIDE_INT) 1 << (precision - 1)) - 1),
1880                    (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
1881                     ? (((HOST_WIDE_INT) 1
1882                         << (precision - HOST_BITS_PER_WIDE_INT - 1))) - 1
1883                     : 0));
1884
1885   TREE_TYPE (TYPE_MIN_VALUE (type)) = type;
1886   TREE_TYPE (TYPE_MAX_VALUE (type)) = type;
1887
1888   /* Lay out the type: set its alignment, size, etc.  */
1889   layout_type (type);
1890 }
1891
1892 /* Set the extreme values of TYPE based on its precision in bits,
1893    then lay it out.  This is used both in `make_unsigned_type'
1894    and for enumeral types.  */
1895
1896 void
1897 fixup_unsigned_type (type)
1898      tree type;
1899 {
1900   int precision = TYPE_PRECISION (type);
1901
1902   /* We can not represent properly constants greater then
1903      2 * HOST_BITS_PER_WIDE_INT, still we need the types
1904      as they are used by i386 vector extensions and friends.  */
1905   if (precision > HOST_BITS_PER_WIDE_INT * 2)
1906     precision = HOST_BITS_PER_WIDE_INT * 2;
1907
1908   TYPE_MIN_VALUE (type) = build_int_2 (0, 0);
1909   TYPE_MAX_VALUE (type)
1910     = build_int_2 (precision - HOST_BITS_PER_WIDE_INT >= 0
1911                    ? -1 : ((HOST_WIDE_INT) 1 << precision) - 1,
1912                    precision - HOST_BITS_PER_WIDE_INT > 0
1913                    ? ((unsigned HOST_WIDE_INT) ~0
1914                       >> (HOST_BITS_PER_WIDE_INT
1915                           - (precision - HOST_BITS_PER_WIDE_INT)))
1916                    : 0);
1917   TREE_TYPE (TYPE_MIN_VALUE (type)) = type;
1918   TREE_TYPE (TYPE_MAX_VALUE (type)) = type;
1919
1920   /* Lay out the type: set its alignment, size, etc.  */
1921   layout_type (type);
1922 }
1923 \f
1924 /* Find the best machine mode to use when referencing a bit field of length
1925    BITSIZE bits starting at BITPOS.
1926
1927    The underlying object is known to be aligned to a boundary of ALIGN bits.
1928    If LARGEST_MODE is not VOIDmode, it means that we should not use a mode
1929    larger than LARGEST_MODE (usually SImode).
1930
1931    If no mode meets all these conditions, we return VOIDmode.  Otherwise, if
1932    VOLATILEP is true or SLOW_BYTE_ACCESS is false, we return the smallest
1933    mode meeting these conditions.
1934
1935    Otherwise (VOLATILEP is false and SLOW_BYTE_ACCESS is true), we return
1936    the largest mode (but a mode no wider than UNITS_PER_WORD) that meets
1937    all the conditions.  */
1938
1939 enum machine_mode
1940 get_best_mode (bitsize, bitpos, align, largest_mode, volatilep)
1941      int bitsize, bitpos;
1942      unsigned int align;
1943      enum machine_mode largest_mode;
1944      int volatilep;
1945 {
1946   enum machine_mode mode;
1947   unsigned int unit = 0;
1948
1949   /* Find the narrowest integer mode that contains the bit field.  */
1950   for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
1951        mode = GET_MODE_WIDER_MODE (mode))
1952     {
1953       unit = GET_MODE_BITSIZE (mode);
1954       if ((bitpos % unit) + bitsize <= unit)
1955         break;
1956     }
1957
1958   if (mode == VOIDmode
1959       /* It is tempting to omit the following line
1960          if STRICT_ALIGNMENT is true.
1961          But that is incorrect, since if the bitfield uses part of 3 bytes
1962          and we use a 4-byte mode, we could get a spurious segv
1963          if the extra 4th byte is past the end of memory.
1964          (Though at least one Unix compiler ignores this problem:
1965          that on the Sequent 386 machine.  */
1966       || MIN (unit, BIGGEST_ALIGNMENT) > align
1967       || (largest_mode != VOIDmode && unit > GET_MODE_BITSIZE (largest_mode)))
1968     return VOIDmode;
1969
1970   if (SLOW_BYTE_ACCESS && ! volatilep)
1971     {
1972       enum machine_mode wide_mode = VOIDmode, tmode;
1973
1974       for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT); tmode != VOIDmode;
1975            tmode = GET_MODE_WIDER_MODE (tmode))
1976         {
1977           unit = GET_MODE_BITSIZE (tmode);
1978           if (bitpos / unit == (bitpos + bitsize - 1) / unit
1979               && unit <= BITS_PER_WORD
1980               && unit <= MIN (align, BIGGEST_ALIGNMENT)
1981               && (largest_mode == VOIDmode
1982                   || unit <= GET_MODE_BITSIZE (largest_mode)))
1983             wide_mode = tmode;
1984         }
1985
1986       if (wide_mode != VOIDmode)
1987         return wide_mode;
1988     }
1989
1990   return mode;
1991 }
1992
1993 #include "gt-stor-layout.h"