* target.h (struct gcc_target): Add new field to struct cxx: import_export_class.
[official-gcc.git] / gcc / stor-layout.c
blob94bc46fb564b8614156a5ab4f08ee7f49e4534dc
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 extern void debug_rli (record_layout_info);
72 /* SAVE_EXPRs for sizes of types and decls, waiting to be expanded. */
74 static GTY(()) tree pending_sizes;
76 /* Show that REFERENCE_TYPES are internal and should be Pmode. Called only
77 by front end. */
79 void
80 internal_reference_types (void)
82 reference_types_internal = 1;
85 /* Get a list of all the objects put on the pending sizes list. */
87 tree
88 get_pending_sizes (void)
90 tree chain = pending_sizes;
92 pending_sizes = 0;
93 return chain;
96 /* Add EXPR to the pending sizes list. */
98 void
99 put_pending_size (tree expr)
101 /* Strip any simple arithmetic from EXPR to see if it has an underlying
102 SAVE_EXPR. */
103 expr = skip_simple_arithmetic (expr);
105 if (TREE_CODE (expr) == SAVE_EXPR)
106 pending_sizes = tree_cons (NULL_TREE, expr, pending_sizes);
109 /* Put a chain of objects into the pending sizes list, which must be
110 empty. */
112 void
113 put_pending_sizes (tree chain)
115 if (pending_sizes)
116 abort ();
118 pending_sizes = chain;
121 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR
122 to serve as the actual size-expression for a type or decl. */
124 tree
125 variable_size (tree size)
127 tree save;
129 /* If the language-processor is to take responsibility for variable-sized
130 items (e.g., languages which have elaboration procedures like Ada),
131 just return SIZE unchanged. Likewise for self-referential sizes and
132 constant sizes. */
133 if (TREE_CONSTANT (size)
134 || lang_hooks.decls.global_bindings_p () < 0
135 || CONTAINS_PLACEHOLDER_P (size))
136 return size;
138 size = save_expr (size);
140 /* If an array with a variable number of elements is declared, and
141 the elements require destruction, we will emit a cleanup for the
142 array. That cleanup is run both on normal exit from the block
143 and in the exception-handler for the block. Normally, when code
144 is used in both ordinary code and in an exception handler it is
145 `unsaved', i.e., all SAVE_EXPRs are recalculated. However, we do
146 not wish to do that here; the array-size is the same in both
147 places. */
148 save = skip_simple_arithmetic (size);
149 if (TREE_CODE (save) == SAVE_EXPR)
150 SAVE_EXPR_PERSISTENT_P (save) = 1;
152 if (cfun && cfun->x_dont_save_pending_sizes_p)
153 /* The front-end doesn't want us to keep a list of the expressions
154 that determine sizes for variable size objects. Trust it. */
155 return size;
157 if (lang_hooks.decls.global_bindings_p ())
159 if (TREE_CONSTANT (size))
160 error ("type size can't be explicitly evaluated");
161 else
162 error ("variable-size type declared outside of any function");
164 return size_one_node;
167 put_pending_size (save);
169 return size;
172 /* Given a type T, force elaboration of any SAVE_EXPRs used in the definition
173 of that type. */
175 void
176 force_type_save_exprs (tree t)
178 tree field;
180 switch (TREE_CODE (t))
182 case ERROR_MARK:
183 return;
185 case ARRAY_TYPE:
186 case SET_TYPE:
187 case VECTOR_TYPE:
188 /* It's probably overly-conservative to force elaboration of bounds and
189 also the sizes, but it's better to be safe than sorry. */
190 force_type_save_exprs_1 (TYPE_MIN_VALUE (TYPE_DOMAIN (t)));
191 force_type_save_exprs_1 (TYPE_MAX_VALUE (TYPE_DOMAIN (t)));
192 break;
194 case RECORD_TYPE:
195 case UNION_TYPE:
196 case QUAL_UNION_TYPE:
197 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
198 if (TREE_CODE (field) == FIELD_DECL)
200 force_type_save_exprs (TREE_TYPE (field));
201 force_type_save_exprs_1 (DECL_FIELD_OFFSET (field));
203 break;
205 default:
206 break;
209 force_type_save_exprs_1 (TYPE_SIZE (t));
210 force_type_save_exprs_1 (TYPE_SIZE_UNIT (t));
213 /* Utility routine of above, to verify that SIZE has been elaborated and
214 do so it it is a SAVE_EXPR and has not been. */
216 static void
217 force_type_save_exprs_1 (tree size)
219 if (size
220 && (size = skip_simple_arithmetic (size))
221 && TREE_CODE (size) == SAVE_EXPR
222 && !SAVE_EXPR_RTL (size))
223 expand_expr (size, NULL_RTX, VOIDmode, 0);
226 #ifndef MAX_FIXED_MODE_SIZE
227 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
228 #endif
230 /* Return the machine mode to use for a nonscalar of SIZE bits. The
231 mode must be in class CLASS, and have exactly that many value bits;
232 it may have padding as well. If LIMIT is nonzero, modes of wider
233 than MAX_FIXED_MODE_SIZE will not be used. */
235 enum machine_mode
236 mode_for_size (unsigned int size, enum mode_class class, int limit)
238 enum machine_mode mode;
240 if (limit && size > MAX_FIXED_MODE_SIZE)
241 return BLKmode;
243 /* Get the first mode which has this size, in the specified class. */
244 for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
245 mode = GET_MODE_WIDER_MODE (mode))
246 if (GET_MODE_PRECISION (mode) == size)
247 return mode;
249 return BLKmode;
252 /* Similar, except passed a tree node. */
254 enum machine_mode
255 mode_for_size_tree (tree size, enum mode_class class, int limit)
257 if (TREE_CODE (size) != INTEGER_CST
258 || TREE_OVERFLOW (size)
259 /* What we really want to say here is that the size can fit in a
260 host integer, but we know there's no way we'd find a mode for
261 this many bits, so there's no point in doing the precise test. */
262 || compare_tree_int (size, 1000) > 0)
263 return BLKmode;
264 else
265 return mode_for_size (tree_low_cst (size, 1), class, limit);
268 /* Similar, but never return BLKmode; return the narrowest mode that
269 contains at least the requested number of value bits. */
271 enum machine_mode
272 smallest_mode_for_size (unsigned int size, enum mode_class class)
274 enum machine_mode mode;
276 /* Get the first mode which has at least this size, in the
277 specified class. */
278 for (mode = GET_CLASS_NARROWEST_MODE (class); mode != VOIDmode;
279 mode = GET_MODE_WIDER_MODE (mode))
280 if (GET_MODE_PRECISION (mode) >= size)
281 return mode;
283 abort ();
286 /* Find an integer mode of the exact same size, or BLKmode on failure. */
288 enum machine_mode
289 int_mode_for_mode (enum machine_mode mode)
291 switch (GET_MODE_CLASS (mode))
293 case MODE_INT:
294 case MODE_PARTIAL_INT:
295 break;
297 case MODE_COMPLEX_INT:
298 case MODE_COMPLEX_FLOAT:
299 case MODE_FLOAT:
300 case MODE_VECTOR_INT:
301 case MODE_VECTOR_FLOAT:
302 mode = mode_for_size (GET_MODE_BITSIZE (mode), MODE_INT, 0);
303 break;
305 case MODE_RANDOM:
306 if (mode == BLKmode)
307 break;
309 /* ... fall through ... */
311 case MODE_CC:
312 default:
313 abort ();
316 return mode;
319 /* Return the alignment of MODE. This will be bounded by 1 and
320 BIGGEST_ALIGNMENT. */
322 unsigned int
323 get_mode_alignment (enum machine_mode mode)
325 return MIN (BIGGEST_ALIGNMENT, MAX (1, mode_base_align[mode]*BITS_PER_UNIT));
328 /* Return the value of VALUE, rounded up to a multiple of DIVISOR.
329 This can only be applied to objects of a sizetype. */
331 tree
332 round_up (tree value, int divisor)
334 tree arg = size_int_type (divisor, TREE_TYPE (value));
336 return size_binop (MULT_EXPR, size_binop (CEIL_DIV_EXPR, value, arg), arg);
339 /* Likewise, but round down. */
341 tree
342 round_down (tree value, int divisor)
344 tree arg = size_int_type (divisor, TREE_TYPE (value));
346 return size_binop (MULT_EXPR, size_binop (FLOOR_DIV_EXPR, value, arg), arg);
349 /* Subroutine of layout_decl: Force alignment required for the data type.
350 But if the decl itself wants greater alignment, don't override that. */
352 static inline void
353 do_type_align (tree type, tree decl)
355 if (TYPE_ALIGN (type) > DECL_ALIGN (decl))
357 DECL_ALIGN (decl) = TYPE_ALIGN (type);
358 if (TREE_CODE (decl) == FIELD_DECL)
359 DECL_USER_ALIGN (decl) = TYPE_USER_ALIGN (type);
363 /* Set the size, mode and alignment of a ..._DECL node.
364 TYPE_DECL does need this for C++.
365 Note that LABEL_DECL and CONST_DECL nodes do not need this,
366 and FUNCTION_DECL nodes have them set up in a special (and simple) way.
367 Don't call layout_decl for them.
369 KNOWN_ALIGN is the amount of alignment we can assume this
370 decl has with no special effort. It is relevant only for FIELD_DECLs
371 and depends on the previous fields.
372 All that matters about KNOWN_ALIGN is which powers of 2 divide it.
373 If KNOWN_ALIGN is 0, it means, "as much alignment as you like":
374 the record will be aligned to suit. */
376 void
377 layout_decl (tree decl, unsigned int known_align)
379 tree type = TREE_TYPE (decl);
380 enum tree_code code = TREE_CODE (decl);
381 rtx rtl = NULL_RTX;
383 if (code == CONST_DECL)
384 return;
385 else if (code != VAR_DECL && code != PARM_DECL && code != RESULT_DECL
386 && code != TYPE_DECL && code != FIELD_DECL)
387 abort ();
389 rtl = DECL_RTL_IF_SET (decl);
391 if (type == error_mark_node)
392 type = void_type_node;
394 /* Usually the size and mode come from the data type without change,
395 however, the front-end may set the explicit width of the field, so its
396 size may not be the same as the size of its type. This happens with
397 bitfields, of course (an `int' bitfield may be only 2 bits, say), but it
398 also happens with other fields. For example, the C++ front-end creates
399 zero-sized fields corresponding to empty base classes, and depends on
400 layout_type setting DECL_FIELD_BITPOS correctly for the field. Set the
401 size in bytes from the size in bits. If we have already set the mode,
402 don't set it again since we can be called twice for FIELD_DECLs. */
404 DECL_UNSIGNED (decl) = TYPE_UNSIGNED (type);
405 if (DECL_MODE (decl) == VOIDmode)
406 DECL_MODE (decl) = TYPE_MODE (type);
408 if (DECL_SIZE (decl) == 0)
410 DECL_SIZE (decl) = TYPE_SIZE (type);
411 DECL_SIZE_UNIT (decl) = TYPE_SIZE_UNIT (type);
413 else if (DECL_SIZE_UNIT (decl) == 0)
414 DECL_SIZE_UNIT (decl)
415 = convert (sizetype, size_binop (CEIL_DIV_EXPR, DECL_SIZE (decl),
416 bitsize_unit_node));
418 if (code != FIELD_DECL)
419 /* For non-fields, update the alignment from the type. */
420 do_type_align (type, decl);
421 else
422 /* For fields, it's a bit more complicated... */
424 bool old_user_align = DECL_USER_ALIGN (decl);
426 if (DECL_BIT_FIELD (decl))
428 DECL_BIT_FIELD_TYPE (decl) = type;
430 /* A zero-length bit-field affects the alignment of the next
431 field. */
432 if (integer_zerop (DECL_SIZE (decl))
433 && ! DECL_PACKED (decl)
434 && ! targetm.ms_bitfield_layout_p (DECL_FIELD_CONTEXT (decl)))
436 #ifdef PCC_BITFIELD_TYPE_MATTERS
437 if (PCC_BITFIELD_TYPE_MATTERS)
438 do_type_align (type, decl);
439 else
440 #endif
442 #ifdef EMPTY_FIELD_BOUNDARY
443 if (EMPTY_FIELD_BOUNDARY > DECL_ALIGN (decl))
445 DECL_ALIGN (decl) = EMPTY_FIELD_BOUNDARY;
446 DECL_USER_ALIGN (decl) = 0;
448 #endif
452 /* See if we can use an ordinary integer mode for a bit-field.
453 Conditions are: a fixed size that is correct for another mode
454 and occupying a complete byte or bytes on proper boundary. */
455 if (TYPE_SIZE (type) != 0
456 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
457 && GET_MODE_CLASS (TYPE_MODE (type)) == MODE_INT)
459 enum machine_mode xmode
460 = mode_for_size_tree (DECL_SIZE (decl), MODE_INT, 1);
462 if (xmode != BLKmode
463 && (known_align == 0
464 || known_align >= GET_MODE_ALIGNMENT (xmode)))
466 DECL_ALIGN (decl) = MAX (GET_MODE_ALIGNMENT (xmode),
467 DECL_ALIGN (decl));
468 DECL_MODE (decl) = xmode;
469 DECL_BIT_FIELD (decl) = 0;
473 /* Turn off DECL_BIT_FIELD if we won't need it set. */
474 if (TYPE_MODE (type) == BLKmode && DECL_MODE (decl) == BLKmode
475 && known_align >= TYPE_ALIGN (type)
476 && DECL_ALIGN (decl) >= TYPE_ALIGN (type))
477 DECL_BIT_FIELD (decl) = 0;
479 else if (DECL_PACKED (decl) && DECL_USER_ALIGN (decl))
480 /* Don't touch DECL_ALIGN. For other packed fields, go ahead and
481 round up; we'll reduce it again below. We want packing to
482 supersede USER_ALIGN inherited from the type, but defer to
483 alignment explicitly specified on the field decl. */;
484 else
485 do_type_align (type, decl);
487 /* If the field is of variable size, we can't misalign it since we
488 have no way to make a temporary to align the result. But this
489 isn't an issue if the decl is not addressable. Likewise if it
490 is of unknown size.
492 Note that do_type_align may set DECL_USER_ALIGN, so we need to
493 check old_user_align instead. */
494 if (DECL_PACKED (decl)
495 && !old_user_align
496 && (DECL_NONADDRESSABLE_P (decl)
497 || DECL_SIZE_UNIT (decl) == 0
498 || TREE_CODE (DECL_SIZE_UNIT (decl)) == INTEGER_CST))
499 DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), BITS_PER_UNIT);
501 if (! DECL_USER_ALIGN (decl) && ! DECL_PACKED (decl))
503 /* Some targets (i.e. i386, VMS) limit struct field alignment
504 to a lower boundary than alignment of variables unless
505 it was overridden by attribute aligned. */
506 #ifdef BIGGEST_FIELD_ALIGNMENT
507 DECL_ALIGN (decl)
508 = MIN (DECL_ALIGN (decl), (unsigned) BIGGEST_FIELD_ALIGNMENT);
509 #endif
510 #ifdef ADJUST_FIELD_ALIGN
511 DECL_ALIGN (decl) = ADJUST_FIELD_ALIGN (decl, DECL_ALIGN (decl));
512 #endif
515 /* Should this be controlled by DECL_USER_ALIGN, too? */
516 if (maximum_field_alignment != 0)
517 DECL_ALIGN (decl) = MIN (DECL_ALIGN (decl), maximum_field_alignment);
520 /* Evaluate nonconstant size only once, either now or as soon as safe. */
521 if (DECL_SIZE (decl) != 0 && TREE_CODE (DECL_SIZE (decl)) != INTEGER_CST)
522 DECL_SIZE (decl) = variable_size (DECL_SIZE (decl));
523 if (DECL_SIZE_UNIT (decl) != 0
524 && TREE_CODE (DECL_SIZE_UNIT (decl)) != INTEGER_CST)
525 DECL_SIZE_UNIT (decl) = variable_size (DECL_SIZE_UNIT (decl));
527 /* If requested, warn about definitions of large data objects. */
528 if (warn_larger_than
529 && (code == VAR_DECL || code == PARM_DECL)
530 && ! DECL_EXTERNAL (decl))
532 tree size = DECL_SIZE_UNIT (decl);
534 if (size != 0 && TREE_CODE (size) == INTEGER_CST
535 && compare_tree_int (size, larger_than_size) > 0)
537 int size_as_int = TREE_INT_CST_LOW (size);
539 if (compare_tree_int (size, size_as_int) == 0)
540 warning ("%Jsize of '%D' is %d bytes", decl, decl, size_as_int);
541 else
542 warning ("%Jsize of '%D' is larger than %d bytes",
543 decl, decl, larger_than_size);
547 /* If the RTL was already set, update its mode and mem attributes. */
548 if (rtl)
550 PUT_MODE (rtl, DECL_MODE (decl));
551 SET_DECL_RTL (decl, 0);
552 set_mem_attributes (rtl, decl, 1);
553 SET_DECL_RTL (decl, rtl);
557 /* Hook for a front-end function that can modify the record layout as needed
558 immediately before it is finalized. */
560 void (*lang_adjust_rli) (record_layout_info) = 0;
562 void
563 set_lang_adjust_rli (void (*f) (record_layout_info))
565 lang_adjust_rli = f;
568 /* Begin laying out type T, which may be a RECORD_TYPE, UNION_TYPE, or
569 QUAL_UNION_TYPE. Return a pointer to a struct record_layout_info which
570 is to be passed to all other layout functions for this record. It is the
571 responsibility of the caller to call `free' for the storage returned.
572 Note that garbage collection is not permitted until we finish laying
573 out the record. */
575 record_layout_info
576 start_record_layout (tree t)
578 record_layout_info rli = xmalloc (sizeof (struct record_layout_info_s));
580 rli->t = t;
582 /* If the type has a minimum specified alignment (via an attribute
583 declaration, for example) use it -- otherwise, start with a
584 one-byte alignment. */
585 rli->record_align = MAX (BITS_PER_UNIT, TYPE_ALIGN (t));
586 rli->unpacked_align = rli->record_align;
587 rli->offset_align = MAX (rli->record_align, BIGGEST_ALIGNMENT);
589 #ifdef STRUCTURE_SIZE_BOUNDARY
590 /* Packed structures don't need to have minimum size. */
591 if (! TYPE_PACKED (t))
592 rli->record_align = MAX (rli->record_align, (unsigned) STRUCTURE_SIZE_BOUNDARY);
593 #endif
595 rli->offset = size_zero_node;
596 rli->bitpos = bitsize_zero_node;
597 rli->prev_field = 0;
598 rli->pending_statics = 0;
599 rli->packed_maybe_necessary = 0;
601 return rli;
604 /* These four routines perform computations that convert between
605 the offset/bitpos forms and byte and bit offsets. */
607 tree
608 bit_from_pos (tree offset, tree bitpos)
610 return size_binop (PLUS_EXPR, bitpos,
611 size_binop (MULT_EXPR, convert (bitsizetype, offset),
612 bitsize_unit_node));
615 tree
616 byte_from_pos (tree offset, tree bitpos)
618 return size_binop (PLUS_EXPR, offset,
619 convert (sizetype,
620 size_binop (TRUNC_DIV_EXPR, bitpos,
621 bitsize_unit_node)));
624 void
625 pos_from_bit (tree *poffset, tree *pbitpos, unsigned int off_align,
626 tree pos)
628 *poffset = size_binop (MULT_EXPR,
629 convert (sizetype,
630 size_binop (FLOOR_DIV_EXPR, pos,
631 bitsize_int (off_align))),
632 size_int (off_align / BITS_PER_UNIT));
633 *pbitpos = size_binop (FLOOR_MOD_EXPR, pos, bitsize_int (off_align));
636 /* Given a pointer to bit and byte offsets and an offset alignment,
637 normalize the offsets so they are within the alignment. */
639 void
640 normalize_offset (tree *poffset, tree *pbitpos, unsigned int off_align)
642 /* If the bit position is now larger than it should be, adjust it
643 downwards. */
644 if (compare_tree_int (*pbitpos, off_align) >= 0)
646 tree extra_aligns = size_binop (FLOOR_DIV_EXPR, *pbitpos,
647 bitsize_int (off_align));
649 *poffset
650 = size_binop (PLUS_EXPR, *poffset,
651 size_binop (MULT_EXPR, convert (sizetype, extra_aligns),
652 size_int (off_align / BITS_PER_UNIT)));
654 *pbitpos
655 = size_binop (FLOOR_MOD_EXPR, *pbitpos, bitsize_int (off_align));
659 /* Print debugging information about the information in RLI. */
661 void
662 debug_rli (record_layout_info rli)
664 print_node_brief (stderr, "type", rli->t, 0);
665 print_node_brief (stderr, "\noffset", rli->offset, 0);
666 print_node_brief (stderr, " bitpos", rli->bitpos, 0);
668 fprintf (stderr, "\naligns: rec = %u, unpack = %u, off = %u\n",
669 rli->record_align, rli->unpacked_align,
670 rli->offset_align);
671 if (rli->packed_maybe_necessary)
672 fprintf (stderr, "packed may be necessary\n");
674 if (rli->pending_statics)
676 fprintf (stderr, "pending statics:\n");
677 debug_tree (rli->pending_statics);
681 /* Given an RLI with a possibly-incremented BITPOS, adjust OFFSET and
682 BITPOS if necessary to keep BITPOS below OFFSET_ALIGN. */
684 void
685 normalize_rli (record_layout_info rli)
687 normalize_offset (&rli->offset, &rli->bitpos, rli->offset_align);
690 /* Returns the size in bytes allocated so far. */
692 tree
693 rli_size_unit_so_far (record_layout_info rli)
695 return byte_from_pos (rli->offset, rli->bitpos);
698 /* Returns the size in bits allocated so far. */
700 tree
701 rli_size_so_far (record_layout_info rli)
703 return bit_from_pos (rli->offset, rli->bitpos);
706 /* FIELD is about to be added to RLI->T. The alignment (in bits) of
707 the next available location is given by KNOWN_ALIGN. Update the
708 variable alignment fields in RLI, and return the alignment to give
709 the FIELD. */
711 unsigned int
712 update_alignment_for_field (record_layout_info rli, tree field,
713 unsigned int known_align)
715 /* The alignment required for FIELD. */
716 unsigned int desired_align;
717 /* The type of this field. */
718 tree type = TREE_TYPE (field);
719 /* True if the field was explicitly aligned by the user. */
720 bool user_align;
721 bool is_bitfield;
723 /* Lay out the field so we know what alignment it needs. */
724 layout_decl (field, known_align);
725 desired_align = DECL_ALIGN (field);
726 user_align = DECL_USER_ALIGN (field);
728 is_bitfield = (type != error_mark_node
729 && DECL_BIT_FIELD_TYPE (field)
730 && ! integer_zerop (TYPE_SIZE (type)));
732 /* Record must have at least as much alignment as any field.
733 Otherwise, the alignment of the field within the record is
734 meaningless. */
735 if (is_bitfield && targetm.ms_bitfield_layout_p (rli->t))
737 /* Here, the alignment of the underlying type of a bitfield can
738 affect the alignment of a record; even a zero-sized field
739 can do this. The alignment should be to the alignment of
740 the type, except that for zero-size bitfields this only
741 applies if there was an immediately prior, nonzero-size
742 bitfield. (That's the way it is, experimentally.) */
743 if (! integer_zerop (DECL_SIZE (field))
744 ? ! DECL_PACKED (field)
745 : (rli->prev_field
746 && DECL_BIT_FIELD_TYPE (rli->prev_field)
747 && ! integer_zerop (DECL_SIZE (rli->prev_field))))
749 unsigned int type_align = TYPE_ALIGN (type);
750 type_align = MAX (type_align, desired_align);
751 if (maximum_field_alignment != 0)
752 type_align = MIN (type_align, maximum_field_alignment);
753 rli->record_align = MAX (rli->record_align, type_align);
754 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
757 #ifdef PCC_BITFIELD_TYPE_MATTERS
758 else if (is_bitfield && PCC_BITFIELD_TYPE_MATTERS)
760 /* Named bit-fields cause the entire structure to have the
761 alignment implied by their type. Some targets also apply the same
762 rules to unnamed bitfields. */
763 if (DECL_NAME (field) != 0
764 || targetm.align_anon_bitfield ())
766 unsigned int type_align = TYPE_ALIGN (type);
768 #ifdef ADJUST_FIELD_ALIGN
769 if (! TYPE_USER_ALIGN (type))
770 type_align = ADJUST_FIELD_ALIGN (field, type_align);
771 #endif
773 if (maximum_field_alignment != 0)
774 type_align = MIN (type_align, maximum_field_alignment);
775 else if (DECL_PACKED (field))
776 type_align = MIN (type_align, BITS_PER_UNIT);
778 /* The alignment of the record is increased to the maximum
779 of the current alignment, the alignment indicated on the
780 field (i.e., the alignment specified by an __aligned__
781 attribute), and the alignment indicated by the type of
782 the field. */
783 rli->record_align = MAX (rli->record_align, desired_align);
784 rli->record_align = MAX (rli->record_align, type_align);
786 if (warn_packed)
787 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
788 user_align |= TYPE_USER_ALIGN (type);
791 #endif
792 else
794 rli->record_align = MAX (rli->record_align, desired_align);
795 rli->unpacked_align = MAX (rli->unpacked_align, TYPE_ALIGN (type));
798 TYPE_USER_ALIGN (rli->t) |= user_align;
800 return desired_align;
803 /* Called from place_field to handle unions. */
805 static void
806 place_union_field (record_layout_info rli, tree field)
808 update_alignment_for_field (rli, field, /*known_align=*/0);
810 DECL_FIELD_OFFSET (field) = size_zero_node;
811 DECL_FIELD_BIT_OFFSET (field) = bitsize_zero_node;
812 SET_DECL_OFFSET_ALIGN (field, BIGGEST_ALIGNMENT);
814 /* We assume the union's size will be a multiple of a byte so we don't
815 bother with BITPOS. */
816 if (TREE_CODE (rli->t) == UNION_TYPE)
817 rli->offset = size_binop (MAX_EXPR, rli->offset, DECL_SIZE_UNIT (field));
818 else if (TREE_CODE (rli->t) == QUAL_UNION_TYPE)
819 rli->offset = fold (build (COND_EXPR, sizetype,
820 DECL_QUALIFIER (field),
821 DECL_SIZE_UNIT (field), rli->offset));
824 #if defined (PCC_BITFIELD_TYPE_MATTERS) || defined (BITFIELD_NBYTES_LIMITED)
825 /* A bitfield of SIZE with a required access alignment of ALIGN is allocated
826 at BYTE_OFFSET / BIT_OFFSET. Return nonzero if the field would span more
827 units of alignment than the underlying TYPE. */
828 static int
829 excess_unit_span (HOST_WIDE_INT byte_offset, HOST_WIDE_INT bit_offset,
830 HOST_WIDE_INT size, HOST_WIDE_INT align, tree type)
832 /* Note that the calculation of OFFSET might overflow; we calculate it so
833 that we still get the right result as long as ALIGN is a power of two. */
834 unsigned HOST_WIDE_INT offset = byte_offset * BITS_PER_UNIT + bit_offset;
836 offset = offset % align;
837 return ((offset + size + align - 1) / align
838 > ((unsigned HOST_WIDE_INT) tree_low_cst (TYPE_SIZE (type), 1)
839 / align));
841 #endif
843 /* RLI contains information about the layout of a RECORD_TYPE. FIELD
844 is a FIELD_DECL to be added after those fields already present in
845 T. (FIELD is not actually added to the TYPE_FIELDS list here;
846 callers that desire that behavior must manually perform that step.) */
848 void
849 place_field (record_layout_info rli, tree field)
851 /* The alignment required for FIELD. */
852 unsigned int desired_align;
853 /* The alignment FIELD would have if we just dropped it into the
854 record as it presently stands. */
855 unsigned int known_align;
856 unsigned int actual_align;
857 /* The type of this field. */
858 tree type = TREE_TYPE (field);
860 if (TREE_CODE (field) == ERROR_MARK || TREE_CODE (type) == ERROR_MARK)
861 return;
863 /* If FIELD is static, then treat it like a separate variable, not
864 really like a structure field. If it is a FUNCTION_DECL, it's a
865 method. In both cases, all we do is lay out the decl, and we do
866 it *after* the record is laid out. */
867 if (TREE_CODE (field) == VAR_DECL)
869 rli->pending_statics = tree_cons (NULL_TREE, field,
870 rli->pending_statics);
871 return;
874 /* Enumerators and enum types which are local to this class need not
875 be laid out. Likewise for initialized constant fields. */
876 else if (TREE_CODE (field) != FIELD_DECL)
877 return;
879 /* Unions are laid out very differently than records, so split
880 that code off to another function. */
881 else if (TREE_CODE (rli->t) != RECORD_TYPE)
883 place_union_field (rli, field);
884 return;
887 /* Work out the known alignment so far. Note that A & (-A) is the
888 value of the least-significant bit in A that is one. */
889 if (! integer_zerop (rli->bitpos))
890 known_align = (tree_low_cst (rli->bitpos, 1)
891 & - tree_low_cst (rli->bitpos, 1));
892 else if (integer_zerop (rli->offset))
893 known_align = BIGGEST_ALIGNMENT;
894 else if (host_integerp (rli->offset, 1))
895 known_align = (BITS_PER_UNIT
896 * (tree_low_cst (rli->offset, 1)
897 & - tree_low_cst (rli->offset, 1)));
898 else
899 known_align = rli->offset_align;
901 desired_align = update_alignment_for_field (rli, field, known_align);
903 if (warn_packed && DECL_PACKED (field))
905 if (known_align >= TYPE_ALIGN (type))
907 if (TYPE_ALIGN (type) > desired_align)
909 if (STRICT_ALIGNMENT)
910 warning ("%Jpacked attribute causes inefficient alignment "
911 "for '%D'", field, field);
912 else
913 warning ("%Jpacked attribute is unnecessary for '%D'",
914 field, field);
917 else
918 rli->packed_maybe_necessary = 1;
921 /* Does this field automatically have alignment it needs by virtue
922 of the fields that precede it and the record's own alignment? */
923 if (known_align < desired_align)
925 /* No, we need to skip space before this field.
926 Bump the cumulative size to multiple of field alignment. */
928 if (warn_padded)
929 warning ("%Jpadding struct to align '%D'", field, field);
931 /* If the alignment is still within offset_align, just align
932 the bit position. */
933 if (desired_align < rli->offset_align)
934 rli->bitpos = round_up (rli->bitpos, desired_align);
935 else
937 /* First adjust OFFSET by the partial bits, then align. */
938 rli->offset
939 = size_binop (PLUS_EXPR, rli->offset,
940 convert (sizetype,
941 size_binop (CEIL_DIV_EXPR, rli->bitpos,
942 bitsize_unit_node)));
943 rli->bitpos = bitsize_zero_node;
945 rli->offset = round_up (rli->offset, desired_align / BITS_PER_UNIT);
948 if (! TREE_CONSTANT (rli->offset))
949 rli->offset_align = desired_align;
953 /* Handle compatibility with PCC. Note that if the record has any
954 variable-sized fields, we need not worry about compatibility. */
955 #ifdef PCC_BITFIELD_TYPE_MATTERS
956 if (PCC_BITFIELD_TYPE_MATTERS
957 && ! targetm.ms_bitfield_layout_p (rli->t)
958 && TREE_CODE (field) == FIELD_DECL
959 && type != error_mark_node
960 && DECL_BIT_FIELD (field)
961 && ! DECL_PACKED (field)
962 && maximum_field_alignment == 0
963 && ! integer_zerop (DECL_SIZE (field))
964 && host_integerp (DECL_SIZE (field), 1)
965 && host_integerp (rli->offset, 1)
966 && host_integerp (TYPE_SIZE (type), 1))
968 unsigned int type_align = TYPE_ALIGN (type);
969 tree dsize = DECL_SIZE (field);
970 HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
971 HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
972 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
974 #ifdef ADJUST_FIELD_ALIGN
975 if (! TYPE_USER_ALIGN (type))
976 type_align = ADJUST_FIELD_ALIGN (field, type_align);
977 #endif
979 /* A bit field may not span more units of alignment of its type
980 than its type itself. Advance to next boundary if necessary. */
981 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
982 rli->bitpos = round_up (rli->bitpos, type_align);
984 TYPE_USER_ALIGN (rli->t) |= TYPE_USER_ALIGN (type);
986 #endif
988 #ifdef BITFIELD_NBYTES_LIMITED
989 if (BITFIELD_NBYTES_LIMITED
990 && ! targetm.ms_bitfield_layout_p (rli->t)
991 && TREE_CODE (field) == FIELD_DECL
992 && type != error_mark_node
993 && DECL_BIT_FIELD_TYPE (field)
994 && ! DECL_PACKED (field)
995 && ! integer_zerop (DECL_SIZE (field))
996 && host_integerp (DECL_SIZE (field), 1)
997 && host_integerp (rli->offset, 1)
998 && host_integerp (TYPE_SIZE (type), 1))
1000 unsigned int type_align = TYPE_ALIGN (type);
1001 tree dsize = DECL_SIZE (field);
1002 HOST_WIDE_INT field_size = tree_low_cst (dsize, 1);
1003 HOST_WIDE_INT offset = tree_low_cst (rli->offset, 0);
1004 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
1006 #ifdef ADJUST_FIELD_ALIGN
1007 if (! TYPE_USER_ALIGN (type))
1008 type_align = ADJUST_FIELD_ALIGN (field, type_align);
1009 #endif
1011 if (maximum_field_alignment != 0)
1012 type_align = MIN (type_align, maximum_field_alignment);
1013 /* ??? This test is opposite the test in the containing if
1014 statement, so this code is unreachable currently. */
1015 else if (DECL_PACKED (field))
1016 type_align = MIN (type_align, BITS_PER_UNIT);
1018 /* A bit field may not span the unit of alignment of its type.
1019 Advance to next boundary if necessary. */
1020 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
1021 rli->bitpos = round_up (rli->bitpos, type_align);
1023 TYPE_USER_ALIGN (rli->t) |= TYPE_USER_ALIGN (type);
1025 #endif
1027 /* See the docs for TARGET_MS_BITFIELD_LAYOUT_P for details.
1028 A subtlety:
1029 When a bit field is inserted into a packed record, the whole
1030 size of the underlying type is used by one or more same-size
1031 adjacent bitfields. (That is, if its long:3, 32 bits is
1032 used in the record, and any additional adjacent long bitfields are
1033 packed into the same chunk of 32 bits. However, if the size
1034 changes, a new field of that size is allocated.) In an unpacked
1035 record, this is the same as using alignment, but not equivalent
1036 when packing.
1038 Note: for compatibility, we use the type size, not the type alignment
1039 to determine alignment, since that matches the documentation */
1041 if (targetm.ms_bitfield_layout_p (rli->t)
1042 && ((DECL_BIT_FIELD_TYPE (field) && ! DECL_PACKED (field))
1043 || (rli->prev_field && ! DECL_PACKED (rli->prev_field))))
1045 /* At this point, either the prior or current are bitfields,
1046 (possibly both), and we're dealing with MS packing. */
1047 tree prev_saved = rli->prev_field;
1049 /* Is the prior field a bitfield? If so, handle "runs" of same
1050 type size fields. */
1051 if (rli->prev_field /* necessarily a bitfield if it exists. */)
1053 /* If both are bitfields, nonzero, and the same size, this is
1054 the middle of a run. Zero declared size fields are special
1055 and handled as "end of run". (Note: it's nonzero declared
1056 size, but equal type sizes!) (Since we know that both
1057 the current and previous fields are bitfields by the
1058 time we check it, DECL_SIZE must be present for both.) */
1059 if (DECL_BIT_FIELD_TYPE (field)
1060 && !integer_zerop (DECL_SIZE (field))
1061 && !integer_zerop (DECL_SIZE (rli->prev_field))
1062 && host_integerp (DECL_SIZE (rli->prev_field), 0)
1063 && host_integerp (TYPE_SIZE (type), 0)
1064 && simple_cst_equal (TYPE_SIZE (type),
1065 TYPE_SIZE (TREE_TYPE (rli->prev_field))))
1067 /* We're in the middle of a run of equal type size fields; make
1068 sure we realign if we run out of bits. (Not decl size,
1069 type size!) */
1070 HOST_WIDE_INT bitsize = tree_low_cst (DECL_SIZE (field), 0);
1072 if (rli->remaining_in_alignment < bitsize)
1074 /* out of bits; bump up to next 'word'. */
1075 rli->offset = DECL_FIELD_OFFSET (rli->prev_field);
1076 rli->bitpos
1077 = size_binop (PLUS_EXPR, TYPE_SIZE (type),
1078 DECL_FIELD_BIT_OFFSET (rli->prev_field));
1079 rli->prev_field = field;
1080 rli->remaining_in_alignment
1081 = tree_low_cst (TYPE_SIZE (type), 0);
1084 rli->remaining_in_alignment -= bitsize;
1086 else
1088 /* End of a run: if leaving a run of bitfields of the same type
1089 size, we have to "use up" the rest of the bits of the type
1090 size.
1092 Compute the new position as the sum of the size for the prior
1093 type and where we first started working on that type.
1094 Note: since the beginning of the field was aligned then
1095 of course the end will be too. No round needed. */
1097 if (!integer_zerop (DECL_SIZE (rli->prev_field)))
1099 tree type_size = TYPE_SIZE (TREE_TYPE (rli->prev_field));
1101 rli->bitpos
1102 = size_binop (PLUS_EXPR, type_size,
1103 DECL_FIELD_BIT_OFFSET (rli->prev_field));
1105 else
1106 /* We "use up" size zero fields; the code below should behave
1107 as if the prior field was not a bitfield. */
1108 prev_saved = NULL;
1110 /* Cause a new bitfield to be captured, either this time (if
1111 currently a bitfield) or next time we see one. */
1112 if (!DECL_BIT_FIELD_TYPE(field)
1113 || integer_zerop (DECL_SIZE (field)))
1114 rli->prev_field = NULL;
1117 normalize_rli (rli);
1120 /* If we're starting a new run of same size type bitfields
1121 (or a run of non-bitfields), set up the "first of the run"
1122 fields.
1124 That is, if the current field is not a bitfield, or if there
1125 was a prior bitfield the type sizes differ, or if there wasn't
1126 a prior bitfield the size of the current field is nonzero.
1128 Note: we must be sure to test ONLY the type size if there was
1129 a prior bitfield and ONLY for the current field being zero if
1130 there wasn't. */
1132 if (!DECL_BIT_FIELD_TYPE (field)
1133 || ( prev_saved != NULL
1134 ? !simple_cst_equal (TYPE_SIZE (type),
1135 TYPE_SIZE (TREE_TYPE (prev_saved)))
1136 : !integer_zerop (DECL_SIZE (field)) ))
1138 /* Never smaller than a byte for compatibility. */
1139 unsigned int type_align = BITS_PER_UNIT;
1141 /* (When not a bitfield), we could be seeing a flex array (with
1142 no DECL_SIZE). Since we won't be using remaining_in_alignment
1143 until we see a bitfield (and come by here again) we just skip
1144 calculating it. */
1145 if (DECL_SIZE (field) != NULL
1146 && host_integerp (TYPE_SIZE (TREE_TYPE (field)), 0)
1147 && host_integerp (DECL_SIZE (field), 0))
1148 rli->remaining_in_alignment
1149 = tree_low_cst (TYPE_SIZE (TREE_TYPE(field)), 0)
1150 - tree_low_cst (DECL_SIZE (field), 0);
1152 /* Now align (conventionally) for the new type. */
1153 if (!DECL_PACKED(field))
1154 type_align = MAX(TYPE_ALIGN (type), type_align);
1156 if (prev_saved
1157 && DECL_BIT_FIELD_TYPE (prev_saved)
1158 /* If the previous bit-field is zero-sized, we've already
1159 accounted for its alignment needs (or ignored it, if
1160 appropriate) while placing it. */
1161 && ! integer_zerop (DECL_SIZE (prev_saved)))
1162 type_align = MAX (type_align,
1163 TYPE_ALIGN (TREE_TYPE (prev_saved)));
1165 if (maximum_field_alignment != 0)
1166 type_align = MIN (type_align, maximum_field_alignment);
1168 rli->bitpos = round_up (rli->bitpos, type_align);
1170 /* If we really aligned, don't allow subsequent bitfields
1171 to undo that. */
1172 rli->prev_field = NULL;
1176 /* Offset so far becomes the position of this field after normalizing. */
1177 normalize_rli (rli);
1178 DECL_FIELD_OFFSET (field) = rli->offset;
1179 DECL_FIELD_BIT_OFFSET (field) = rli->bitpos;
1180 SET_DECL_OFFSET_ALIGN (field, rli->offset_align);
1182 /* If this field ended up more aligned than we thought it would be (we
1183 approximate this by seeing if its position changed), lay out the field
1184 again; perhaps we can use an integral mode for it now. */
1185 if (! integer_zerop (DECL_FIELD_BIT_OFFSET (field)))
1186 actual_align = (tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1)
1187 & - tree_low_cst (DECL_FIELD_BIT_OFFSET (field), 1));
1188 else if (integer_zerop (DECL_FIELD_OFFSET (field)))
1189 actual_align = BIGGEST_ALIGNMENT;
1190 else if (host_integerp (DECL_FIELD_OFFSET (field), 1))
1191 actual_align = (BITS_PER_UNIT
1192 * (tree_low_cst (DECL_FIELD_OFFSET (field), 1)
1193 & - tree_low_cst (DECL_FIELD_OFFSET (field), 1)));
1194 else
1195 actual_align = DECL_OFFSET_ALIGN (field);
1197 if (known_align != actual_align)
1198 layout_decl (field, actual_align);
1200 /* Only the MS bitfields use this. */
1201 if (rli->prev_field == NULL && DECL_BIT_FIELD_TYPE(field))
1202 rli->prev_field = field;
1204 /* Now add size of this field to the size of the record. If the size is
1205 not constant, treat the field as being a multiple of bytes and just
1206 adjust the offset, resetting the bit position. Otherwise, apportion the
1207 size amongst the bit position and offset. First handle the case of an
1208 unspecified size, which can happen when we have an invalid nested struct
1209 definition, such as struct j { struct j { int i; } }. The error message
1210 is printed in finish_struct. */
1211 if (DECL_SIZE (field) == 0)
1212 /* Do nothing. */;
1213 else if (TREE_CODE (DECL_SIZE_UNIT (field)) != INTEGER_CST
1214 || TREE_CONSTANT_OVERFLOW (DECL_SIZE_UNIT (field)))
1216 rli->offset
1217 = size_binop (PLUS_EXPR, rli->offset,
1218 convert (sizetype,
1219 size_binop (CEIL_DIV_EXPR, rli->bitpos,
1220 bitsize_unit_node)));
1221 rli->offset
1222 = size_binop (PLUS_EXPR, rli->offset, DECL_SIZE_UNIT (field));
1223 rli->bitpos = bitsize_zero_node;
1224 rli->offset_align = MIN (rli->offset_align, desired_align);
1226 else
1228 rli->bitpos = size_binop (PLUS_EXPR, rli->bitpos, DECL_SIZE (field));
1229 normalize_rli (rli);
1233 /* Assuming that all the fields have been laid out, this function uses
1234 RLI to compute the final TYPE_SIZE, TYPE_ALIGN, etc. for the type
1235 indicated by RLI. */
1237 static void
1238 finalize_record_size (record_layout_info rli)
1240 tree unpadded_size, unpadded_size_unit;
1242 /* Now we want just byte and bit offsets, so set the offset alignment
1243 to be a byte and then normalize. */
1244 rli->offset_align = BITS_PER_UNIT;
1245 normalize_rli (rli);
1247 /* Determine the desired alignment. */
1248 #ifdef ROUND_TYPE_ALIGN
1249 TYPE_ALIGN (rli->t) = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t),
1250 rli->record_align);
1251 #else
1252 TYPE_ALIGN (rli->t) = MAX (TYPE_ALIGN (rli->t), rli->record_align);
1253 #endif
1255 /* Compute the size so far. Be sure to allow for extra bits in the
1256 size in bytes. We have guaranteed above that it will be no more
1257 than a single byte. */
1258 unpadded_size = rli_size_so_far (rli);
1259 unpadded_size_unit = rli_size_unit_so_far (rli);
1260 if (! integer_zerop (rli->bitpos))
1261 unpadded_size_unit
1262 = size_binop (PLUS_EXPR, unpadded_size_unit, size_one_node);
1264 /* Round the size up to be a multiple of the required alignment. */
1265 TYPE_SIZE (rli->t) = round_up (unpadded_size, TYPE_ALIGN (rli->t));
1266 TYPE_SIZE_UNIT (rli->t) = round_up (unpadded_size_unit,
1267 TYPE_ALIGN (rli->t) / BITS_PER_UNIT);
1269 if (warn_padded && TREE_CONSTANT (unpadded_size)
1270 && simple_cst_equal (unpadded_size, TYPE_SIZE (rli->t)) == 0)
1271 warning ("padding struct size to alignment boundary");
1273 if (warn_packed && TREE_CODE (rli->t) == RECORD_TYPE
1274 && TYPE_PACKED (rli->t) && ! rli->packed_maybe_necessary
1275 && TREE_CONSTANT (unpadded_size))
1277 tree unpacked_size;
1279 #ifdef ROUND_TYPE_ALIGN
1280 rli->unpacked_align
1281 = ROUND_TYPE_ALIGN (rli->t, TYPE_ALIGN (rli->t), rli->unpacked_align);
1282 #else
1283 rli->unpacked_align = MAX (TYPE_ALIGN (rli->t), rli->unpacked_align);
1284 #endif
1286 unpacked_size = round_up (TYPE_SIZE (rli->t), rli->unpacked_align);
1287 if (simple_cst_equal (unpacked_size, TYPE_SIZE (rli->t)))
1289 TYPE_PACKED (rli->t) = 0;
1291 if (TYPE_NAME (rli->t))
1293 const char *name;
1295 if (TREE_CODE (TYPE_NAME (rli->t)) == IDENTIFIER_NODE)
1296 name = IDENTIFIER_POINTER (TYPE_NAME (rli->t));
1297 else
1298 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (rli->t)));
1300 if (STRICT_ALIGNMENT)
1301 warning ("packed attribute causes inefficient alignment for `%s'", name);
1302 else
1303 warning ("packed attribute is unnecessary for `%s'", name);
1305 else
1307 if (STRICT_ALIGNMENT)
1308 warning ("packed attribute causes inefficient alignment");
1309 else
1310 warning ("packed attribute is unnecessary");
1316 /* Compute the TYPE_MODE for the TYPE (which is a RECORD_TYPE). */
1318 void
1319 compute_record_mode (tree type)
1321 tree field;
1322 enum machine_mode mode = VOIDmode;
1324 /* Most RECORD_TYPEs have BLKmode, so we start off assuming that.
1325 However, if possible, we use a mode that fits in a register
1326 instead, in order to allow for better optimization down the
1327 line. */
1328 TYPE_MODE (type) = BLKmode;
1330 if (! host_integerp (TYPE_SIZE (type), 1))
1331 return;
1333 /* A record which has any BLKmode members must itself be
1334 BLKmode; it can't go in a register. Unless the member is
1335 BLKmode only because it isn't aligned. */
1336 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1338 if (TREE_CODE (field) != FIELD_DECL)
1339 continue;
1341 if (TREE_CODE (TREE_TYPE (field)) == ERROR_MARK
1342 || (TYPE_MODE (TREE_TYPE (field)) == BLKmode
1343 && ! TYPE_NO_FORCE_BLK (TREE_TYPE (field))
1344 && !(TYPE_SIZE (TREE_TYPE (field)) != 0
1345 && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))))
1346 || ! host_integerp (bit_position (field), 1)
1347 || DECL_SIZE (field) == 0
1348 || ! host_integerp (DECL_SIZE (field), 1))
1349 return;
1351 /* If this field is the whole struct, remember its mode so
1352 that, say, we can put a double in a class into a DF
1353 register instead of forcing it to live in the stack. */
1354 if (simple_cst_equal (TYPE_SIZE (type), DECL_SIZE (field)))
1355 mode = DECL_MODE (field);
1357 #ifdef MEMBER_TYPE_FORCES_BLK
1358 /* With some targets, eg. c4x, it is sub-optimal
1359 to access an aligned BLKmode structure as a scalar. */
1361 if (MEMBER_TYPE_FORCES_BLK (field, mode))
1362 return;
1363 #endif /* MEMBER_TYPE_FORCES_BLK */
1366 /* If we only have one real field; use its mode. This only applies to
1367 RECORD_TYPE. This does not apply to unions. */
1368 if (TREE_CODE (type) == RECORD_TYPE && mode != VOIDmode)
1369 TYPE_MODE (type) = mode;
1370 else
1371 TYPE_MODE (type) = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1373 /* If structure's known alignment is less than what the scalar
1374 mode would need, and it matters, then stick with BLKmode. */
1375 if (TYPE_MODE (type) != BLKmode
1376 && STRICT_ALIGNMENT
1377 && ! (TYPE_ALIGN (type) >= BIGGEST_ALIGNMENT
1378 || TYPE_ALIGN (type) >= GET_MODE_ALIGNMENT (TYPE_MODE (type))))
1380 /* If this is the only reason this type is BLKmode, then
1381 don't force containing types to be BLKmode. */
1382 TYPE_NO_FORCE_BLK (type) = 1;
1383 TYPE_MODE (type) = BLKmode;
1387 /* Compute TYPE_SIZE and TYPE_ALIGN for TYPE, once it has been laid
1388 out. */
1390 static void
1391 finalize_type_size (tree type)
1393 /* Normally, use the alignment corresponding to the mode chosen.
1394 However, where strict alignment is not required, avoid
1395 over-aligning structures, since most compilers do not do this
1396 alignment. */
1398 if (TYPE_MODE (type) != BLKmode && TYPE_MODE (type) != VOIDmode
1399 && (STRICT_ALIGNMENT
1400 || (TREE_CODE (type) != RECORD_TYPE && TREE_CODE (type) != UNION_TYPE
1401 && TREE_CODE (type) != QUAL_UNION_TYPE
1402 && TREE_CODE (type) != ARRAY_TYPE)))
1404 TYPE_ALIGN (type) = GET_MODE_ALIGNMENT (TYPE_MODE (type));
1405 TYPE_USER_ALIGN (type) = 0;
1408 /* Do machine-dependent extra alignment. */
1409 #ifdef ROUND_TYPE_ALIGN
1410 TYPE_ALIGN (type)
1411 = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (type), BITS_PER_UNIT);
1412 #endif
1414 /* If we failed to find a simple way to calculate the unit size
1415 of the type, find it by division. */
1416 if (TYPE_SIZE_UNIT (type) == 0 && TYPE_SIZE (type) != 0)
1417 /* TYPE_SIZE (type) is computed in bitsizetype. After the division, the
1418 result will fit in sizetype. We will get more efficient code using
1419 sizetype, so we force a conversion. */
1420 TYPE_SIZE_UNIT (type)
1421 = convert (sizetype,
1422 size_binop (FLOOR_DIV_EXPR, TYPE_SIZE (type),
1423 bitsize_unit_node));
1425 if (TYPE_SIZE (type) != 0)
1427 TYPE_SIZE (type) = round_up (TYPE_SIZE (type), TYPE_ALIGN (type));
1428 TYPE_SIZE_UNIT (type)
1429 = round_up (TYPE_SIZE_UNIT (type), TYPE_ALIGN (type) / BITS_PER_UNIT);
1432 /* Evaluate nonconstant sizes only once, either now or as soon as safe. */
1433 if (TYPE_SIZE (type) != 0 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
1434 TYPE_SIZE (type) = variable_size (TYPE_SIZE (type));
1435 if (TYPE_SIZE_UNIT (type) != 0
1436 && TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST)
1437 TYPE_SIZE_UNIT (type) = variable_size (TYPE_SIZE_UNIT (type));
1439 /* Also layout any other variants of the type. */
1440 if (TYPE_NEXT_VARIANT (type)
1441 || type != TYPE_MAIN_VARIANT (type))
1443 tree variant;
1444 /* Record layout info of this variant. */
1445 tree size = TYPE_SIZE (type);
1446 tree size_unit = TYPE_SIZE_UNIT (type);
1447 unsigned int align = TYPE_ALIGN (type);
1448 unsigned int user_align = TYPE_USER_ALIGN (type);
1449 enum machine_mode mode = TYPE_MODE (type);
1451 /* Copy it into all variants. */
1452 for (variant = TYPE_MAIN_VARIANT (type);
1453 variant != 0;
1454 variant = TYPE_NEXT_VARIANT (variant))
1456 TYPE_SIZE (variant) = size;
1457 TYPE_SIZE_UNIT (variant) = size_unit;
1458 TYPE_ALIGN (variant) = align;
1459 TYPE_USER_ALIGN (variant) = user_align;
1460 TYPE_MODE (variant) = mode;
1465 /* Do all of the work required to layout the type indicated by RLI,
1466 once the fields have been laid out. This function will call `free'
1467 for RLI, unless FREE_P is false. Passing a value other than false
1468 for FREE_P is bad practice; this option only exists to support the
1469 G++ 3.2 ABI. */
1471 void
1472 finish_record_layout (record_layout_info rli, int free_p)
1474 /* Compute the final size. */
1475 finalize_record_size (rli);
1477 /* Compute the TYPE_MODE for the record. */
1478 compute_record_mode (rli->t);
1480 /* Perform any last tweaks to the TYPE_SIZE, etc. */
1481 finalize_type_size (rli->t);
1483 /* Lay out any static members. This is done now because their type
1484 may use the record's type. */
1485 while (rli->pending_statics)
1487 layout_decl (TREE_VALUE (rli->pending_statics), 0);
1488 rli->pending_statics = TREE_CHAIN (rli->pending_statics);
1491 /* Clean up. */
1492 if (free_p)
1493 free (rli);
1497 /* Finish processing a builtin RECORD_TYPE type TYPE. It's name is
1498 NAME, its fields are chained in reverse on FIELDS.
1500 If ALIGN_TYPE is non-null, it is given the same alignment as
1501 ALIGN_TYPE. */
1503 void
1504 finish_builtin_struct (tree type, const char *name, tree fields,
1505 tree align_type)
1507 tree tail, next;
1509 for (tail = NULL_TREE; fields; tail = fields, fields = next)
1511 DECL_FIELD_CONTEXT (fields) = type;
1512 next = TREE_CHAIN (fields);
1513 TREE_CHAIN (fields) = tail;
1515 TYPE_FIELDS (type) = tail;
1517 if (align_type)
1519 TYPE_ALIGN (type) = TYPE_ALIGN (align_type);
1520 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (align_type);
1523 layout_type (type);
1524 #if 0 /* not yet, should get fixed properly later */
1525 TYPE_NAME (type) = make_type_decl (get_identifier (name), type);
1526 #else
1527 TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type);
1528 #endif
1529 TYPE_STUB_DECL (type) = TYPE_NAME (type);
1530 layout_decl (TYPE_NAME (type), 0);
1533 /* Calculate the mode, size, and alignment for TYPE.
1534 For an array type, calculate the element separation as well.
1535 Record TYPE on the chain of permanent or temporary types
1536 so that dbxout will find out about it.
1538 TYPE_SIZE of a type is nonzero if the type has been laid out already.
1539 layout_type does nothing on such a type.
1541 If the type is incomplete, its TYPE_SIZE remains zero. */
1543 void
1544 layout_type (tree type)
1546 if (type == 0)
1547 abort ();
1549 if (type == error_mark_node)
1550 return;
1552 /* Do nothing if type has been laid out before. */
1553 if (TYPE_SIZE (type))
1554 return;
1556 switch (TREE_CODE (type))
1558 case LANG_TYPE:
1559 /* This kind of type is the responsibility
1560 of the language-specific code. */
1561 abort ();
1563 case BOOLEAN_TYPE: /* Used for Java, Pascal, and Chill. */
1564 if (TYPE_PRECISION (type) == 0)
1565 TYPE_PRECISION (type) = 1; /* default to one byte/boolean. */
1567 /* ... fall through ... */
1569 case INTEGER_TYPE:
1570 case ENUMERAL_TYPE:
1571 case CHAR_TYPE:
1572 if (TREE_CODE (TYPE_MIN_VALUE (type)) == INTEGER_CST
1573 && tree_int_cst_sgn (TYPE_MIN_VALUE (type)) >= 0)
1574 TYPE_UNSIGNED (type) = 1;
1576 TYPE_MODE (type) = smallest_mode_for_size (TYPE_PRECISION (type),
1577 MODE_INT);
1578 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1579 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1580 break;
1582 case REAL_TYPE:
1583 TYPE_MODE (type) = mode_for_size (TYPE_PRECISION (type), MODE_FLOAT, 0);
1584 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1585 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1586 break;
1588 case COMPLEX_TYPE:
1589 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TREE_TYPE (type));
1590 TYPE_MODE (type)
1591 = mode_for_size (2 * TYPE_PRECISION (TREE_TYPE (type)),
1592 (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE
1593 ? MODE_COMPLEX_FLOAT : MODE_COMPLEX_INT),
1595 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1596 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1597 break;
1599 case VECTOR_TYPE:
1600 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TREE_TYPE (type));
1601 TYPE_SIZE (type) = bitsize_int (GET_MODE_BITSIZE (TYPE_MODE (type)));
1602 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (TYPE_MODE (type)));
1603 break;
1605 case VOID_TYPE:
1606 /* This is an incomplete type and so doesn't have a size. */
1607 TYPE_ALIGN (type) = 1;
1608 TYPE_USER_ALIGN (type) = 0;
1609 TYPE_MODE (type) = VOIDmode;
1610 break;
1612 case OFFSET_TYPE:
1613 TYPE_SIZE (type) = bitsize_int (POINTER_SIZE);
1614 TYPE_SIZE_UNIT (type) = size_int (POINTER_SIZE / BITS_PER_UNIT);
1615 /* A pointer might be MODE_PARTIAL_INT,
1616 but ptrdiff_t must be integral. */
1617 TYPE_MODE (type) = mode_for_size (POINTER_SIZE, MODE_INT, 0);
1618 break;
1620 case FUNCTION_TYPE:
1621 case METHOD_TYPE:
1622 /* It's hard to see what the mode and size of a function ought to
1623 be, but we do know the alignment is FUNCTION_BOUNDARY, so
1624 make it consistent with that. */
1625 TYPE_MODE (type) = mode_for_size (FUNCTION_BOUNDARY, MODE_INT, 0);
1626 TYPE_SIZE (type) = bitsize_int (FUNCTION_BOUNDARY);
1627 TYPE_SIZE_UNIT (type) = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
1628 break;
1630 case POINTER_TYPE:
1631 case REFERENCE_TYPE:
1634 enum machine_mode mode = ((TREE_CODE (type) == REFERENCE_TYPE
1635 && reference_types_internal)
1636 ? Pmode : TYPE_MODE (type));
1638 int nbits = GET_MODE_BITSIZE (mode);
1640 TYPE_SIZE (type) = bitsize_int (nbits);
1641 TYPE_SIZE_UNIT (type) = size_int (GET_MODE_SIZE (mode));
1642 TYPE_UNSIGNED (type) = 1;
1643 TYPE_PRECISION (type) = nbits;
1645 break;
1647 case ARRAY_TYPE:
1649 tree index = TYPE_DOMAIN (type);
1650 tree element = TREE_TYPE (type);
1652 build_pointer_type (element);
1654 /* We need to know both bounds in order to compute the size. */
1655 if (index && TYPE_MAX_VALUE (index) && TYPE_MIN_VALUE (index)
1656 && TYPE_SIZE (element))
1658 tree ub = TYPE_MAX_VALUE (index);
1659 tree lb = TYPE_MIN_VALUE (index);
1660 tree length;
1661 tree element_size;
1663 /* The initial subtraction should happen in the original type so
1664 that (possible) negative values are handled appropriately. */
1665 length = size_binop (PLUS_EXPR, size_one_node,
1666 convert (sizetype,
1667 fold (build (MINUS_EXPR,
1668 TREE_TYPE (lb),
1669 ub, lb))));
1671 /* Special handling for arrays of bits (for Chill). */
1672 element_size = TYPE_SIZE (element);
1673 if (TYPE_PACKED (type) && INTEGRAL_TYPE_P (element)
1674 && (integer_zerop (TYPE_MAX_VALUE (element))
1675 || integer_onep (TYPE_MAX_VALUE (element)))
1676 && host_integerp (TYPE_MIN_VALUE (element), 1))
1678 HOST_WIDE_INT maxvalue
1679 = tree_low_cst (TYPE_MAX_VALUE (element), 1);
1680 HOST_WIDE_INT minvalue
1681 = tree_low_cst (TYPE_MIN_VALUE (element), 1);
1683 if (maxvalue - minvalue == 1
1684 && (maxvalue == 1 || maxvalue == 0))
1685 element_size = integer_one_node;
1688 /* If neither bound is a constant and sizetype is signed, make
1689 sure the size is never negative. We should really do this
1690 if *either* bound is non-constant, but this is the best
1691 compromise between C and Ada. */
1692 if (!TYPE_UNSIGNED (sizetype)
1693 && TREE_CODE (TYPE_MIN_VALUE (index)) != INTEGER_CST
1694 && TREE_CODE (TYPE_MAX_VALUE (index)) != INTEGER_CST)
1695 length = size_binop (MAX_EXPR, length, size_zero_node);
1697 TYPE_SIZE (type) = size_binop (MULT_EXPR, element_size,
1698 convert (bitsizetype, length));
1700 /* If we know the size of the element, calculate the total
1701 size directly, rather than do some division thing below.
1702 This optimization helps Fortran assumed-size arrays
1703 (where the size of the array is determined at runtime)
1704 substantially.
1705 Note that we can't do this in the case where the size of
1706 the elements is one bit since TYPE_SIZE_UNIT cannot be
1707 set correctly in that case. */
1708 if (TYPE_SIZE_UNIT (element) != 0 && ! integer_onep (element_size))
1709 TYPE_SIZE_UNIT (type)
1710 = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (element), length);
1713 /* Now round the alignment and size,
1714 using machine-dependent criteria if any. */
1716 #ifdef ROUND_TYPE_ALIGN
1717 TYPE_ALIGN (type)
1718 = ROUND_TYPE_ALIGN (type, TYPE_ALIGN (element), BITS_PER_UNIT);
1719 #else
1720 TYPE_ALIGN (type) = MAX (TYPE_ALIGN (element), BITS_PER_UNIT);
1721 #endif
1722 TYPE_USER_ALIGN (type) = TYPE_USER_ALIGN (element);
1723 TYPE_MODE (type) = BLKmode;
1724 if (TYPE_SIZE (type) != 0
1725 #ifdef MEMBER_TYPE_FORCES_BLK
1726 && ! MEMBER_TYPE_FORCES_BLK (type, VOIDmode)
1727 #endif
1728 /* BLKmode elements force BLKmode aggregate;
1729 else extract/store fields may lose. */
1730 && (TYPE_MODE (TREE_TYPE (type)) != BLKmode
1731 || TYPE_NO_FORCE_BLK (TREE_TYPE (type))))
1733 /* One-element arrays get the component type's mode. */
1734 if (simple_cst_equal (TYPE_SIZE (type),
1735 TYPE_SIZE (TREE_TYPE (type))))
1736 TYPE_MODE (type) = TYPE_MODE (TREE_TYPE (type));
1737 else
1738 TYPE_MODE (type)
1739 = mode_for_size_tree (TYPE_SIZE (type), MODE_INT, 1);
1741 if (TYPE_MODE (type) != BLKmode
1742 && STRICT_ALIGNMENT && TYPE_ALIGN (type) < BIGGEST_ALIGNMENT
1743 && TYPE_ALIGN (type) < GET_MODE_ALIGNMENT (TYPE_MODE (type))
1744 && TYPE_MODE (type) != BLKmode)
1746 TYPE_NO_FORCE_BLK (type) = 1;
1747 TYPE_MODE (type) = BLKmode;
1750 break;
1753 case RECORD_TYPE:
1754 case UNION_TYPE:
1755 case QUAL_UNION_TYPE:
1757 tree field;
1758 record_layout_info rli;
1760 /* Initialize the layout information. */
1761 rli = start_record_layout (type);
1763 /* If this is a QUAL_UNION_TYPE, we want to process the fields
1764 in the reverse order in building the COND_EXPR that denotes
1765 its size. We reverse them again later. */
1766 if (TREE_CODE (type) == QUAL_UNION_TYPE)
1767 TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1769 /* Place all the fields. */
1770 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1771 place_field (rli, field);
1773 if (TREE_CODE (type) == QUAL_UNION_TYPE)
1774 TYPE_FIELDS (type) = nreverse (TYPE_FIELDS (type));
1776 if (lang_adjust_rli)
1777 (*lang_adjust_rli) (rli);
1779 /* Finish laying out the record. */
1780 finish_record_layout (rli, /*free_p=*/true);
1782 break;
1784 case SET_TYPE: /* Used by Chill and Pascal. */
1785 if (TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST
1786 || TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) != INTEGER_CST)
1787 abort ();
1788 else
1790 #ifndef SET_WORD_SIZE
1791 #define SET_WORD_SIZE BITS_PER_WORD
1792 #endif
1793 unsigned int alignment
1794 = set_alignment ? set_alignment : SET_WORD_SIZE;
1795 HOST_WIDE_INT size_in_bits
1796 = (tree_low_cst (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), 0)
1797 - tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0) + 1);
1798 HOST_WIDE_INT rounded_size
1799 = ((size_in_bits + alignment - 1) / alignment) * alignment;
1801 if (rounded_size > (int) alignment)
1802 TYPE_MODE (type) = BLKmode;
1803 else
1804 TYPE_MODE (type) = mode_for_size (alignment, MODE_INT, 1);
1806 TYPE_SIZE (type) = bitsize_int (rounded_size);
1807 TYPE_SIZE_UNIT (type) = size_int (rounded_size / BITS_PER_UNIT);
1808 TYPE_ALIGN (type) = alignment;
1809 TYPE_USER_ALIGN (type) = 0;
1810 TYPE_PRECISION (type) = size_in_bits;
1812 break;
1814 case FILE_TYPE:
1815 /* The size may vary in different languages, so the language front end
1816 should fill in the size. */
1817 TYPE_ALIGN (type) = BIGGEST_ALIGNMENT;
1818 TYPE_USER_ALIGN (type) = 0;
1819 TYPE_MODE (type) = BLKmode;
1820 break;
1822 default:
1823 abort ();
1826 /* Compute the final TYPE_SIZE, TYPE_ALIGN, etc. for TYPE. For
1827 records and unions, finish_record_layout already called this
1828 function. */
1829 if (TREE_CODE (type) != RECORD_TYPE
1830 && TREE_CODE (type) != UNION_TYPE
1831 && TREE_CODE (type) != QUAL_UNION_TYPE)
1832 finalize_type_size (type);
1834 /* If this type is created before sizetype has been permanently set,
1835 record it so set_sizetype can fix it up. */
1836 if (! sizetype_set)
1837 early_type_list = tree_cons (NULL_TREE, type, early_type_list);
1839 /* If an alias set has been set for this aggregate when it was incomplete,
1840 force it into alias set 0.
1841 This is too conservative, but we cannot call record_component_aliases
1842 here because some frontends still change the aggregates after
1843 layout_type. */
1844 if (AGGREGATE_TYPE_P (type) && TYPE_ALIAS_SET_KNOWN_P (type))
1845 TYPE_ALIAS_SET (type) = 0;
1848 /* Create and return a type for signed integers of PRECISION bits. */
1850 tree
1851 make_signed_type (int precision)
1853 tree type = make_node (INTEGER_TYPE);
1855 TYPE_PRECISION (type) = precision;
1857 fixup_signed_type (type);
1858 return type;
1861 /* Create and return a type for unsigned integers of PRECISION bits. */
1863 tree
1864 make_unsigned_type (int precision)
1866 tree type = make_node (INTEGER_TYPE);
1868 TYPE_PRECISION (type) = precision;
1870 fixup_unsigned_type (type);
1871 return type;
1874 /* Initialize sizetype and bitsizetype to a reasonable and temporary
1875 value to enable integer types to be created. */
1877 void
1878 initialize_sizetypes (void)
1880 tree t = make_node (INTEGER_TYPE);
1882 /* Set this so we do something reasonable for the build_int_2 calls
1883 below. */
1884 integer_type_node = t;
1886 TYPE_MODE (t) = SImode;
1887 TYPE_ALIGN (t) = GET_MODE_ALIGNMENT (SImode);
1888 TYPE_USER_ALIGN (t) = 0;
1889 TYPE_SIZE (t) = build_int_2 (GET_MODE_BITSIZE (SImode), 0);
1890 TYPE_SIZE_UNIT (t) = build_int_2 (GET_MODE_SIZE (SImode), 0);
1891 TYPE_UNSIGNED (t) = 1;
1892 TYPE_PRECISION (t) = GET_MODE_BITSIZE (SImode);
1893 TYPE_MIN_VALUE (t) = build_int_2 (0, 0);
1894 TYPE_IS_SIZETYPE (t) = 1;
1896 /* 1000 avoids problems with possible overflow and is certainly
1897 larger than any size value we'd want to be storing. */
1898 TYPE_MAX_VALUE (t) = build_int_2 (1000, 0);
1900 /* These two must be different nodes because of the caching done in
1901 size_int_wide. */
1902 sizetype = t;
1903 bitsizetype = copy_node (t);
1904 integer_type_node = 0;
1907 /* Set sizetype to TYPE, and initialize *sizetype accordingly.
1908 Also update the type of any standard type's sizes made so far. */
1910 void
1911 set_sizetype (tree type)
1913 int oprecision = TYPE_PRECISION (type);
1914 /* The *bitsizetype types use a precision that avoids overflows when
1915 calculating signed sizes / offsets in bits. However, when
1916 cross-compiling from a 32 bit to a 64 bit host, we are limited to 64 bit
1917 precision. */
1918 int precision = MIN (oprecision + BITS_PER_UNIT_LOG + 1,
1919 2 * HOST_BITS_PER_WIDE_INT);
1920 unsigned int i;
1921 tree t;
1923 if (sizetype_set)
1924 abort ();
1926 /* Make copies of nodes since we'll be setting TYPE_IS_SIZETYPE. */
1927 sizetype = copy_node (type);
1928 TYPE_ORIG_SIZE_TYPE (sizetype) = type;
1929 TYPE_IS_SIZETYPE (sizetype) = 1;
1930 bitsizetype = make_node (INTEGER_TYPE);
1931 TYPE_NAME (bitsizetype) = TYPE_NAME (type);
1932 TYPE_PRECISION (bitsizetype) = precision;
1933 TYPE_IS_SIZETYPE (bitsizetype) = 1;
1935 if (TYPE_UNSIGNED (type))
1936 fixup_unsigned_type (bitsizetype);
1937 else
1938 fixup_signed_type (bitsizetype);
1940 layout_type (bitsizetype);
1942 if (TYPE_UNSIGNED (type))
1944 usizetype = sizetype;
1945 ubitsizetype = bitsizetype;
1946 ssizetype = copy_node (make_signed_type (oprecision));
1947 sbitsizetype = copy_node (make_signed_type (precision));
1949 else
1951 ssizetype = sizetype;
1952 sbitsizetype = bitsizetype;
1953 usizetype = copy_node (make_unsigned_type (oprecision));
1954 ubitsizetype = copy_node (make_unsigned_type (precision));
1957 TYPE_NAME (bitsizetype) = get_identifier ("bit_size_type");
1959 /* Show is a sizetype, is a main type, and has no pointers to it. */
1960 for (i = 0; i < ARRAY_SIZE (sizetype_tab); i++)
1962 TYPE_IS_SIZETYPE (sizetype_tab[i]) = 1;
1963 TYPE_MAIN_VARIANT (sizetype_tab[i]) = sizetype_tab[i];
1964 TYPE_NEXT_VARIANT (sizetype_tab[i]) = 0;
1965 TYPE_POINTER_TO (sizetype_tab[i]) = 0;
1966 TYPE_REFERENCE_TO (sizetype_tab[i]) = 0;
1969 /* Go down each of the types we already made and set the proper type
1970 for the sizes in them. */
1971 for (t = early_type_list; t != 0; t = TREE_CHAIN (t))
1973 if (TREE_CODE (TREE_VALUE (t)) != INTEGER_TYPE
1974 && TREE_CODE (TREE_VALUE (t)) != BOOLEAN_TYPE)
1975 abort ();
1977 TREE_TYPE (TYPE_SIZE (TREE_VALUE (t))) = bitsizetype;
1978 TREE_TYPE (TYPE_SIZE_UNIT (TREE_VALUE (t))) = sizetype;
1981 early_type_list = 0;
1982 sizetype_set = 1;
1985 /* TYPE is an integral type, i.e., an INTEGRAL_TYPE, ENUMERAL_TYPE,
1986 BOOLEAN_TYPE, or CHAR_TYPE. Set TYPE_MIN_VALUE and TYPE_MAX_VALUE
1987 for TYPE, based on the PRECISION and whether or not the TYPE
1988 IS_UNSIGNED. PRECISION need not correspond to a width supported
1989 natively by the hardware; for example, on a machine with 8-bit,
1990 16-bit, and 32-bit register modes, PRECISION might be 7, 23, or
1991 61. */
1993 void
1994 set_min_and_max_values_for_integral_type (tree type,
1995 int precision,
1996 bool is_unsigned)
1998 tree min_value;
1999 tree max_value;
2001 if (is_unsigned)
2003 min_value = build_int_2 (0, 0);
2004 max_value
2005 = build_int_2 (precision - HOST_BITS_PER_WIDE_INT >= 0
2006 ? -1 : ((HOST_WIDE_INT) 1 << precision) - 1,
2007 precision - HOST_BITS_PER_WIDE_INT > 0
2008 ? ((unsigned HOST_WIDE_INT) ~0
2009 >> (HOST_BITS_PER_WIDE_INT
2010 - (precision - HOST_BITS_PER_WIDE_INT)))
2011 : 0);
2013 else
2015 min_value
2016 = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
2017 ? 0 : (HOST_WIDE_INT) (-1) << (precision - 1)),
2018 (((HOST_WIDE_INT) (-1)
2019 << (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
2020 ? precision - HOST_BITS_PER_WIDE_INT - 1
2021 : 0))));
2022 max_value
2023 = build_int_2 ((precision - HOST_BITS_PER_WIDE_INT > 0
2024 ? -1 : ((HOST_WIDE_INT) 1 << (precision - 1)) - 1),
2025 (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
2026 ? (((HOST_WIDE_INT) 1
2027 << (precision - HOST_BITS_PER_WIDE_INT - 1))) - 1
2028 : 0));
2031 TREE_TYPE (min_value) = type;
2032 TREE_TYPE (max_value) = type;
2033 TYPE_MIN_VALUE (type) = min_value;
2034 TYPE_MAX_VALUE (type) = max_value;
2037 /* Set the extreme values of TYPE based on its precision in bits,
2038 then lay it out. Used when make_signed_type won't do
2039 because the tree code is not INTEGER_TYPE.
2040 E.g. for Pascal, when the -fsigned-char option is given. */
2042 void
2043 fixup_signed_type (tree type)
2045 int precision = TYPE_PRECISION (type);
2047 /* We can not represent properly constants greater then
2048 2 * HOST_BITS_PER_WIDE_INT, still we need the types
2049 as they are used by i386 vector extensions and friends. */
2050 if (precision > HOST_BITS_PER_WIDE_INT * 2)
2051 precision = HOST_BITS_PER_WIDE_INT * 2;
2053 set_min_and_max_values_for_integral_type (type, precision,
2054 /*is_unsigned=*/false);
2056 /* Lay out the type: set its alignment, size, etc. */
2057 layout_type (type);
2060 /* Set the extreme values of TYPE based on its precision in bits,
2061 then lay it out. This is used both in `make_unsigned_type'
2062 and for enumeral types. */
2064 void
2065 fixup_unsigned_type (tree type)
2067 int precision = TYPE_PRECISION (type);
2069 /* We can not represent properly constants greater then
2070 2 * HOST_BITS_PER_WIDE_INT, still we need the types
2071 as they are used by i386 vector extensions and friends. */
2072 if (precision > HOST_BITS_PER_WIDE_INT * 2)
2073 precision = HOST_BITS_PER_WIDE_INT * 2;
2075 set_min_and_max_values_for_integral_type (type, precision,
2076 /*is_unsigned=*/true);
2078 /* Lay out the type: set its alignment, size, etc. */
2079 layout_type (type);
2082 /* Find the best machine mode to use when referencing a bit field of length
2083 BITSIZE bits starting at BITPOS.
2085 The underlying object is known to be aligned to a boundary of ALIGN bits.
2086 If LARGEST_MODE is not VOIDmode, it means that we should not use a mode
2087 larger than LARGEST_MODE (usually SImode).
2089 If no mode meets all these conditions, we return VOIDmode. Otherwise, if
2090 VOLATILEP is true or SLOW_BYTE_ACCESS is false, we return the smallest
2091 mode meeting these conditions.
2093 Otherwise (VOLATILEP is false and SLOW_BYTE_ACCESS is true), we return
2094 the largest mode (but a mode no wider than UNITS_PER_WORD) that meets
2095 all the conditions. */
2097 enum machine_mode
2098 get_best_mode (int bitsize, int bitpos, unsigned int align,
2099 enum machine_mode largest_mode, int volatilep)
2101 enum machine_mode mode;
2102 unsigned int unit = 0;
2104 /* Find the narrowest integer mode that contains the bit field. */
2105 for (mode = GET_CLASS_NARROWEST_MODE (MODE_INT); mode != VOIDmode;
2106 mode = GET_MODE_WIDER_MODE (mode))
2108 unit = GET_MODE_BITSIZE (mode);
2109 if ((bitpos % unit) + bitsize <= unit)
2110 break;
2113 if (mode == VOIDmode
2114 /* It is tempting to omit the following line
2115 if STRICT_ALIGNMENT is true.
2116 But that is incorrect, since if the bitfield uses part of 3 bytes
2117 and we use a 4-byte mode, we could get a spurious segv
2118 if the extra 4th byte is past the end of memory.
2119 (Though at least one Unix compiler ignores this problem:
2120 that on the Sequent 386 machine. */
2121 || MIN (unit, BIGGEST_ALIGNMENT) > align
2122 || (largest_mode != VOIDmode && unit > GET_MODE_BITSIZE (largest_mode)))
2123 return VOIDmode;
2125 if (SLOW_BYTE_ACCESS && ! volatilep)
2127 enum machine_mode wide_mode = VOIDmode, tmode;
2129 for (tmode = GET_CLASS_NARROWEST_MODE (MODE_INT); tmode != VOIDmode;
2130 tmode = GET_MODE_WIDER_MODE (tmode))
2132 unit = GET_MODE_BITSIZE (tmode);
2133 if (bitpos / unit == (bitpos + bitsize - 1) / unit
2134 && unit <= BITS_PER_WORD
2135 && unit <= MIN (align, BIGGEST_ALIGNMENT)
2136 && (largest_mode == VOIDmode
2137 || unit <= GET_MODE_BITSIZE (largest_mode)))
2138 wide_mode = tmode;
2141 if (wide_mode != VOIDmode)
2142 return wide_mode;
2145 return mode;
2148 /* Gets minimal and maximal values for MODE (signed or unsigned depending on
2149 SIGN). The returned constants are made to be usable in TARGET_MODE. */
2151 void
2152 get_mode_bounds (enum machine_mode mode, int sign,
2153 enum machine_mode target_mode,
2154 rtx *mmin, rtx *mmax)
2156 unsigned size = GET_MODE_BITSIZE (mode);
2157 unsigned HOST_WIDE_INT min_val, max_val;
2159 if (size > HOST_BITS_PER_WIDE_INT)
2160 abort ();
2162 if (sign)
2164 min_val = -((unsigned HOST_WIDE_INT) 1 << (size - 1));
2165 max_val = ((unsigned HOST_WIDE_INT) 1 << (size - 1)) - 1;
2167 else
2169 min_val = 0;
2170 max_val = ((unsigned HOST_WIDE_INT) 1 << (size - 1) << 1) - 1;
2173 *mmin = GEN_INT (trunc_int_for_mode (min_val, target_mode));
2174 *mmax = GEN_INT (trunc_int_for_mode (max_val, target_mode));
2177 #include "gt-stor-layout.h"