OSDN Git Service

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