* config/i386/i386.md (*fscalexf4): Correct insn "mode"
[official-gcc.git] / gcc / stor-layout.c
blob33d0a86e90d9c78a326444b6fa329f9a30719f72
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.
5 This file is part of GCC.
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.
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.
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. */
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"
38 /* Set to one when set_sizetype has been called. */
39 static int sizetype_set;
41 /* List of types created before set_sizetype has been called. We do not
42 make this a GGC root since we want these nodes to be reclaimed. */
43 static tree early_type_list;
45 /* Data type for the expressions representing sizes of data types.
46 It is the first integer type laid out. */
47 tree sizetype_tab[(int) TYPE_KIND_LAST];
49 /* If nonzero, this is an upper limit on alignment of structure fields.
50 The value is measured in bits. */
51 unsigned int maximum_field_alignment;
53 /* If nonzero, the alignment of a bitstring or (power-)set value, in bits.
54 May be overridden by front-ends. */
55 unsigned int set_alignment = 0;
57 /* Nonzero if all REFERENCE_TYPEs are internal and hence should be
58 allocated in Pmode, not ptr_mode. Set only by internal_reference_types
59 called only by a front end. */
60 static int reference_types_internal = 0;
62 static void finalize_record_size (record_layout_info);
63 static void finalize_type_size (tree);
64 static void place_union_field (record_layout_info, tree);
65 #if defined (PCC_BITFIELD_TYPE_MATTERS) || defined (BITFIELD_NBYTES_LIMITED)
66 static int excess_unit_span (HOST_WIDE_INT, HOST_WIDE_INT, HOST_WIDE_INT,
67 HOST_WIDE_INT, tree);
68 #endif
69 static void force_type_save_exprs_1 (tree);
70 static unsigned int update_alignment_for_field (record_layout_info, tree,
71 unsigned int);
72 extern void debug_rli (record_layout_info);
74 /* SAVE_EXPRs for sizes of types and decls, waiting to be expanded. */
76 static GTY(()) tree pending_sizes;
78 /* Nonzero means cannot safely call expand_expr now,
79 so put variable sizes onto `pending_sizes' instead. */
81 int immediate_size_expand;
83 /* Show that REFERENCE_TYPES are internal and should be Pmode. Called only
84 by front end. */
86 void
87 internal_reference_types (void)
89 reference_types_internal = 1;
92 /* Get a list of all the objects put on the pending sizes list. */
94 tree
95 get_pending_sizes (void)
97 tree chain = pending_sizes;
98 tree t;
100 /* Put each SAVE_EXPR into the current function. */
101 for (t = chain; t; t = TREE_CHAIN (t))
102 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = current_function_decl;
104 pending_sizes = 0;
105 return chain;
108 /* Add EXPR to the pending sizes list. */
110 void
111 put_pending_size (tree expr)
113 /* Strip any simple arithmetic from EXPR to see if it has an underlying
114 SAVE_EXPR. */
115 expr = skip_simple_arithmetic (expr);
117 if (TREE_CODE (expr) == SAVE_EXPR)
118 pending_sizes = tree_cons (NULL_TREE, expr, pending_sizes);
121 /* Put a chain of objects into the pending sizes list, which must be
122 empty. */
124 void
125 put_pending_sizes (tree chain)
127 if (pending_sizes)
128 abort ();
130 pending_sizes = chain;
133 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR
134 to serve as the actual size-expression for a type or decl. */
136 tree
137 variable_size (tree size)
139 tree save;
141 /* If the language-processor is to take responsibility for variable-sized
142 items (e.g., languages which have elaboration procedures like Ada),
143 just return SIZE unchanged. Likewise for self-referential sizes and
144 constant sizes. */
145 if (TREE_CONSTANT (size)
146 || lang_hooks.decls.global_bindings_p () < 0
147 || CONTAINS_PLACEHOLDER_P (size))
148 return size;
150 size = save_expr (size);
152 /* If an array with a variable number of elements is declared, and
153 the elements require destruction, we will emit a cleanup for the
154 array. That cleanup is run both on normal exit from the block
155 and in the exception-handler for the block. Normally, when code
156 is used in both ordinary code and in an exception handler it is
157 `unsaved', i.e., all SAVE_EXPRs are recalculated. However, we do
158 not wish to do that here; the array-size is the same in both
159 places. */
160 save = skip_simple_arithmetic (size);
161 if (TREE_CODE (save) == SAVE_EXPR)
162 SAVE_EXPR_PERSISTENT_P (save) = 1;
164 if (lang_hooks.decls.global_bindings_p ())
166 if (TREE_CONSTANT (size))
167 error ("type size can't be explicitly evaluated");
168 else
169 error ("variable-size type declared outside of any function");
171 return size_one_node;
174 if (immediate_size_expand)
175 expand_expr (save, const0_rtx, VOIDmode, 0);
176 else if (cfun != 0 && cfun->x_dont_save_pending_sizes_p)
177 /* The front-end doesn't want us to keep a list of the expressions
178 that determine sizes for variable size objects. */
180 else
181 put_pending_size (save);
183 return size;
186 /* Given a type T, force elaboration of any SAVE_EXPRs used in the definition
187 of that type. */
189 void
190 force_type_save_exprs (tree t)
192 tree field;
194 switch (TREE_CODE (t))
196 case ERROR_MARK:
197 return;
199 case ARRAY_TYPE:
200 case SET_TYPE:
201 case VECTOR_TYPE:
202 /* It's probably overly-conservative to force elaboration of bounds and
203 also the sizes, but it's better to be safe than sorry. */
204 force_type_save_exprs_1 (TYPE_MIN_VALUE (TYPE_DOMAIN (t)));
205 force_type_save_exprs_1 (TYPE_MAX_VALUE (TYPE_DOMAIN (t)));
206 break;
208 case RECORD_TYPE:
209 case UNION_TYPE:
210 case QUAL_UNION_TYPE:
211 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
212 if (TREE_CODE (field) == FIELD_DECL)
214 force_type_save_exprs (TREE_TYPE (field));
215 force_type_save_exprs_1 (DECL_FIELD_OFFSET (field));
217 break;
219 default:
220 break;
223 force_type_save_exprs_1 (TYPE_SIZE (t));
224 force_type_save_exprs_1 (TYPE_SIZE_UNIT (t));
227 /* Utility routine of above, to verify that SIZE has been elaborated and
228 do so it it is a SAVE_EXPR and has not been. */
230 static void
231 force_type_save_exprs_1 (tree size)
233 if (size
234 && (size = skip_simple_arithmetic (size))
235 && TREE_CODE (size) == SAVE_EXPR
236 && !SAVE_EXPR_RTL (size))
237 expand_expr (size, NULL_RTX, VOIDmode, 0);
240 #ifndef MAX_FIXED_MODE_SIZE
241 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
242 #endif
244 /* Return the machine mode to use for a nonscalar of SIZE bits. The
245 mode must be in class CLASS, and have exactly that many value bits;
246 it may have padding as well. If LIMIT is nonzero, modes of wider
247 than MAX_FIXED_MODE_SIZE will not be used. */
249 enum machine_mode
250 mode_for_size (unsigned int size, enum mode_class class, int limit)
252 enum machine_mode mode;
254 if (limit && size > MAX_FIXED_MODE_SIZE)
255 return BLKmode;
257 /* Get the first mode which has this size, in the specified class. */
258 for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
259 mode = GET_MODE_WIDER_MODE (mode))
260 if (GET_MODE_PRECISION (mode) == size)
261 return mode;
263 return BLKmode;
266 /* Similar, except passed a tree node. */
268 enum machine_mode
269 mode_for_size_tree (tree size, enum mode_class class, int limit)
271 if (TREE_CODE (size) != INTEGER_CST
272 || TREE_OVERFLOW (size)
273 /* What we really want to say here is that the size can fit in a
274 host integer, but we know there's no way we'd find a mode for
275 this many bits, so there's no point in doing the precise test. */
276 || compare_tree_int (size, 1000) > 0)
277 return BLKmode;
278 else
279 return mode_for_size (tree_low_cst (size, 1), class, limit);
282 /* Similar, but never return BLKmode; return the narrowest mode that
283 contains at least the requested number of value bits. */
285 enum machine_mode
286 smallest_mode_for_size (unsigned int size, enum mode_class class)
288 enum machine_mode mode;
290 /* Get the first mode which has at least this size, in the
291 specified class. */
292 for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
293 mode = GET_MODE_WIDER_MODE (mode))
294 if (GET_MODE_PRECISION (mode) >= size)
295 return mode;
297 abort ();
300 /* Find an integer mode of the exact same size, or BLKmode on failure. */
302 enum machine_mode
303 int_mode_for_mode (enum machine_mode mode)
305 switch (GET_MODE_CLASS (mode))
307 case MODE_INT:
308 case MODE_PARTIAL_INT:
309 break;
311 case MODE_COMPLEX_INT:
312 case MODE_COMPLEX_FLOAT:
313 case MODE_FLOAT:
314 case MODE_VECTOR_INT:
315 case MODE_VECTOR_FLOAT:
316 mode = mode_for_size (GET_MODE_BITSIZE (mode), MODE_INT, 0);
317 break;
319 case MODE_RANDOM:
320 if (mode == BLKmode)
321 break;
323 /* ... fall through ... */
325 case MODE_CC:
326 default:
327 abort ();
330 return mode;
333 /* Return the alignment of MODE. This will be bounded by 1 and
334 BIGGEST_ALIGNMENT. */
336 unsigned int
337 get_mode_alignment (enum machine_mode mode)
339 return MIN (BIGGEST_ALIGNMENT, MAX (1, mode_base_align[mode]*BITS_PER_UNIT));
342 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
343 This can only be applied to objects of a sizetype. */
345 tree
346 round_up (tree value, int divisor)
348 tree arg = size_int_type (divisor, TREE_TYPE (value));
350 return size_binop (MULT_EXPR, size_binop (CEIL_DIV_EXPR, value, arg), arg);
353 /* Likewise, but round down. */
355 tree
356 round_down (tree value, int divisor)
358 tree arg = size_int_type (divisor, TREE_TYPE (value));
360 return size_binop (MULT_EXPR, size_binop (FLOOR_DIV_EXPR, value, arg), arg);
363 /* Subroutine of layout_decl: Force alignment required for the data type.
364 But if the decl itself wants greater alignment, don't override that. */
366 static inline void
367 do_type_align (tree type, tree decl)
369 if (TYPE_ALIGN (type) > DECL_ALIGN (decl))
371 DECL_ALIGN (decl) = TYPE_ALIGN (type);
372 if (TREE_CODE (decl) == FIELD_DECL)
373 DECL_USER_ALIGN (decl) = TYPE_USER_ALIGN (type);
377 /* Set the size, mode and alignment of a ..._DECL node.
378 TYPE_DECL does need this for C++.
379 Note that LABEL_DECL and CONST_DECL nodes do not need this,
380 and FUNCTION_DECL nodes have them set up in a special (and simple) way.
381 Don't call layout_decl for them.
383 KNOWN_ALIGN is the amount of alignment we can assume this
384 decl has with no special effort. It is relevant only for FIELD_DECLs
385 and depends on the previous fields.
386 All that matters about KNOWN_ALIGN is which powers of 2 divide it.
387 If KNOWN_ALIGN is 0, it means, "as much alignment as you like":
388 the record will be aligned to suit. */
390 void
391 layout_decl (tree decl, unsigned int known_align)
393 tree type = TREE_TYPE (decl);
394 enum tree_code code = TREE_CODE (decl);
395 rtx rtl = NULL_RTX;
397 if (code == CONST_DECL)
398 return;
399 else if (code != VAR_DECL && code != PARM_DECL && code != RESULT_DECL
400 && code != TYPE_DECL && code != FIELD_DECL)
401 abort ();
403 rtl = DECL_RTL_IF_SET (decl);
405 if (type == error_mark_node)
406 type = void_type_node;
408 /* Usually the size and mode come from the data type without change,
409 however, the front-end may set the explicit width of the field, so its
410 size may not be the same as the size of its type. This happens with
411 bitfields, of course (an `int' bitfield may be only 2 bits, say), but it
412 also happens with other fields. For example, the C++ front-end creates
413 zero-sized fields corresponding to empty base classes, and depends on
414 layout_type setting DECL_FIELD_BITPOS correctly for the field. Set the
415 size in bytes from the size in bits. If we have already set the mode,
416 don't set it again since we can be called twice for FIELD_DECLs. */
418 DECL_UNSIGNED (decl) = TYPE_UNSIGNED (type);
419 if (DECL_MODE (decl) == VOIDmode)
420 DECL_MODE (decl) = TYPE_MODE (type);
422 if (DECL_SIZE (decl) == 0)
424 DECL_SIZE (decl) = TYPE_SIZE (type);
425 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
427 else if (DECL_SIZE_UNIT (decl) == 0)
428 DECL_SIZE_UNIT (decl)
429 = convert (sizetype, size_binop (CEIL_DIV_EXPR, DECL_SIZE (decl),
430 bitsize_unit_node));
432 if (code != FIELD_DECL)
433 /* For non-fields, update the alignment from the type. */
434 do_type_align (type, decl);
435 else
436 /* For fields, it's a bit more complicated... */
438 bool old_user_align = DECL_USER_ALIGN (decl);
440 if (DECL_BIT_FIELD (decl))
442 DECL_BIT_FIELD_TYPE (decl) = type;
444 /* A zero-length bit-field affects the alignment of the next
445 field. */
446 if (integer_zerop (DECL_SIZE (decl))
447 && ! DECL_PACKED (decl)
448 && ! targetm.ms_bitfield_layout_p (DECL_FIELD_CONTEXT (decl)))
450 #ifdef PCC_BITFIELD_TYPE_MATTERS
451 if (PCC_BITFIELD_TYPE_MATTERS)
452 do_type_align (type, decl);
453 else
454 #endif
456 #ifdef EMPTY_FIELD_BOUNDARY
457 if (EMPTY_FIELD_BOUNDARY > DECL_ALIGN (decl))
459 DECL_ALIGN (decl) = EMPTY_FIELD_BOUNDARY;
460 DECL_USER_ALIGN (decl) = 0;
462 #endif
466 /* See if we can use an ordinary integer mode for a bit-field.
467 Conditions are: a fixed size that is correct for another mode
468 and occupying a complete byte or bytes on proper boundary. */
469 if (TYPE_SIZE (type) != 0
470 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
471 && GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT)
473 enum machine_mode xmode
474 = mode_for_size_tree (DECL_SIZE (decl), MODE_INT, 1);
476 if (xmode != BLKmode
477 && (known_align == 0
478 || known_align >= GET_MODE_ALIGNMENT (xmode)))
480 DECL_ALIGN (decl) = MAX (GET_MODE_ALIGNMENT (xmode),
481 DECL_ALIGN (decl));
482 DECL_MODE (decl) = xmode;
483 DECL_BIT_FIELD (decl) = 0;
487 /* Turn off DECL_BIT_FIELD if we won't need it set. */
488 if (TYPE_MODE (type) == BLKmode && DECL_MODE (decl) == BLKmode
489 && known_align >= TYPE_ALIGN (type)
490 && DECL_ALIGN (decl) >= TYPE_ALIGN (type))
491 DECL_BIT_FIELD (decl) = 0;
493 else if (DECL_PACKED (decl) && DECL_USER_ALIGN (decl))
494 /* Don't touch DECL_ALIGN. For other packed fields, go ahead and
495 round up; we'll reduce it again below. We want packing to
496 supersede USER_ALIGN inherited from the type, but defer to
497 alignment explicitly specified on the field decl. */;
498 else
499 do_type_align (type, decl);
501 /* If the field is of variable size, we can't misalign it since we
502 have no way to make a temporary to align the result. But this
503 isn't an issue if the decl is not addressable. Likewise if it
504 is of unknown size.
506 Note that do_type_align may set DECL_USER_ALIGN, so we need to
507 check old_user_align instead. */
508 if (DECL_PACKED (decl)
509 && !old_user_align
510 && (DECL_NONADDRESSABLE_P (decl)
511 || DECL_SIZE_UNIT (decl) == 0
512 || TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST))
513 DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), BITS_PER_UNIT);
515 if (! DECL_USER_ALIGN (decl) && ! DECL_PACKED (decl))
517 /* Some targets (i.e. i386, VMS) limit struct field alignment
518 to a lower boundary than alignment of variables unless
519 it was overridden by attribute aligned. */
520 #ifdef BIGGEST_FIELD_ALIGNMENT
521 DECL_ALIGN (decl)
522 = MIN (DECL_ALIGN (decl), (unsigned) BIGGEST_FIELD_ALIGNMENT);
523 #endif
524 #ifdef ADJUST_FIELD_ALIGN
525 DECL_ALIGN (decl) = ADJUST_FIELD_ALIGN (decl, DECL_ALIGN (decl));
526 #endif
529 /* Should this be controlled by DECL_USER_ALIGN, too? */
530 if (maximum_field_alignment != 0)
531 DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), maximum_field_alignment);
534 /* Evaluate nonconstant size only once, either now or as soon as safe. */
535 if (DECL_SIZE (decl) != 0 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
536 DECL_SIZE (decl) = variable_size (DECL_SIZE (decl));
537 if (DECL_SIZE_UNIT (decl) != 0
538 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST)
539 DECL_SIZE_UNIT (decl) = variable_size (DECL_SIZE_UNIT (decl));
541 /* If requested, warn about definitions of large data objects. */
542 if (warn_larger_than
543 && (code == VAR_DECL || code == PARM_DECL)
544 && ! DECL_EXTERNAL (decl))
546 tree size = DECL_SIZE_UNIT (decl);
548 if (size != 0 && TREE_CODE (size) == INTEGER_CST
549 && compare_tree_int (size, larger_than_size) > 0)
551 int size_as_int = TREE_INT_CST_LOW (size);
553 if (compare_tree_int (size, size_as_int) == 0)
554 warning ("%Jsize of '%D' is %d bytes", decl, decl, size_as_int);
555 else
556 warning ("%Jsize of '%D' is larger than %d bytes",
557 decl, decl, larger_than_size);
561 /* If the RTL was already set, update its mode and mem attributes. */
562 if (rtl)
564 PUT_MODE (rtl, DECL_MODE (decl));
565 SET_DECL_RTL (decl, 0);
566 set_mem_attributes (rtl, decl, 1);
567 SET_DECL_RTL (decl, rtl);
571 /* Hook for a front-end function that can modify the record layout as needed
572 immediately before it is finalized. */
574 void (*lang_adjust_rli) (record_layout_info) = 0;
576 void
577 set_lang_adjust_rli (void (*f) (record_layout_info))
579 lang_adjust_rli = f;
582 /* Begin laying out type T, which may be a RECORD_TYPE, UNION_TYPE, or
583 QUAL_UNION_TYPE. Return a pointer to a struct record_layout_info which
584 is to be passed to all other layout functions for this record. It is the
585 responsibility of the caller to call `free' for the storage returned.
586 Note that garbage collection is not permitted until we finish laying
587 out the record. */
589 record_layout_info
590 start_record_layout (tree t)
592 record_layout_info rli = xmalloc (sizeof (struct record_layout_info_s));
594 rli->t = t;
596 /* If the type has a minimum specified alignment (via an attribute
597 declaration, for example) use it -- otherwise, start with a
598 one-byte alignment. */
599 rli->record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (t));
600 rli->unpacked_align = rli->record_align;
601 rli->offset_align = MAX (rli->record_align, BIGGEST_ALIGNMENT);
603 #ifdef STRUCTURE_SIZE_BOUNDARY
604 /* Packed structures don't need to have minimum size. */
605 if (! TYPE_PACKED (t))
606 rli->record_align = MAX (rli->record_align, (unsigned) STRUCTURE_SIZE_BOUNDARY);
607 #endif
609 rli->offset = size_zero_node;
610 rli->bitpos = bitsize_zero_node;
611 rli->prev_field = 0;
612 rli->pending_statics = 0;
613 rli->packed_maybe_necessary = 0;
615 return rli;
618 /* These four routines perform computations that convert between
619 the offset/bitpos forms and byte and bit offsets. */
621 tree
622 bit_from_pos (tree offset, tree bitpos)
624 return size_binop (PLUS_EXPR, bitpos,
625 size_binop (MULT_EXPR, convert (bitsizetype, offset),
626 bitsize_unit_node));
629 tree
630 byte_from_pos (tree offset, tree bitpos)
632 return size_binop (PLUS_EXPR, offset,
633 convert (sizetype,
634 size_binop (TRUNC_DIV_EXPR, bitpos,
635 bitsize_unit_node)));
638 void
639 pos_from_bit (tree *poffset, tree *pbitpos, unsigned int off_align,
640 tree pos)
642 *poffset = size_binop (MULT_EXPR,
643 convert (sizetype,
644 size_binop (FLOOR_DIV_EXPR, pos,
645 bitsize_int (off_align))),
646 size_int (off_align / BITS_PER_UNIT));
647 *pbitpos = size_binop (FLOOR_MOD_EXPR, pos, bitsize_int (off_align));
650 /* Given a pointer to bit and byte offsets and an offset alignment,
651 normalize the offsets so they are within the alignment. */
653 void
654 normalize_offset (tree *poffset, tree *pbitpos, unsigned int off_align)
656 /* If the bit position is now larger than it should be, adjust it
657 downwards. */
658 if (compare_tree_int (*pbitpos, off_align) >= 0)
660 tree extra_aligns = size_binop (FLOOR_DIV_EXPR, *pbitpos,
661 bitsize_int (off_align));
663 *poffset
664 = size_binop (PLUS_EXPR, *poffset,
665 size_binop (MULT_EXPR, convert (sizetype, extra_aligns),
666 size_int (off_align / BITS_PER_UNIT)));
668 *pbitpos
669 = size_binop (FLOOR_MOD_EXPR, *pbitpos, bitsize_int (off_align));
673 /* Print debugging information about the information in RLI. */
675 void
676 debug_rli (record_layout_info rli)
678 print_node_brief (stderr, "type", rli->t, 0);
679 print_node_brief (stderr, "\noffset", rli->offset, 0);
680 print_node_brief (stderr, " bitpos", rli->bitpos, 0);
682 fprintf (stderr, "\naligns: rec = %u, unpack = %u, off = %u\n",
683 rli->record_align, rli->unpacked_align,
684 rli->offset_align);
685 if (rli->packed_maybe_necessary)
686 fprintf (stderr, "packed may be necessary\n");
688 if (rli->pending_statics)
690 fprintf (stderr, "pending statics:\n");
691 debug_tree (rli->pending_statics);
695 /* Given an RLI with a possibly-incremented BITPOS, adjust OFFSET and
696 BITPOS if necessary to keep BITPOS below OFFSET_ALIGN. */
698 void
699 normalize_rli (record_layout_info rli)
701 normalize_offset (&rli->offset, &rli->bitpos, rli->offset_align);
704 /* Returns the size in bytes allocated so far. */
706 tree
707 rli_size_unit_so_far (record_layout_info rli)
709 return byte_from_pos (rli->offset, rli->bitpos);
712 /* Returns the size in bits allocated so far. */
714 tree
715 rli_size_so_far (record_layout_info rli)
717 return bit_from_pos (rli->offset, rli->bitpos);
720 /* FIELD is about to be added to RLI->T. The alignment (in bits) of
721 the next available location is given by KNOWN_ALIGN. Update the
722 variable alignment fields in RLI, and return the alignment to give
723 the FIELD. */
725 static unsigned int
726 update_alignment_for_field (record_layout_info rli, tree field,
727 unsigned int known_align)
729 /* The alignment required for FIELD. */
730 unsigned int desired_align;
731 /* The type of this field. */
732 tree type = TREE_TYPE (field);
733 /* True if the field was explicitly aligned by the user. */
734 bool user_align;
735 bool is_bitfield;
737 /* Lay out the field so we know what alignment it needs. */
738 layout_decl (field, known_align);
739 desired_align = DECL_ALIGN (field);
740 user_align = DECL_USER_ALIGN (field);
742 is_bitfield = (type != error_mark_node
743 && DECL_BIT_FIELD_TYPE (field)
744 && ! integer_zerop (TYPE_SIZE (type)));
746 /* Record must have at least as much alignment as any field.
747 Otherwise, the alignment of the field within the record is
748 meaningless. */
749 if (is_bitfield && targetm.ms_bitfield_layout_p (rli->t))
751 /* Here, the alignment of the underlying type of a bitfield can
752 affect the alignment of a record; even a zero-sized field
753 can do this. The alignment should be to the alignment of
754 the type, except that for zero-size bitfields this only
755 applies if there was an immediately prior, nonzero-size
756 bitfield. (That's the way it is, experimentally.) */
757 if (! integer_zerop (DECL_SIZE (field))
758 ? ! DECL_PACKED (field)
759 : (rli->prev_field
760 && DECL_BIT_FIELD_TYPE (rli->prev_field)
761 && ! integer_zerop (DECL_SIZE (rli->prev_field))))
763 unsigned int type_align = TYPE_ALIGN (type);
764 type_align = MAX (type_align, desired_align);
765 if (maximum_field_alignment != 0)
766 type_align = MIN (type_align, maximum_field_alignment);
767 rli->record_align = MAX (rli->record_align, type_align);
768 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
771 #ifdef PCC_BITFIELD_TYPE_MATTERS
772 else if (is_bitfield && PCC_BITFIELD_TYPE_MATTERS)
774 /* Named bit-fields cause the entire structure to have the
775 alignment implied by their type. */
776 if (DECL_NAME (field) != 0)
778 unsigned int type_align = TYPE_ALIGN (type);
780 #ifdef ADJUST_FIELD_ALIGN
781 if (! TYPE_USER_ALIGN (type))
782 type_align = ADJUST_FIELD_ALIGN (field, type_align);
783 #endif
785 if (maximum_field_alignment != 0)
786 type_align = MIN (type_align, maximum_field_alignment);
787 else if (DECL_PACKED (field))
788 type_align = MIN (type_align, BITS_PER_UNIT);
790 /* The alignment of the record is increased to the maximum
791 of the current alignment, the alignment indicated on the
792 field (i.e., the alignment specified by an __aligned__
793 attribute), and the alignment indicated by the type of
794 the field. */
795 rli->record_align = MAX (rli->record_align, desired_align);
796 rli->record_align = MAX (rli->record_align, type_align);
798 if (warn_packed)
799 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
800 user_align |= TYPE_USER_ALIGN (type);
803 #endif
804 else
806 rli->record_align = MAX (rli->record_align, desired_align);
807 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
810 TYPE_USER_ALIGN (rli->t) |= user_align;
812 return desired_align;
815 /* Called from place_field to handle unions. */
817 static void
818 place_union_field (record_layout_info rli, tree field)
820 update_alignment_for_field (rli, field, /*known_align=*/0);
822 DECL_FIELD_OFFSET (field) = size_zero_node;
823 DECL_FIELD_BIT_OFFSET (field) = bitsize_zero_node;
824 SET_DECL_OFFSET_ALIGN (field, BIGGEST_ALIGNMENT);
826 /* We assume the union's size will be a multiple of a byte so we don't
827 bother with BITPOS. */
828 if (TREE_CODE (rli->t) == UNION_TYPE)
829 rli->offset = size_binop (MAX_EXPR, rli->offset, DECL_SIZE_UNIT (field));
830 else if (TREE_CODE (rli->t) == QUAL_UNION_TYPE)
831 rli->offset = fold (build (COND_EXPR, sizetype,
832 DECL_QUALIFIER (field),
833 DECL_SIZE_UNIT (field), rli->offset));
836 #if defined (PCC_BITFIELD_TYPE_MATTERS) || defined (BITFIELD_NBYTES_LIMITED)
837 /* A bitfield of SIZE with a required access alignment of ALIGN is allocated
838 at BYTE_OFFSET / BIT_OFFSET. Return nonzero if the field would span more
839 units of alignment than the underlying TYPE. */
840 static int
841 excess_unit_span (HOST_WIDE_INT byte_offset, HOST_WIDE_INT bit_offset,
842 HOST_WIDE_INT size, HOST_WIDE_INT align, tree type)
844 /* Note that the calculation of OFFSET might overflow; we calculate it so
845 that we still get the right result as long as ALIGN is a power of two. */
846 unsigned HOST_WIDE_INT offset = byte_offset * BITS_PER_UNIT + bit_offset;
848 offset = offset % align;
849 return ((offset + size + align - 1) / align
850 > ((unsigned HOST_WIDE_INT) tree_low_cst (TYPE_SIZE (type), 1)
851 / align));
853 #endif
855 /* RLI contains information about the layout of a RECORD_TYPE. FIELD
856 is a FIELD_DECL to be added after those fields already present in
857 T. (FIELD is not actually added to the TYPE_FIELDS list here;
858 callers that desire that behavior must manually perform that step.) */
860 void
861 place_field (record_layout_info rli, tree field)
863 /* The alignment required for FIELD. */
864 unsigned int desired_align;
865 /* The alignment FIELD would have if we just dropped it into the
866 record as it presently stands. */
867 unsigned int known_align;
868 unsigned int actual_align;
869 /* The type of this field. */
870 tree type = TREE_TYPE (field);
872 if (TREE_CODE (field) == ERROR_MARK || TREE_CODE (type) == ERROR_MARK)
873 return;
875 /* If FIELD is static, then treat it like a separate variable, not
876 really like a structure field. If it is a FUNCTION_DECL, it's a
877 method. In both cases, all we do is lay out the decl, and we do
878 it *after* the record is laid out. */
879 if (TREE_CODE (field) == VAR_DECL)
881 rli->pending_statics = tree_cons (NULL_TREE, field,
882 rli->pending_statics);
883 return;
886 /* Enumerators and enum types which are local to this class need not
887 be laid out. Likewise for initialized constant fields. */
888 else if (TREE_CODE (field) != FIELD_DECL)
889 return;
891 /* Unions are laid out very differently than records, so split
892 that code off to another function. */
893 else if (TREE_CODE (rli->t) != RECORD_TYPE)
895 place_union_field (rli, field);
896 return;
899 /* Work out the known alignment so far. Note that A & (-A) is the
900 value of the least-significant bit in A that is one. */
901 if (! integer_zerop (rli->bitpos))
902 known_align = (tree_low_cst (rli->bitpos, 1)
903 & - tree_low_cst (rli->bitpos, 1));
904 else if (integer_zerop (rli->offset))
905 known_align = BIGGEST_ALIGNMENT;
906 else if (host_integerp (rli->offset, 1))
907 known_align = (BITS_PER_UNIT
908 * (tree_low_cst (rli->offset, 1)
909 & - tree_low_cst (rli->offset, 1)));
910 else
911 known_align = rli->offset_align;
913 desired_align = update_alignment_for_field (rli, field, known_align);
915 if (warn_packed && DECL_PACKED (field))
917 if (known_align >= TYPE_ALIGN (type))
919 if (TYPE_ALIGN (type) > desired_align)
921 if (STRICT_ALIGNMENT)
922 warning ("%Jpacked attribute causes inefficient alignment "
923 "for '%D'", field, field);
924 else
925 warning ("%Jpacked attribute is unnecessary for '%D'",
926 field, field);
929 else
930 rli->packed_maybe_necessary = 1;
933 /* Does this field automatically have alignment it needs by virtue
934 of the fields that precede it and the record's own alignment? */
935 if (known_align < desired_align)
937 /* No, we need to skip space before this field.
938 Bump the cumulative size to multiple of field alignment. */
940 if (warn_padded)
941 warning ("%Jpadding struct to align '%D'", field, field);
943 /* If the alignment is still within offset_align, just align
944 the bit position. */
945 if (desired_align < rli->offset_align)
946 rli->bitpos = round_up (rli->bitpos, desired_align);
947 else
949 /* First adjust OFFSET by the partial bits, then align. */
950 rli->offset
951 = size_binop (PLUS_EXPR, rli->offset,
952 convert (sizetype,
953 size_binop (CEIL_DIV_EXPR, rli->bitpos,
954 bitsize_unit_node)));
955 rli->bitpos = bitsize_zero_node;
957 rli->offset = round_up (rli->offset, desired_align / BITS_PER_UNIT);
960 if (! TREE_CONSTANT (rli->offset))
961 rli->offset_align = desired_align;
965 /* Handle compatibility with PCC. Note that if the record has any
966 variable-sized fields, we need not worry about compatibility. */
967 #ifdef PCC_BITFIELD_TYPE_MATTERS
968 if (PCC_BITFIELD_TYPE_MATTERS
969 && ! targetm.ms_bitfield_layout_p (rli->t)
970 && TREE_CODE (field) == FIELD_DECL
971 && type != error_mark_node
972 && DECL_BIT_FIELD (field)
973 && ! DECL_PACKED (field)
974 && maximum_field_alignment == 0
975 && ! integer_zerop (DECL_SIZE (field))
976 && host_integerp (DECL_SIZE (field), 1)
977 && host_integerp (rli->offset, 1)
978 && host_integerp (TYPE_SIZE (type), 1))
980 unsigned int type_align = TYPE_ALIGN (type);
981 tree dsize = DECL_SIZE (field);
982 HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
983 HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
984 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
986 #ifdef ADJUST_FIELD_ALIGN
987 if (! TYPE_USER_ALIGN (type))
988 type_align = ADJUST_FIELD_ALIGN (field, type_align);
989 #endif
991 /* A bit field may not span more units of alignment of its type
992 than its type itself. Advance to next boundary if necessary. */
993 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
994 rli->bitpos = round_up (rli->bitpos, type_align);
996 TYPE_USER_ALIGN (rli->t) |= TYPE_USER_ALIGN (type);
998 #endif
1000 #ifdef BITFIELD_NBYTES_LIMITED
1001 if (BITFIELD_NBYTES_LIMITED
1002 && ! targetm.ms_bitfield_layout_p (rli->t)
1003 && TREE_CODE (field) == FIELD_DECL
1004 && type != error_mark_node
1005 && DECL_BIT_FIELD_TYPE (field)
1006 && ! DECL_PACKED (field)
1007 && ! integer_zerop (DECL_SIZE (field))
1008 && host_integerp (DECL_SIZE (field), 1)
1009 && host_integerp (rli->offset, 1)
1010 && host_integerp (TYPE_SIZE (type), 1))
1012 unsigned int type_align = TYPE_ALIGN (type);
1013 tree dsize = DECL_SIZE (field);
1014 HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
1015 HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
1016 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
1018 #ifdef ADJUST_FIELD_ALIGN
1019 if (! TYPE_USER_ALIGN (type))
1020 type_align = ADJUST_FIELD_ALIGN (field, type_align);
1021 #endif
1023 if (maximum_field_alignment != 0)
1024 type_align = MIN (type_align, maximum_field_alignment);
1025 /* ??? This test is opposite the test in the containing if
1026 statement, so this code is unreachable currently. */
1027 else if (DECL_PACKED (field))
1028 type_align = MIN (type_align, BITS_PER_UNIT);
1030 /* A bit field may not span the unit of alignment of its type.
1031 Advance to next boundary if necessary. */
1032 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
1033 rli->bitpos = round_up (rli->bitpos, type_align);
1035 TYPE_USER_ALIGN (rli->t) |= TYPE_USER_ALIGN (type);
1037 #endif
1039 /* See the docs for TARGET_MS_BITFIELD_LAYOUT_P for details.
1040 A subtlety:
1041 When a bit field is inserted into a packed record, the whole
1042 size of the underlying type is used by one or more same-size
1043 adjacent bitfields. (That is, if its long:3, 32 bits is
1044 used in the record, and any additional adjacent long bitfields are
1045 packed into the same chunk of 32 bits. However, if the size
1046 changes, a new field of that size is allocated.) In an unpacked
1047 record, this is the same as using alignment, but not equivalent
1048 when packing.
1050 Note: for compatibility, we use the type size, not the type alignment
1051 to determine alignment, since that matches the documentation */
1053 if (targetm.ms_bitfield_layout_p (rli->t)
1054 && ((DECL_BIT_FIELD_TYPE (field) && ! DECL_PACKED (field))
1055 || (rli->prev_field && ! DECL_PACKED (rli->prev_field))))
1057 /* At this point, either the prior or current are bitfields,
1058 (possibly both), and we're dealing with MS packing. */
1059 tree prev_saved = rli->prev_field;
1061 /* Is the prior field a bitfield? If so, handle "runs" of same
1062 type size fields. */
1063 if (rli->prev_field /* necessarily a bitfield if it exists. */)
1065 /* If both are bitfields, nonzero, and the same size, this is
1066 the middle of a run. Zero declared size fields are special
1067 and handled as "end of run". (Note: it's nonzero declared
1068 size, but equal type sizes!) (Since we know that both
1069 the current and previous fields are bitfields by the
1070 time we check it, DECL_SIZE must be present for both.) */
1071 if (DECL_BIT_FIELD_TYPE (field)
1072 && !integer_zerop (DECL_SIZE (field))
1073 && !integer_zerop (DECL_SIZE (rli->prev_field))
1074 && host_integerp (DECL_SIZE (rli->prev_field), 0)
1075 && host_integerp (TYPE_SIZE (type), 0)
1076 && simple_cst_equal (TYPE_SIZE (type),
1077 TYPE_SIZE (TREE_TYPE (rli->prev_field))))
1079 /* We're in the middle of a run of equal type size fields; make
1080 sure we realign if we run out of bits. (Not decl size,
1081 type size!) */
1082 HOST_WIDE_INT bitsize = tree_low_cst (DECL_SIZE (field), 0);
1084 if (rli->remaining_in_alignment < bitsize)
1086 /* out of bits; bump up to next 'word'. */
1087 rli->offset = DECL_FIELD_OFFSET (rli->prev_field);
1088 rli->bitpos
1089 = size_binop (PLUS_EXPR, TYPE_SIZE (type),
1090 DECL_FIELD_BIT_OFFSET (rli->prev_field));
1091 rli->prev_field = field;
1092 rli->remaining_in_alignment
1093 = tree_low_cst (TYPE_SIZE (type), 0);
1096 rli->remaining_in_alignment -= bitsize;
1098 else
1100 /* End of a run: if leaving a run of bitfields of the same type
1101 size, we have to "use up" the rest of the bits of the type
1102 size.
1104 Compute the new position as the sum of the size for the prior
1105 type and where we first started working on that type.
1106 Note: since the beginning of the field was aligned then
1107 of course the end will be too. No round needed. */
1109 if (!integer_zerop (DECL_SIZE (rli->prev_field)))
1111 tree type_size = TYPE_SIZE (TREE_TYPE (rli->prev_field));
1113 rli->bitpos
1114 = size_binop (PLUS_EXPR, type_size,
1115 DECL_FIELD_BIT_OFFSET (rli->prev_field));
1117 else
1118 /* We "use up" size zero fields; the code below should behave
1119 as if the prior field was not a bitfield. */
1120 prev_saved = NULL;
1122 /* Cause a new bitfield to be captured, either this time (if
1123 currently a bitfield) or next time we see one. */
1124 if (!DECL_BIT_FIELD_TYPE(field)
1125 || integer_zerop (DECL_SIZE (field)))
1126 rli->prev_field = NULL;
1129 rli->offset_align = tree_low_cst (TYPE_SIZE (type), 0);
1130 normalize_rli (rli);
1133 /* If we're starting a new run of same size type bitfields
1134 (or a run of non-bitfields), set up the "first of the run"
1135 fields.
1137 That is, if the current field is not a bitfield, or if there
1138 was a prior bitfield the type sizes differ, or if there wasn't
1139 a prior bitfield the size of the current field is nonzero.
1141 Note: we must be sure to test ONLY the type size if there was
1142 a prior bitfield and ONLY for the current field being zero if
1143 there wasn't. */
1145 if (!DECL_BIT_FIELD_TYPE (field)
1146 || ( prev_saved != NULL
1147 ? !simple_cst_equal (TYPE_SIZE (type),
1148 TYPE_SIZE (TREE_TYPE (prev_saved)))
1149 : !integer_zerop (DECL_SIZE (field)) ))
1151 /* Never smaller than a byte for compatibility. */
1152 unsigned int type_align = BITS_PER_UNIT;
1154 /* (When not a bitfield), we could be seeing a flex array (with
1155 no DECL_SIZE). Since we won't be using remaining_in_alignment
1156 until we see a bitfield (and come by here again) we just skip
1157 calculating it. */
1158 if (DECL_SIZE (field) != NULL
1159 && host_integerp (TYPE_SIZE (TREE_TYPE (field)), 0)
1160 && host_integerp (DECL_SIZE (field), 0))
1161 rli->remaining_in_alignment
1162 = tree_low_cst (TYPE_SIZE (TREE_TYPE(field)), 0)
1163 - tree_low_cst (DECL_SIZE (field), 0);
1165 /* Now align (conventionally) for the new type. */
1166 if (!DECL_PACKED(field))
1167 type_align = MAX(TYPE_ALIGN (type), type_align);
1169 if (prev_saved
1170 && DECL_BIT_FIELD_TYPE (prev_saved)
1171 /* If the previous bit-field is zero-sized, we've already
1172 accounted for its alignment needs (or ignored it, if
1173 appropriate) while placing it. */
1174 && ! integer_zerop (DECL_SIZE (prev_saved)))
1175 type_align = MAX (type_align,
1176 TYPE_ALIGN (TREE_TYPE (prev_saved)));
1178 if (maximum_field_alignment != 0)
1179 type_align = MIN (type_align, maximum_field_alignment);
1181 rli->bitpos = round_up (rli->bitpos, type_align);
1183 /* If we really aligned, don't allow subsequent bitfields
1184 to undo that. */
1185 rli->prev_field = NULL;
1189 /* Offset so far becomes the position of this field after normalizing. */
1190 normalize_rli (rli);
1191 DECL_FIELD_OFFSET (field) = rli->offset;
1192 DECL_FIELD_BIT_OFFSET (field) = rli->bitpos;
1193 SET_DECL_OFFSET_ALIGN (field, rli->offset_align);
1195 /* If this field ended up more aligned than we thought it would be (we
1196 approximate this by seeing if its position changed), lay out the field
1197 again; perhaps we can use an integral mode for it now. */
1198 if (! integer_zerop (DECL_FIELD_BIT_OFFSET (field)))
1199 actual_align = (tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
1200 & - tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1));
1201 else if (integer_zerop (DECL_FIELD_OFFSET (field)))
1202 actual_align = BIGGEST_ALIGNMENT;
1203 else if (host_integerp (DECL_FIELD_OFFSET (field), 1))
1204 actual_align = (BITS_PER_UNIT
1205 * (tree_low_cst (DECL_FIELD_OFFSET (field), 1)
1206 & - tree_low_cst (DECL_FIELD_OFFSET (field), 1)));
1207 else
1208 actual_align = DECL_OFFSET_ALIGN (field);
1210 if (known_align != actual_align)
1211 layout_decl (field, actual_align);
1213 /* Only the MS bitfields use this. */
1214 if (rli->prev_field == NULL && DECL_BIT_FIELD_TYPE(field))
1215 rli->prev_field = field;
1217 /* Now add size of this field to the size of the record. If the size is
1218 not constant, treat the field as being a multiple of bytes and just
1219 adjust the offset, resetting the bit position. Otherwise, apportion the
1220 size amongst the bit position and offset. First handle the case of an
1221 unspecified size, which can happen when we have an invalid nested struct
1222 definition, such as struct j { struct j { int i; } }. The error message
1223 is printed in finish_struct. */
1224 if (DECL_SIZE (field) == 0)
1225 /* Do nothing. */;
1226 else if (TREE_CODE (DECL_SIZE_UNIT (field)) != INTEGER_CST
1227 || TREE_CONSTANT_OVERFLOW (DECL_SIZE_UNIT (field)))
1229 rli->offset
1230 = size_binop (PLUS_EXPR, rli->offset,
1231 convert (sizetype,
1232 size_binop (CEIL_DIV_EXPR, rli->bitpos,
1233 bitsize_unit_node)));
1234 rli->offset
1235 = size_binop (PLUS_EXPR, rli->offset, DECL_SIZE_UNIT (field));
1236 rli->bitpos = bitsize_zero_node;
1237 rli->offset_align = MIN (rli->offset_align, desired_align);
1239 else
1241 rli->bitpos = size_binop (PLUS_EXPR, rli->bitpos, DECL_SIZE (field));
1242 normalize_rli (rli);
1246 /* Assuming that all the fields have been laid out, this function uses
1247 RLI to compute the final TYPE_SIZE, TYPE_ALIGN, etc. for the type
1248 indicated by RLI. */
1250 static void
1251 finalize_record_size (record_layout_info rli)
1253 tree unpadded_size, unpadded_size_unit;
1255 /* Now we want just byte and bit offsets, so set the offset alignment
1256 to be a byte and then normalize. */
1257 rli->offset_align = BITS_PER_UNIT;
1258 normalize_rli (rli);
1260 /* Determine the desired alignment. */
1261 #ifdef ROUND_TYPE_ALIGN
1262 TYPE_ALIGN (rli->t) = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t),
1263 rli->record_align);
1264 #else
1265 TYPE_ALIGN (rli->t) = MAX (TYPE_ALIGN (rli->t), rli->record_align);
1266 #endif
1268 /* Compute the size so far. Be sure to allow for extra bits in the
1269 size in bytes. We have guaranteed above that it will be no more
1270 than a single byte. */
1271 unpadded_size = rli_size_so_far (rli);
1272 unpadded_size_unit = rli_size_unit_so_far (rli);
1273 if (! integer_zerop (rli->bitpos))
1274 unpadded_size_unit
1275 = size_binop (PLUS_EXPR, unpadded_size_unit, size_one_node);
1277 /* Round the size up to be a multiple of the required alignment. */
1278 TYPE_SIZE (rli->t) = round_up (unpadded_size, TYPE_ALIGN (rli->t));
1279 TYPE_SIZE_UNIT (rli->t) = round_up (unpadded_size_unit,
1280 TYPE_ALIGN (rli->t) / BITS_PER_UNIT);
1282 if (warn_padded && TREE_CONSTANT (unpadded_size)
1283 && simple_cst_equal (unpadded_size, TYPE_SIZE (rli->t)) == 0)
1284 warning ("padding struct size to alignment boundary");
1286 if (warn_packed && TREE_CODE (rli->t) == RECORD_TYPE
1287 && TYPE_PACKED (rli->t) && ! rli->packed_maybe_necessary
1288 && TREE_CONSTANT (unpadded_size))
1290 tree unpacked_size;
1292 #ifdef ROUND_TYPE_ALIGN
1293 rli->unpacked_align
1294 = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t), rli->unpacked_align);
1295 #else
1296 rli->unpacked_align = MAX (TYPE_ALIGN (rli->t), rli->unpacked_align);
1297 #endif
1299 unpacked_size = round_up (TYPE_SIZE (rli->t), rli->unpacked_align);
1300 if (simple_cst_equal (unpacked_size, TYPE_SIZE (rli->t)))
1302 TYPE_PACKED (rli->t) = 0;
1304 if (TYPE_NAME (rli->t))
1306 const char *name;
1308 if (TREE_CODE (TYPE_NAME (rli->t)) == IDENTIFIER_NODE)
1309 name = IDENTIFIER_POINTER (TYPE_NAME (rli->t));
1310 else
1311 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (rli->t)));
1313 if (STRICT_ALIGNMENT)
1314 warning ("packed attribute causes inefficient alignment for `%s'", name);
1315 else
1316 warning ("packed attribute is unnecessary for `%s'", name);
1318 else
1320 if (STRICT_ALIGNMENT)
1321 warning ("packed attribute causes inefficient alignment");
1322 else
1323 warning ("packed attribute is unnecessary");
1329 /* Compute the TYPE_MODE for the TYPE (which is a RECORD_TYPE). */
1331 void
1332 compute_record_mode (tree type)
1334 tree field;
1335 enum machine_mode mode = VOIDmode;
1337 /* Most RECORD_TYPEs have BLKmode, so we start off assuming that.
1338 However, if possible, we use a mode that fits in a register
1339 instead, in order to allow for better optimization down the
1340 line. */
1341 TYPE_MODE (type) = BLKmode;
1343 if (! host_integerp (TYPE_SIZE (type), 1))
1344 return;
1346 /* A record which has any BLKmode members must itself be
1347 BLKmode; it can't go in a register. Unless the member is
1348 BLKmode only because it isn't aligned. */
1349 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1351 if (TREE_CODE (field) != FIELD_DECL)
1352 continue;
1354 if (TREE_CODE (TREE_TYPE (field)) == ERROR_MARK
1355 || (TYPE_MODE (TREE_TYPE (field)) == BLKmode
1356 && ! TYPE_NO_FORCE_BLK (TREE_TYPE (field))
1357 && !(TYPE_SIZE (TREE_TYPE (field)) != 0
1358 && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))))
1359 || ! host_integerp (bit_position (field), 1)
1360 || DECL_SIZE (field) == 0
1361 || ! host_integerp (DECL_SIZE (field), 1))
1362 return;
1364 /* If this field is the whole struct, remember its mode so
1365 that, say, we can put a double in a class into a DF
1366 register instead of forcing it to live in the stack. */
1367 if (simple_cst_equal (TYPE_SIZE (type), DECL_SIZE (field)))
1368 mode = DECL_MODE (field);
1370 #ifdef MEMBER_TYPE_FORCES_BLK
1371 /* With some targets, eg. c4x, it is sub-optimal
1372 to access an aligned BLKmode structure as a scalar. */
1374 if (MEMBER_TYPE_FORCES_BLK (field, mode))
1375 return;
1376 #endif /* MEMBER_TYPE_FORCES_BLK */
1379 /* If we only have one real field; use its mode. This only applies to
1380 RECORD_TYPE. This does not apply to unions. */
1381 if (TREE_CODE (type) == RECORD_TYPE && mode != VOIDmode)
1382 TYPE_MODE (type) = mode;
1383 else
1384 TYPE_MODE (type) = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1386 /* If structure's known alignment is less than what the scalar
1387 mode would need, and it matters, then stick with BLKmode. */
1388 if (TYPE_MODE (type) != BLKmode
1389 && STRICT_ALIGNMENT
1390 && ! (TYPE_ALIGN (type) >= BIGGEST_ALIGNMENT
1391 || TYPE_ALIGN (type) >= GET_MODE_ALIGNMENT (TYPE_MODE (type))))
1393 /* If this is the only reason this type is BLKmode, then
1394 don't force containing types to be BLKmode. */
1395 TYPE_NO_FORCE_BLK (type) = 1;
1396 TYPE_MODE (type) = BLKmode;
1400 /* Compute TYPE_SIZE and TYPE_ALIGN for TYPE, once it has been laid
1401 out. */
1403 static void
1404 finalize_type_size (tree type)
1406 /* Normally, use the alignment corresponding to the mode chosen.
1407 However, where strict alignment is not required, avoid
1408 over-aligning structures, since most compilers do not do this
1409 alignment. */
1411 if (TYPE_MODE (type) != BLKmode && TYPE_MODE (type) != VOIDmode
1412 && (STRICT_ALIGNMENT
1413 || (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE
1414 && TREE_CODE (type) != QUAL_UNION_TYPE
1415 && TREE_CODE (type) != ARRAY_TYPE)))
1417 TYPE_ALIGN (type) = GET_MODE_ALIGNMENT (TYPE_MODE (type));
1418 TYPE_USER_ALIGN (type) = 0;
1421 /* Do machine-dependent extra alignment. */
1422 #ifdef ROUND_TYPE_ALIGN
1423 TYPE_ALIGN (type)
1424 = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (type), BITS_PER_UNIT);
1425 #endif
1427 /* If we failed to find a simple way to calculate the unit size
1428 of the type, find it by division. */
1429 if (TYPE_SIZE_UNIT (type) == 0 && TYPE_SIZE (type) != 0)
1430 /* TYPE_SIZE (type) is computed in bitsizetype. After the division, the
1431 result will fit in sizetype. We will get more efficient code using
1432 sizetype, so we force a conversion. */
1433 TYPE_SIZE_UNIT (type)
1434 = convert (sizetype,
1435 size_binop (FLOOR_DIV_EXPR, TYPE_SIZE (type),
1436 bitsize_unit_node));
1438 if (TYPE_SIZE (type) != 0)
1440 TYPE_SIZE (type) = round_up (TYPE_SIZE (type), TYPE_ALIGN (type));
1441 TYPE_SIZE_UNIT (type)
1442 = round_up (TYPE_SIZE_UNIT (type), TYPE_ALIGN (type) / BITS_PER_UNIT);
1445 /* Evaluate nonconstant sizes only once, either now or as soon as safe. */
1446 if (TYPE_SIZE (type) != 0 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
1447 TYPE_SIZE (type) = variable_size (TYPE_SIZE (type));
1448 if (TYPE_SIZE_UNIT (type) != 0
1449 && TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST)
1450 TYPE_SIZE_UNIT (type) = variable_size (TYPE_SIZE_UNIT (type));
1452 /* Also layout any other variants of the type. */
1453 if (TYPE_NEXT_VARIANT (type)
1454 || type != TYPE_MAIN_VARIANT (type))
1456 tree variant;
1457 /* Record layout info of this variant. */
1458 tree size = TYPE_SIZE (type);
1459 tree size_unit = TYPE_SIZE_UNIT (type);
1460 unsigned int align = TYPE_ALIGN (type);
1461 unsigned int user_align = TYPE_USER_ALIGN (type);
1462 enum machine_mode mode = TYPE_MODE (type);
1464 /* Copy it into all variants. */
1465 for (variant = TYPE_MAIN_VARIANT (type);
1466 variant != 0;
1467 variant = TYPE_NEXT_VARIANT (variant))
1469 TYPE_SIZE (variant) = size;
1470 TYPE_SIZE_UNIT (variant) = size_unit;
1471 TYPE_ALIGN (variant) = align;
1472 TYPE_USER_ALIGN (variant) = user_align;
1473 TYPE_MODE (variant) = mode;
1478 /* Do all of the work required to layout the type indicated by RLI,
1479 once the fields have been laid out. This function will call `free'
1480 for RLI, unless FREE_P is false. Passing a value other than false
1481 for FREE_P is bad practice; this option only exists to support the
1482 G++ 3.2 ABI. */
1484 void
1485 finish_record_layout (record_layout_info rli, int free_p)
1487 /* Compute the final size. */
1488 finalize_record_size (rli);
1490 /* Compute the TYPE_MODE for the record. */
1491 compute_record_mode (rli->t);
1493 /* Perform any last tweaks to the TYPE_SIZE, etc. */
1494 finalize_type_size (rli->t);
1496 /* Lay out any static members. This is done now because their type
1497 may use the record's type. */
1498 while (rli->pending_statics)
1500 layout_decl (TREE_VALUE (rli->pending_statics), 0);
1501 rli->pending_statics = TREE_CHAIN (rli->pending_statics);
1504 /* Clean up. */
1505 if (free_p)
1506 free (rli);
1510 /* Finish processing a builtin RECORD_TYPE type TYPE. It's name is
1511 NAME, its fields are chained in reverse on FIELDS.
1513 If ALIGN_TYPE is non-null, it is given the same alignment as
1514 ALIGN_TYPE. */
1516 void
1517 finish_builtin_struct (tree type, const char *name, tree fields,
1518 tree align_type)
1520 tree tail, next;
1522 for (tail = NULL_TREE; fields; tail = fields, fields = next)
1524 DECL_FIELD_CONTEXT (fields) = type;
1525 next = TREE_CHAIN (fields);
1526 TREE_CHAIN (fields) = tail;
1528 TYPE_FIELDS (type) = tail;
1530 if (align_type)
1532 TYPE_ALIGN (type) = TYPE_ALIGN (align_type);
1533 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (align_type);
1536 layout_type (type);
1537 #if 0 /* not yet, should get fixed properly later */
1538 TYPE_NAME (type) = make_type_decl (get_identifier (name), type);
1539 #else
1540 TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type);
1541 #endif
1542 TYPE_STUB_DECL (type) = TYPE_NAME (type);
1543 layout_decl (TYPE_NAME (type), 0);
1546 /* Calculate the mode, size, and alignment for TYPE.
1547 For an array type, calculate the element separation as well.
1548 Record TYPE on the chain of permanent or temporary types
1549 so that dbxout will find out about it.
1551 TYPE_SIZE of a type is nonzero if the type has been laid out already.
1552 layout_type does nothing on such a type.
1554 If the type is incomplete, its TYPE_SIZE remains zero. */
1556 void
1557 layout_type (tree type)
1559 if (type == 0)
1560 abort ();
1562 /* Do nothing if type has been laid out before. */
1563 if (TYPE_SIZE (type))
1564 return;
1566 switch (TREE_CODE (type))
1568 case LANG_TYPE:
1569 /* This kind of type is the responsibility
1570 of the language-specific code. */
1571 abort ();
1573 case BOOLEAN_TYPE: /* Used for Java, Pascal, and Chill. */
1574 if (TYPE_PRECISION (type) == 0)
1575 TYPE_PRECISION (type) = 1; /* default to one byte/boolean. */
1577 /* ... fall through ... */
1579 case INTEGER_TYPE:
1580 case ENUMERAL_TYPE:
1581 case CHAR_TYPE:
1582 if (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST
1583 && tree_int_cst_sgn (TYPE_MIN_VALUE (type)) >= 0)
1584 TYPE_UNSIGNED (type) = 1;
1586 TYPE_MODE (type) = smallest_mode_for_size (TYPE_PRECISION (type),
1587 MODE_INT);
1588 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1589 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1590 break;
1592 case REAL_TYPE:
1593 TYPE_MODE (type) = mode_for_size (TYPE_PRECISION (type), MODE_FLOAT, 0);
1594 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1595 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1596 break;
1598 case COMPLEX_TYPE:
1599 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TREE_TYPE (type));
1600 TYPE_MODE (type)
1601 = mode_for_size (2 * TYPE_PRECISION (TREE_TYPE (type)),
1602 (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE
1603 ? MODE_COMPLEX_FLOAT : MODE_COMPLEX_INT),
1605 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1606 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1607 break;
1609 case VECTOR_TYPE:
1610 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TREE_TYPE (type));
1611 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1612 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1613 break;
1615 case VOID_TYPE:
1616 /* This is an incomplete type and so doesn't have a size. */
1617 TYPE_ALIGN (type) = 1;
1618 TYPE_USER_ALIGN (type) = 0;
1619 TYPE_MODE (type) = VOIDmode;
1620 break;
1622 case OFFSET_TYPE:
1623 TYPE_SIZE (type) = bitsize_int (POINTER_SIZE);
1624 TYPE_SIZE_UNIT (type) = size_int (POINTER_SIZE / BITS_PER_UNIT);
1625 /* A pointer might be MODE_PARTIAL_INT,
1626 but ptrdiff_t must be integral. */
1627 TYPE_MODE (type) = mode_for_size (POINTER_SIZE, MODE_INT, 0);
1628 break;
1630 case FUNCTION_TYPE:
1631 case METHOD_TYPE:
1632 /* It's hard to see what the mode and size of a function ought to
1633 be, but we do know the alignment is FUNCTION_BOUNDARY, so
1634 make it consistent with that. */
1635 TYPE_MODE (type) = mode_for_size (FUNCTION_BOUNDARY, MODE_INT, 0);
1636 TYPE_SIZE (type) = bitsize_int (FUNCTION_BOUNDARY);
1637 TYPE_SIZE_UNIT (type) = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1638 break;
1640 case POINTER_TYPE:
1641 case REFERENCE_TYPE:
1644 enum machine_mode mode = ((TREE_CODE (type) == REFERENCE_TYPE
1645 && reference_types_internal)
1646 ? Pmode : TYPE_MODE (type));
1648 int nbits = GET_MODE_BITSIZE (mode);
1650 TYPE_SIZE (type) = bitsize_int (nbits);
1651 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (mode));
1652 TYPE_UNSIGNED (type) = 1;
1653 TYPE_PRECISION (type) = nbits;
1655 break;
1657 case ARRAY_TYPE:
1659 tree index = TYPE_DOMAIN (type);
1660 tree element = TREE_TYPE (type);
1662 build_pointer_type (element);
1664 /* We need to know both bounds in order to compute the size. */
1665 if (index && TYPE_MAX_VALUE (index) && TYPE_MIN_VALUE (index)
1666 && TYPE_SIZE (element))
1668 tree ub = TYPE_MAX_VALUE (index);
1669 tree lb = TYPE_MIN_VALUE (index);
1670 tree length;
1671 tree element_size;
1673 /* The initial subtraction should happen in the original type so
1674 that (possible) negative values are handled appropriately. */
1675 length = size_binop (PLUS_EXPR, size_one_node,
1676 convert (sizetype,
1677 fold (build (MINUS_EXPR,
1678 TREE_TYPE (lb),
1679 ub, lb))));
1681 /* Special handling for arrays of bits (for Chill). */
1682 element_size = TYPE_SIZE (element);
1683 if (TYPE_PACKED (type) && INTEGRAL_TYPE_P (element)
1684 && (integer_zerop (TYPE_MAX_VALUE (element))
1685 || integer_onep (TYPE_MAX_VALUE (element)))
1686 && host_integerp (TYPE_MIN_VALUE (element), 1))
1688 HOST_WIDE_INT maxvalue
1689 = tree_low_cst (TYPE_MAX_VALUE (element), 1);
1690 HOST_WIDE_INT minvalue
1691 = tree_low_cst (TYPE_MIN_VALUE (element), 1);
1693 if (maxvalue - minvalue == 1
1694 && (maxvalue == 1 || maxvalue == 0))
1695 element_size = integer_one_node;
1698 /* If neither bound is a constant and sizetype is signed, make
1699 sure the size is never negative. We should really do this
1700 if *either* bound is non-constant, but this is the best
1701 compromise between C and Ada. */
1702 if (!TYPE_UNSIGNED (sizetype)
1703 && TREE_CODE (TYPE_MIN_VALUE (index)) != INTEGER_CST
1704 && TREE_CODE (TYPE_MAX_VALUE (index)) != INTEGER_CST)
1705 length = size_binop (MAX_EXPR, length, size_zero_node);
1707 TYPE_SIZE (type) = size_binop (MULT_EXPR, element_size,
1708 convert (bitsizetype, length));
1710 /* If we know the size of the element, calculate the total
1711 size directly, rather than do some division thing below.
1712 This optimization helps Fortran assumed-size arrays
1713 (where the size of the array is determined at runtime)
1714 substantially.
1715 Note that we can't do this in the case where the size of
1716 the elements is one bit since TYPE_SIZE_UNIT cannot be
1717 set correctly in that case. */
1718 if (TYPE_SIZE_UNIT (element) != 0 && ! integer_onep (element_size))
1719 TYPE_SIZE_UNIT (type)
1720 = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (element), length);
1723 /* Now round the alignment and size,
1724 using machine-dependent criteria if any. */
1726 #ifdef ROUND_TYPE_ALIGN
1727 TYPE_ALIGN (type)
1728 = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (element), BITS_PER_UNIT);
1729 #else
1730 TYPE_ALIGN (type) = MAX (TYPE_ALIGN (element), BITS_PER_UNIT);
1731 #endif
1732 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (element);
1733 TYPE_MODE (type) = BLKmode;
1734 if (TYPE_SIZE (type) != 0
1735 #ifdef MEMBER_TYPE_FORCES_BLK
1736 && ! MEMBER_TYPE_FORCES_BLK (type, VOIDmode)
1737 #endif
1738 /* BLKmode elements force BLKmode aggregate;
1739 else extract/store fields may lose. */
1740 && (TYPE_MODE (TREE_TYPE (type)) != BLKmode
1741 || TYPE_NO_FORCE_BLK (TREE_TYPE (type))))
1743 /* One-element arrays get the component type's mode. */
1744 if (simple_cst_equal (TYPE_SIZE (type),
1745 TYPE_SIZE (TREE_TYPE (type))))
1746 TYPE_MODE (type) = TYPE_MODE (TREE_TYPE (type));
1747 else
1748 TYPE_MODE (type)
1749 = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1751 if (TYPE_MODE (type) != BLKmode
1752 && STRICT_ALIGNMENT && TYPE_ALIGN (type) < BIGGEST_ALIGNMENT
1753 && TYPE_ALIGN (type) < GET_MODE_ALIGNMENT (TYPE_MODE (type))
1754 && TYPE_MODE (type) != BLKmode)
1756 TYPE_NO_FORCE_BLK (type) = 1;
1757 TYPE_MODE (type) = BLKmode;
1760 break;
1763 case RECORD_TYPE:
1764 case UNION_TYPE:
1765 case QUAL_UNION_TYPE:
1767 tree field;
1768 record_layout_info rli;
1770 /* Initialize the layout information. */
1771 rli = start_record_layout (type);
1773 /* If this is a QUAL_UNION_TYPE, we want to process the fields
1774 in the reverse order in building the COND_EXPR that denotes
1775 its size. We reverse them again later. */
1776 if (TREE_CODE (type) == QUAL_UNION_TYPE)
1777 TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1779 /* Place all the fields. */
1780 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1781 place_field (rli, field);
1783 if (TREE_CODE (type) == QUAL_UNION_TYPE)
1784 TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1786 if (lang_adjust_rli)
1787 (*lang_adjust_rli) (rli);
1789 /* Finish laying out the record. */
1790 finish_record_layout (rli, /*free_p=*/true);
1792 break;
1794 case SET_TYPE: /* Used by Chill and Pascal. */
1795 if (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST
1796 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST)
1797 abort ();
1798 else
1800 #ifndef SET_WORD_SIZE
1801 #define SET_WORD_SIZE BITS_PER_WORD
1802 #endif
1803 unsigned int alignment
1804 = set_alignment ? set_alignment : SET_WORD_SIZE;
1805 HOST_WIDE_INT size_in_bits
1806 = (tree_low_cst (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), 0)
1807 - tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0) + 1);
1808 HOST_WIDE_INT rounded_size
1809 = ((size_in_bits + alignment - 1) / alignment) * alignment;
1811 if (rounded_size > (int) alignment)
1812 TYPE_MODE (type) = BLKmode;
1813 else
1814 TYPE_MODE (type) = mode_for_size (alignment, MODE_INT, 1);
1816 TYPE_SIZE (type) = bitsize_int (rounded_size);
1817 TYPE_SIZE_UNIT (type) = size_int (rounded_size / BITS_PER_UNIT);
1818 TYPE_ALIGN (type) = alignment;
1819 TYPE_USER_ALIGN (type) = 0;
1820 TYPE_PRECISION (type) = size_in_bits;
1822 break;
1824 case FILE_TYPE:
1825 /* The size may vary in different languages, so the language front end
1826 should fill in the size. */
1827 TYPE_ALIGN (type) = BIGGEST_ALIGNMENT;
1828 TYPE_USER_ALIGN (type) = 0;
1829 TYPE_MODE (type) = BLKmode;
1830 break;
1832 default:
1833 abort ();
1836 /* Compute the final TYPE_SIZE, TYPE_ALIGN, etc. for TYPE. For
1837 records and unions, finish_record_layout already called this
1838 function. */
1839 if (TREE_CODE (type) != RECORD_TYPE
1840 && TREE_CODE (type) != UNION_TYPE
1841 && TREE_CODE (type) != QUAL_UNION_TYPE)
1842 finalize_type_size (type);
1844 /* If this type is created before sizetype has been permanently set,
1845 record it so set_sizetype can fix it up. */
1846 if (! sizetype_set)
1847 early_type_list = tree_cons (NULL_TREE, type, early_type_list);
1849 /* If an alias set has been set for this aggregate when it was incomplete,
1850 force it into alias set 0.
1851 This is too conservative, but we cannot call record_component_aliases
1852 here because some frontends still change the aggregates after
1853 layout_type. */
1854 if (AGGREGATE_TYPE_P (type) && TYPE_ALIAS_SET_KNOWN_P (type))
1855 TYPE_ALIAS_SET (type) = 0;
1858 /* Create and return a type for signed integers of PRECISION bits. */
1860 tree
1861 make_signed_type (int precision)
1863 tree type = make_node (INTEGER_TYPE);
1865 TYPE_PRECISION (type) = precision;
1867 fixup_signed_type (type);
1868 return type;
1871 /* Create and return a type for unsigned integers of PRECISION bits. */
1873 tree
1874 make_unsigned_type (int precision)
1876 tree type = make_node (INTEGER_TYPE);
1878 TYPE_PRECISION (type) = precision;
1880 fixup_unsigned_type (type);
1881 return type;
1884 /* Initialize sizetype and bitsizetype to a reasonable and temporary
1885 value to enable integer types to be created. */
1887 void
1888 initialize_sizetypes (void)
1890 tree t = make_node (INTEGER_TYPE);
1892 /* Set this so we do something reasonable for the build_int_2 calls
1893 below. */
1894 integer_type_node = t;
1896 TYPE_MODE (t) = SImode;
1897 TYPE_ALIGN (t) = GET_MODE_ALIGNMENT (SImode);
1898 TYPE_USER_ALIGN (t) = 0;
1899 TYPE_SIZE (t) = build_int_2 (GET_MODE_BITSIZE (SImode), 0);
1900 TYPE_SIZE_UNIT (t) = build_int_2 (GET_MODE_SIZE (SImode), 0);
1901 TYPE_UNSIGNED (t) = 1;
1902 TYPE_PRECISION (t) = GET_MODE_BITSIZE (SImode);
1903 TYPE_MIN_VALUE (t) = build_int_2 (0, 0);
1904 TYPE_IS_SIZETYPE (t) = 1;
1906 /* 1000 avoids problems with possible overflow and is certainly
1907 larger than any size value we'd want to be storing. */
1908 TYPE_MAX_VALUE (t) = build_int_2 (1000, 0);
1910 /* These two must be different nodes because of the caching done in
1911 size_int_wide. */
1912 sizetype = t;
1913 bitsizetype = copy_node (t);
1914 integer_type_node = 0;
1917 /* Set sizetype to TYPE, and initialize *sizetype accordingly.
1918 Also update the type of any standard type's sizes made so far. */
1920 void
1921 set_sizetype (tree type)
1923 int oprecision = TYPE_PRECISION (type);
1924 /* The *bitsizetype types use a precision that avoids overflows when
1925 calculating signed sizes / offsets in bits. However, when
1926 cross-compiling from a 32 bit to a 64 bit host, we are limited to 64 bit
1927 precision. */
1928 int precision = MIN (oprecision + BITS_PER_UNIT_LOG + 1,
1929 2 * HOST_BITS_PER_WIDE_INT);
1930 unsigned int i;
1931 tree t;
1933 if (sizetype_set)
1934 abort ();
1936 /* Make copies of nodes since we'll be setting TYPE_IS_SIZETYPE. */
1937 sizetype = copy_node (type);
1938 TYPE_ORIG_SIZE_TYPE (sizetype) = type;
1939 TYPE_IS_SIZETYPE (sizetype) = 1;
1940 bitsizetype = make_node (INTEGER_TYPE);
1941 TYPE_NAME (bitsizetype) = TYPE_NAME (type);
1942 TYPE_PRECISION (bitsizetype) = precision;
1943 TYPE_IS_SIZETYPE (bitsizetype) = 1;
1945 if (TYPE_UNSIGNED (type))
1946 fixup_unsigned_type (bitsizetype);
1947 else
1948 fixup_signed_type (bitsizetype);
1950 layout_type (bitsizetype);
1952 if (TYPE_UNSIGNED (type))
1954 usizetype = sizetype;
1955 ubitsizetype = bitsizetype;
1956 ssizetype = copy_node (make_signed_type (oprecision));
1957 sbitsizetype = copy_node (make_signed_type (precision));
1959 else
1961 ssizetype = sizetype;
1962 sbitsizetype = bitsizetype;
1963 usizetype = copy_node (make_unsigned_type (oprecision));
1964 ubitsizetype = copy_node (make_unsigned_type (precision));
1967 TYPE_NAME (bitsizetype) = get_identifier ("bit_size_type");
1969 /* Show is a sizetype, is a main type, and has no pointers to it. */
1970 for (i = 0; i < ARRAY_SIZE (sizetype_tab); i++)
1972 TYPE_IS_SIZETYPE (sizetype_tab[i]) = 1;
1973 TYPE_MAIN_VARIANT (sizetype_tab[i]) = sizetype_tab[i];
1974 TYPE_NEXT_VARIANT (sizetype_tab[i]) = 0;
1975 TYPE_POINTER_TO (sizetype_tab[i]) = 0;
1976 TYPE_REFERENCE_TO (sizetype_tab[i]) = 0;
1979 /* Go down each of the types we already made and set the proper type
1980 for the sizes in them. */
1981 for (t = early_type_list; t != 0; t = TREE_CHAIN (t))
1983 if (TREE_CODE (TREE_VALUE (t)) != INTEGER_TYPE
1984 && TREE_CODE (TREE_VALUE (t)) != BOOLEAN_TYPE)
1985 abort ();
1987 TREE_TYPE (TYPE_SIZE (TREE_VALUE (t))) = bitsizetype;
1988 TREE_TYPE (TYPE_SIZE_UNIT (TREE_VALUE (t))) = sizetype;
1991 early_type_list = 0;
1992 sizetype_set = 1;
1995 /* TYPE is an integral type, i.e., an INTEGRAL_TYPE, ENUMERAL_TYPE,
1996 BOOLEAN_TYPE, or CHAR_TYPE. Set TYPE_MIN_VALUE and TYPE_MAX_VALUE
1997 for TYPE, based on the PRECISION and whether or not the TYPE
1998 IS_UNSIGNED. PRECISION need not correspond to a width supported
1999 natively by the hardware; for example, on a machine with 8-bit,
2000 16-bit, and 32-bit register modes, PRECISION might be 7, 23, or
2001 61. */
2003 void
2004 set_min_and_max_values_for_integral_type (tree type,
2005 int precision,
2006 bool is_unsigned)
2008 tree min_value;
2009 tree max_value;
2011 if (is_unsigned)
2013 min_value = build_int_2 (0, 0);
2014 max_value
2015 = build_int_2 (precision - HOST_BITS_PER_WIDE_INT >= 0
2016 ? -1 : ((HOST_WIDE_INT) 1 << precision) - 1,
2017 precision - HOST_BITS_PER_WIDE_INT > 0
2018 ? ((unsigned HOST_WIDE_INT) ~0
2019 >> (HOST_BITS_PER_WIDE_INT
2020 - (precision - HOST_BITS_PER_WIDE_INT)))
2021 : 0);
2023 else
2025 min_value
2026 = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
2027 ? 0 : (HOST_WIDE_INT) (-1) << (precision - 1)),
2028 (((HOST_WIDE_INT) (-1)
2029 << (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
2030 ? precision - HOST_BITS_PER_WIDE_INT - 1
2031 : 0))));
2032 max_value
2033 = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
2034 ? -1 : ((HOST_WIDE_INT) 1 << (precision - 1)) - 1),
2035 (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
2036 ? (((HOST_WIDE_INT) 1
2037 << (precision - HOST_BITS_PER_WIDE_INT - 1))) - 1
2038 : 0));
2041 TREE_TYPE (min_value) = type;
2042 TREE_TYPE (max_value) = type;
2043 TYPE_MIN_VALUE (type) = min_value;
2044 TYPE_MAX_VALUE (type) = max_value;
2047 /* Set the extreme values of TYPE based on its precision in bits,
2048 then lay it out. Used when make_signed_type won't do
2049 because the tree code is not INTEGER_TYPE.
2050 E.g. for Pascal, when the -fsigned-char option is given. */
2052 void
2053 fixup_signed_type (tree type)
2055 int precision = TYPE_PRECISION (type);
2057 /* We can not represent properly constants greater then
2058 2 * HOST_BITS_PER_WIDE_INT, still we need the types
2059 as they are used by i386 vector extensions and friends. */
2060 if (precision > HOST_BITS_PER_WIDE_INT * 2)
2061 precision = HOST_BITS_PER_WIDE_INT * 2;
2063 set_min_and_max_values_for_integral_type (type, precision,
2064 /*is_unsigned=*/false);
2066 /* Lay out the type: set its alignment, size, etc. */
2067 layout_type (type);
2070 /* Set the extreme values of TYPE based on its precision in bits,
2071 then lay it out. This is used both in `make_unsigned_type'
2072 and for enumeral types. */
2074 void
2075 fixup_unsigned_type (tree type)
2077 int precision = TYPE_PRECISION (type);
2079 /* We can not represent properly constants greater then
2080 2 * HOST_BITS_PER_WIDE_INT, still we need the types
2081 as they are used by i386 vector extensions and friends. */
2082 if (precision > HOST_BITS_PER_WIDE_INT * 2)
2083 precision = HOST_BITS_PER_WIDE_INT * 2;
2085 set_min_and_max_values_for_integral_type (type, precision,
2086 /*is_unsigned=*/true);
2088 /* Lay out the type: set its alignment, size, etc. */
2089 layout_type (type);
2092 /* Find the best machine mode to use when referencing a bit field of length
2093 BITSIZE bits starting at BITPOS.
2095 The underlying object is known to be aligned to a boundary of ALIGN bits.
2096 If LARGEST_MODE is not VOIDmode, it means that we should not use a mode
2097 larger than LARGEST_MODE (usually SImode).
2099 If no mode meets all these conditions, we return VOIDmode. Otherwise, if
2100 VOLATILEP is true or SLOW_BYTE_ACCESS is false, we return the smallest
2101 mode meeting these conditions.
2103 Otherwise (VOLATILEP is false and SLOW_BYTE_ACCESS is true), we return
2104 the largest mode (but a mode no wider than UNITS_PER_WORD) that meets
2105 all the conditions. */
2107 enum machine_mode
2108 get_best_mode (int bitsize, int bitpos, unsigned int align,
2109 enum machine_mode largest_mode, int volatilep)
2111 enum machine_mode mode;
2112 unsigned int unit = 0;
2114 /* Find the narrowest integer mode that contains the bit field. */
2115 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2116 mode = GET_MODE_WIDER_MODE (mode))
2118 unit = GET_MODE_BITSIZE (mode);
2119 if ((bitpos % unit) + bitsize <= unit)
2120 break;
2123 if (mode == VOIDmode
2124 /* It is tempting to omit the following line
2125 if STRICT_ALIGNMENT is true.
2126 But that is incorrect, since if the bitfield uses part of 3 bytes
2127 and we use a 4-byte mode, we could get a spurious segv
2128 if the extra 4th byte is past the end of memory.
2129 (Though at least one Unix compiler ignores this problem:
2130 that on the Sequent 386 machine. */
2131 || MIN (unit, BIGGEST_ALIGNMENT) > align
2132 || (largest_mode != VOIDmode && unit > GET_MODE_BITSIZE (largest_mode)))
2133 return VOIDmode;
2135 if (SLOW_BYTE_ACCESS && ! volatilep)
2137 enum machine_mode wide_mode = VOIDmode, tmode;
2139 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT); tmode != VOIDmode;
2140 tmode = GET_MODE_WIDER_MODE (tmode))
2142 unit = GET_MODE_BITSIZE (tmode);
2143 if (bitpos / unit == (bitpos + bitsize - 1) / unit
2144 && unit <= BITS_PER_WORD
2145 && unit <= MIN (align, BIGGEST_ALIGNMENT)
2146 && (largest_mode == VOIDmode
2147 || unit <= GET_MODE_BITSIZE (largest_mode)))
2148 wide_mode = tmode;
2151 if (wide_mode != VOIDmode)
2152 return wide_mode;
2155 return mode;
2158 /* Gets minimal and maximal values for MODE (signed or unsigned depending on
2159 SIGN). */
2161 void
2162 get_mode_bounds (enum machine_mode mode, int sign, rtx *mmin, rtx *mmax)
2164 int size = GET_MODE_BITSIZE (mode);
2166 if (size > HOST_BITS_PER_WIDE_INT)
2167 abort ();
2169 if (sign)
2171 *mmin = GEN_INT (-((unsigned HOST_WIDE_INT) 1 << (size - 1)));
2172 *mmax = GEN_INT (((unsigned HOST_WIDE_INT) 1 << (size - 1)) - 1);
2174 else
2176 *mmin = const0_rtx;
2177 *mmax = GEN_INT (((unsigned HOST_WIDE_INT) 1 << (size - 1) << 1) - 1);
2181 #include "gt-stor-layout.h"