OSDN Git Service

* gcc-interface/decl.c (gnat_to_gnu_entity): Create variables for size
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 8 May 2010 11:31:31 +0000 (11:31 +0000)
committerMasaki Muranaka <monaka@monami-software.com>
Sun, 23 May 2010 05:03:17 +0000 (14:03 +0900)
expressions of variant part of record types declared at library level.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159182 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/gcc-interface/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/specs/lto3.ads

index 6a78278..2a2805a 100644 (file)
@@ -1,5 +1,10 @@
 2010-05-08  Eric Botcazou  <ebotcazou@adacore.com>
 
+       * gcc-interface/decl.c (gnat_to_gnu_entity): Create variables for size
+       expressions of variant part of record types declared at library level.
+
+2010-05-08  Eric Botcazou  <ebotcazou@adacore.com>
+
        * gcc-interface/gigi.h (create_field_decl): Move PACKED parameter.
        * gcc-interface/utils.c (create_field_decl): Move PACKED parameter.
        (rest_of_record_type_compilation): Adjust call to create_field_decl.
index 3050475..b0334f2 100644 (file)
@@ -4516,8 +4516,62 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
 
          if (TREE_CODE (gnu_type) == RECORD_TYPE)
            {
+             tree variant_part = get_variant_part (gnu_type);
              tree ada_size = TYPE_ADA_SIZE (gnu_type);
 
+             if (variant_part)
+               {
+                 tree union_type = TREE_TYPE (variant_part);
+                 tree offset = DECL_FIELD_OFFSET (variant_part);
+
+                 /* If the position of the variant part is constant, subtract
+                    it from the size of the type of the parent to get the new
+                    size.  This manual CSE reduces the data size.  */
+                 if (TREE_CODE (offset) == INTEGER_CST)
+                   {
+                     tree bitpos = DECL_FIELD_BIT_OFFSET (variant_part);
+                     TYPE_SIZE (union_type)
+                       = size_binop (MINUS_EXPR, TYPE_SIZE (gnu_type),
+                                     bit_from_pos (offset, bitpos));
+                     TYPE_SIZE_UNIT (union_type)
+                       = size_binop (MINUS_EXPR, TYPE_SIZE_UNIT (gnu_type),
+                                     byte_from_pos (offset, bitpos));
+                   }
+                 else
+                   {
+                     TYPE_SIZE (union_type)
+                       = elaborate_expression_1 (TYPE_SIZE (union_type),
+                                                 gnat_entity,
+                                                 get_identifier ("VSIZE"),
+                                                 definition, false);
+
+                     /* ??? For now, store the size as a multiple of the
+                        alignment in bytes so that we can see the alignment
+                        from the tree.  */
+                     TYPE_SIZE_UNIT (union_type)
+                       = elaborate_expression_2 (TYPE_SIZE_UNIT (union_type),
+                                                 gnat_entity,
+                                                 get_identifier
+                                                 ("VSIZE_A_UNIT"),
+                                                 definition, false,
+                                                 TYPE_ALIGN (union_type));
+
+                     /* ??? For now, store the offset as a multiple of the
+                        alignment in bytes so that we can see the alignment
+                        from the tree.  */
+                     DECL_FIELD_OFFSET (variant_part)
+                       = elaborate_expression_2 (offset,
+                                                 gnat_entity,
+                                                 get_identifier ("VOFFSET"),
+                                                 definition, false,
+                                                 DECL_OFFSET_ALIGN
+                                                 (variant_part));
+                   }
+
+                 DECL_SIZE (variant_part) = TYPE_SIZE (union_type);
+                 DECL_SIZE_UNIT (variant_part) = TYPE_SIZE_UNIT (union_type);
+               }
+
              if (operand_equal_p (ada_size, size, 0))
                ada_size = TYPE_SIZE (gnu_type);
              else
index 3435fdf..4a18a2b 100644 (file)
@@ -1,3 +1,9 @@
+2010-05-08  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/specs/lto3.ads: New test.
+       * gnat.dg/specs/lto3_pkg1.ad[sb]: New helper.
+       * gnat.dg/specs/lto3_pkg2.ad[sb]: Likewise.
+
 2010-05-08  Quentin Ochem  <ochem@adacore.com>
 
        * gnat.dg/sizetype3.ad[sb]: New test.
index 9576376..815da5f 100644 (file)
@@ -1,6 +1,5 @@
 -- { dg-do compile }
--- { dg-options "-gnatws" }
--- { dg-options "-gnatws -flto" { target lto } }
+-- { dg-options "-gnatws -flto" }
 
 with Lto3_Pkg1;