OSDN Git Service

* trans.h (struct gfc_ss): New field nested_ss.
[pf3gnuchains/gcc-fork.git] / gcc / ada / sem_ch13.adb
index 4085431..d30ba09 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2010, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2011, Free Software Foundation, Inc.         --
 --                                                                          --
 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
 -- terms of the  GNU General Public License as published  by the Free Soft- --
@@ -23,6 +23,7 @@
 --                                                                          --
 ------------------------------------------------------------------------------
 
+with Aspects;  use Aspects;
 with Atree;    use Atree;
 with Checks;   use Checks;
 with Einfo;    use Einfo;
@@ -43,20 +44,23 @@ with Rtsfind;  use Rtsfind;
 with Sem;      use Sem;
 with Sem_Aux;  use Sem_Aux;
 with Sem_Ch3;  use Sem_Ch3;
+with Sem_Ch6;  use Sem_Ch6;
 with Sem_Ch8;  use Sem_Ch8;
 with Sem_Eval; use Sem_Eval;
 with Sem_Res;  use Sem_Res;
 with Sem_Type; use Sem_Type;
 with Sem_Util; use Sem_Util;
 with Sem_Warn; use Sem_Warn;
+with Sinput;   use Sinput;
 with Snames;   use Snames;
 with Stand;    use Stand;
 with Sinfo;    use Sinfo;
-with Table;
+with Stringt;  use Stringt;
 with Targparm; use Targparm;
 with Ttypes;   use Ttypes;
 with Tbuild;   use Tbuild;
 with Urealp;   use Urealp;
+with Warnsw;   use Warnsw;
 
 with GNAT.Heap_Sort_G;
 
@@ -69,11 +73,36 @@ package body Sem_Ch13 is
    -- Local Subprograms --
    -----------------------
 
-   procedure Alignment_Check_For_Esize_Change (Typ : Entity_Id);
-   --  This routine is called after setting the Esize of type entity Typ.
-   --  The purpose is to deal with the situation where an alignment has been
-   --  inherited from a derived type that is no longer appropriate for the
-   --  new Esize value. In this case, we reset the Alignment to unknown.
+   procedure Alignment_Check_For_Size_Change (Typ : Entity_Id; Size : Uint);
+   --  This routine is called after setting one of the sizes of type entity
+   --  Typ to Size. The purpose is to deal with the situation of a derived
+   --  type whose inherited alignment is no longer appropriate for the new
+   --  size value. In this case, we reset the Alignment to unknown.
+
+   procedure Build_Predicate_Function (Typ : Entity_Id; N : Node_Id);
+   --  If Typ has predicates (indicated by Has_Predicates being set for Typ,
+   --  then either there are pragma Invariant entries on the rep chain for the
+   --  type (note that Predicate aspects are converted to pragma Predicate), or
+   --  there are inherited aspects from a parent type, or ancestor subtypes.
+   --  This procedure builds the spec and body for the Predicate function that
+   --  tests these predicates. N is the freeze node for the type. The spec of
+   --  the function is inserted before the freeze node, and the body of the
+   --  function is inserted after the freeze node.
+
+   procedure Build_Static_Predicate
+     (Typ  : Entity_Id;
+      Expr : Node_Id;
+      Nam  : Name_Id);
+   --  Given a predicated type Typ, where Typ is a discrete static subtype,
+   --  whose predicate expression is Expr, tests if Expr is a static predicate,
+   --  and if so, builds the predicate range list. Nam is the name of the one
+   --  argument to the predicate function. Occurrences of the type name in the
+   --  predicate expression have been replaced by identifier references to this
+   --  name, which is unique, so any identifier with Chars matching Nam must be
+   --  a reference to the type. If the predicate is non-static, this procedure
+   --  returns doing nothing. If the predicate is static, then the predicate
+   --  list is stored in Static_Predicate (Typ), and the Expr is rewritten as
+   --  a canonicalized membership operation.
 
    function Get_Alignment_Value (Expr : Node_Id) return Uint;
    --  Given the expression for an alignment value, returns the corresponding
@@ -81,10 +110,10 @@ package body Sem_Ch13 is
    --  posted as required, and a value of No_Uint is returned.
 
    function Is_Operational_Item (N : Node_Id) return Boolean;
-   --  A specification for a stream attribute is allowed before the full
-   --  type is declared, as explained in AI-00137 and the corrigendum.
-   --  Attributes that do not specify a representation characteristic are
-   --  operational attributes.
+   --  A specification for a stream attribute is allowed before the full type
+   --  is declared, as explained in AI-00137 and the corrigendum. Attributes
+   --  that do not specify a representation characteristic are operational
+   --  attributes.
 
    procedure New_Stream_Subprogram
      (N    : Node_Id;
@@ -106,6 +135,17 @@ package body Sem_Ch13 is
    --  renaming_as_body. For tagged types, the specification is one of the
    --  primitive specs.
 
+   generic
+      with procedure Replace_Type_Reference (N : Node_Id);
+   procedure Replace_Type_References_Generic (N : Node_Id; TName : Name_Id);
+   --  This is used to scan an expression for a predicate or invariant aspect
+   --  replacing occurrences of the name TName (the name of the subtype to
+   --  which the aspect applies) with appropriate references to the parameter
+   --  of the predicate function or invariant procedure. The procedure passed
+   --  as a generic parameter does the actual replacement of node N, which is
+   --  either a simple direct reference to TName, or a selected component that
+   --  represents an appropriately qualified occurrence of TName.
+
    procedure Set_Biased
      (E      : Entity_Id;
       N      : Node_Id;
@@ -172,7 +212,7 @@ package body Sem_Ch13 is
       --  The entity of the object being overlaid
 
       Off : Boolean;
-      --  Whether the address is offseted within Y
+      --  Whether the address is offset within Y
    end record;
 
    package Address_Clause_Checks is new Table.Table (
@@ -195,8 +235,8 @@ package body Sem_Ch13 is
       --  Processing depends on version of Ada
 
       --  For Ada 95, we just renumber bits within a storage unit. We do the
-      --  same for Ada 83 mode, since we recognize pragma Bit_Order in Ada 83,
-      --  and are free to add this extension.
+      --  same for Ada 83 mode, since we recognize the Bit_Order attribute in
+      --  Ada 83, and are free to add this extension.
 
       if Ada_Version < Ada_2005 then
          Comp := First_Component_Or_Discriminant (R);
@@ -351,62 +391,69 @@ package body Sem_Ch13 is
                   declare
                      Fbit : constant Uint :=
                               Static_Integer (First_Bit (CC));
+                     Lbit : constant Uint :=
+                              Static_Integer (Last_Bit (CC));
 
                   begin
-                     --  Case of component with size > max machine scalar
+                     --  Case of component with last bit >= max machine scalar
 
-                     if Esize (Comp) > Max_Machine_Scalar_Size then
+                     if Lbit >= Max_Machine_Scalar_Size then
 
-                        --  Must begin on byte boundary
+                        --  This is allowed only if first bit is zero, and
+                        --  last bit + 1 is a multiple of storage unit size.
 
-                        if Fbit mod SSU /= 0 then
-                           Error_Msg_N
-                             ("illegal first bit value for "
-                              & "reverse bit order",
-                              First_Bit (CC));
-                           Error_Msg_Uint_1 := SSU;
-                           Error_Msg_Uint_2 := Max_Machine_Scalar_Size;
+                        if Fbit = 0 and then (Lbit + 1) mod SSU = 0 then
 
-                           Error_Msg_N
-                             ("\must be a multiple of ^ "
-                              & "if size greater than ^",
-                              First_Bit (CC));
+                           --  This is the case to give a warning if enabled
 
-                           --  Must end on byte boundary
+                           if Warn_On_Reverse_Bit_Order then
+                              Error_Msg_N
+                                ("multi-byte field specified with "
+                                 & "  non-standard Bit_Order?", CC);
+
+                              if Bytes_Big_Endian then
+                                 Error_Msg_N
+                                   ("\bytes are not reversed "
+                                    & "(component is big-endian)?", CC);
+                              else
+                                 Error_Msg_N
+                                   ("\bytes are not reversed "
+                                    & "(component is little-endian)?", CC);
+                              end if;
+                           end if;
 
-                        elsif Esize (Comp) mod SSU /= 0 then
-                           Error_Msg_N
-                             ("illegal last bit value for "
-                              & "reverse bit order",
-                              Last_Bit (CC));
-                           Error_Msg_Uint_1 := SSU;
-                           Error_Msg_Uint_2 := Max_Machine_Scalar_Size;
+                        --  Give error message for RM 13.4.1(10) violation
 
-                           Error_Msg_N
-                             ("\must be a multiple of ^ if size "
-                              & "greater than ^",
-                              Last_Bit (CC));
+                        else
+                           Error_Msg_FE
+                             ("machine scalar rules not followed for&",
+                              First_Bit (CC), Comp);
 
-                           --  OK, give warning if enabled
+                           Error_Msg_Uint_1 := Lbit;
+                           Error_Msg_Uint_2 := Max_Machine_Scalar_Size;
+                           Error_Msg_F
+                             ("\last bit (^) exceeds maximum machine "
+                              & "scalar size (^)",
+                              First_Bit (CC));
 
-                        elsif Warn_On_Reverse_Bit_Order then
-                           Error_Msg_N
-                             ("multi-byte field specified with "
-                              & "  non-standard Bit_Order?", CC);
+                           if (Lbit + 1) mod SSU /= 0 then
+                              Error_Msg_Uint_1 := SSU;
+                              Error_Msg_F
+                                ("\and is not a multiple of Storage_Unit (^) "
+                                 & "(RM 13.4.1(10))",
+                                 First_Bit (CC));
 
-                           if Bytes_Big_Endian then
-                              Error_Msg_N
-                                ("\bytes are not reversed "
-                                 & "(component is big-endian)?", CC);
                            else
-                              Error_Msg_N
-                                ("\bytes are not reversed "
-                                 & "(component is little-endian)?", CC);
+                              Error_Msg_Uint_1 := Fbit;
+                              Error_Msg_F
+                                ("\and first bit (^) is non-zero "
+                                 & "(RM 13.4.1(10))",
+                                 First_Bit (CC));
                            end if;
                         end if;
 
-                        --  Case where size is not greater than max machine
-                        --  scalar. For now, we just count these.
+                     --  OK case of machine scalar related component clause,
+                     --  For now, just count them.
 
                      else
                         Num_CC := Num_CC + 1;
@@ -470,17 +517,31 @@ package body Sem_Ch13 is
                --  Start of processing for Sort_CC
 
             begin
-               --  Collect the component clauses
+               --  Collect the machine scalar relevant component clauses
 
                Num_CC := 0;
                Comp   := First_Component_Or_Discriminant (R);
                while Present (Comp) loop
-                  if Present (Component_Clause (Comp))
-                    and then Esize (Comp) <= Max_Machine_Scalar_Size
-                  then
-                     Num_CC := Num_CC + 1;
-                     Comps (Num_CC) := Comp;
-                  end if;
+                  declare
+                     CC   : constant Node_Id := Component_Clause (Comp);
+
+                  begin
+                     --  Collect only component clauses whose last bit is less
+                     --  than machine scalar size. Any component clause whose
+                     --  last bit exceeds this value does not take part in
+                     --  machine scalar layout considerations. The test for
+                     --  Error_Posted makes sure we exclude component clauses
+                     --  for which we already posted an error.
+
+                     if Present (CC)
+                       and then not Error_Posted (Last_Bit (CC))
+                       and then Static_Integer (Last_Bit (CC)) <
+                                                    Max_Machine_Scalar_Size
+                     then
+                        Num_CC := Num_CC + 1;
+                        Comps (Num_CC) := Comp;
+                     end if;
+                  end;
 
                   Next_Component_Or_Discriminant (Comp);
                end loop;
@@ -600,11 +661,11 @@ package body Sem_Ch13 is
       end if;
    end Adjust_Record_For_Reverse_Bit_Order;
 
-   --------------------------------------
-   -- Alignment_Check_For_Esize_Change --
-   --------------------------------------
+   -------------------------------------
+   -- Alignment_Check_For_Size_Change --
+   -------------------------------------
 
-   procedure Alignment_Check_For_Esize_Change (Typ : Entity_Id) is
+   procedure Alignment_Check_For_Size_Change (Typ : Entity_Id; Size : Uint) is
    begin
       --  If the alignment is known, and not set by a rep clause, and is
       --  inconsistent with the size being set, then reset it to unknown,
@@ -613,2369 +674,5338 @@ package body Sem_Ch13 is
 
       if Known_Alignment (Typ)
         and then not Has_Alignment_Clause (Typ)
-        and then Esize (Typ) mod (Alignment (Typ) * SSU) /= 0
+        and then Size mod (Alignment (Typ) * SSU) /= 0
       then
          Init_Alignment (Typ);
       end if;
-   end Alignment_Check_For_Esize_Change;
+   end Alignment_Check_For_Size_Change;
 
-   -----------------------
-   -- Analyze_At_Clause --
-   -----------------------
+   -----------------------------------
+   -- Analyze_Aspect_Specifications --
+   -----------------------------------
 
-   --  An at clause is replaced by the corresponding Address attribute
-   --  definition clause that is the preferred approach in Ada 95.
+   procedure Analyze_Aspect_Specifications (N : Node_Id; E : Entity_Id) is
+      Aspect : Node_Id;
+      Aitem  : Node_Id;
+      Ent    : Node_Id;
 
-   procedure Analyze_At_Clause (N : Node_Id) is
-      CS : constant Boolean := Comes_From_Source (N);
+      L : constant List_Id := Aspect_Specifications (N);
 
-   begin
-      --  This is an obsolescent feature
+      Ins_Node : Node_Id := N;
+      --  Insert pragmas (except Pre/Post/Invariant/Predicate) after this node
 
-      Check_Restriction (No_Obsolescent_Features, N);
+      --  The general processing involves building an attribute definition
+      --  clause or a pragma node that corresponds to the aspect. Then one
+      --  of two things happens:
 
-      if Warn_On_Obsolescent_Feature then
-         Error_Msg_N
-           ("at clause is an obsolescent feature (RM J.7(2))?", N);
-         Error_Msg_N
-           ("\use address attribute definition clause instead?", N);
-      end if;
+      --  If we are required to delay the evaluation of this aspect to the
+      --  freeze point, we attach the corresponding pragma/attribute definition
+      --  clause to the aspect specification node, which is then placed in the
+      --  Rep Item chain. In this case we mark the entity by setting the flag
+      --  Has_Delayed_Aspects and we evaluate the rep item at the freeze point.
 
-      --  Rewrite as address clause
+      --  If no delay is required, we just insert the pragma or attribute
+      --  after the declaration, and it will get processed by the normal
+      --  circuit. The From_Aspect_Specification flag is set on the pragma
+      --  or attribute definition node in either case to activate special
+      --  processing (e.g. not traversing the list of homonyms for inline).
 
-      Rewrite (N,
-        Make_Attribute_Definition_Clause (Sloc (N),
-          Name  => Identifier (N),
-          Chars => Name_Address,
-          Expression => Expression (N)));
+      Delay_Required : Boolean := False;
+      --  Set True if delay is required
 
-      --  We preserve Comes_From_Source, since logically the clause still
-      --  comes from the source program even though it is changed in form.
+   begin
+      pragma Assert (Present (L));
 
-      Set_Comes_From_Source (N, CS);
+      --  Loop through aspects
 
-      --  Analyze rewritten clause
+      Aspect := First (L);
+      Aspect_Loop : while Present (Aspect) loop
+         declare
+            Loc  : constant Source_Ptr := Sloc (Aspect);
+            Id   : constant Node_Id    := Identifier (Aspect);
+            Expr : constant Node_Id    := Expression (Aspect);
+            Nam  : constant Name_Id    := Chars (Id);
+            A_Id : constant Aspect_Id  := Get_Aspect_Id (Nam);
+            Anod : Node_Id;
+
+            Eloc : Source_Ptr := Sloc (Expr);
+            --  Source location of expression, modified when we split PPC's
+
+            procedure Check_False_Aspect_For_Derived_Type;
+            --  This procedure checks for the case of a false aspect for a
+            --  derived type, which improperly tries to cancel an aspect
+            --  inherited from the parent;
+
+            -----------------------------------------
+            -- Check_False_Aspect_For_Derived_Type --
+            -----------------------------------------
+
+            procedure Check_False_Aspect_For_Derived_Type is
+            begin
+               --  We are only checking derived types
 
-      Analyze_Attribute_Definition_Clause (N);
-   end Analyze_At_Clause;
+               if not Is_Derived_Type (E) then
+                  return;
+               end if;
 
-   -----------------------------------------
-   -- Analyze_Attribute_Definition_Clause --
-   -----------------------------------------
+               case A_Id is
+                  when Aspect_Atomic | Aspect_Shared =>
+                     if not Is_Atomic (E) then
+                        return;
+                     end if;
 
-   procedure Analyze_Attribute_Definition_Clause (N : Node_Id) is
-      Loc   : constant Source_Ptr   := Sloc (N);
-      Nam   : constant Node_Id      := Name (N);
-      Attr  : constant Name_Id      := Chars (N);
-      Expr  : constant Node_Id      := Expression (N);
-      Id    : constant Attribute_Id := Get_Attribute_Id (Attr);
-      Ent   : Entity_Id;
-      U_Ent : Entity_Id;
+                  when Aspect_Atomic_Components =>
+                     if not Has_Atomic_Components (E) then
+                        return;
+                     end if;
 
-      FOnly : Boolean := False;
-      --  Reset to True for subtype specific attribute (Alignment, Size)
-      --  and for stream attributes, i.e. those cases where in the call
-      --  to Rep_Item_Too_Late, FOnly is set True so that only the freezing
-      --  rules are checked. Note that the case of stream attributes is not
-      --  clear from the RM, but see AI95-00137. Also, the RM seems to
-      --  disallow Storage_Size for derived task types, but that is also
-      --  clearly unintentional.
+                  when Aspect_Discard_Names =>
+                     if not Discard_Names (E) then
+                        return;
+                     end if;
 
-      procedure Analyze_Stream_TSS_Definition (TSS_Nam : TSS_Name_Type);
-      --  Common processing for 'Read, 'Write, 'Input and 'Output attribute
-      --  definition clauses.
+                  when Aspect_Pack =>
+                     if not Is_Packed (E) then
+                        return;
+                     end if;
 
-      -----------------------------------
-      -- Analyze_Stream_TSS_Definition --
-      -----------------------------------
+                  when Aspect_Unchecked_Union =>
+                     if not Is_Unchecked_Union (E) then
+                        return;
+                     end if;
 
-      procedure Analyze_Stream_TSS_Definition (TSS_Nam : TSS_Name_Type) is
-         Subp : Entity_Id := Empty;
-         I    : Interp_Index;
-         It   : Interp;
-         Pnam : Entity_Id;
+                  when Aspect_Volatile =>
+                     if not Is_Volatile (E) then
+                        return;
+                     end if;
 
-         Is_Read : constant Boolean := (TSS_Nam = TSS_Stream_Read);
+                  when Aspect_Volatile_Components =>
+                     if not Has_Volatile_Components (E) then
+                        return;
+                     end if;
 
-         function Has_Good_Profile (Subp : Entity_Id) return Boolean;
-         --  Return true if the entity is a subprogram with an appropriate
-         --  profile for the attribute being defined.
+                  when others =>
+                     return;
+               end case;
 
-         ----------------------
-         -- Has_Good_Profile --
-         ----------------------
+               --  Fall through means we are canceling an inherited aspect
 
-         function Has_Good_Profile (Subp : Entity_Id) return Boolean is
-            F              : Entity_Id;
-            Is_Function    : constant Boolean := (TSS_Nam = TSS_Stream_Input);
-            Expected_Ekind : constant array (Boolean) of Entity_Kind :=
-                               (False => E_Procedure, True => E_Function);
-            Typ            : Entity_Id;
+               Error_Msg_Name_1 := Nam;
+               Error_Msg_NE
+                 ("derived type& inherits aspect%, cannot cancel", Expr, E);
+            end Check_False_Aspect_For_Derived_Type;
 
-         begin
-            if Ekind (Subp) /= Expected_Ekind (Is_Function) then
-               return False;
-            end if;
+         --  Start of processing for Aspect_Loop
 
-            F := First_Formal (Subp);
+         begin
+            --  Skip aspect if already analyzed (not clear if this is needed)
 
-            if No (F)
-              or else Ekind (Etype (F)) /= E_Anonymous_Access_Type
-              or else Designated_Type (Etype (F)) /=
-                               Class_Wide_Type (RTE (RE_Root_Stream_Type))
-            then
-               return False;
+            if Analyzed (Aspect) then
+               goto Continue;
             end if;
 
-            if not Is_Function then
-               Next_Formal (F);
-
-               declare
-                  Expected_Mode : constant array (Boolean) of Entity_Kind :=
-                                    (False => E_In_Parameter,
-                                     True  => E_Out_Parameter);
-               begin
-                  if Parameter_Mode (F) /= Expected_Mode (Is_Read) then
-                     return False;
-                  end if;
-               end;
-
-               Typ := Etype (F);
+            --  Check restriction No_Implementation_Aspect_Specifications
 
-            else
-               Typ := Etype (Subp);
+            if Impl_Defined_Aspects (A_Id) then
+               Check_Restriction
+                 (No_Implementation_Aspect_Specifications, Aspect);
             end if;
 
-            return Base_Type (Typ) = Base_Type (Ent)
-              and then No (Next_Formal (F));
-         end Has_Good_Profile;
+            --  Check restriction No_Specification_Of_Aspect
 
-      --  Start of processing for Analyze_Stream_TSS_Definition
+            Check_Restriction_No_Specification_Of_Aspect (Aspect);
 
-      begin
-         FOnly := True;
+            --  Analyze this aspect
 
-         if not Is_Type (U_Ent) then
-            Error_Msg_N ("local name must be a subtype", Nam);
-            return;
-         end if;
+            Set_Analyzed (Aspect);
+            Set_Entity (Aspect, E);
+            Ent := New_Occurrence_Of (E, Sloc (Id));
 
-         Pnam := TSS (Base_Type (U_Ent), TSS_Nam);
+            --  Check for duplicate aspect. Note that the Comes_From_Source
+            --  test allows duplicate Pre/Post's that we generate internally
+            --  to escape being flagged here.
 
-         --  If Pnam is present, it can be either inherited from an ancestor
-         --  type (in which case it is legal to redefine it for this type), or
-         --  be a previous definition of the attribute for the same type (in
-         --  which case it is illegal).
+            if No_Duplicates_Allowed (A_Id) then
+               Anod := First (L);
+               while Anod /= Aspect loop
+                  if Same_Aspect
+                      (A_Id, Get_Aspect_Id (Chars (Identifier (Anod))))
+                    and then Comes_From_Source (Aspect)
+                  then
+                     Error_Msg_Name_1 := Nam;
+                     Error_Msg_Sloc := Sloc (Anod);
 
-         --  In the first case, it will have been analyzed already, and we
-         --  can check that its profile does not match the expected profile
-         --  for a stream attribute of U_Ent. In the second case, either Pnam
-         --  has been analyzed (and has the expected profile), or it has not
-         --  been analyzed yet (case of a type that has not been frozen yet
-         --  and for which the stream attribute has been set using Set_TSS).
+                     --  Case of same aspect specified twice
 
-         if Present (Pnam)
-           and then (No (First_Entity (Pnam)) or else Has_Good_Profile (Pnam))
-         then
-            Error_Msg_Sloc := Sloc (Pnam);
-            Error_Msg_Name_1 := Attr;
-            Error_Msg_N ("% attribute already defined #", Nam);
-            return;
-         end if;
+                     if Class_Present (Anod) = Class_Present (Aspect) then
+                        if not Class_Present (Anod) then
+                           Error_Msg_NE
+                             ("aspect% for & previously given#",
+                              Id, E);
+                        else
+                           Error_Msg_NE
+                             ("aspect `%''Class` for & previously given#",
+                              Id, E);
+                        end if;
 
-         Analyze (Expr);
+                        --  Case of Pre and Pre'Class both specified
 
-         if Is_Entity_Name (Expr) then
-            if not Is_Overloaded (Expr) then
-               if Has_Good_Profile (Entity (Expr)) then
-                  Subp := Entity (Expr);
-               end if;
+                     elsif Nam = Name_Pre then
+                        if Class_Present (Aspect) then
+                           Error_Msg_NE
+                             ("aspect `Pre''Class` for & is not allowed here",
+                              Id, E);
+                           Error_Msg_NE
+                             ("\since aspect `Pre` previously given#",
+                              Id, E);
 
-            else
-               Get_First_Interp (Expr, I, It);
-               while Present (It.Nam) loop
-                  if Has_Good_Profile (It.Nam) then
-                     Subp := It.Nam;
-                     exit;
+                        else
+                           Error_Msg_NE
+                             ("aspect `Pre` for & is not allowed here",
+                              Id, E);
+                           Error_Msg_NE
+                             ("\since aspect `Pre''Class` previously given#",
+                              Id, E);
+                        end if;
+                     end if;
+
+                     --  Allowed case of X and X'Class both specified
                   end if;
 
-                  Get_Next_Interp (I, It);
+                  Next (Anod);
                end loop;
             end if;
-         end if;
 
-         if Present (Subp) then
-            if Is_Abstract_Subprogram (Subp) then
-               Error_Msg_N ("stream subprogram must not be abstract", Expr);
-               return;
-            end if;
+            --  Copy expression for later processing by the procedures
+            --  Check_Aspect_At_[Freeze_Point | End_Of_Declarations]
 
-            Set_Entity (Expr, Subp);
-            Set_Etype (Expr, Etype (Subp));
+            Set_Entity (Id, New_Copy_Tree (Expr));
 
-            New_Stream_Subprogram (N, U_Ent, Subp, TSS_Nam);
+            --  Processing based on specific aspect
 
-         else
-            Error_Msg_Name_1 := Attr;
-            Error_Msg_N ("incorrect expression for% attribute", Expr);
-         end if;
-      end Analyze_Stream_TSS_Definition;
+            case A_Id is
 
-   --  Start of processing for Analyze_Attribute_Definition_Clause
+               --  No_Aspect should be impossible
 
-   begin
-      --  Process Ignore_Rep_Clauses option
+               when No_Aspect =>
+                  raise Program_Error;
 
-      if Ignore_Rep_Clauses then
-         case Id is
+               --  Aspects taking an optional boolean argument. For all of
+               --  these we just create a matching pragma and insert it, if
+               --  the expression is missing or set to True. If the expression
+               --  is False, we can ignore the aspect with the exception that
+               --  in the case of a derived type, we must check for an illegal
+               --  attempt to cancel an inherited aspect.
 
-            --  The following should be ignored. They do not affect legality
-            --  and may be target dependent. The basic idea of -gnatI is to
-            --  ignore any rep clauses that may be target dependent but do not
-            --  affect legality (except possibly to be rejected because they
-            --  are incompatible with the compilation target).
+               when Boolean_Aspects =>
+                  Set_Is_Boolean_Aspect (Aspect);
 
-            when Attribute_Alignment      |
-                 Attribute_Bit_Order      |
-                 Attribute_Component_Size |
-                 Attribute_Machine_Radix  |
-                 Attribute_Object_Size    |
-                 Attribute_Size           |
-                 Attribute_Small          |
-                 Attribute_Stream_Size    |
-                 Attribute_Value_Size     =>
+                  if Present (Expr)
+                    and then Is_False (Static_Boolean (Expr))
+                  then
+                     Check_False_Aspect_For_Derived_Type;
+                     goto Continue;
+                  end if;
 
-               Rewrite (N, Make_Null_Statement (Sloc (N)));
-               return;
+                  --  If True, build corresponding pragma node
 
-            --  The following should not be ignored, because in the first place
-            --  they are reasonably portable, and should not cause problems in
-            --  compiling code from another target, and also they do affect
-            --  legality, e.g. failing to provide a stream attribute for a
-            --  type may make a program illegal.
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations => New_List (Ent),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Chars (Id)));
 
-            when Attribute_External_Tag   |
-                 Attribute_Input          |
-                 Attribute_Output         |
-                 Attribute_Read           |
-                 Attribute_Storage_Pool   |
-                 Attribute_Storage_Size   |
-                 Attribute_Write          =>
-               null;
+                  --  Never need to delay for boolean aspects
 
-            --  Other cases are errors ("attribute& cannot be set with
-            --  definition clause"), which will be caught below.
+                  pragma Assert (not Delay_Required);
 
-            when others =>
-               null;
-         end case;
-      end if;
+               --  Library unit aspects. These are boolean aspects, but we
+               --  have to do special things with the insertion, since the
+               --  pragma belongs inside the declarations of a package.
 
-      Analyze (Nam);
-      Ent := Entity (Nam);
+               when Library_Unit_Aspects =>
+                  if Present (Expr)
+                    and then Is_False (Static_Boolean (Expr))
+                  then
+                     goto Continue;
+                  end if;
 
-      if Rep_Item_Too_Early (Ent, N) then
-         return;
-      end if;
+                  --  Build corresponding pragma node
 
-      --  Rep clause applies to full view of incomplete type or private type if
-      --  we have one (if not, this is a premature use of the type). However,
-      --  certain semantic checks need to be done on the specified entity (i.e.
-      --  the private view), so we save it in Ent.
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations => New_List (Ent),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Chars (Id)));
 
-      if Is_Private_Type (Ent)
-        and then Is_Derived_Type (Ent)
-        and then not Is_Tagged_Type (Ent)
-        and then No (Full_View (Ent))
-      then
-         --  If this is a private type whose completion is a derivation from
-         --  another private type, there is no full view, and the attribute
-         --  belongs to the type itself, not its underlying parent.
+                  --  This requires special handling in the case of a package
+                  --  declaration, the pragma needs to be inserted in the list
+                  --  of declarations for the associated package. There is no
+                  --  issue of visibility delay for these aspects.
 
-         U_Ent := Ent;
+                  if Nkind (N) = N_Package_Declaration then
+                     if Nkind (Parent (N)) /= N_Compilation_Unit then
+                        Error_Msg_N
+                          ("incorrect context for library unit aspect&", Id);
+                     else
+                        Prepend
+                          (Aitem, Visible_Declarations (Specification (N)));
+                     end if;
 
-      elsif Ekind (Ent) = E_Incomplete_Type then
+                     goto Continue;
+                  end if;
 
-         --  The attribute applies to the full view, set the entity of the
-         --  attribute definition accordingly.
+                  --  If not package declaration, no delay is required
 
-         Ent := Underlying_Type (Ent);
-         U_Ent := Ent;
-         Set_Entity (Nam, Ent);
+                  pragma Assert (not Delay_Required);
 
-      else
-         U_Ent := Underlying_Type (Ent);
-      end if;
+               --  Aspects related to container iterators. These aspects denote
+               --  subprograms, and thus must be delayed.
 
-      --  Complete other routine error checks
+               when Aspect_Constant_Indexing    |
+                    Aspect_Variable_Indexing    =>
 
-      if Etype (Nam) = Any_Type then
-         return;
+                  if not Is_Type (E) or else not Is_Tagged_Type (E) then
+                     Error_Msg_N ("indexing applies to a tagged type", N);
+                  end if;
 
-      elsif Scope (Ent) /= Current_Scope then
-         Error_Msg_N ("entity must be declared in this scope", Nam);
-         return;
+                  Aitem :=
+                    Make_Attribute_Definition_Clause (Loc,
+                      Name       => Ent,
+                      Chars      => Chars (Id),
+                      Expression => Relocate_Node (Expr));
 
-      elsif No (U_Ent) then
-         U_Ent := Ent;
+                  Delay_Required := True;
+                  Set_Is_Delayed_Aspect (Aspect);
 
-      elsif Is_Type (U_Ent)
-        and then not Is_First_Subtype (U_Ent)
-        and then Id /= Attribute_Object_Size
-        and then Id /= Attribute_Value_Size
-        and then not From_At_Mod (N)
-      then
-         Error_Msg_N ("cannot specify attribute for subtype", Nam);
-         return;
-      end if;
+               when Aspect_Default_Iterator     |
+                    Aspect_Iterator_Element     =>
 
-      --  Switch on particular attribute
+                  Aitem :=
+                    Make_Attribute_Definition_Clause (Loc,
+                      Name       => Ent,
+                      Chars      => Chars (Id),
+                      Expression => Relocate_Node (Expr));
 
-      case Id is
+                  Delay_Required := True;
+                  Set_Is_Delayed_Aspect (Aspect);
 
-         -------------
-         -- Address --
-         -------------
+               when Aspect_Implicit_Dereference =>
+                  if not Is_Type (E)
+                    or else not Has_Discriminants (E)
+                  then
+                     Error_Msg_N
+                       ("Aspect must apply to a type with discriminants", N);
+                     goto Continue;
 
-         --  Address attribute definition clause
+                  else
+                     declare
+                        Disc : Entity_Id;
 
-         when Attribute_Address => Address : begin
+                     begin
+                        Disc := First_Discriminant (E);
+                        while Present (Disc) loop
+                           if Chars (Expr) = Chars (Disc)
+                             and then Ekind (Etype (Disc)) =
+                               E_Anonymous_Access_Type
+                           then
+                              Set_Has_Implicit_Dereference (E);
+                              Set_Has_Implicit_Dereference (Disc);
+                              goto Continue;
+                           end if;
 
-            --  A little error check, catch for X'Address use X'Address;
+                           Next_Discriminant (Disc);
+                        end loop;
 
-            if Nkind (Nam) = N_Identifier
-              and then Nkind (Expr) = N_Attribute_Reference
-              and then Attribute_Name (Expr) = Name_Address
-              and then Nkind (Prefix (Expr)) = N_Identifier
-              and then Chars (Nam) = Chars (Prefix (Expr))
-            then
-               Error_Msg_NE
-                 ("address for & is self-referencing", Prefix (Expr), Ent);
-               return;
-            end if;
+                        --  Error if no proper access discriminant.
 
-            --  Not that special case, carry on with analysis of expression
+                        Error_Msg_NE
+                         ("not an access discriminant of&", Expr, E);
+                     end;
 
-            Analyze_And_Resolve (Expr, RTE (RE_Address));
+                     goto Continue;
+                  end if;
 
-            --  Even when ignoring rep clauses we need to indicate that the
-            --  entity has an address clause and thus it is legal to declare
-            --  it imported.
+               --  Aspects corresponding to attribute definition clauses
+
+               when Aspect_Address        |
+                    Aspect_Alignment      |
+                    Aspect_Bit_Order      |
+                    Aspect_Component_Size |
+                    Aspect_External_Tag   |
+                    Aspect_Input          |
+                    Aspect_Machine_Radix  |
+                    Aspect_Object_Size    |
+                    Aspect_Output         |
+                    Aspect_Read           |
+                    Aspect_Size           |
+                    Aspect_Small          |
+                    Aspect_Storage_Pool   |
+                    Aspect_Storage_Size   |
+                    Aspect_Stream_Size    |
+                    Aspect_Value_Size     |
+                    Aspect_Write          =>
+
+                  --  Construct the attribute definition clause
+
+                  Aitem :=
+                    Make_Attribute_Definition_Clause (Loc,
+                      Name       => Ent,
+                      Chars      => Chars (Id),
+                      Expression => Relocate_Node (Expr));
+
+                  --  A delay is required except in the common case where
+                  --  the expression is a literal, in which case it is fine
+                  --  to take care of it right away.
+
+                  if Nkind_In (Expr, N_Integer_Literal, N_String_Literal) then
+                     pragma Assert (not Delay_Required);
+                     null;
+                  else
+                     Delay_Required := True;
+                     Set_Is_Delayed_Aspect (Aspect);
+                  end if;
 
-            if Ignore_Rep_Clauses then
-               if Ekind_In (U_Ent, E_Variable, E_Constant) then
-                  Record_Rep_Item (U_Ent, N);
-               end if;
+               --  Aspects corresponding to pragmas with two arguments, where
+               --  the first argument is a local name referring to the entity,
+               --  and the second argument is the aspect definition expression
+               --  which is an expression that does not get analyzed.
 
-               return;
-            end if;
+               when Aspect_Suppress   |
+                    Aspect_Unsuppress =>
 
-            if Present (Address_Clause (U_Ent)) then
-               Error_Msg_N ("address already given for &", Nam);
+                  --  Construct the pragma
 
-            --  Case of address clause for subprogram
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations => New_List (
+                        New_Occurrence_Of (E, Loc),
+                        Relocate_Node (Expr)),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Chars (Id)));
 
-            elsif Is_Subprogram (U_Ent) then
-               if Has_Homonym (U_Ent) then
-                  Error_Msg_N
-                    ("address clause cannot be given " &
-                     "for overloaded subprogram",
-                     Nam);
-                  return;
-               end if;
+                  --  We don't have to play the delay game here, since the only
+                  --  values are check names which don't get analyzed anyway.
 
-               --  For subprograms, all address clauses are permitted, and we
-               --  mark the subprogram as having a deferred freeze so that Gigi
-               --  will not elaborate it too soon.
+                  pragma Assert (not Delay_Required);
 
-               --  Above needs more comments, what is too soon about???
+               --  Aspects corresponding to pragmas with two arguments, where
+               --  the second argument is a local name referring to the entity,
+               --  and the first argument is the aspect definition expression.
 
-               Set_Has_Delayed_Freeze (U_Ent);
+               when Aspect_Warnings =>
 
-            --  Case of address clause for entry
+                  --  Construct the pragma
 
-            elsif Ekind (U_Ent) = E_Entry then
-               if Nkind (Parent (N)) = N_Task_Body then
-                  Error_Msg_N
-                    ("entry address must be specified in task spec", Nam);
-                  return;
-               end if;
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations => New_List (
+                        Relocate_Node (Expr),
+                        New_Occurrence_Of (E, Loc)),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Chars (Id)),
+                      Class_Present                => Class_Present (Aspect));
 
-               --  For entries, we require a constant address
+                  --  We don't have to play the delay game here, since the only
+                  --  values are ON/OFF which don't get analyzed anyway.
 
-               Check_Constant_Address_Clause (Expr, U_Ent);
+                  pragma Assert (not Delay_Required);
 
-               --  Special checks for task types
+               --  Default_Value and Default_Component_Value aspects. These
+               --  are specially handled because they have no corresponding
+               --  pragmas or attributes.
 
-               if Is_Task_Type (Scope (U_Ent))
-                 and then Comes_From_Source (Scope (U_Ent))
-               then
-                  Error_Msg_N
-                    ("?entry address declared for entry in task type", N);
-                  Error_Msg_N
-                    ("\?only one task can be declared of this type", N);
-               end if;
+               when Aspect_Default_Value | Aspect_Default_Component_Value =>
+                  Error_Msg_Name_1 := Chars (Id);
 
-               --  Entry address clauses are obsolescent
+                  if not Is_Type (E) then
+                     Error_Msg_N ("aspect% can only apply to a type", Id);
+                     goto Continue;
 
-               Check_Restriction (No_Obsolescent_Features, N);
+                  elsif not Is_First_Subtype (E) then
+                     Error_Msg_N ("aspect% cannot apply to subtype", Id);
+                     goto Continue;
 
-               if Warn_On_Obsolescent_Feature then
-                  Error_Msg_N
-                    ("attaching interrupt to task entry is an " &
-                     "obsolescent feature (RM J.7.1)?", N);
-                  Error_Msg_N
-                    ("\use interrupt procedure instead?", N);
-               end if;
+                  elsif A_Id = Aspect_Default_Value
+                    and then not Is_Scalar_Type (E)
+                  then
+                     Error_Msg_N
+                       ("aspect% can only be applied to scalar type", Id);
+                     goto Continue;
 
-            --  Case of an address clause for a controlled object which we
-            --  consider to be erroneous.
+                  elsif A_Id = Aspect_Default_Component_Value then
+                     if not Is_Array_Type (E) then
+                        Error_Msg_N
+                          ("aspect% can only be applied to array type", Id);
+                        goto Continue;
+                     elsif not Is_Scalar_Type (Component_Type (E)) then
+                        Error_Msg_N
+                          ("aspect% requires scalar components", Id);
+                        goto Continue;
+                     end if;
+                  end if;
 
-            elsif Is_Controlled (Etype (U_Ent))
-              or else Has_Controlled_Component (Etype (U_Ent))
-            then
-               Error_Msg_NE
-                 ("?controlled object& must not be overlaid", Nam, U_Ent);
-               Error_Msg_N
-                 ("\?Program_Error will be raised at run time", Nam);
-               Insert_Action (Declaration_Node (U_Ent),
-                 Make_Raise_Program_Error (Loc,
-                   Reason => PE_Overlaid_Controlled_Object));
-               return;
+                  Aitem := Empty;
+                  Delay_Required := True;
+                  Set_Is_Delayed_Aspect (Aspect);
+                  Set_Has_Default_Aspect (Base_Type (Entity (Ent)));
 
-            --  Case of address clause for a (non-controlled) object
+               when Aspect_Attach_Handler =>
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Name_Attach_Handler),
+                      Pragma_Argument_Associations =>
+                        New_List (Ent, Relocate_Node (Expr)));
 
-            elsif
-              Ekind (U_Ent) = E_Variable
-                or else
-              Ekind (U_Ent) = E_Constant
-            then
-               declare
-                  Expr  : constant Node_Id := Expression (N);
-                  O_Ent : Entity_Id;
-                  Off   : Boolean;
+                  Set_From_Aspect_Specification (Aitem, True);
+                  Set_Corresponding_Aspect (Aitem, Aspect);
 
-               begin
-                  --  Exported variables cannot have an address clause, because
-                  --  this cancels the effect of the pragma Export.
+                  pragma Assert (not Delay_Required);
 
-                  if Is_Exported (U_Ent) then
-                     Error_Msg_N
-                       ("cannot export object with address clause", Nam);
-                     return;
-                  end if;
+               when Aspect_Priority           |
+                    Aspect_Interrupt_Priority |
+                    Aspect_Dispatching_Domain |
+                    Aspect_CPU                =>
+                  declare
+                     Pname : Name_Id;
 
-                  Find_Overlaid_Entity (N, O_Ent, Off);
+                  begin
+                     if A_Id = Aspect_Priority then
+                        Pname := Name_Priority;
 
-                  --  Overlaying controlled objects is erroneous
+                     elsif A_Id = Aspect_Interrupt_Priority then
+                        Pname := Name_Interrupt_Priority;
 
-                  if Present (O_Ent)
-                    and then (Has_Controlled_Component (Etype (O_Ent))
-                                or else Is_Controlled (Etype (O_Ent)))
-                  then
-                     Error_Msg_N
-                       ("?cannot overlay with controlled object", Expr);
-                     Error_Msg_N
-                       ("\?Program_Error will be raised at run time", Expr);
-                     Insert_Action (Declaration_Node (U_Ent),
-                       Make_Raise_Program_Error (Loc,
-                         Reason => PE_Overlaid_Controlled_Object));
-                     return;
+                     elsif A_Id = Aspect_CPU then
+                        Pname := Name_CPU;
 
-                  elsif Present (O_Ent)
-                    and then Ekind (U_Ent) = E_Constant
-                    and then not Is_Constant_Object (O_Ent)
-                  then
-                     Error_Msg_N ("constant overlays a variable?", Expr);
+                     else
+                        Pname := Name_Dispatching_Domain;
+                     end if;
 
-                  elsif Present (Renamed_Object (U_Ent)) then
-                     Error_Msg_N
-                       ("address clause not allowed"
-                          & " for a renaming declaration (RM 13.1(6))", Nam);
-                     return;
+                     Aitem :=
+                       Make_Pragma (Loc,
+                           Pragma_Identifier            =>
+                             Make_Identifier (Sloc (Id), Pname),
+                           Pragma_Argument_Associations =>
+                             New_List
+                               (Make_Pragma_Argument_Association
+                                  (Sloc       => Sloc (Id),
+                                   Expression => Relocate_Node (Expr))));
 
-                  --  Imported variables can have an address clause, but then
-                  --  the import is pretty meaningless except to suppress
-                  --  initializations, so we do not need such variables to
-                  --  be statically allocated (and in fact it causes trouble
-                  --  if the address clause is a local value).
+                     Set_From_Aspect_Specification (Aitem, True);
+                     Set_Corresponding_Aspect (Aitem, Aspect);
 
-                  elsif Is_Imported (U_Ent) then
-                     Set_Is_Statically_Allocated (U_Ent, False);
-                  end if;
+                     pragma Assert (not Delay_Required);
+                  end;
 
-                  --  We mark a possible modification of a variable with an
-                  --  address clause, since it is likely aliasing is occurring.
+               --  Aspects Pre/Post generate Precondition/Postcondition pragmas
+               --  with a first argument that is the expression, and a second
+               --  argument that is an informative message if the test fails.
+               --  This is inserted right after the declaration, to get the
+               --  required pragma placement. The processing for the pragmas
+               --  takes care of the required delay.
 
-                  Note_Possible_Modification (Nam, Sure => False);
+               when Pre_Post_Aspects => declare
+                  Pname : Name_Id;
 
-                  --  Here we are checking for explicit overlap of one variable
-                  --  by another, and if we find this then mark the overlapped
-                  --  variable as also being volatile to prevent unwanted
-                  --  optimizations. This is a significant pessimization so
-                  --  avoid it when there is an offset, i.e. when the object
-                  --  is composite; they cannot be optimized easily anyway.
+               begin
+                  if A_Id = Aspect_Pre or else A_Id = Aspect_Precondition then
+                     Pname := Name_Precondition;
+                  else
+                     Pname := Name_Postcondition;
+                  end if;
 
-                  if Present (O_Ent)
-                    and then Is_Object (O_Ent)
-                    and then not Off
+                  --  If the expressions is of the form A and then B, then
+                  --  we generate separate Pre/Post aspects for the separate
+                  --  clauses. Since we allow multiple pragmas, there is no
+                  --  problem in allowing multiple Pre/Post aspects internally.
+                  --  These should be treated in reverse order (B first and
+                  --  A second) since they are later inserted just after N in
+                  --  the order they are treated. This way, the pragma for A
+                  --  ends up preceding the pragma for B, which may have an
+                  --  importance for the error raised (either constraint error
+                  --  or precondition error).
+
+                  --  We do not do this for Pre'Class, since we have to put
+                  --  these conditions together in a complex OR expression
+
+                  if Pname = Name_Postcondition
+                    or else not Class_Present (Aspect)
                   then
-                     Set_Treat_As_Volatile (O_Ent);
+                     while Nkind (Expr) = N_And_Then loop
+                        Insert_After (Aspect,
+                          Make_Aspect_Specification (Sloc (Left_Opnd (Expr)),
+                            Identifier    => Identifier (Aspect),
+                            Expression    => Relocate_Node (Left_Opnd (Expr)),
+                            Class_Present => Class_Present (Aspect),
+                            Split_PPC     => True));
+                        Rewrite (Expr, Relocate_Node (Right_Opnd (Expr)));
+                        Eloc := Sloc (Expr);
+                     end loop;
                   end if;
 
-                  --  Legality checks on the address clause for initialized
-                  --  objects is deferred until the freeze point, because
-                  --  a subsequent pragma might indicate that the object is
-                  --  imported and thus not initialized.
+                  --  Build the precondition/postcondition pragma
+
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Pname),
+                      Class_Present                => Class_Present (Aspect),
+                      Split_PPC                    => Split_PPC (Aspect),
+                      Pragma_Argument_Associations => New_List (
+                        Make_Pragma_Argument_Association (Eloc,
+                          Chars      => Name_Check,
+                          Expression => Relocate_Node (Expr))));
+
+                  --  Add message unless exception messages are suppressed
+
+                  if not Opt.Exception_Locations_Suppressed then
+                     Append_To (Pragma_Argument_Associations (Aitem),
+                       Make_Pragma_Argument_Association (Eloc,
+                         Chars     => Name_Message,
+                         Expression =>
+                           Make_String_Literal (Eloc,
+                             Strval => "failed "
+                                       & Get_Name_String (Pname)
+                                       & " from "
+                                       & Build_Location_String (Eloc))));
+                  end if;
 
-                  Set_Has_Delayed_Freeze (U_Ent);
+                  Set_From_Aspect_Specification (Aitem, True);
+                  Set_Corresponding_Aspect (Aitem, Aspect);
+                  Set_Is_Delayed_Aspect (Aspect);
 
-                  --  If an initialization call has been generated for this
-                  --  object, it needs to be deferred to after the freeze node
-                  --  we have just now added, otherwise GIGI will see a
-                  --  reference to the variable (as actual to the IP call)
-                  --  before its definition.
+                  --  For Pre/Post cases, insert immediately after the entity
+                  --  declaration, since that is the required pragma placement.
+                  --  Note that for these aspects, we do not have to worry
+                  --  about delay issues, since the pragmas themselves deal
+                  --  with delay of visibility for the expression analysis.
 
-                  declare
-                     Init_Call : constant Node_Id := Find_Init_Call (U_Ent, N);
-                  begin
-                     if Present (Init_Call) then
-                        Remove (Init_Call);
-                        Append_Freeze_Action (U_Ent, Init_Call);
-                     end if;
-                  end;
+                  --  If the entity is a library-level subprogram, the pre/
+                  --  postconditions must be treated as late pragmas.
 
-                  if Is_Exported (U_Ent) then
-                     Error_Msg_N
-                       ("& cannot be exported if an address clause is given",
-                        Nam);
-                     Error_Msg_N
-                       ("\define and export a variable " &
-                        "that holds its address instead",
-                        Nam);
+                  if Nkind (Parent (N)) = N_Compilation_Unit then
+                     Add_Global_Declaration (Aitem);
+                  else
+                     Insert_After (N, Aitem);
                   end if;
 
-                  --  Entity has delayed freeze, so we will generate an
-                  --  alignment check at the freeze point unless suppressed.
+                  goto Continue;
+               end;
 
-                  if not Range_Checks_Suppressed (U_Ent)
-                    and then not Alignment_Checks_Suppressed (U_Ent)
-                  then
-                     Set_Check_Address_Alignment (N);
+               --  Invariant aspects generate a corresponding pragma with a
+               --  first argument that is the entity, a second argument that is
+               --  the expression and a third argument that is an appropriate
+               --  message. This is inserted right after the declaration, to
+               --  get the required pragma placement. The pragma processing
+               --  takes care of the required delay.
+
+               when Aspect_Invariant      |
+                    Aspect_Type_Invariant =>
+
+                  --  Analysis of the pragma will verify placement legality:
+                  --  an invariant must apply to a private type, or appear in
+                  --  the private part of a spec and apply to a completion.
+
+                  --  Construct the pragma
+
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations =>
+                        New_List (Ent, Relocate_Node (Expr)),
+                      Class_Present                => Class_Present (Aspect),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Name_Invariant));
+
+                  --  Add message unless exception messages are suppressed
+
+                  if not Opt.Exception_Locations_Suppressed then
+                     Append_To (Pragma_Argument_Associations (Aitem),
+                       Make_Pragma_Argument_Association (Eloc,
+                         Chars      => Name_Message,
+                         Expression =>
+                           Make_String_Literal (Eloc,
+                             Strval => "failed invariant from "
+                                       & Build_Location_String (Eloc))));
                   end if;
 
-                  --  Kill the size check code, since we are not allocating
-                  --  the variable, it is somewhere else.
+                  Set_From_Aspect_Specification (Aitem, True);
+                  Set_Corresponding_Aspect (Aitem, Aspect);
+                  Set_Is_Delayed_Aspect (Aspect);
 
-                  Kill_Size_Check_Code (U_Ent);
+                  --  For Invariant case, insert immediately after the entity
+                  --  declaration. We do not have to worry about delay issues
+                  --  since the pragma processing takes care of this.
 
-                  --  If the address clause is of the form:
+                  Insert_After (N, Aitem);
+                  goto Continue;
 
-                  --    for Y'Address use X'Address
+               --  Predicate aspects generate a corresponding pragma with a
+               --  first argument that is the entity, and the second argument
+               --  is the expression.
 
-                  --  or
+               when Aspect_Dynamic_Predicate |
+                    Aspect_Predicate         |
+                    Aspect_Static_Predicate  =>
 
-                  --    Const : constant Address := X'Address;
-                  --    ...
-                  --    for Y'Address use Const;
+                  --  Construct the pragma (always a pragma Predicate, with
+                  --  flags recording whether it is static/dynamic).
 
-                  --  then we make an entry in the table for checking the size
-                  --  and alignment of the overlaying variable. We defer this
-                  --  check till after code generation to take full advantage
-                  --  of the annotation done by the back end. This entry is
-                  --  only made if the address clause comes from source.
-                  --  If the entity has a generic type, the check will be
-                  --  performed in the instance if the actual type justifies
-                  --  it, and we do not insert the clause in the table to
-                  --  prevent spurious warnings.
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Argument_Associations =>
+                        New_List (Ent, Relocate_Node (Expr)),
+                      Class_Present                => Class_Present (Aspect),
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Name_Predicate));
 
-                  if Address_Clause_Overlay_Warnings
-                    and then Comes_From_Source (N)
-                    and then Present (O_Ent)
-                    and then Is_Object (O_Ent)
+                  Set_From_Aspect_Specification (Aitem, True);
+                  Set_Corresponding_Aspect (Aitem, Aspect);
+
+                  --  Make sure we have a freeze node (it might otherwise be
+                  --  missing in cases like subtype X is Y, and we would not
+                  --  have a place to build the predicate function).
+
+                  Set_Has_Predicates (E);
+
+                  if Is_Private_Type (E)
+                    and then Present (Full_View (E))
                   then
-                     if not Is_Generic_Type (Etype (U_Ent)) then
-                        Address_Clause_Checks.Append ((N, U_Ent, O_Ent, Off));
-                     end if;
+                     Set_Has_Predicates (Full_View (E));
+                     Set_Has_Delayed_Aspects (Full_View (E));
+                  end if;
 
-                     --  If variable overlays a constant view, and we are
-                     --  warning on overlays, then mark the variable as
-                     --  overlaying a constant (we will give warnings later
-                     --  if this variable is assigned).
+                  Ensure_Freeze_Node (E);
+                  Set_Is_Delayed_Aspect (Aspect);
+                  Delay_Required := True;
 
-                     if Is_Constant_Object (O_Ent)
-                       and then Ekind (U_Ent) = E_Variable
-                     then
-                        Set_Overlays_Constant (U_Ent);
-                     end if;
+               when Aspect_Test_Case => declare
+                  Args      : List_Id;
+                  Comp_Expr : Node_Id;
+                  Comp_Assn : Node_Id;
+
+               begin
+                  Args := New_List;
+
+                  if Nkind (Parent (N)) = N_Compilation_Unit then
+                     Error_Msg_N
+                       ("incorrect placement of aspect `Test_Case`", E);
+                     goto Continue;
                   end if;
-               end;
 
-            --  Not a valid entity for an address clause
+                  if Nkind (Expr) /= N_Aggregate then
+                     Error_Msg_NE
+                       ("wrong syntax for aspect `Test_Case` for &", Id, E);
+                     goto Continue;
+                  end if;
 
-            else
-               Error_Msg_N ("address cannot be given for &", Nam);
-            end if;
-         end Address;
+                  Comp_Expr := First (Expressions (Expr));
+                  while Present (Comp_Expr) loop
+                     Append
+                       (Make_Pragma_Argument_Association (Sloc (Comp_Expr),
+                          Expression => Relocate_Node (Comp_Expr)),
+                       Args);
+                     Next (Comp_Expr);
+                  end loop;
 
-         ---------------
-         -- Alignment --
-         ---------------
+                  Comp_Assn := First (Component_Associations (Expr));
+                  while Present (Comp_Assn) loop
+                     if List_Length (Choices (Comp_Assn)) /= 1
+                       or else
+                         Nkind (First (Choices (Comp_Assn))) /= N_Identifier
+                     then
+                        Error_Msg_NE
+                          ("wrong syntax for aspect `Test_Case` for &", Id, E);
+                        goto Continue;
+                     end if;
 
-         --  Alignment attribute definition clause
+                     Append (Make_Pragma_Argument_Association (
+                       Sloc       => Sloc (Comp_Assn),
+                       Chars      => Chars (First (Choices (Comp_Assn))),
+                       Expression => Relocate_Node (Expression (Comp_Assn))),
+                       Args);
+                     Next (Comp_Assn);
+                  end loop;
 
-         when Attribute_Alignment => Alignment : declare
-            Align : constant Uint := Get_Alignment_Value (Expr);
+                  --  Build the test-case pragma
 
-         begin
-            FOnly := True;
+                  Aitem :=
+                    Make_Pragma (Loc,
+                      Pragma_Identifier            =>
+                        Make_Identifier (Sloc (Id), Name_Test_Case),
+                      Pragma_Argument_Associations =>
+                        Args);
 
-            if not Is_Type (U_Ent)
-              and then Ekind (U_Ent) /= E_Variable
-              and then Ekind (U_Ent) /= E_Constant
-            then
-               Error_Msg_N ("alignment cannot be given for &", Nam);
+                  Set_From_Aspect_Specification (Aitem, True);
+                  Set_Corresponding_Aspect (Aitem, Aspect);
+                  Set_Is_Delayed_Aspect (Aspect);
 
-            elsif Has_Alignment_Clause (U_Ent) then
-               Error_Msg_Sloc := Sloc (Alignment_Clause (U_Ent));
-               Error_Msg_N ("alignment clause previously given#", N);
+                  --  Insert immediately after the entity declaration
 
-            elsif Align /= No_Uint then
-               Set_Has_Alignment_Clause (U_Ent);
-               Set_Alignment            (U_Ent, Align);
+                  Insert_After (N, Aitem);
 
-               --  For an array type, U_Ent is the first subtype. In that case,
-               --  also set the alignment of the anonymous base type so that
-               --  other subtypes (such as the itypes for aggregates of the
-               --  type) also receive the expected alignment.
+                  goto Continue;
+               end;
+            end case;
 
-               if Is_Array_Type (U_Ent) then
-                  Set_Alignment (Base_Type (U_Ent), Align);
-               end if;
-            end if;
-         end Alignment;
+            --  If a delay is required, we delay the freeze (not much point in
+            --  delaying the aspect if we don't delay the freeze!). The pragma
+            --  or attribute clause if there is one is then attached to the
+            --  aspect specification which is placed in the rep item list.
 
-         ---------------
-         -- Bit_Order --
-         ---------------
+            if Delay_Required then
+               if Present (Aitem) then
+                  Set_From_Aspect_Specification (Aitem, True);
 
-         --  Bit_Order attribute definition clause
+                  if Nkind (Aitem) = N_Pragma then
+                     Set_Corresponding_Aspect (Aitem, Aspect);
+                  end if;
 
-         when Attribute_Bit_Order => Bit_Order : declare
-         begin
-            if not Is_Record_Type (U_Ent) then
-               Error_Msg_N
-                 ("Bit_Order can only be defined for record type", Nam);
+                  Set_Is_Delayed_Aspect (Aitem);
+                  Set_Aspect_Rep_Item (Aspect, Aitem);
+               end if;
 
-            else
-               Analyze_And_Resolve (Expr, RTE (RE_Bit_Order));
+               Ensure_Freeze_Node (E);
+               Set_Has_Delayed_Aspects (E);
+               Record_Rep_Item (E, Aspect);
 
-               if Etype (Expr) = Any_Type then
-                  return;
+            --  If no delay required, insert the pragma/clause in the tree
 
-               elsif not Is_Static_Expression (Expr) then
-                  Flag_Non_Static_Expr
-                    ("Bit_Order requires static expression!", Expr);
+            else
+               Set_From_Aspect_Specification (Aitem, True);
 
-               else
-                  if (Expr_Value (Expr) = 0) /= Bytes_Big_Endian then
-                     Set_Reverse_Bit_Order (U_Ent, True);
-                  end if;
+               if Nkind (Aitem) = N_Pragma then
+                  Set_Corresponding_Aspect (Aitem, Aspect);
                end if;
-            end if;
-         end Bit_Order;
 
-         --------------------
-         -- Component_Size --
-         --------------------
+               --  If this is a compilation unit, we will put the pragma in
+               --  the Pragmas_After list of the N_Compilation_Unit_Aux node.
 
-         --  Component_Size attribute definition clause
+               if Nkind (Parent (Ins_Node)) = N_Compilation_Unit then
+                  declare
+                     Aux : constant Node_Id :=
+                             Aux_Decls_Node (Parent (Ins_Node));
 
-         when Attribute_Component_Size => Component_Size_Case : declare
-            Csize    : constant Uint := Static_Integer (Expr);
-            Ctyp     : Entity_Id;
-            Btype    : Entity_Id;
-            Biased   : Boolean;
-            New_Ctyp : Entity_Id;
-            Decl     : Node_Id;
-            Ignore   : Boolean := False;
+                  begin
+                     pragma Assert (Nkind (Aux) = N_Compilation_Unit_Aux);
 
-            procedure Complain_CS (T : String);
-            --  Outputs error messages for incorrect CS clause for aliased or
-            --  atomic components (T is "aliased" or "atomic");
+                     if No (Pragmas_After (Aux)) then
+                        Set_Pragmas_After (Aux, Empty_List);
+                     end if;
 
-            -----------------
-            -- Complain_CS --
-            -----------------
+                     --  For Pre_Post put at start of list, otherwise at end
 
-            procedure Complain_CS (T : String) is
-            begin
-               if Known_Static_Esize (Ctyp) then
-                  Error_Msg_N
-                    ("incorrect component size for " & T & " components", N);
-                  Error_Msg_Uint_1 := Esize (Ctyp);
-                  Error_Msg_N ("\only allowed value is^", N);
+                     if A_Id in Pre_Post_Aspects then
+                        Prepend (Aitem, Pragmas_After (Aux));
+                     else
+                        Append (Aitem, Pragmas_After (Aux));
+                     end if;
+                  end;
+
+               --  Here if not compilation unit case
 
                else
-                  Error_Msg_N
-                    ("component size cannot be given for " & T & " components",
-                     N);
-               end if;
+                  case A_Id is
 
-               return;
-            end Complain_CS;
+                     --  For Pre/Post cases, insert immediately after the
+                     --  entity declaration, since that is the required pragma
+                     --  placement.
 
-         --  Start of processing for Component_Size_Case
+                     when Pre_Post_Aspects =>
+                        Insert_After (N, Aitem);
 
-         begin
-            if not Is_Array_Type (U_Ent) then
-               Error_Msg_N ("component size requires array type", Nam);
-               return;
-            end if;
+                     --  For Priority aspects, insert into the task or
+                     --  protected definition, which we need to create if it's
+                     --  not there. The same applies to CPU and
+                     --  Dispatching_Domain but only to tasks.
 
-            Btype := Base_Type (U_Ent);
-            Ctyp := Component_Type (Btype);
+                     when Aspect_Priority           |
+                          Aspect_Interrupt_Priority |
+                          Aspect_Dispatching_Domain |
+                          Aspect_CPU                =>
+                        declare
+                           T : Node_Id; -- the type declaration
+                           L : List_Id; -- list of decls of task/protected
 
-            if Has_Component_Size_Clause (Btype) then
-               Error_Msg_N
-                 ("component size clause for& previously given", Nam);
+                        begin
+                           if Nkind (N) = N_Object_Declaration then
+                              T := Parent (Etype (Defining_Identifier (N)));
+                           else
+                              T := N;
+                           end if;
 
-            elsif Csize /= No_Uint then
-               Check_Size (Expr, Ctyp, Csize, Biased);
+                           if Nkind (T) = N_Protected_Type_Declaration
+                             and then A_Id /= Aspect_Dispatching_Domain
+                             and then A_Id /= Aspect_CPU
+                           then
+                              pragma Assert
+                                (Present (Protected_Definition (T)));
+
+                              L := Visible_Declarations
+                                     (Protected_Definition (T));
+
+                           elsif Nkind (T) = N_Task_Type_Declaration then
+                              if No (Task_Definition (T)) then
+                                 Set_Task_Definition
+                                   (T,
+                                    Make_Task_Definition
+                                      (Sloc (T),
+                                       Visible_Declarations => New_List,
+                                       End_Label => Empty));
+                              end if;
 
-               --  Case where component size has no effect
+                              L := Visible_Declarations (Task_Definition (T));
 
-               if Known_Static_Esize (Ctyp)
-                 and then Known_Static_RM_Size (Ctyp)
-                 and then Esize (Ctyp) = RM_Size (Ctyp)
-                 and then (Esize (Ctyp) = 8  or else
-                           Esize (Ctyp) = 16 or else
-                           Esize (Ctyp) = 32 or else
-                           Esize (Ctyp) = 64)
-               then
-                  Ignore := True;
+                           else
+                              raise Program_Error;
+                           end if;
 
-               --  Cannot give component size for aliased/atomic components
+                           Prepend (Aitem, To => L);
 
-               elsif Has_Aliased_Components (Btype)
-                 or else Is_Aliased (Ctyp)
-               then
-                  Complain_CS ("aliased");
+                           --  Analyze rewritten pragma. Otherwise, its
+                           --  analysis is done too late, after the task or
+                           --  protected object has been created.
 
-               elsif Has_Atomic_Components (Btype)
-                  or else Is_Atomic (Ctyp)
-               then
-                  Complain_CS ("atomic");
+                           Analyze (Aitem);
+                        end;
 
-               --  Warn for case of atomic type
+                     --  For all other cases, insert in sequence
 
-               elsif Is_Atomic (Btype) then
-                  Error_Msg_NE
-                    ("non-atomic components of type& may not be accessible "
-                     & "by separate tasks?", N, Btype);
+                     when others =>
+                        Insert_After (Ins_Node, Aitem);
+                        Ins_Node := Aitem;
+                  end case;
                end if;
+            end if;
+         end;
 
-               --  For the biased case, build a declaration for a subtype
-               --  that will be used to represent the biased subtype that
-               --  reflects the biased representation of components. We need
-               --  this subtype to get proper conversions on referencing
-               --  elements of the array. Note that component size clauses
-               --  are ignored in VM mode.
+      <<Continue>>
+         Next (Aspect);
+      end loop Aspect_Loop;
+   end Analyze_Aspect_Specifications;
 
-               if VM_Target = No_VM then
-                  if Biased then
-                     New_Ctyp :=
-                       Make_Defining_Identifier (Loc,
-                         Chars =>
-                           New_External_Name (Chars (U_Ent), 'C', 0, 'T'));
+   -----------------------
+   -- Analyze_At_Clause --
+   -----------------------
 
-                     Decl :=
-                       Make_Subtype_Declaration (Loc,
-                         Defining_Identifier => New_Ctyp,
-                         Subtype_Indication  =>
-                           New_Occurrence_Of (Component_Type (Btype), Loc));
+   --  An at clause is replaced by the corresponding Address attribute
+   --  definition clause that is the preferred approach in Ada 95.
 
-                     Set_Parent (Decl, N);
-                     Analyze (Decl, Suppress => All_Checks);
+   procedure Analyze_At_Clause (N : Node_Id) is
+      CS : constant Boolean := Comes_From_Source (N);
 
-                     Set_Has_Delayed_Freeze        (New_Ctyp, False);
-                     Set_Esize                     (New_Ctyp, Csize);
-                     Set_RM_Size                   (New_Ctyp, Csize);
-                     Init_Alignment                (New_Ctyp);
-                     Set_Is_Itype                  (New_Ctyp, True);
-                     Set_Associated_Node_For_Itype (New_Ctyp, U_Ent);
+   begin
+      --  This is an obsolescent feature
 
-                     Set_Component_Type (Btype, New_Ctyp);
-                     Set_Biased (New_Ctyp, N, "component size clause");
-                  end if;
+      Check_Restriction (No_Obsolescent_Features, N);
 
-                  Set_Component_Size (Btype, Csize);
+      if Warn_On_Obsolescent_Feature then
+         Error_Msg_N
+           ("at clause is an obsolescent feature (RM J.7(2))?", N);
+         Error_Msg_N
+           ("\use address attribute definition clause instead?", N);
+      end if;
 
-               --  For VM case, we ignore component size clauses
+      --  Rewrite as address clause
 
-               else
-                  --  Give a warning unless we are in GNAT mode, in which case
-                  --  the warning is suppressed since it is not useful.
+      Rewrite (N,
+        Make_Attribute_Definition_Clause (Sloc (N),
+          Name  => Identifier (N),
+          Chars => Name_Address,
+          Expression => Expression (N)));
 
-                  if not GNAT_Mode then
-                     Error_Msg_N
-                       ("?component size ignored in this configuration", N);
-                  end if;
-               end if;
+      --  We preserve Comes_From_Source, since logically the clause still
+      --  comes from the source program even though it is changed in form.
 
-               --  Deal with warning on overridden size
+      Set_Comes_From_Source (N, CS);
 
-               if Warn_On_Overridden_Size
-                 and then Has_Size_Clause (Ctyp)
-                 and then RM_Size (Ctyp) /= Csize
-               then
-                  Error_Msg_NE
-                    ("?component size overrides size clause for&",
-                     N, Ctyp);
-               end if;
+      --  Analyze rewritten clause
 
-               Set_Has_Component_Size_Clause (Btype, True);
+      Analyze_Attribute_Definition_Clause (N);
+   end Analyze_At_Clause;
 
-               if not Ignore then
-                  Set_Has_Non_Standard_Rep (Btype, True);
-               end if;
-            end if;
-         end Component_Size_Case;
+   -----------------------------------------
+   -- Analyze_Attribute_Definition_Clause --
+   -----------------------------------------
 
-         ------------------
-         -- External_Tag --
-         ------------------
+   procedure Analyze_Attribute_Definition_Clause (N : Node_Id) is
+      Loc   : constant Source_Ptr   := Sloc (N);
+      Nam   : constant Node_Id      := Name (N);
+      Attr  : constant Name_Id      := Chars (N);
+      Expr  : constant Node_Id      := Expression (N);
+      Id    : constant Attribute_Id := Get_Attribute_Id (Attr);
 
-         when Attribute_External_Tag => External_Tag :
-         begin
-            if not Is_Tagged_Type (U_Ent) then
-               Error_Msg_N ("should be a tagged type", Nam);
-            end if;
+      Ent : Entity_Id;
+      --  The entity of Nam after it is analyzed. In the case of an incomplete
+      --  type, this is the underlying type.
 
-            Analyze_And_Resolve (Expr, Standard_String);
+      U_Ent : Entity_Id;
+      --  The underlying entity to which the attribute applies. Generally this
+      --  is the Underlying_Type of Ent, except in the case where the clause
+      --  applies to full view of incomplete type or private type in which case
+      --  U_Ent is just a copy of Ent.
 
-            if not Is_Static_Expression (Expr) then
-               Flag_Non_Static_Expr
-                 ("static string required for tag name!", Nam);
-            end if;
+      FOnly : Boolean := False;
+      --  Reset to True for subtype specific attribute (Alignment, Size)
+      --  and for stream attributes, i.e. those cases where in the call
+      --  to Rep_Item_Too_Late, FOnly is set True so that only the freezing
+      --  rules are checked. Note that the case of stream attributes is not
+      --  clear from the RM, but see AI95-00137. Also, the RM seems to
+      --  disallow Storage_Size for derived task types, but that is also
+      --  clearly unintentional.
 
-            if VM_Target = No_VM then
-               Set_Has_External_Tag_Rep_Clause (U_Ent);
-            else
-               Error_Msg_Name_1 := Attr;
-               Error_Msg_N
-                 ("% attribute unsupported in this configuration", Nam);
-            end if;
+      procedure Analyze_Stream_TSS_Definition (TSS_Nam : TSS_Name_Type);
+      --  Common processing for 'Read, 'Write, 'Input and 'Output attribute
+      --  definition clauses.
 
-            if not Is_Library_Level_Entity (U_Ent) then
+      function Duplicate_Clause return Boolean;
+      --  This routine checks if the aspect for U_Ent being given by attribute
+      --  definition clause N is for an aspect that has already been specified,
+      --  and if so gives an error message. If there is a duplicate, True is
+      --  returned, otherwise if there is no error, False is returned.
+
+      procedure Check_Indexing_Functions;
+      --  Check that the function in Constant_Indexing or Variable_Indexing
+      --  attribute has the proper type structure. If the name is overloaded,
+      --  check that all interpretations are legal.
+
+      procedure Check_Iterator_Functions;
+      --  Check that there is a single function in Default_Iterator attribute
+      --  has the proper type structure.
+
+      function Check_Primitive_Function (Subp : Entity_Id) return Boolean;
+      --  Common legality check for the previous two
+
+      -----------------------------------
+      -- Analyze_Stream_TSS_Definition --
+      -----------------------------------
+
+      procedure Analyze_Stream_TSS_Definition (TSS_Nam : TSS_Name_Type) is
+         Subp : Entity_Id := Empty;
+         I    : Interp_Index;
+         It   : Interp;
+         Pnam : Entity_Id;
+
+         Is_Read : constant Boolean := (TSS_Nam = TSS_Stream_Read);
+         --  True for Read attribute, false for other attributes
+
+         function Has_Good_Profile (Subp : Entity_Id) return Boolean;
+         --  Return true if the entity is a subprogram with an appropriate
+         --  profile for the attribute being defined.
+
+         ----------------------
+         -- Has_Good_Profile --
+         ----------------------
+
+         function Has_Good_Profile (Subp : Entity_Id) return Boolean is
+            F              : Entity_Id;
+            Is_Function    : constant Boolean := (TSS_Nam = TSS_Stream_Input);
+            Expected_Ekind : constant array (Boolean) of Entity_Kind :=
+                               (False => E_Procedure, True => E_Function);
+            Typ            : Entity_Id;
+
+         begin
+            if Ekind (Subp) /= Expected_Ekind (Is_Function) then
+               return False;
+            end if;
+
+            F := First_Formal (Subp);
+
+            if No (F)
+              or else Ekind (Etype (F)) /= E_Anonymous_Access_Type
+              or else Designated_Type (Etype (F)) /=
+                               Class_Wide_Type (RTE (RE_Root_Stream_Type))
+            then
+               return False;
+            end if;
+
+            if not Is_Function then
+               Next_Formal (F);
+
+               declare
+                  Expected_Mode : constant array (Boolean) of Entity_Kind :=
+                                    (False => E_In_Parameter,
+                                     True  => E_Out_Parameter);
+               begin
+                  if Parameter_Mode (F) /= Expected_Mode (Is_Read) then
+                     return False;
+                  end if;
+               end;
+
+               Typ := Etype (F);
+
+            else
+               Typ := Etype (Subp);
+            end if;
+
+            return Base_Type (Typ) = Base_Type (Ent)
+              and then No (Next_Formal (F));
+         end Has_Good_Profile;
+
+      --  Start of processing for Analyze_Stream_TSS_Definition
+
+      begin
+         FOnly := True;
+
+         if not Is_Type (U_Ent) then
+            Error_Msg_N ("local name must be a subtype", Nam);
+            return;
+         end if;
+
+         Pnam := TSS (Base_Type (U_Ent), TSS_Nam);
+
+         --  If Pnam is present, it can be either inherited from an ancestor
+         --  type (in which case it is legal to redefine it for this type), or
+         --  be a previous definition of the attribute for the same type (in
+         --  which case it is illegal).
+
+         --  In the first case, it will have been analyzed already, and we
+         --  can check that its profile does not match the expected profile
+         --  for a stream attribute of U_Ent. In the second case, either Pnam
+         --  has been analyzed (and has the expected profile), or it has not
+         --  been analyzed yet (case of a type that has not been frozen yet
+         --  and for which the stream attribute has been set using Set_TSS).
+
+         if Present (Pnam)
+           and then (No (First_Entity (Pnam)) or else Has_Good_Profile (Pnam))
+         then
+            Error_Msg_Sloc := Sloc (Pnam);
+            Error_Msg_Name_1 := Attr;
+            Error_Msg_N ("% attribute already defined #", Nam);
+            return;
+         end if;
+
+         Analyze (Expr);
+
+         if Is_Entity_Name (Expr) then
+            if not Is_Overloaded (Expr) then
+               if Has_Good_Profile (Entity (Expr)) then
+                  Subp := Entity (Expr);
+               end if;
+
+            else
+               Get_First_Interp (Expr, I, It);
+               while Present (It.Nam) loop
+                  if Has_Good_Profile (It.Nam) then
+                     Subp := It.Nam;
+                     exit;
+                  end if;
+
+                  Get_Next_Interp (I, It);
+               end loop;
+            end if;
+         end if;
+
+         if Present (Subp) then
+            if Is_Abstract_Subprogram (Subp) then
+               Error_Msg_N ("stream subprogram must not be abstract", Expr);
+               return;
+            end if;
+
+            Set_Entity (Expr, Subp);
+            Set_Etype (Expr, Etype (Subp));
+
+            New_Stream_Subprogram (N, U_Ent, Subp, TSS_Nam);
+
+         else
+            Error_Msg_Name_1 := Attr;
+            Error_Msg_N ("incorrect expression for% attribute", Expr);
+         end if;
+      end Analyze_Stream_TSS_Definition;
+
+      ------------------------------
+      -- Check_Indexing_Functions --
+      ------------------------------
+
+      procedure Check_Indexing_Functions is
+
+         procedure Check_One_Function (Subp : Entity_Id);
+         --  Check one possible interpretation
+
+         ------------------------
+         -- Check_One_Function --
+         ------------------------
+
+         procedure Check_One_Function (Subp : Entity_Id) is
+         begin
+            if not Check_Primitive_Function (Subp) then
                Error_Msg_NE
-                 ("?non-unique external tag supplied for &", N, U_Ent);
-               Error_Msg_N
-                 ("?\same external tag applies to all subprogram calls", N);
+                 ("aspect Indexing requires a function that applies to type&",
+                   Subp, Ent);
+            end if;
+
+            if not Has_Implicit_Dereference (Etype (Subp)) then
                Error_Msg_N
-                 ("?\corresponding internal tag cannot be obtained", N);
+                 ("function for indexing must return a reference type", Subp);
             end if;
-         end External_Tag;
+         end Check_One_Function;
 
-         -----------
-         -- Input --
-         -----------
+      --  Start of processing for Check_Indexing_Functions
+
+      begin
+         if In_Instance then
+            return;
+         end if;
+
+         Analyze (Expr);
+
+         if not Is_Overloaded (Expr) then
+            Check_One_Function (Entity (Expr));
+
+         else
+            declare
+               I : Interp_Index;
+               It : Interp;
+
+            begin
+               Get_First_Interp (Expr, I, It);
+               while Present (It.Nam) loop
+
+                  --  Note that analysis will have added the interpretation
+                  --  that corresponds to the dereference. We only check the
+                  --  subprogram itself.
+
+                  if Is_Overloadable (It.Nam) then
+                     Check_One_Function (It.Nam);
+                  end if;
+
+                  Get_Next_Interp (I, It);
+               end loop;
+            end;
+         end if;
+      end Check_Indexing_Functions;
+
+      ------------------------------
+      -- Check_Iterator_Functions --
+      ------------------------------
+
+      procedure Check_Iterator_Functions is
+         Default : Entity_Id;
+
+         function Valid_Default_Iterator (Subp : Entity_Id) return Boolean;
+         --  Check one possible interpretation for validity
+
+         ----------------------------
+         -- Valid_Default_Iterator --
+         ----------------------------
+
+         function Valid_Default_Iterator (Subp : Entity_Id) return Boolean is
+            Formal : Entity_Id;
+
+         begin
+            if not Check_Primitive_Function (Subp) then
+               return False;
+            else
+               Formal := First_Formal (Subp);
+            end if;
+
+            --  False if any subsequent formal has no default expression
+
+            Formal := Next_Formal (Formal);
+            while Present (Formal) loop
+               if No (Expression (Parent (Formal))) then
+                  return False;
+               end if;
+
+               Next_Formal (Formal);
+            end loop;
+
+            --  True if all subsequent formals have default expressions
+
+            return True;
+         end Valid_Default_Iterator;
+
+      --  Start of processing for Check_Iterator_Functions
+
+      begin
+         Analyze (Expr);
+
+         if not Is_Entity_Name (Expr) then
+            Error_Msg_N ("aspect Iterator must be a function name", Expr);
+         end if;
+
+         if not Is_Overloaded (Expr) then
+            if not Check_Primitive_Function (Entity (Expr)) then
+               Error_Msg_NE
+                 ("aspect Indexing requires a function that applies to type&",
+                   Entity (Expr), Ent);
+            end if;
+
+            if not Valid_Default_Iterator (Entity (Expr)) then
+               Error_Msg_N ("improper function for default iterator", Expr);
+            end if;
+
+         else
+            Default := Empty;
+            declare
+               I : Interp_Index;
+               It : Interp;
+
+            begin
+               Get_First_Interp (Expr, I, It);
+               while Present (It.Nam) loop
+                  if not Check_Primitive_Function (It.Nam)
+                    or else not Valid_Default_Iterator (It.Nam)
+                  then
+                     Remove_Interp (I);
+
+                  elsif Present (Default) then
+                     Error_Msg_N ("default iterator must be unique", Expr);
+
+                  else
+                     Default := It.Nam;
+                  end if;
+
+                  Get_Next_Interp (I, It);
+               end loop;
+            end;
+
+            if Present (Default) then
+               Set_Entity (Expr, Default);
+               Set_Is_Overloaded (Expr, False);
+            end if;
+         end if;
+      end Check_Iterator_Functions;
+
+      -------------------------------
+      -- Check_Primitive_Function  --
+      -------------------------------
+
+      function Check_Primitive_Function (Subp : Entity_Id) return Boolean is
+         Ctrl : Entity_Id;
+
+      begin
+         if Ekind (Subp) /= E_Function then
+            return False;
+         end if;
+
+         if No (First_Formal (Subp)) then
+            return False;
+         else
+            Ctrl := Etype (First_Formal (Subp));
+         end if;
+
+         if Ctrl = Ent
+           or else Ctrl = Class_Wide_Type (Ent)
+           or else
+             (Ekind (Ctrl) = E_Anonymous_Access_Type
+               and then
+                 (Designated_Type (Ctrl) = Ent
+                   or else Designated_Type (Ctrl) = Class_Wide_Type (Ent)))
+         then
+            null;
+
+         else
+            return False;
+         end if;
+
+         return True;
+      end Check_Primitive_Function;
+
+      ----------------------
+      -- Duplicate_Clause --
+      ----------------------
+
+      function Duplicate_Clause return Boolean is
+         A : Node_Id;
+
+      begin
+         --  Nothing to do if this attribute definition clause comes from
+         --  an aspect specification, since we could not be duplicating an
+         --  explicit clause, and we dealt with the case of duplicated aspects
+         --  in Analyze_Aspect_Specifications.
+
+         if From_Aspect_Specification (N) then
+            return False;
+         end if;
+
+         --  Otherwise current clause may duplicate previous clause or a
+         --  previously given aspect specification for the same aspect.
+
+         A := Get_Rep_Item_For_Entity (U_Ent, Chars (N));
+
+         if Present (A) then
+            if Entity (A) = U_Ent then
+               Error_Msg_Name_1 := Chars (N);
+               Error_Msg_Sloc := Sloc (A);
+               Error_Msg_NE ("aspect% for & previously given#", N, U_Ent);
+               return True;
+            end if;
+         end if;
+
+         return False;
+      end Duplicate_Clause;
+
+   --  Start of processing for Analyze_Attribute_Definition_Clause
+
+   begin
+      --  The following code is a defense against recursion. Not clear that
+      --  this can happen legitimately, but perhaps some error situations
+      --  can cause it, and we did see this recursion during testing.
+
+      if Analyzed (N) then
+         return;
+      else
+         Set_Analyzed (N, True);
+      end if;
+
+      --  Process Ignore_Rep_Clauses option (we also ignore rep clauses in
+      --  CodePeer mode or Alfa mode, since they are not relevant in these
+      --  contexts).
+
+      if Ignore_Rep_Clauses or CodePeer_Mode or Alfa_Mode then
+         case Id is
+
+            --  The following should be ignored. They do not affect legality
+            --  and may be target dependent. The basic idea of -gnatI is to
+            --  ignore any rep clauses that may be target dependent but do not
+            --  affect legality (except possibly to be rejected because they
+            --  are incompatible with the compilation target).
+
+            when Attribute_Alignment      |
+                 Attribute_Bit_Order      |
+                 Attribute_Component_Size |
+                 Attribute_Machine_Radix  |
+                 Attribute_Object_Size    |
+                 Attribute_Size           |
+                 Attribute_Stream_Size    |
+                 Attribute_Value_Size     =>
+               Rewrite (N, Make_Null_Statement (Sloc (N)));
+               return;
+
+            --  We do not want too ignore 'Small in CodePeer_Mode or Alfa_Mode,
+            --  since it has an impact on the exact computations performed.
+
+            --  Perhaps 'Small should also not be ignored by
+            --  Ignore_Rep_Clauses ???
+
+            when Attribute_Small =>
+               if Ignore_Rep_Clauses then
+                  Rewrite (N, Make_Null_Statement (Sloc (N)));
+                  return;
+               end if;
+
+            --  The following should not be ignored, because in the first place
+            --  they are reasonably portable, and should not cause problems in
+            --  compiling code from another target, and also they do affect
+            --  legality, e.g. failing to provide a stream attribute for a
+            --  type may make a program illegal.
+
+            when Attribute_External_Tag |
+                 Attribute_Input        |
+                 Attribute_Output       |
+                 Attribute_Read         |
+                 Attribute_Storage_Pool |
+                 Attribute_Storage_Size |
+                 Attribute_Write        =>
+               null;
+
+            --  Other cases are errors ("attribute& cannot be set with
+            --  definition clause"), which will be caught below.
+
+            when others =>
+               null;
+         end case;
+      end if;
+
+      Analyze (Nam);
+      Ent := Entity (Nam);
+
+      if Rep_Item_Too_Early (Ent, N) then
+         return;
+      end if;
+
+      --  Rep clause applies to full view of incomplete type or private type if
+      --  we have one (if not, this is a premature use of the type). However,
+      --  certain semantic checks need to be done on the specified entity (i.e.
+      --  the private view), so we save it in Ent.
+
+      if Is_Private_Type (Ent)
+        and then Is_Derived_Type (Ent)
+        and then not Is_Tagged_Type (Ent)
+        and then No (Full_View (Ent))
+      then
+         --  If this is a private type whose completion is a derivation from
+         --  another private type, there is no full view, and the attribute
+         --  belongs to the type itself, not its underlying parent.
+
+         U_Ent := Ent;
+
+      elsif Ekind (Ent) = E_Incomplete_Type then
+
+         --  The attribute applies to the full view, set the entity of the
+         --  attribute definition accordingly.
+
+         Ent := Underlying_Type (Ent);
+         U_Ent := Ent;
+         Set_Entity (Nam, Ent);
+
+      else
+         U_Ent := Underlying_Type (Ent);
+      end if;
+
+      --  Complete other routine error checks
+
+      if Etype (Nam) = Any_Type then
+         return;
+
+      elsif Scope (Ent) /= Current_Scope then
+         Error_Msg_N ("entity must be declared in this scope", Nam);
+         return;
+
+      elsif No (U_Ent) then
+         U_Ent := Ent;
+
+      elsif Is_Type (U_Ent)
+        and then not Is_First_Subtype (U_Ent)
+        and then Id /= Attribute_Object_Size
+        and then Id /= Attribute_Value_Size
+        and then not From_At_Mod (N)
+      then
+         Error_Msg_N ("cannot specify attribute for subtype", Nam);
+         return;
+      end if;
+
+      Set_Entity (N, U_Ent);
+
+      --  Switch on particular attribute
+
+      case Id is
+
+         -------------
+         -- Address --
+         -------------
+
+         --  Address attribute definition clause
+
+         when Attribute_Address => Address : begin
+
+            --  A little error check, catch for X'Address use X'Address;
+
+            if Nkind (Nam) = N_Identifier
+              and then Nkind (Expr) = N_Attribute_Reference
+              and then Attribute_Name (Expr) = Name_Address
+              and then Nkind (Prefix (Expr)) = N_Identifier
+              and then Chars (Nam) = Chars (Prefix (Expr))
+            then
+               Error_Msg_NE
+                 ("address for & is self-referencing", Prefix (Expr), Ent);
+               return;
+            end if;
+
+            --  Not that special case, carry on with analysis of expression
+
+            Analyze_And_Resolve (Expr, RTE (RE_Address));
+
+            --  Even when ignoring rep clauses we need to indicate that the
+            --  entity has an address clause and thus it is legal to declare
+            --  it imported.
+
+            if Ignore_Rep_Clauses then
+               if Ekind_In (U_Ent, E_Variable, E_Constant) then
+                  Record_Rep_Item (U_Ent, N);
+               end if;
+
+               return;
+            end if;
+
+            if Duplicate_Clause then
+               null;
+
+            --  Case of address clause for subprogram
+
+            elsif Is_Subprogram (U_Ent) then
+               if Has_Homonym (U_Ent) then
+                  Error_Msg_N
+                    ("address clause cannot be given " &
+                     "for overloaded subprogram",
+                     Nam);
+                  return;
+               end if;
+
+               --  For subprograms, all address clauses are permitted, and we
+               --  mark the subprogram as having a deferred freeze so that Gigi
+               --  will not elaborate it too soon.
+
+               --  Above needs more comments, what is too soon about???
+
+               Set_Has_Delayed_Freeze (U_Ent);
+
+            --  Case of address clause for entry
+
+            elsif Ekind (U_Ent) = E_Entry then
+               if Nkind (Parent (N)) = N_Task_Body then
+                  Error_Msg_N
+                    ("entry address must be specified in task spec", Nam);
+                  return;
+               end if;
+
+               --  For entries, we require a constant address
+
+               Check_Constant_Address_Clause (Expr, U_Ent);
+
+               --  Special checks for task types
+
+               if Is_Task_Type (Scope (U_Ent))
+                 and then Comes_From_Source (Scope (U_Ent))
+               then
+                  Error_Msg_N
+                    ("?entry address declared for entry in task type", N);
+                  Error_Msg_N
+                    ("\?only one task can be declared of this type", N);
+               end if;
+
+               --  Entry address clauses are obsolescent
+
+               Check_Restriction (No_Obsolescent_Features, N);
+
+               if Warn_On_Obsolescent_Feature then
+                  Error_Msg_N
+                    ("attaching interrupt to task entry is an " &
+                     "obsolescent feature (RM J.7.1)?", N);
+                  Error_Msg_N
+                    ("\use interrupt procedure instead?", N);
+               end if;
+
+            --  Case of an address clause for a controlled object which we
+            --  consider to be erroneous.
+
+            elsif Is_Controlled (Etype (U_Ent))
+              or else Has_Controlled_Component (Etype (U_Ent))
+            then
+               Error_Msg_NE
+                 ("?controlled object& must not be overlaid", Nam, U_Ent);
+               Error_Msg_N
+                 ("\?Program_Error will be raised at run time", Nam);
+               Insert_Action (Declaration_Node (U_Ent),
+                 Make_Raise_Program_Error (Loc,
+                   Reason => PE_Overlaid_Controlled_Object));
+               return;
+
+            --  Case of address clause for a (non-controlled) object
+
+            elsif
+              Ekind (U_Ent) = E_Variable
+                or else
+              Ekind (U_Ent) = E_Constant
+            then
+               declare
+                  Expr  : constant Node_Id := Expression (N);
+                  O_Ent : Entity_Id;
+                  Off   : Boolean;
+
+               begin
+                  --  Exported variables cannot have an address clause, because
+                  --  this cancels the effect of the pragma Export.
+
+                  if Is_Exported (U_Ent) then
+                     Error_Msg_N
+                       ("cannot export object with address clause", Nam);
+                     return;
+                  end if;
+
+                  Find_Overlaid_Entity (N, O_Ent, Off);
+
+                  --  Overlaying controlled objects is erroneous
+
+                  if Present (O_Ent)
+                    and then (Has_Controlled_Component (Etype (O_Ent))
+                                or else Is_Controlled (Etype (O_Ent)))
+                  then
+                     Error_Msg_N
+                       ("?cannot overlay with controlled object", Expr);
+                     Error_Msg_N
+                       ("\?Program_Error will be raised at run time", Expr);
+                     Insert_Action (Declaration_Node (U_Ent),
+                       Make_Raise_Program_Error (Loc,
+                         Reason => PE_Overlaid_Controlled_Object));
+                     return;
+
+                  elsif Present (O_Ent)
+                    and then Ekind (U_Ent) = E_Constant
+                    and then not Is_Constant_Object (O_Ent)
+                  then
+                     Error_Msg_N ("constant overlays a variable?", Expr);
+
+                  elsif Present (Renamed_Object (U_Ent)) then
+                     Error_Msg_N
+                       ("address clause not allowed"
+                          & " for a renaming declaration (RM 13.1(6))", Nam);
+                     return;
+
+                  --  Imported variables can have an address clause, but then
+                  --  the import is pretty meaningless except to suppress
+                  --  initializations, so we do not need such variables to
+                  --  be statically allocated (and in fact it causes trouble
+                  --  if the address clause is a local value).
+
+                  elsif Is_Imported (U_Ent) then
+                     Set_Is_Statically_Allocated (U_Ent, False);
+                  end if;
+
+                  --  We mark a possible modification of a variable with an
+                  --  address clause, since it is likely aliasing is occurring.
+
+                  Note_Possible_Modification (Nam, Sure => False);
+
+                  --  Here we are checking for explicit overlap of one variable
+                  --  by another, and if we find this then mark the overlapped
+                  --  variable as also being volatile to prevent unwanted
+                  --  optimizations. This is a significant pessimization so
+                  --  avoid it when there is an offset, i.e. when the object
+                  --  is composite; they cannot be optimized easily anyway.
+
+                  if Present (O_Ent)
+                    and then Is_Object (O_Ent)
+                    and then not Off
+                  then
+                     Set_Treat_As_Volatile (O_Ent);
+                  end if;
+
+                  --  Legality checks on the address clause for initialized
+                  --  objects is deferred until the freeze point, because
+                  --  a subsequent pragma might indicate that the object is
+                  --  imported and thus not initialized.
+
+                  Set_Has_Delayed_Freeze (U_Ent);
+
+                  --  If an initialization call has been generated for this
+                  --  object, it needs to be deferred to after the freeze node
+                  --  we have just now added, otherwise GIGI will see a
+                  --  reference to the variable (as actual to the IP call)
+                  --  before its definition.
+
+                  declare
+                     Init_Call : constant Node_Id := Find_Init_Call (U_Ent, N);
+                  begin
+                     if Present (Init_Call) then
+                        Remove (Init_Call);
+                        Append_Freeze_Action (U_Ent, Init_Call);
+                     end if;
+                  end;
+
+                  if Is_Exported (U_Ent) then
+                     Error_Msg_N
+                       ("& cannot be exported if an address clause is given",
+                        Nam);
+                     Error_Msg_N
+                       ("\define and export a variable " &
+                        "that holds its address instead",
+                        Nam);
+                  end if;
+
+                  --  Entity has delayed freeze, so we will generate an
+                  --  alignment check at the freeze point unless suppressed.
+
+                  if not Range_Checks_Suppressed (U_Ent)
+                    and then not Alignment_Checks_Suppressed (U_Ent)
+                  then
+                     Set_Check_Address_Alignment (N);
+                  end if;
+
+                  --  Kill the size check code, since we are not allocating
+                  --  the variable, it is somewhere else.
+
+                  Kill_Size_Check_Code (U_Ent);
+
+                  --  If the address clause is of the form:
+
+                  --    for Y'Address use X'Address
+
+                  --  or
+
+                  --    Const : constant Address := X'Address;
+                  --    ...
+                  --    for Y'Address use Const;
+
+                  --  then we make an entry in the table for checking the size
+                  --  and alignment of the overlaying variable. We defer this
+                  --  check till after code generation to take full advantage
+                  --  of the annotation done by the back end. This entry is
+                  --  only made if the address clause comes from source.
+
+                  --  If the entity has a generic type, the check will be
+                  --  performed in the instance if the actual type justifies
+                  --  it, and we do not insert the clause in the table to
+                  --  prevent spurious warnings.
+
+                  if Address_Clause_Overlay_Warnings
+                    and then Comes_From_Source (N)
+                    and then Present (O_Ent)
+                    and then Is_Object (O_Ent)
+                  then
+                     if not Is_Generic_Type (Etype (U_Ent)) then
+                        Address_Clause_Checks.Append ((N, U_Ent, O_Ent, Off));
+                     end if;
+
+                     --  If variable overlays a constant view, and we are
+                     --  warning on overlays, then mark the variable as
+                     --  overlaying a constant (we will give warnings later
+                     --  if this variable is assigned).
+
+                     if Is_Constant_Object (O_Ent)
+                       and then Ekind (U_Ent) = E_Variable
+                     then
+                        Set_Overlays_Constant (U_Ent);
+                     end if;
+                  end if;
+               end;
+
+            --  Not a valid entity for an address clause
+
+            else
+               Error_Msg_N ("address cannot be given for &", Nam);
+            end if;
+         end Address;
+
+         ---------------
+         -- Alignment --
+         ---------------
+
+         --  Alignment attribute definition clause
+
+         when Attribute_Alignment => Alignment : declare
+            Align : constant Uint := Get_Alignment_Value (Expr);
+
+         begin
+            FOnly := True;
+
+            if not Is_Type (U_Ent)
+              and then Ekind (U_Ent) /= E_Variable
+              and then Ekind (U_Ent) /= E_Constant
+            then
+               Error_Msg_N ("alignment cannot be given for &", Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            elsif Align /= No_Uint then
+               Set_Has_Alignment_Clause (U_Ent);
+               Set_Alignment            (U_Ent, Align);
+
+               --  For an array type, U_Ent is the first subtype. In that case,
+               --  also set the alignment of the anonymous base type so that
+               --  other subtypes (such as the itypes for aggregates of the
+               --  type) also receive the expected alignment.
+
+               if Is_Array_Type (U_Ent) then
+                  Set_Alignment (Base_Type (U_Ent), Align);
+               end if;
+            end if;
+         end Alignment;
+
+         ---------------
+         -- Bit_Order --
+         ---------------
+
+         --  Bit_Order attribute definition clause
+
+         when Attribute_Bit_Order => Bit_Order : declare
+         begin
+            if not Is_Record_Type (U_Ent) then
+               Error_Msg_N
+                 ("Bit_Order can only be defined for record type", Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            else
+               Analyze_And_Resolve (Expr, RTE (RE_Bit_Order));
+
+               if Etype (Expr) = Any_Type then
+                  return;
+
+               elsif not Is_Static_Expression (Expr) then
+                  Flag_Non_Static_Expr
+                    ("Bit_Order requires static expression!", Expr);
+
+               else
+                  if (Expr_Value (Expr) = 0) /= Bytes_Big_Endian then
+                     Set_Reverse_Bit_Order (U_Ent, True);
+                  end if;
+               end if;
+            end if;
+         end Bit_Order;
+
+         --------------------
+         -- Component_Size --
+         --------------------
+
+         --  Component_Size attribute definition clause
+
+         when Attribute_Component_Size => Component_Size_Case : declare
+            Csize    : constant Uint := Static_Integer (Expr);
+            Ctyp     : Entity_Id;
+            Btype    : Entity_Id;
+            Biased   : Boolean;
+            New_Ctyp : Entity_Id;
+            Decl     : Node_Id;
+
+         begin
+            if not Is_Array_Type (U_Ent) then
+               Error_Msg_N ("component size requires array type", Nam);
+               return;
+            end if;
+
+            Btype := Base_Type (U_Ent);
+            Ctyp := Component_Type (Btype);
+
+            if Duplicate_Clause then
+               null;
+
+            elsif Rep_Item_Too_Early (Btype, N) then
+               null;
+
+            elsif Csize /= No_Uint then
+               Check_Size (Expr, Ctyp, Csize, Biased);
+
+               --  For the biased case, build a declaration for a subtype that
+               --  will be used to represent the biased subtype that reflects
+               --  the biased representation of components. We need the subtype
+               --  to get proper conversions on referencing elements of the
+               --  array. Note: component size clauses are ignored in VM mode.
+
+               if VM_Target = No_VM then
+                  if Biased then
+                     New_Ctyp :=
+                       Make_Defining_Identifier (Loc,
+                         Chars =>
+                           New_External_Name (Chars (U_Ent), 'C', 0, 'T'));
+
+                     Decl :=
+                       Make_Subtype_Declaration (Loc,
+                         Defining_Identifier => New_Ctyp,
+                         Subtype_Indication  =>
+                           New_Occurrence_Of (Component_Type (Btype), Loc));
+
+                     Set_Parent (Decl, N);
+                     Analyze (Decl, Suppress => All_Checks);
+
+                     Set_Has_Delayed_Freeze        (New_Ctyp, False);
+                     Set_Esize                     (New_Ctyp, Csize);
+                     Set_RM_Size                   (New_Ctyp, Csize);
+                     Init_Alignment                (New_Ctyp);
+                     Set_Is_Itype                  (New_Ctyp, True);
+                     Set_Associated_Node_For_Itype (New_Ctyp, U_Ent);
+
+                     Set_Component_Type (Btype, New_Ctyp);
+                     Set_Biased (New_Ctyp, N, "component size clause");
+                  end if;
+
+                  Set_Component_Size (Btype, Csize);
+
+               --  For VM case, we ignore component size clauses
+
+               else
+                  --  Give a warning unless we are in GNAT mode, in which case
+                  --  the warning is suppressed since it is not useful.
+
+                  if not GNAT_Mode then
+                     Error_Msg_N
+                       ("?component size ignored in this configuration", N);
+                  end if;
+               end if;
+
+               --  Deal with warning on overridden size
+
+               if Warn_On_Overridden_Size
+                 and then Has_Size_Clause (Ctyp)
+                 and then RM_Size (Ctyp) /= Csize
+               then
+                  Error_Msg_NE
+                    ("?component size overrides size clause for&",
+                     N, Ctyp);
+               end if;
+
+               Set_Has_Component_Size_Clause (Btype, True);
+               Set_Has_Non_Standard_Rep (Btype, True);
+            end if;
+         end Component_Size_Case;
+
+         -----------------------
+         -- Constant_Indexing --
+         -----------------------
+
+         when Attribute_Constant_Indexing =>
+            Check_Indexing_Functions;
+
+         ----------------------
+         -- Default_Iterator --
+         ----------------------
+
+         when Attribute_Default_Iterator =>  Default_Iterator : declare
+            Func : Entity_Id;
+
+         begin
+            if not Is_Tagged_Type (U_Ent) then
+               Error_Msg_N
+                 ("aspect Default_Iterator applies to  tagged type", Nam);
+            end if;
+
+            Check_Iterator_Functions;
+
+            Analyze (Expr);
+
+            if not Is_Entity_Name (Expr)
+              or else Ekind (Entity (Expr)) /= E_Function
+            then
+               Error_Msg_N ("aspect Iterator must be a function", Expr);
+            else
+               Func := Entity (Expr);
+            end if;
+
+            if No (First_Formal (Func))
+              or else Etype (First_Formal (Func)) /= U_Ent
+            then
+               Error_Msg_NE
+                 ("Default Iterator must be a primitive of&", Func, U_Ent);
+            end if;
+         end Default_Iterator;
+
+         ------------------
+         -- External_Tag --
+         ------------------
+
+         when Attribute_External_Tag => External_Tag :
+         begin
+            if not Is_Tagged_Type (U_Ent) then
+               Error_Msg_N ("should be a tagged type", Nam);
+            end if;
+
+            if Duplicate_Clause then
+               null;
+
+            else
+               Analyze_And_Resolve (Expr, Standard_String);
+
+               if not Is_Static_Expression (Expr) then
+                  Flag_Non_Static_Expr
+                    ("static string required for tag name!", Nam);
+               end if;
+
+               if VM_Target = No_VM then
+                  Set_Has_External_Tag_Rep_Clause (U_Ent);
+               else
+                  Error_Msg_Name_1 := Attr;
+                  Error_Msg_N
+                    ("% attribute unsupported in this configuration", Nam);
+               end if;
+
+               if not Is_Library_Level_Entity (U_Ent) then
+                  Error_Msg_NE
+                    ("?non-unique external tag supplied for &", N, U_Ent);
+                  Error_Msg_N
+                    ("?\same external tag applies to all subprogram calls", N);
+                  Error_Msg_N
+                    ("?\corresponding internal tag cannot be obtained", N);
+               end if;
+            end if;
+         end External_Tag;
+
+         --------------------------
+         -- Implicit_Dereference --
+         --------------------------
+
+         when Attribute_Implicit_Dereference =>
+
+            --  Legality checks already performed at the point of
+            --  the type declaration, aspect is not delayed.
+
+            null;
+
+         -----------
+         -- Input --
+         -----------
+
+         when Attribute_Input =>
+            Analyze_Stream_TSS_Definition (TSS_Stream_Input);
+            Set_Has_Specified_Stream_Input (Ent);
+
+         ----------------------
+         -- Iterator_Element --
+         ----------------------
+
+         when Attribute_Iterator_Element =>
+            Analyze (Expr);
+
+            if not Is_Entity_Name (Expr)
+              or else not Is_Type (Entity (Expr))
+            then
+               Error_Msg_N ("aspect Iterator_Element must be a type", Expr);
+            end if;
+
+         -------------------
+         -- Machine_Radix --
+         -------------------
+
+         --  Machine radix attribute definition clause
+
+         when Attribute_Machine_Radix => Machine_Radix : declare
+            Radix : constant Uint := Static_Integer (Expr);
+
+         begin
+            if not Is_Decimal_Fixed_Point_Type (U_Ent) then
+               Error_Msg_N ("decimal fixed-point type expected for &", Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            elsif Radix /= No_Uint then
+               Set_Has_Machine_Radix_Clause (U_Ent);
+               Set_Has_Non_Standard_Rep (Base_Type (U_Ent));
+
+               if Radix = 2 then
+                  null;
+               elsif Radix = 10 then
+                  Set_Machine_Radix_10 (U_Ent);
+               else
+                  Error_Msg_N ("machine radix value must be 2 or 10", Expr);
+               end if;
+            end if;
+         end Machine_Radix;
+
+         -----------------
+         -- Object_Size --
+         -----------------
+
+         --  Object_Size attribute definition clause
+
+         when Attribute_Object_Size => Object_Size : declare
+            Size : constant Uint := Static_Integer (Expr);
+
+            Biased : Boolean;
+            pragma Warnings (Off, Biased);
+
+         begin
+            if not Is_Type (U_Ent) then
+               Error_Msg_N ("Object_Size cannot be given for &", Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            else
+               Check_Size (Expr, U_Ent, Size, Biased);
+
+               if Size /= 8
+                    and then
+                  Size /= 16
+                    and then
+                  Size /= 32
+                    and then
+                  UI_Mod (Size, 64) /= 0
+               then
+                  Error_Msg_N
+                    ("Object_Size must be 8, 16, 32, or multiple of 64",
+                     Expr);
+               end if;
+
+               Set_Esize (U_Ent, Size);
+               Set_Has_Object_Size_Clause (U_Ent);
+               Alignment_Check_For_Size_Change (U_Ent, Size);
+            end if;
+         end Object_Size;
+
+         ------------
+         -- Output --
+         ------------
+
+         when Attribute_Output =>
+            Analyze_Stream_TSS_Definition (TSS_Stream_Output);
+            Set_Has_Specified_Stream_Output (Ent);
+
+         ----------
+         -- Read --
+         ----------
+
+         when Attribute_Read =>
+            Analyze_Stream_TSS_Definition (TSS_Stream_Read);
+            Set_Has_Specified_Stream_Read (Ent);
+
+         ----------
+         -- Size --
+         ----------
+
+         --  Size attribute definition clause
+
+         when Attribute_Size => Size : declare
+            Size   : constant Uint := Static_Integer (Expr);
+            Etyp   : Entity_Id;
+            Biased : Boolean;
+
+         begin
+            FOnly := True;
+
+            if Duplicate_Clause then
+               null;
+
+            elsif not Is_Type (U_Ent)
+              and then Ekind (U_Ent) /= E_Variable
+              and then Ekind (U_Ent) /= E_Constant
+            then
+               Error_Msg_N ("size cannot be given for &", Nam);
+
+            elsif Is_Array_Type (U_Ent)
+              and then not Is_Constrained (U_Ent)
+            then
+               Error_Msg_N
+                 ("size cannot be given for unconstrained array", Nam);
+
+            elsif Size /= No_Uint then
+               if VM_Target /= No_VM and then not GNAT_Mode then
+
+                  --  Size clause is not handled properly on VM targets.
+                  --  Display a warning unless we are in GNAT mode, in which
+                  --  case this is useless.
+
+                  Error_Msg_N
+                    ("?size clauses are ignored in this configuration", N);
+               end if;
+
+               if Is_Type (U_Ent) then
+                  Etyp := U_Ent;
+               else
+                  Etyp := Etype (U_Ent);
+               end if;
+
+               --  Check size, note that Gigi is in charge of checking that the
+               --  size of an array or record type is OK. Also we do not check
+               --  the size in the ordinary fixed-point case, since it is too
+               --  early to do so (there may be subsequent small clause that
+               --  affects the size). We can check the size if a small clause
+               --  has already been given.
+
+               if not Is_Ordinary_Fixed_Point_Type (U_Ent)
+                 or else Has_Small_Clause (U_Ent)
+               then
+                  Check_Size (Expr, Etyp, Size, Biased);
+                  Set_Biased (U_Ent, N, "size clause", Biased);
+               end if;
+
+               --  For types set RM_Size and Esize if possible
+
+               if Is_Type (U_Ent) then
+                  Set_RM_Size (U_Ent, Size);
+
+                  --  For elementary types, increase Object_Size to power of 2,
+                  --  but not less than a storage unit in any case (normally
+                  --  this means it will be byte addressable).
+
+                  --  For all other types, nothing else to do, we leave Esize
+                  --  (object size) unset, the back end will set it from the
+                  --  size and alignment in an appropriate manner.
+
+                  --  In both cases, we check whether the alignment must be
+                  --  reset in the wake of the size change.
+
+                  if Is_Elementary_Type (U_Ent) then
+                     if Size <= System_Storage_Unit then
+                        Init_Esize (U_Ent, System_Storage_Unit);
+                     elsif Size <= 16 then
+                        Init_Esize (U_Ent, 16);
+                     elsif Size <= 32 then
+                        Init_Esize (U_Ent, 32);
+                     else
+                        Set_Esize  (U_Ent, (Size + 63) / 64 * 64);
+                     end if;
+
+                     Alignment_Check_For_Size_Change (U_Ent, Esize (U_Ent));
+                  else
+                     Alignment_Check_For_Size_Change (U_Ent, Size);
+                  end if;
+
+               --  For objects, set Esize only
+
+               else
+                  if Is_Elementary_Type (Etyp) then
+                     if Size /= System_Storage_Unit
+                          and then
+                        Size /= System_Storage_Unit * 2
+                          and then
+                        Size /= System_Storage_Unit * 4
+                           and then
+                        Size /= System_Storage_Unit * 8
+                     then
+                        Error_Msg_Uint_1 := UI_From_Int (System_Storage_Unit);
+                        Error_Msg_Uint_2 := Error_Msg_Uint_1 * 8;
+                        Error_Msg_N
+                          ("size for primitive object must be a power of 2"
+                            & " in the range ^-^", N);
+                     end if;
+                  end if;
+
+                  Set_Esize (U_Ent, Size);
+               end if;
+
+               Set_Has_Size_Clause (U_Ent);
+            end if;
+         end Size;
+
+         -----------
+         -- Small --
+         -----------
+
+         --  Small attribute definition clause
+
+         when Attribute_Small => Small : declare
+            Implicit_Base : constant Entity_Id := Base_Type (U_Ent);
+            Small         : Ureal;
+
+         begin
+            Analyze_And_Resolve (Expr, Any_Real);
+
+            if Etype (Expr) = Any_Type then
+               return;
+
+            elsif not Is_Static_Expression (Expr) then
+               Flag_Non_Static_Expr
+                 ("small requires static expression!", Expr);
+               return;
+
+            else
+               Small := Expr_Value_R (Expr);
+
+               if Small <= Ureal_0 then
+                  Error_Msg_N ("small value must be greater than zero", Expr);
+                  return;
+               end if;
+
+            end if;
+
+            if not Is_Ordinary_Fixed_Point_Type (U_Ent) then
+               Error_Msg_N
+                 ("small requires an ordinary fixed point type", Nam);
+
+            elsif Has_Small_Clause (U_Ent) then
+               Error_Msg_N ("small already given for &", Nam);
+
+            elsif Small > Delta_Value (U_Ent) then
+               Error_Msg_N
+                 ("small value must not be greater then delta value", Nam);
+
+            else
+               Set_Small_Value (U_Ent, Small);
+               Set_Small_Value (Implicit_Base, Small);
+               Set_Has_Small_Clause (U_Ent);
+               Set_Has_Small_Clause (Implicit_Base);
+               Set_Has_Non_Standard_Rep (Implicit_Base);
+            end if;
+         end Small;
+
+         ------------------
+         -- Storage_Pool --
+         ------------------
+
+         --  Storage_Pool attribute definition clause
+
+         when Attribute_Storage_Pool => Storage_Pool : declare
+            Pool : Entity_Id;
+            T    : Entity_Id;
+
+         begin
+            if Ekind (U_Ent) = E_Access_Subprogram_Type then
+               Error_Msg_N
+                 ("storage pool cannot be given for access-to-subprogram type",
+                  Nam);
+               return;
+
+            elsif not
+              Ekind_In (U_Ent, E_Access_Type, E_General_Access_Type)
+            then
+               Error_Msg_N
+                 ("storage pool can only be given for access types", Nam);
+               return;
+
+            elsif Is_Derived_Type (U_Ent) then
+               Error_Msg_N
+                 ("storage pool cannot be given for a derived access type",
+                  Nam);
+
+            elsif Duplicate_Clause then
+               return;
+
+            elsif Present (Associated_Storage_Pool (U_Ent)) then
+               Error_Msg_N ("storage pool already given for &", Nam);
+               return;
+            end if;
+
+            Analyze_And_Resolve
+              (Expr, Class_Wide_Type (RTE (RE_Root_Storage_Pool)));
+
+            if not Denotes_Variable (Expr) then
+               Error_Msg_N ("storage pool must be a variable", Expr);
+               return;
+            end if;
+
+            if Nkind (Expr) = N_Type_Conversion then
+               T := Etype (Expression (Expr));
+            else
+               T := Etype (Expr);
+            end if;
+
+            --  The Stack_Bounded_Pool is used internally for implementing
+            --  access types with a Storage_Size. Since it only work properly
+            --  when used on one specific type, we need to check that it is not
+            --  hijacked improperly:
+
+            --    type T is access Integer;
+            --    for T'Storage_Size use n;
+            --    type Q is access Float;
+            --    for Q'Storage_Size use T'Storage_Size; -- incorrect
+
+            if RTE_Available (RE_Stack_Bounded_Pool)
+              and then Base_Type (T) = RTE (RE_Stack_Bounded_Pool)
+            then
+               Error_Msg_N ("non-shareable internal Pool", Expr);
+               return;
+            end if;
+
+            --  If the argument is a name that is not an entity name, then
+            --  we construct a renaming operation to define an entity of
+            --  type storage pool.
+
+            if not Is_Entity_Name (Expr)
+              and then Is_Object_Reference (Expr)
+            then
+               Pool := Make_Temporary (Loc, 'P', Expr);
+
+               declare
+                  Rnode : constant Node_Id :=
+                            Make_Object_Renaming_Declaration (Loc,
+                              Defining_Identifier => Pool,
+                              Subtype_Mark        =>
+                                New_Occurrence_Of (Etype (Expr), Loc),
+                              Name                => Expr);
+
+               begin
+                  Insert_Before (N, Rnode);
+                  Analyze (Rnode);
+                  Set_Associated_Storage_Pool (U_Ent, Pool);
+               end;
+
+            elsif Is_Entity_Name (Expr) then
+               Pool := Entity (Expr);
+
+               --  If pool is a renamed object, get original one. This can
+               --  happen with an explicit renaming, and within instances.
+
+               while Present (Renamed_Object (Pool))
+                 and then Is_Entity_Name (Renamed_Object (Pool))
+               loop
+                  Pool := Entity (Renamed_Object (Pool));
+               end loop;
+
+               if Present (Renamed_Object (Pool))
+                 and then Nkind (Renamed_Object (Pool)) = N_Type_Conversion
+                 and then Is_Entity_Name (Expression (Renamed_Object (Pool)))
+               then
+                  Pool := Entity (Expression (Renamed_Object (Pool)));
+               end if;
+
+               Set_Associated_Storage_Pool (U_Ent, Pool);
+
+            elsif Nkind (Expr) = N_Type_Conversion
+              and then Is_Entity_Name (Expression (Expr))
+              and then Nkind (Original_Node (Expr)) = N_Attribute_Reference
+            then
+               Pool := Entity (Expression (Expr));
+               Set_Associated_Storage_Pool (U_Ent, Pool);
+
+            else
+               Error_Msg_N ("incorrect reference to a Storage Pool", Expr);
+               return;
+            end if;
+         end Storage_Pool;
+
+         ------------------
+         -- Storage_Size --
+         ------------------
+
+         --  Storage_Size attribute definition clause
+
+         when Attribute_Storage_Size => Storage_Size : declare
+            Btype : constant Entity_Id := Base_Type (U_Ent);
+            Sprag : Node_Id;
+
+         begin
+            if Is_Task_Type (U_Ent) then
+               Check_Restriction (No_Obsolescent_Features, N);
+
+               if Warn_On_Obsolescent_Feature then
+                  Error_Msg_N
+                    ("storage size clause for task is an " &
+                     "obsolescent feature (RM J.9)?", N);
+                  Error_Msg_N ("\use Storage_Size pragma instead?", N);
+               end if;
+
+               FOnly := True;
+            end if;
+
+            if not Is_Access_Type (U_Ent)
+              and then Ekind (U_Ent) /= E_Task_Type
+            then
+               Error_Msg_N ("storage size cannot be given for &", Nam);
+
+            elsif Is_Access_Type (U_Ent) and Is_Derived_Type (U_Ent) then
+               Error_Msg_N
+                 ("storage size cannot be given for a derived access type",
+                  Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            else
+               Analyze_And_Resolve (Expr, Any_Integer);
+
+               if Is_Access_Type (U_Ent) then
+                  if Present (Associated_Storage_Pool (U_Ent)) then
+                     Error_Msg_N ("storage pool already given for &", Nam);
+                     return;
+                  end if;
+
+                  if Is_OK_Static_Expression (Expr)
+                    and then Expr_Value (Expr) = 0
+                  then
+                     Set_No_Pool_Assigned (Btype);
+                  end if;
+
+               else -- Is_Task_Type (U_Ent)
+                  Sprag := Get_Rep_Pragma (Btype, Name_Storage_Size);
+
+                  if Present (Sprag) then
+                     Error_Msg_Sloc := Sloc (Sprag);
+                     Error_Msg_N
+                       ("Storage_Size already specified#", Nam);
+                     return;
+                  end if;
+               end if;
+
+               Set_Has_Storage_Size_Clause (Btype);
+            end if;
+         end Storage_Size;
+
+         -----------------
+         -- Stream_Size --
+         -----------------
+
+         when Attribute_Stream_Size => Stream_Size : declare
+            Size : constant Uint := Static_Integer (Expr);
+
+         begin
+            if Ada_Version <= Ada_95 then
+               Check_Restriction (No_Implementation_Attributes, N);
+            end if;
+
+            if Duplicate_Clause then
+               null;
+
+            elsif Is_Elementary_Type (U_Ent) then
+               if Size /= System_Storage_Unit
+                    and then
+                  Size /= System_Storage_Unit * 2
+                    and then
+                  Size /= System_Storage_Unit * 4
+                     and then
+                  Size /= System_Storage_Unit * 8
+               then
+                  Error_Msg_Uint_1 := UI_From_Int (System_Storage_Unit);
+                  Error_Msg_N
+                    ("stream size for elementary type must be a"
+                       & " power of 2 and at least ^", N);
+
+               elsif RM_Size (U_Ent) > Size then
+                  Error_Msg_Uint_1 := RM_Size (U_Ent);
+                  Error_Msg_N
+                    ("stream size for elementary type must be a"
+                       & " power of 2 and at least ^", N);
+               end if;
+
+               Set_Has_Stream_Size_Clause (U_Ent);
+
+            else
+               Error_Msg_N ("Stream_Size cannot be given for &", Nam);
+            end if;
+         end Stream_Size;
+
+         ----------------
+         -- Value_Size --
+         ----------------
+
+         --  Value_Size attribute definition clause
+
+         when Attribute_Value_Size => Value_Size : declare
+            Size   : constant Uint := Static_Integer (Expr);
+            Biased : Boolean;
+
+         begin
+            if not Is_Type (U_Ent) then
+               Error_Msg_N ("Value_Size cannot be given for &", Nam);
+
+            elsif Duplicate_Clause then
+               null;
+
+            elsif Is_Array_Type (U_Ent)
+              and then not Is_Constrained (U_Ent)
+            then
+               Error_Msg_N
+                 ("Value_Size cannot be given for unconstrained array", Nam);
+
+            else
+               if Is_Elementary_Type (U_Ent) then
+                  Check_Size (Expr, U_Ent, Size, Biased);
+                  Set_Biased (U_Ent, N, "value size clause", Biased);
+               end if;
+
+               Set_RM_Size (U_Ent, Size);
+            end if;
+         end Value_Size;
+
+         -----------------------
+         -- Variable_Indexing --
+         -----------------------
+
+         when Attribute_Variable_Indexing =>
+            Check_Indexing_Functions;
+
+         -----------
+         -- Write --
+         -----------
+
+         when Attribute_Write =>
+            Analyze_Stream_TSS_Definition (TSS_Stream_Write);
+            Set_Has_Specified_Stream_Write (Ent);
+
+         --  All other attributes cannot be set
+
+         when others =>
+            Error_Msg_N
+              ("attribute& cannot be set with definition clause", N);
+      end case;
+
+      --  The test for the type being frozen must be performed after any
+      --  expression the clause has been analyzed since the expression itself
+      --  might cause freezing that makes the clause illegal.
+
+      if Rep_Item_Too_Late (U_Ent, N, FOnly) then
+         return;
+      end if;
+   end Analyze_Attribute_Definition_Clause;
+
+   ----------------------------
+   -- Analyze_Code_Statement --
+   ----------------------------
+
+   procedure Analyze_Code_Statement (N : Node_Id) is
+      HSS   : constant Node_Id   := Parent (N);
+      SBody : constant Node_Id   := Parent (HSS);
+      Subp  : constant Entity_Id := Current_Scope;
+      Stmt  : Node_Id;
+      Decl  : Node_Id;
+      StmtO : Node_Id;
+      DeclO : Node_Id;
+
+   begin
+      --  Analyze and check we get right type, note that this implements the
+      --  requirement (RM 13.8(1)) that Machine_Code be with'ed, since that
+      --  is the only way that Asm_Insn could possibly be visible.
+
+      Analyze_And_Resolve (Expression (N));
+
+      if Etype (Expression (N)) = Any_Type then
+         return;
+      elsif Etype (Expression (N)) /= RTE (RE_Asm_Insn) then
+         Error_Msg_N ("incorrect type for code statement", N);
+         return;
+      end if;
+
+      Check_Code_Statement (N);
+
+      --  Make sure we appear in the handled statement sequence of a
+      --  subprogram (RM 13.8(3)).
+
+      if Nkind (HSS) /= N_Handled_Sequence_Of_Statements
+        or else Nkind (SBody) /= N_Subprogram_Body
+      then
+         Error_Msg_N
+           ("code statement can only appear in body of subprogram", N);
+         return;
+      end if;
+
+      --  Do remaining checks (RM 13.8(3)) if not already done
+
+      if not Is_Machine_Code_Subprogram (Subp) then
+         Set_Is_Machine_Code_Subprogram (Subp);
+
+         --  No exception handlers allowed
+
+         if Present (Exception_Handlers (HSS)) then
+            Error_Msg_N
+              ("exception handlers not permitted in machine code subprogram",
+               First (Exception_Handlers (HSS)));
+         end if;
+
+         --  No declarations other than use clauses and pragmas (we allow
+         --  certain internally generated declarations as well).
+
+         Decl := First (Declarations (SBody));
+         while Present (Decl) loop
+            DeclO := Original_Node (Decl);
+            if Comes_From_Source (DeclO)
+              and not Nkind_In (DeclO, N_Pragma,
+                                       N_Use_Package_Clause,
+                                       N_Use_Type_Clause,
+                                       N_Implicit_Label_Declaration)
+            then
+               Error_Msg_N
+                 ("this declaration not allowed in machine code subprogram",
+                  DeclO);
+            end if;
+
+            Next (Decl);
+         end loop;
+
+         --  No statements other than code statements, pragmas, and labels.
+         --  Again we allow certain internally generated statements.
+
+         --  In Ada 2012, qualified expressions are names, and the code
+         --  statement is initially parsed as a procedure call.
+
+         Stmt := First (Statements (HSS));
+         while Present (Stmt) loop
+            StmtO := Original_Node (Stmt);
+
+            --  A procedure call transformed into a code statement is OK.
+
+            if Ada_Version >= Ada_2012
+              and then Nkind (StmtO) = N_Procedure_Call_Statement
+              and then Nkind (Name (StmtO)) = N_Qualified_Expression
+            then
+               null;
+
+            elsif Comes_From_Source (StmtO)
+              and then not Nkind_In (StmtO, N_Pragma,
+                                            N_Label,
+                                            N_Code_Statement)
+            then
+               Error_Msg_N
+                 ("this statement is not allowed in machine code subprogram",
+                  StmtO);
+            end if;
+
+            Next (Stmt);
+         end loop;
+      end if;
+   end Analyze_Code_Statement;
+
+   -----------------------------------------------
+   -- Analyze_Enumeration_Representation_Clause --
+   -----------------------------------------------
+
+   procedure Analyze_Enumeration_Representation_Clause (N : Node_Id) is
+      Ident    : constant Node_Id    := Identifier (N);
+      Aggr     : constant Node_Id    := Array_Aggregate (N);
+      Enumtype : Entity_Id;
+      Elit     : Entity_Id;
+      Expr     : Node_Id;
+      Assoc    : Node_Id;
+      Choice   : Node_Id;
+      Val      : Uint;
+
+      Err : Boolean := False;
+      --  Set True to avoid cascade errors and crashes on incorrect source code
+
+      Lo : constant Uint := Expr_Value (Type_Low_Bound (Universal_Integer));
+      Hi : constant Uint := Expr_Value (Type_High_Bound (Universal_Integer));
+      --  Allowed range of universal integer (= allowed range of enum lit vals)
+
+      Min : Uint;
+      Max : Uint;
+      --  Minimum and maximum values of entries
+
+      Max_Node : Node_Id;
+      --  Pointer to node for literal providing max value
+
+   begin
+      if Ignore_Rep_Clauses then
+         return;
+      end if;
+
+      --  First some basic error checks
+
+      Find_Type (Ident);
+      Enumtype := Entity (Ident);
+
+      if Enumtype = Any_Type
+        or else Rep_Item_Too_Early (Enumtype, N)
+      then
+         return;
+      else
+         Enumtype := Underlying_Type (Enumtype);
+      end if;
+
+      if not Is_Enumeration_Type (Enumtype) then
+         Error_Msg_NE
+           ("enumeration type required, found}",
+            Ident, First_Subtype (Enumtype));
+         return;
+      end if;
+
+      --  Ignore rep clause on generic actual type. This will already have
+      --  been flagged on the template as an error, and this is the safest
+      --  way to ensure we don't get a junk cascaded message in the instance.
+
+      if Is_Generic_Actual_Type (Enumtype) then
+         return;
+
+      --  Type must be in current scope
+
+      elsif Scope (Enumtype) /= Current_Scope then
+         Error_Msg_N ("type must be declared in this scope", Ident);
+         return;
+
+      --  Type must be a first subtype
+
+      elsif not Is_First_Subtype (Enumtype) then
+         Error_Msg_N ("cannot give enumeration rep clause for subtype", N);
+         return;
+
+      --  Ignore duplicate rep clause
+
+      elsif Has_Enumeration_Rep_Clause (Enumtype) then
+         Error_Msg_N ("duplicate enumeration rep clause ignored", N);
+         return;
+
+      --  Don't allow rep clause for standard [wide_[wide_]]character
+
+      elsif Is_Standard_Character_Type (Enumtype) then
+         Error_Msg_N ("enumeration rep clause not allowed for this type", N);
+         return;
+
+      --  Check that the expression is a proper aggregate (no parentheses)
+
+      elsif Paren_Count (Aggr) /= 0 then
+         Error_Msg
+           ("extra parentheses surrounding aggregate not allowed",
+            First_Sloc (Aggr));
+         return;
+
+      --  All tests passed, so set rep clause in place
+
+      else
+         Set_Has_Enumeration_Rep_Clause (Enumtype);
+         Set_Has_Enumeration_Rep_Clause (Base_Type (Enumtype));
+      end if;
+
+      --  Now we process the aggregate. Note that we don't use the normal
+      --  aggregate code for this purpose, because we don't want any of the
+      --  normal expansion activities, and a number of special semantic
+      --  rules apply (including the component type being any integer type)
+
+      Elit := First_Literal (Enumtype);
+
+      --  First the positional entries if any
+
+      if Present (Expressions (Aggr)) then
+         Expr := First (Expressions (Aggr));
+         while Present (Expr) loop
+            if No (Elit) then
+               Error_Msg_N ("too many entries in aggregate", Expr);
+               return;
+            end if;
+
+            Val := Static_Integer (Expr);
+
+            --  Err signals that we found some incorrect entries processing
+            --  the list. The final checks for completeness and ordering are
+            --  skipped in this case.
+
+            if Val = No_Uint then
+               Err := True;
+            elsif Val < Lo or else Hi < Val then
+               Error_Msg_N ("value outside permitted range", Expr);
+               Err := True;
+            end if;
+
+            Set_Enumeration_Rep (Elit, Val);
+            Set_Enumeration_Rep_Expr (Elit, Expr);
+            Next (Expr);
+            Next (Elit);
+         end loop;
+      end if;
+
+      --  Now process the named entries if present
+
+      if Present (Component_Associations (Aggr)) then
+         Assoc := First (Component_Associations (Aggr));
+         while Present (Assoc) loop
+            Choice := First (Choices (Assoc));
+
+            if Present (Next (Choice)) then
+               Error_Msg_N
+                 ("multiple choice not allowed here", Next (Choice));
+               Err := True;
+            end if;
+
+            if Nkind (Choice) = N_Others_Choice then
+               Error_Msg_N ("others choice not allowed here", Choice);
+               Err := True;
+
+            elsif Nkind (Choice) = N_Range then
+
+               --  ??? should allow zero/one element range here
+
+               Error_Msg_N ("range not allowed here", Choice);
+               Err := True;
+
+            else
+               Analyze_And_Resolve (Choice, Enumtype);
+
+               if Error_Posted (Choice) then
+                  Err := True;
+               end if;
+
+               if not Err then
+                  if Is_Entity_Name (Choice)
+                    and then Is_Type (Entity (Choice))
+                  then
+                     Error_Msg_N ("subtype name not allowed here", Choice);
+                     Err := True;
+
+                     --  ??? should allow static subtype with zero/one entry
+
+                  elsif Etype (Choice) = Base_Type (Enumtype) then
+                     if not Is_Static_Expression (Choice) then
+                        Flag_Non_Static_Expr
+                          ("non-static expression used for choice!", Choice);
+                        Err := True;
+
+                     else
+                        Elit := Expr_Value_E (Choice);
+
+                        if Present (Enumeration_Rep_Expr (Elit)) then
+                           Error_Msg_Sloc :=
+                             Sloc (Enumeration_Rep_Expr (Elit));
+                           Error_Msg_NE
+                             ("representation for& previously given#",
+                              Choice, Elit);
+                           Err := True;
+                        end if;
+
+                        Set_Enumeration_Rep_Expr (Elit, Expression (Assoc));
+
+                        Expr := Expression (Assoc);
+                        Val := Static_Integer (Expr);
+
+                        if Val = No_Uint then
+                           Err := True;
+
+                        elsif Val < Lo or else Hi < Val then
+                           Error_Msg_N ("value outside permitted range", Expr);
+                           Err := True;
+                        end if;
+
+                        Set_Enumeration_Rep (Elit, Val);
+                     end if;
+                  end if;
+               end if;
+            end if;
+
+            Next (Assoc);
+         end loop;
+      end if;
+
+      --  Aggregate is fully processed. Now we check that a full set of
+      --  representations was given, and that they are in range and in order.
+      --  These checks are only done if no other errors occurred.
+
+      if not Err then
+         Min  := No_Uint;
+         Max  := No_Uint;
+
+         Elit := First_Literal (Enumtype);
+         while Present (Elit) loop
+            if No (Enumeration_Rep_Expr (Elit)) then
+               Error_Msg_NE ("missing representation for&!", N, Elit);
+
+            else
+               Val := Enumeration_Rep (Elit);
+
+               if Min = No_Uint then
+                  Min := Val;
+               end if;
+
+               if Val /= No_Uint then
+                  if Max /= No_Uint and then Val <= Max then
+                     Error_Msg_NE
+                       ("enumeration value for& not ordered!",
+                        Enumeration_Rep_Expr (Elit), Elit);
+                  end if;
+
+                  Max_Node := Enumeration_Rep_Expr (Elit);
+                  Max := Val;
+               end if;
+
+               --  If there is at least one literal whose representation is not
+               --  equal to the Pos value, then note that this enumeration type
+               --  has a non-standard representation.
+
+               if Val /= Enumeration_Pos (Elit) then
+                  Set_Has_Non_Standard_Rep (Base_Type (Enumtype));
+               end if;
+            end if;
+
+            Next (Elit);
+         end loop;
+
+         --  Now set proper size information
+
+         declare
+            Minsize : Uint := UI_From_Int (Minimum_Size (Enumtype));
+
+         begin
+            if Has_Size_Clause (Enumtype) then
+
+               --  All OK, if size is OK now
+
+               if RM_Size (Enumtype) >= Minsize then
+                  null;
+
+               else
+                  --  Try if we can get by with biasing
+
+                  Minsize :=
+                    UI_From_Int (Minimum_Size (Enumtype, Biased => True));
+
+                  --  Error message if even biasing does not work
+
+                  if RM_Size (Enumtype) < Minsize then
+                     Error_Msg_Uint_1 := RM_Size (Enumtype);
+                     Error_Msg_Uint_2 := Max;
+                     Error_Msg_N
+                       ("previously given size (^) is too small "
+                        & "for this value (^)", Max_Node);
+
+                  --  If biasing worked, indicate that we now have biased rep
+
+                  else
+                     Set_Biased
+                       (Enumtype, Size_Clause (Enumtype), "size clause");
+                  end if;
+               end if;
+
+            else
+               Set_RM_Size    (Enumtype, Minsize);
+               Set_Enum_Esize (Enumtype);
+            end if;
+
+            Set_RM_Size   (Base_Type (Enumtype), RM_Size   (Enumtype));
+            Set_Esize     (Base_Type (Enumtype), Esize     (Enumtype));
+            Set_Alignment (Base_Type (Enumtype), Alignment (Enumtype));
+         end;
+      end if;
+
+      --  We repeat the too late test in case it froze itself!
+
+      if Rep_Item_Too_Late (Enumtype, N) then
+         null;
+      end if;
+   end Analyze_Enumeration_Representation_Clause;
+
+   ----------------------------
+   -- Analyze_Free_Statement --
+   ----------------------------
+
+   procedure Analyze_Free_Statement (N : Node_Id) is
+   begin
+      Analyze (Expression (N));
+   end Analyze_Free_Statement;
+
+   ---------------------------
+   -- Analyze_Freeze_Entity --
+   ---------------------------
+
+   procedure Analyze_Freeze_Entity (N : Node_Id) is
+      E : constant Entity_Id := Entity (N);
+
+   begin
+      --  Remember that we are processing a freezing entity. Required to
+      --  ensure correct decoration of internal entities associated with
+      --  interfaces (see New_Overloaded_Entity).
+
+      Inside_Freezing_Actions := Inside_Freezing_Actions + 1;
+
+      --  For tagged types covering interfaces add internal entities that link
+      --  the primitives of the interfaces with the primitives that cover them.
+      --  Note: These entities were originally generated only when generating
+      --  code because their main purpose was to provide support to initialize
+      --  the secondary dispatch tables. They are now generated also when
+      --  compiling with no code generation to provide ASIS the relationship
+      --  between interface primitives and tagged type primitives. They are
+      --  also used to locate primitives covering interfaces when processing
+      --  generics (see Derive_Subprograms).
+
+      if Ada_Version >= Ada_2005
+        and then Ekind (E) = E_Record_Type
+        and then Is_Tagged_Type (E)
+        and then not Is_Interface (E)
+        and then Has_Interfaces (E)
+      then
+         --  This would be a good common place to call the routine that checks
+         --  overriding of interface primitives (and thus factorize calls to
+         --  Check_Abstract_Overriding located at different contexts in the
+         --  compiler). However, this is not possible because it causes
+         --  spurious errors in case of late overriding.
+
+         Add_Internal_Interface_Entities (E);
+      end if;
+
+      --  Check CPP types
+
+      if Ekind (E) = E_Record_Type
+        and then Is_CPP_Class (E)
+        and then Is_Tagged_Type (E)
+        and then Tagged_Type_Expansion
+        and then Expander_Active
+      then
+         if CPP_Num_Prims (E) = 0 then
+
+            --  If the CPP type has user defined components then it must import
+            --  primitives from C++. This is required because if the C++ class
+            --  has no primitives then the C++ compiler does not added the _tag
+            --  component to the type.
+
+            pragma Assert (Chars (First_Entity (E)) = Name_uTag);
+
+            if First_Entity (E) /= Last_Entity (E) then
+               Error_Msg_N
+                 ("?'C'P'P type must import at least one primitive from C++",
+                  E);
+            end if;
+         end if;
+
+         --  Check that all its primitives are abstract or imported from C++.
+         --  Check also availability of the C++ constructor.
+
+         declare
+            Has_Constructors : constant Boolean := Has_CPP_Constructors (E);
+            Elmt             : Elmt_Id;
+            Error_Reported   : Boolean := False;
+            Prim             : Node_Id;
+
+         begin
+            Elmt := First_Elmt (Primitive_Operations (E));
+            while Present (Elmt) loop
+               Prim := Node (Elmt);
+
+               if Comes_From_Source (Prim) then
+                  if Is_Abstract_Subprogram (Prim) then
+                     null;
+
+                  elsif not Is_Imported (Prim)
+                    or else Convention (Prim) /= Convention_CPP
+                  then
+                     Error_Msg_N
+                       ("?primitives of 'C'P'P types must be imported from C++"
+                        & " or abstract", Prim);
+
+                  elsif not Has_Constructors
+                     and then not Error_Reported
+                  then
+                     Error_Msg_Name_1 := Chars (E);
+                     Error_Msg_N
+                       ("?'C'P'P constructor required for type %", Prim);
+                     Error_Reported := True;
+                  end if;
+               end if;
+
+               Next_Elmt (Elmt);
+            end loop;
+         end;
+      end if;
+
+      Inside_Freezing_Actions := Inside_Freezing_Actions - 1;
+
+      --  If we have a type with predicates, build predicate function
+
+      if Is_Type (E) and then Has_Predicates (E) then
+         Build_Predicate_Function (E, N);
+      end if;
+
+      --  If type has delayed aspects, this is where we do the preanalysis at
+      --  the freeze point, as part of the consistent visibility check. Note
+      --  that this must be done after calling Build_Predicate_Function or
+      --  Build_Invariant_Procedure since these subprograms fix occurrences of
+      --  the subtype name in the saved expression so that they will not cause
+      --  trouble in the preanalysis.
+
+      if Has_Delayed_Aspects (E) then
+         declare
+            Ritem : Node_Id;
+
+         begin
+            --  Look for aspect specification entries for this entity
+
+            Ritem := First_Rep_Item (E);
+            while Present (Ritem) loop
+               if Nkind (Ritem) = N_Aspect_Specification
+                 and then Entity (Ritem) = E
+                 and then Is_Delayed_Aspect (Ritem)
+                 and then Scope (E) = Current_Scope
+               then
+                  Check_Aspect_At_Freeze_Point (Ritem);
+               end if;
+
+               Next_Rep_Item (Ritem);
+            end loop;
+         end;
+      end if;
+   end Analyze_Freeze_Entity;
+
+   ------------------------------------------
+   -- Analyze_Record_Representation_Clause --
+   ------------------------------------------
+
+   --  Note: we check as much as we can here, but we can't do any checks
+   --  based on the position values (e.g. overlap checks) until freeze time
+   --  because especially in Ada 2005 (machine scalar mode), the processing
+   --  for non-standard bit order can substantially change the positions.
+   --  See procedure Check_Record_Representation_Clause (called from Freeze)
+   --  for the remainder of this processing.
+
+   procedure Analyze_Record_Representation_Clause (N : Node_Id) is
+      Ident   : constant Node_Id := Identifier (N);
+      Biased  : Boolean;
+      CC      : Node_Id;
+      Comp    : Entity_Id;
+      Fbit    : Uint;
+      Hbit    : Uint := Uint_0;
+      Lbit    : Uint;
+      Ocomp   : Entity_Id;
+      Posit   : Uint;
+      Rectype : Entity_Id;
+
+      CR_Pragma : Node_Id := Empty;
+      --  Points to N_Pragma node if Complete_Representation pragma present
+
+   begin
+      if Ignore_Rep_Clauses then
+         return;
+      end if;
+
+      Find_Type (Ident);
+      Rectype := Entity (Ident);
+
+      if Rectype = Any_Type
+        or else Rep_Item_Too_Early (Rectype, N)
+      then
+         return;
+      else
+         Rectype := Underlying_Type (Rectype);
+      end if;
+
+      --  First some basic error checks
+
+      if not Is_Record_Type (Rectype) then
+         Error_Msg_NE
+           ("record type required, found}", Ident, First_Subtype (Rectype));
+         return;
+
+      elsif Scope (Rectype) /= Current_Scope then
+         Error_Msg_N ("type must be declared in this scope", N);
+         return;
+
+      elsif not Is_First_Subtype (Rectype) then
+         Error_Msg_N ("cannot give record rep clause for subtype", N);
+         return;
+
+      elsif Has_Record_Rep_Clause (Rectype) then
+         Error_Msg_N ("duplicate record rep clause ignored", N);
+         return;
+
+      elsif Rep_Item_Too_Late (Rectype, N) then
+         return;
+      end if;
+
+      if Present (Mod_Clause (N)) then
+         declare
+            Loc     : constant Source_Ptr := Sloc (N);
+            M       : constant Node_Id := Mod_Clause (N);
+            P       : constant List_Id := Pragmas_Before (M);
+            AtM_Nod : Node_Id;
+
+            Mod_Val : Uint;
+            pragma Warnings (Off, Mod_Val);
+
+         begin
+            Check_Restriction (No_Obsolescent_Features, Mod_Clause (N));
+
+            if Warn_On_Obsolescent_Feature then
+               Error_Msg_N
+                 ("mod clause is an obsolescent feature (RM J.8)?", N);
+               Error_Msg_N
+                 ("\use alignment attribute definition clause instead?", N);
+            end if;
+
+            if Present (P) then
+               Analyze_List (P);
+            end if;
+
+            --  In ASIS_Mode mode, expansion is disabled, but we must convert
+            --  the Mod clause into an alignment clause anyway, so that the
+            --  back-end can compute and back-annotate properly the size and
+            --  alignment of types that may include this record.
+
+            --  This seems dubious, this destroys the source tree in a manner
+            --  not detectable by ASIS ???
+
+            if Operating_Mode = Check_Semantics and then ASIS_Mode then
+               AtM_Nod :=
+                 Make_Attribute_Definition_Clause (Loc,
+                   Name       => New_Reference_To (Base_Type (Rectype), Loc),
+                   Chars      => Name_Alignment,
+                   Expression => Relocate_Node (Expression (M)));
+
+               Set_From_At_Mod (AtM_Nod);
+               Insert_After (N, AtM_Nod);
+               Mod_Val := Get_Alignment_Value (Expression (AtM_Nod));
+               Set_Mod_Clause (N, Empty);
+
+            else
+               --  Get the alignment value to perform error checking
+
+               Mod_Val := Get_Alignment_Value (Expression (M));
+            end if;
+         end;
+      end if;
+
+      --  For untagged types, clear any existing component clauses for the
+      --  type. If the type is derived, this is what allows us to override
+      --  a rep clause for the parent. For type extensions, the representation
+      --  of the inherited components is inherited, so we want to keep previous
+      --  component clauses for completeness.
+
+      if not Is_Tagged_Type (Rectype) then
+         Comp := First_Component_Or_Discriminant (Rectype);
+         while Present (Comp) loop
+            Set_Component_Clause (Comp, Empty);
+            Next_Component_Or_Discriminant (Comp);
+         end loop;
+      end if;
+
+      --  All done if no component clauses
+
+      CC := First (Component_Clauses (N));
+
+      if No (CC) then
+         return;
+      end if;
+
+      --  A representation like this applies to the base type
+
+      Set_Has_Record_Rep_Clause (Base_Type (Rectype));
+      Set_Has_Non_Standard_Rep  (Base_Type (Rectype));
+      Set_Has_Specified_Layout  (Base_Type (Rectype));
+
+      --  Process the component clauses
+
+      while Present (CC) loop
+
+         --  Pragma
+
+         if Nkind (CC) = N_Pragma then
+            Analyze (CC);
+
+            --  The only pragma of interest is Complete_Representation
+
+            if Pragma_Name (CC) = Name_Complete_Representation then
+               CR_Pragma := CC;
+            end if;
+
+         --  Processing for real component clause
+
+         else
+            Posit := Static_Integer (Position  (CC));
+            Fbit  := Static_Integer (First_Bit (CC));
+            Lbit  := Static_Integer (Last_Bit  (CC));
+
+            if Posit /= No_Uint
+              and then Fbit /= No_Uint
+              and then Lbit /= No_Uint
+            then
+               if Posit < 0 then
+                  Error_Msg_N
+                    ("position cannot be negative", Position (CC));
+
+               elsif Fbit < 0 then
+                  Error_Msg_N
+                    ("first bit cannot be negative", First_Bit (CC));
+
+               --  The Last_Bit specified in a component clause must not be
+               --  less than the First_Bit minus one (RM-13.5.1(10)).
+
+               elsif Lbit < Fbit - 1 then
+                  Error_Msg_N
+                    ("last bit cannot be less than first bit minus one",
+                     Last_Bit (CC));
+
+               --  Values look OK, so find the corresponding record component
+               --  Even though the syntax allows an attribute reference for
+               --  implementation-defined components, GNAT does not allow the
+               --  tag to get an explicit position.
+
+               elsif Nkind (Component_Name (CC)) = N_Attribute_Reference then
+                  if Attribute_Name (Component_Name (CC)) = Name_Tag then
+                     Error_Msg_N ("position of tag cannot be specified", CC);
+                  else
+                     Error_Msg_N ("illegal component name", CC);
+                  end if;
+
+               else
+                  Comp := First_Entity (Rectype);
+                  while Present (Comp) loop
+                     exit when Chars (Comp) = Chars (Component_Name (CC));
+                     Next_Entity (Comp);
+                  end loop;
+
+                  if No (Comp) then
+
+                     --  Maybe component of base type that is absent from
+                     --  statically constrained first subtype.
+
+                     Comp := First_Entity (Base_Type (Rectype));
+                     while Present (Comp) loop
+                        exit when Chars (Comp) = Chars (Component_Name (CC));
+                        Next_Entity (Comp);
+                     end loop;
+                  end if;
+
+                  if No (Comp) then
+                     Error_Msg_N
+                       ("component clause is for non-existent field", CC);
+
+                  --  Ada 2012 (AI05-0026): Any name that denotes a
+                  --  discriminant of an object of an unchecked union type
+                  --  shall not occur within a record_representation_clause.
+
+                  --  The general restriction of using record rep clauses on
+                  --  Unchecked_Union types has now been lifted. Since it is
+                  --  possible to introduce a record rep clause which mentions
+                  --  the discriminant of an Unchecked_Union in non-Ada 2012
+                  --  code, this check is applied to all versions of the
+                  --  language.
+
+                  elsif Ekind (Comp) = E_Discriminant
+                    and then Is_Unchecked_Union (Rectype)
+                  then
+                     Error_Msg_N
+                       ("cannot reference discriminant of Unchecked_Union",
+                        Component_Name (CC));
+
+                  elsif Present (Component_Clause (Comp)) then
+
+                     --  Diagnose duplicate rep clause, or check consistency
+                     --  if this is an inherited component. In a double fault,
+                     --  there may be a duplicate inconsistent clause for an
+                     --  inherited component.
+
+                     if Scope (Original_Record_Component (Comp)) = Rectype
+                       or else Parent (Component_Clause (Comp)) = N
+                     then
+                        Error_Msg_Sloc := Sloc (Component_Clause (Comp));
+                        Error_Msg_N ("component clause previously given#", CC);
+
+                     else
+                        declare
+                           Rep1 : constant Node_Id := Component_Clause (Comp);
+                        begin
+                           if Intval (Position (Rep1)) /=
+                                                   Intval (Position (CC))
+                             or else Intval (First_Bit (Rep1)) /=
+                                                   Intval (First_Bit (CC))
+                             or else Intval (Last_Bit (Rep1)) /=
+                                                   Intval (Last_Bit (CC))
+                           then
+                              Error_Msg_N ("component clause inconsistent "
+                                & "with representation of ancestor", CC);
+                           elsif Warn_On_Redundant_Constructs then
+                              Error_Msg_N ("?redundant component clause "
+                                & "for inherited component!", CC);
+                           end if;
+                        end;
+                     end if;
+
+                  --  Normal case where this is the first component clause we
+                  --  have seen for this entity, so set it up properly.
+
+                  else
+                     --  Make reference for field in record rep clause and set
+                     --  appropriate entity field in the field identifier.
+
+                     Generate_Reference
+                       (Comp, Component_Name (CC), Set_Ref => False);
+                     Set_Entity (Component_Name (CC), Comp);
+
+                     --  Update Fbit and Lbit to the actual bit number
+
+                     Fbit := Fbit + UI_From_Int (SSU) * Posit;
+                     Lbit := Lbit + UI_From_Int (SSU) * Posit;
+
+                     if Has_Size_Clause (Rectype)
+                       and then RM_Size (Rectype) <= Lbit
+                     then
+                        Error_Msg_N
+                          ("bit number out of range of specified size",
+                           Last_Bit (CC));
+                     else
+                        Set_Component_Clause     (Comp, CC);
+                        Set_Component_Bit_Offset (Comp, Fbit);
+                        Set_Esize                (Comp, 1 + (Lbit - Fbit));
+                        Set_Normalized_First_Bit (Comp, Fbit mod SSU);
+                        Set_Normalized_Position  (Comp, Fbit / SSU);
+
+                        if Warn_On_Overridden_Size
+                          and then Has_Size_Clause (Etype (Comp))
+                          and then RM_Size (Etype (Comp)) /= Esize (Comp)
+                        then
+                           Error_Msg_NE
+                             ("?component size overrides size clause for&",
+                              Component_Name (CC), Etype (Comp));
+                        end if;
+
+                        --  This information is also set in the corresponding
+                        --  component of the base type, found by accessing the
+                        --  Original_Record_Component link if it is present.
+
+                        Ocomp := Original_Record_Component (Comp);
+
+                        if Hbit < Lbit then
+                           Hbit := Lbit;
+                        end if;
+
+                        Check_Size
+                          (Component_Name (CC),
+                           Etype (Comp),
+                           Esize (Comp),
+                           Biased);
+
+                        Set_Biased
+                          (Comp, First_Node (CC), "component clause", Biased);
+
+                        if Present (Ocomp) then
+                           Set_Component_Clause     (Ocomp, CC);
+                           Set_Component_Bit_Offset (Ocomp, Fbit);
+                           Set_Normalized_First_Bit (Ocomp, Fbit mod SSU);
+                           Set_Normalized_Position  (Ocomp, Fbit / SSU);
+                           Set_Esize                (Ocomp, 1 + (Lbit - Fbit));
+
+                           Set_Normalized_Position_Max
+                             (Ocomp, Normalized_Position (Ocomp));
+
+                           --  Note: we don't use Set_Biased here, because we
+                           --  already gave a warning above if needed, and we
+                           --  would get a duplicate for the same name here.
+
+                           Set_Has_Biased_Representation
+                             (Ocomp, Has_Biased_Representation (Comp));
+                        end if;
+
+                        if Esize (Comp) < 0 then
+                           Error_Msg_N ("component size is negative", CC);
+                        end if;
+                     end if;
+                  end if;
+               end if;
+            end if;
+         end if;
+
+         Next (CC);
+      end loop;
+
+      --  Check missing components if Complete_Representation pragma appeared
+
+      if Present (CR_Pragma) then
+         Comp := First_Component_Or_Discriminant (Rectype);
+         while Present (Comp) loop
+            if No (Component_Clause (Comp)) then
+               Error_Msg_NE
+                 ("missing component clause for &", CR_Pragma, Comp);
+            end if;
+
+            Next_Component_Or_Discriminant (Comp);
+         end loop;
+
+         --  If no Complete_Representation pragma, warn if missing components
+
+      elsif Warn_On_Unrepped_Components then
+         declare
+            Num_Repped_Components   : Nat := 0;
+            Num_Unrepped_Components : Nat := 0;
+
+         begin
+            --  First count number of repped and unrepped components
+
+            Comp := First_Component_Or_Discriminant (Rectype);
+            while Present (Comp) loop
+               if Present (Component_Clause (Comp)) then
+                  Num_Repped_Components := Num_Repped_Components + 1;
+               else
+                  Num_Unrepped_Components := Num_Unrepped_Components + 1;
+               end if;
+
+               Next_Component_Or_Discriminant (Comp);
+            end loop;
+
+            --  We are only interested in the case where there is at least one
+            --  unrepped component, and at least half the components have rep
+            --  clauses. We figure that if less than half have them, then the
+            --  partial rep clause is really intentional. If the component
+            --  type has no underlying type set at this point (as for a generic
+            --  formal type), we don't know enough to give a warning on the
+            --  component.
 
-         when Attribute_Input =>
-            Analyze_Stream_TSS_Definition (TSS_Stream_Input);
-            Set_Has_Specified_Stream_Input (Ent);
+            if Num_Unrepped_Components > 0
+              and then Num_Unrepped_Components < Num_Repped_Components
+            then
+               Comp := First_Component_Or_Discriminant (Rectype);
+               while Present (Comp) loop
+                  if No (Component_Clause (Comp))
+                    and then Comes_From_Source (Comp)
+                    and then Present (Underlying_Type (Etype (Comp)))
+                    and then (Is_Scalar_Type (Underlying_Type (Etype (Comp)))
+                               or else Size_Known_At_Compile_Time
+                                         (Underlying_Type (Etype (Comp))))
+                    and then not Has_Warnings_Off (Rectype)
+                  then
+                     Error_Msg_Sloc := Sloc (Comp);
+                     Error_Msg_NE
+                       ("?no component clause given for & declared #",
+                        N, Comp);
+                  end if;
 
-         -------------------
-         -- Machine_Radix --
-         -------------------
+                  Next_Component_Or_Discriminant (Comp);
+               end loop;
+            end if;
+         end;
+      end if;
+   end Analyze_Record_Representation_Clause;
 
-         --  Machine radix attribute definition clause
+   -------------------------------
+   -- Build_Invariant_Procedure --
+   -------------------------------
+
+   --  The procedure that is constructed here has the form
+
+   --  procedure typInvariant (Ixxx : typ) is
+   --  begin
+   --     pragma Check (Invariant, exp, "failed invariant from xxx");
+   --     pragma Check (Invariant, exp, "failed invariant from xxx");
+   --     ...
+   --     pragma Check (Invariant, exp, "failed inherited invariant from xxx");
+   --     ...
+   --  end typInvariant;
+
+   procedure Build_Invariant_Procedure (Typ : Entity_Id; N : Node_Id) is
+      Loc   : constant Source_Ptr := Sloc (Typ);
+      Stmts : List_Id;
+      Spec  : Node_Id;
+      SId   : Entity_Id;
+      PDecl : Node_Id;
+      PBody : Node_Id;
+
+      Visible_Decls : constant List_Id := Visible_Declarations (N);
+      Private_Decls : constant List_Id := Private_Declarations (N);
+
+      procedure Add_Invariants (T : Entity_Id; Inherit : Boolean);
+      --  Appends statements to Stmts for any invariants in the rep item chain
+      --  of the given type. If Inherit is False, then we only process entries
+      --  on the chain for the type Typ. If Inherit is True, then we ignore any
+      --  Invariant aspects, but we process all Invariant'Class aspects, adding
+      --  "inherited" to the exception message and generating an informational
+      --  message about the inheritance of an invariant.
+
+      Object_Name : constant Name_Id := New_Internal_Name ('I');
+      --  Name for argument of invariant procedure
+
+      Object_Entity : constant Node_Id :=
+                        Make_Defining_Identifier (Loc, Object_Name);
+      --  The procedure declaration entity for the argument
 
-         when Attribute_Machine_Radix => Machine_Radix : declare
-            Radix : constant Uint := Static_Integer (Expr);
+      --------------------
+      -- Add_Invariants --
+      --------------------
 
+      procedure Add_Invariants (T : Entity_Id; Inherit : Boolean) is
+         Ritem : Node_Id;
+         Arg1  : Node_Id;
+         Arg2  : Node_Id;
+         Arg3  : Node_Id;
+         Exp   : Node_Id;
+         Loc   : Source_Ptr;
+         Assoc : List_Id;
+         Str   : String_Id;
+
+         procedure Replace_Type_Reference (N : Node_Id);
+         --  Replace a single occurrence N of the subtype name with a reference
+         --  to the formal of the predicate function. N can be an identifier
+         --  referencing the subtype, or a selected component, representing an
+         --  appropriately qualified occurrence of the subtype name.
+
+         procedure Replace_Type_References is
+           new Replace_Type_References_Generic (Replace_Type_Reference);
+         --  Traverse an expression replacing all occurrences of the subtype
+         --  name with appropriate references to the object that is the formal
+         --  parameter of the predicate function. Note that we must ensure
+         --  that the type and entity information is properly set in the
+         --  replacement node, since we will do a Preanalyze call of this
+         --  expression without proper visibility of the procedure argument.
+
+         ----------------------------
+         -- Replace_Type_Reference --
+         ----------------------------
+
+         procedure Replace_Type_Reference (N : Node_Id) is
          begin
-            if not Is_Decimal_Fixed_Point_Type (U_Ent) then
-               Error_Msg_N ("decimal fixed-point type expected for &", Nam);
+            --  Invariant'Class, replace with T'Class (obj)
 
-            elsif Has_Machine_Radix_Clause (U_Ent) then
-               Error_Msg_Sloc := Sloc (Alignment_Clause (U_Ent));
-               Error_Msg_N ("machine radix clause previously given#", N);
+            if Class_Present (Ritem) then
+               Rewrite (N,
+                 Make_Type_Conversion (Loc,
+                   Subtype_Mark =>
+                     Make_Attribute_Reference (Loc,
+                       Prefix         => New_Occurrence_Of (T, Loc),
+                       Attribute_Name => Name_Class),
+                   Expression   => Make_Identifier (Loc, Object_Name)));
 
-            elsif Radix /= No_Uint then
-               Set_Has_Machine_Radix_Clause (U_Ent);
-               Set_Has_Non_Standard_Rep (Base_Type (U_Ent));
+               Set_Entity (Expression (N), Object_Entity);
+               Set_Etype  (Expression (N), Typ);
 
-               if Radix = 2 then
-                  null;
-               elsif Radix = 10 then
-                  Set_Machine_Radix_10 (U_Ent);
-               else
-                  Error_Msg_N ("machine radix value must be 2 or 10", Expr);
-               end if;
+            --  Invariant, replace with obj
+
+            else
+               Rewrite (N, Make_Identifier (Loc, Object_Name));
+               Set_Entity (N, Object_Entity);
+               Set_Etype  (N, Typ);
             end if;
-         end Machine_Radix;
+         end Replace_Type_Reference;
 
-         -----------------
-         -- Object_Size --
-         -----------------
+      --  Start of processing for Add_Invariants
 
-         --  Object_Size attribute definition clause
+      begin
+         Ritem := First_Rep_Item (T);
+         while Present (Ritem) loop
+            if Nkind (Ritem) = N_Pragma
+              and then Pragma_Name (Ritem) = Name_Invariant
+            then
+               Arg1 := First (Pragma_Argument_Associations (Ritem));
+               Arg2 := Next (Arg1);
+               Arg3 := Next (Arg2);
 
-         when Attribute_Object_Size => Object_Size : declare
-            Size : constant Uint := Static_Integer (Expr);
+               Arg1 := Get_Pragma_Arg (Arg1);
+               Arg2 := Get_Pragma_Arg (Arg2);
 
-            Biased : Boolean;
-            pragma Warnings (Off, Biased);
+               --  For Inherit case, ignore Invariant, process only Class case
 
-         begin
-            if not Is_Type (U_Ent) then
-               Error_Msg_N ("Object_Size cannot be given for &", Nam);
+               if Inherit then
+                  if not Class_Present (Ritem) then
+                     goto Continue;
+                  end if;
 
-            elsif Has_Object_Size_Clause (U_Ent) then
-               Error_Msg_N ("Object_Size already given for &", Nam);
+               --  For Inherit false, process only item for right type
 
-            else
-               Check_Size (Expr, U_Ent, Size, Biased);
+               else
+                  if Entity (Arg1) /= Typ then
+                     goto Continue;
+                  end if;
+               end if;
 
-               if Size /= 8
-                    and then
-                  Size /= 16
-                    and then
-                  Size /= 32
-                    and then
-                  UI_Mod (Size, 64) /= 0
-               then
-                  Error_Msg_N
-                    ("Object_Size must be 8, 16, 32, or multiple of 64",
-                     Expr);
+               if No (Stmts) then
+                  Stmts := Empty_List;
                end if;
 
-               Set_Esize (U_Ent, Size);
-               Set_Has_Object_Size_Clause (U_Ent);
-               Alignment_Check_For_Esize_Change (U_Ent);
-            end if;
-         end Object_Size;
+               Exp := New_Copy_Tree (Arg2);
+               Loc := Sloc (Exp);
 
-         ------------
-         -- Output --
-         ------------
+               --  We need to replace any occurrences of the name of the type
+               --  with references to the object, converted to type'Class in
+               --  the case of Invariant'Class aspects.
 
-         when Attribute_Output =>
-            Analyze_Stream_TSS_Definition (TSS_Stream_Output);
-            Set_Has_Specified_Stream_Output (Ent);
+               Replace_Type_References (Exp, Chars (T));
 
-         ----------
-         -- Read --
-         ----------
+               --  If this invariant comes from an aspect, find the aspect
+               --  specification, and replace the saved expression because
+               --  we need the subtype references replaced for the calls to
+               --  Preanalyze_Spec_Expressin in Check_Aspect_At_Freeze_Point
+               --  and Check_Aspect_At_End_Of_Declarations.
 
-         when Attribute_Read =>
-            Analyze_Stream_TSS_Definition (TSS_Stream_Read);
-            Set_Has_Specified_Stream_Read (Ent);
+               if From_Aspect_Specification (Ritem) then
+                  declare
+                     Aitem : Node_Id;
 
-         ----------
-         -- Size --
-         ----------
+                  begin
+                     --  Loop to find corresponding aspect, note that this
+                     --  must be present given the pragma is marked delayed.
 
-         --  Size attribute definition clause
+                     Aitem := Next_Rep_Item (Ritem);
+                     while Present (Aitem) loop
+                        if Nkind (Aitem) = N_Aspect_Specification
+                          and then Aspect_Rep_Item (Aitem) = Ritem
+                        then
+                           Set_Entity
+                             (Identifier (Aitem), New_Copy_Tree (Exp));
+                           exit;
+                        end if;
 
-         when Attribute_Size => Size : declare
-            Size   : constant Uint := Static_Integer (Expr);
-            Etyp   : Entity_Id;
-            Biased : Boolean;
+                        Aitem := Next_Rep_Item (Aitem);
+                     end loop;
+                  end;
+               end if;
 
-         begin
-            FOnly := True;
+               --  Now we need to preanalyze the expression to properly capture
+               --  the visibility in the visible part. The expression will not
+               --  be analyzed for real until the body is analyzed, but that is
+               --  at the end of the private part and has the wrong visibility.
 
-            if Has_Size_Clause (U_Ent) then
-               Error_Msg_N ("size already given for &", Nam);
+               Set_Parent (Exp, N);
+               Preanalyze_Spec_Expression (Exp, Standard_Boolean);
 
-            elsif not Is_Type (U_Ent)
-              and then Ekind (U_Ent) /= E_Variable
-              and then Ekind (U_Ent) /= E_Constant
-            then
-               Error_Msg_N ("size cannot be given for &", Nam);
+               --  Build first two arguments for Check pragma
 
-            elsif Is_Array_Type (U_Ent)
-              and then not Is_Constrained (U_Ent)
-            then
-               Error_Msg_N
-                 ("size cannot be given for unconstrained array", Nam);
+               Assoc := New_List (
+                 Make_Pragma_Argument_Association (Loc,
+                   Expression => Make_Identifier (Loc, Name_Invariant)),
+                 Make_Pragma_Argument_Association (Loc, Expression => Exp));
 
-            elsif Size /= No_Uint then
+               --  Add message if present in Invariant pragma
 
-               if VM_Target /= No_VM and then not GNAT_Mode then
+               if Present (Arg3) then
+                  Str := Strval (Get_Pragma_Arg (Arg3));
 
-                  --  Size clause is not handled properly on VM targets.
-                  --  Display a warning unless we are in GNAT mode, in which
-                  --  case this is useless.
+                  --  If inherited case, and message starts "failed invariant",
+                  --  change it to be "failed inherited invariant".
 
-                  Error_Msg_N
-                    ("?size clauses are ignored in this configuration", N);
-               end if;
+                  if Inherit then
+                     String_To_Name_Buffer (Str);
 
-               if Is_Type (U_Ent) then
-                  Etyp := U_Ent;
-               else
-                  Etyp := Etype (U_Ent);
+                     if Name_Buffer (1 .. 16) = "failed invariant" then
+                        Insert_Str_In_Name_Buffer ("inherited ", 8);
+                        Str := String_From_Name_Buffer;
+                     end if;
+                  end if;
+
+                  Append_To (Assoc,
+                    Make_Pragma_Argument_Association (Loc,
+                      Expression => Make_String_Literal (Loc, Str)));
                end if;
 
-               --  Check size, note that Gigi is in charge of checking that the
-               --  size of an array or record type is OK. Also we do not check
-               --  the size in the ordinary fixed-point case, since it is too
-               --  early to do so (there may be subsequent small clause that
-               --  affects the size). We can check the size if a small clause
-               --  has already been given.
+               --  Add Check pragma to list of statements
 
-               if not Is_Ordinary_Fixed_Point_Type (U_Ent)
-                 or else Has_Small_Clause (U_Ent)
-               then
-                  Check_Size (Expr, Etyp, Size, Biased);
-                  Set_Biased (U_Ent, N, "size clause", Biased);
-               end if;
+               Append_To (Stmts,
+                 Make_Pragma (Loc,
+                   Pragma_Identifier            =>
+                     Make_Identifier (Loc, Name_Check),
+                   Pragma_Argument_Associations => Assoc));
 
-               --  For types set RM_Size and Esize if possible
+               --  If Inherited case and option enabled, output info msg. Note
+               --  that we know this is a case of Invariant'Class.
 
-               if Is_Type (U_Ent) then
-                  Set_RM_Size (U_Ent, Size);
+               if Inherit and Opt.List_Inherited_Aspects then
+                  Error_Msg_Sloc := Sloc (Ritem);
+                  Error_Msg_N
+                    ("?info: & inherits `Invariant''Class` aspect from #",
+                     Typ);
+               end if;
+            end if;
 
-                  --  For scalar types, increase Object_Size to power of 2, but
-                  --  not less than a storage unit in any case (i.e., normally
-                  --  this means it will be byte addressable).
+         <<Continue>>
+            Next_Rep_Item (Ritem);
+         end loop;
+      end Add_Invariants;
 
-                  if Is_Scalar_Type (U_Ent) then
-                     if Size <= System_Storage_Unit then
-                        Init_Esize (U_Ent, System_Storage_Unit);
-                     elsif Size <= 16 then
-                        Init_Esize (U_Ent, 16);
-                     elsif Size <= 32 then
-                        Init_Esize (U_Ent, 32);
-                     else
-                        Set_Esize  (U_Ent, (Size + 63) / 64 * 64);
-                     end if;
+   --  Start of processing for Build_Invariant_Procedure
 
-                  --  For all other types, object size = value size. The
-                  --  backend will adjust as needed.
+   begin
+      Stmts := No_List;
+      PDecl := Empty;
+      PBody := Empty;
+      Set_Etype (Object_Entity, Typ);
 
-                  else
-                     Set_Esize (U_Ent, Size);
-                  end if;
+      --  Add invariants for the current type
 
-                  Alignment_Check_For_Esize_Change (U_Ent);
+      Add_Invariants (Typ, Inherit => False);
 
-               --  For objects, set Esize only
+      --  Add invariants for parent types
 
-               else
-                  if Is_Elementary_Type (Etyp) then
-                     if Size /= System_Storage_Unit
-                          and then
-                        Size /= System_Storage_Unit * 2
-                          and then
-                        Size /= System_Storage_Unit * 4
-                           and then
-                        Size /= System_Storage_Unit * 8
-                     then
-                        Error_Msg_Uint_1 := UI_From_Int (System_Storage_Unit);
-                        Error_Msg_Uint_2 := Error_Msg_Uint_1 * 8;
-                        Error_Msg_N
-                          ("size for primitive object must be a power of 2"
-                            & " in the range ^-^", N);
-                     end if;
-                  end if;
+      declare
+         Current_Typ : Entity_Id;
+         Parent_Typ  : Entity_Id;
 
-                  Set_Esize (U_Ent, Size);
-               end if;
+      begin
+         Current_Typ := Typ;
+         loop
+            Parent_Typ := Etype (Current_Typ);
 
-               Set_Has_Size_Clause (U_Ent);
+            if Is_Private_Type (Parent_Typ)
+              and then Present (Full_View (Base_Type (Parent_Typ)))
+            then
+               Parent_Typ := Full_View (Base_Type (Parent_Typ));
             end if;
-         end Size;
 
-         -----------
-         -- Small --
-         -----------
+            exit when Parent_Typ = Current_Typ;
 
-         --  Small attribute definition clause
+            Current_Typ := Parent_Typ;
+            Add_Invariants (Current_Typ, Inherit => True);
+         end loop;
+      end;
 
-         when Attribute_Small => Small : declare
-            Implicit_Base : constant Entity_Id := Base_Type (U_Ent);
-            Small         : Ureal;
+      --  Build the procedure if we generated at least one Check pragma
 
-         begin
-            Analyze_And_Resolve (Expr, Any_Real);
+      if Stmts /= No_List then
 
-            if Etype (Expr) = Any_Type then
-               return;
+         --  Build procedure declaration
 
-            elsif not Is_Static_Expression (Expr) then
-               Flag_Non_Static_Expr
-                 ("small requires static expression!", Expr);
-               return;
+         SId :=
+           Make_Defining_Identifier (Loc,
+             Chars => New_External_Name (Chars (Typ), "Invariant"));
+         Set_Has_Invariants (SId);
+         Set_Invariant_Procedure (Typ, SId);
 
-            else
-               Small := Expr_Value_R (Expr);
+         Spec :=
+           Make_Procedure_Specification (Loc,
+             Defining_Unit_Name       => SId,
+             Parameter_Specifications => New_List (
+               Make_Parameter_Specification (Loc,
+                 Defining_Identifier => Object_Entity,
+                 Parameter_Type      => New_Occurrence_Of (Typ, Loc))));
 
-               if Small <= Ureal_0 then
-                  Error_Msg_N ("small value must be greater than zero", Expr);
-                  return;
-               end if;
+         PDecl := Make_Subprogram_Declaration (Loc, Specification => Spec);
 
-            end if;
+         --  Build procedure body
 
-            if not Is_Ordinary_Fixed_Point_Type (U_Ent) then
-               Error_Msg_N
-                 ("small requires an ordinary fixed point type", Nam);
+         SId :=
+           Make_Defining_Identifier (Loc,
+             Chars => New_External_Name (Chars (Typ), "Invariant"));
+
+         Spec :=
+           Make_Procedure_Specification (Loc,
+             Defining_Unit_Name       => SId,
+             Parameter_Specifications => New_List (
+               Make_Parameter_Specification (Loc,
+                 Defining_Identifier =>
+                   Make_Defining_Identifier (Loc, Object_Name),
+                 Parameter_Type => New_Occurrence_Of (Typ, Loc))));
+
+         PBody :=
+           Make_Subprogram_Body (Loc,
+             Specification              => Spec,
+             Declarations               => Empty_List,
+             Handled_Statement_Sequence =>
+               Make_Handled_Sequence_Of_Statements (Loc,
+                 Statements => Stmts));
+
+         --  Insert procedure declaration and spec at the appropriate points.
+         --  Skip this if there are no private declarations (that's an error
+         --  that will be diagnosed elsewhere, and there is no point in having
+         --  an invariant procedure set if the full declaration is missing).
+
+         if Present (Private_Decls) then
+
+            --  The spec goes at the end of visible declarations, but they have
+            --  already been analyzed, so we need to explicitly do the analyze.
+
+            Append_To (Visible_Decls, PDecl);
+            Analyze (PDecl);
+
+            --  The body goes at the end of the private declarations, which we
+            --  have not analyzed yet, so we do not need to perform an explicit
+            --  analyze call. We skip this if there are no private declarations
+            --  (this is an error that will be caught elsewhere);
+
+            Append_To (Private_Decls, PBody);
+         end if;
+      end if;
+   end Build_Invariant_Procedure;
 
-            elsif Has_Small_Clause (U_Ent) then
-               Error_Msg_N ("small already given for &", Nam);
+   ------------------------------
+   -- Build_Predicate_Function --
+   ------------------------------
 
-            elsif Small > Delta_Value (U_Ent) then
-               Error_Msg_N
-                 ("small value must not be greater then delta value", Nam);
+   --  The procedure that is constructed here has the form
+
+   --  function typPredicate (Ixxx : typ) return Boolean is
+   --  begin
+   --     return
+   --        exp1 and then exp2 and then ...
+   --        and then typ1Predicate (typ1 (Ixxx))
+   --        and then typ2Predicate (typ2 (Ixxx))
+   --        and then ...;
+   --  end typPredicate;
+
+   --  Here exp1, and exp2 are expressions from Predicate pragmas. Note that
+   --  this is the point at which these expressions get analyzed, providing the
+   --  required delay, and typ1, typ2, are entities from which predicates are
+   --  inherited. Note that we do NOT generate Check pragmas, that's because we
+   --  use this function even if checks are off, e.g. for membership tests.
+
+   procedure Build_Predicate_Function (Typ : Entity_Id; N : Node_Id) is
+      Loc  : constant Source_Ptr := Sloc (Typ);
+      Spec : Node_Id;
+      SId  : Entity_Id;
+      FDecl : Node_Id;
+      FBody : Node_Id;
+
+      Expr : Node_Id;
+      --  This is the expression for the return statement in the function. It
+      --  is build by connecting the component predicates with AND THEN.
+
+      procedure Add_Call (T : Entity_Id);
+      --  Includes a call to the predicate function for type T in Expr if T
+      --  has predicates and Predicate_Function (T) is non-empty.
+
+      procedure Add_Predicates;
+      --  Appends expressions for any Predicate pragmas in the rep item chain
+      --  Typ to Expr. Note that we look only at items for this exact entity.
+      --  Inheritance of predicates for the parent type is done by calling the
+      --  Predicate_Function of the parent type, using Add_Call above.
+
+      Object_Name : constant Name_Id := New_Internal_Name ('I');
+      --  Name for argument of Predicate procedure
+
+      Object_Entity : constant Entity_Id :=
+                        Make_Defining_Identifier (Loc, Object_Name);
+      --  The entity for the spec entity for the argument
+
+      Dynamic_Predicate_Present : Boolean := False;
+      --  Set True if a dynamic predicate is present, results in the entire
+      --  predicate being considered dynamic even if it looks static
+
+      Static_Predicate_Present : Node_Id := Empty;
+      --  Set to N_Pragma node for a static predicate if one is encountered.
+
+      --------------
+      -- Add_Call --
+      --------------
+
+      procedure Add_Call (T : Entity_Id) is
+         Exp : Node_Id;
+
+      begin
+         if Present (T) and then Present (Predicate_Function (T)) then
+            Set_Has_Predicates (Typ);
+
+            --  Build the call to the predicate function of T
+
+            Exp :=
+              Make_Predicate_Call
+                (T, Convert_To (T, Make_Identifier (Loc, Object_Name)));
+
+            --  Add call to evolving expression, using AND THEN if needed
 
+            if No (Expr) then
+               Expr := Exp;
             else
-               Set_Small_Value (U_Ent, Small);
-               Set_Small_Value (Implicit_Base, Small);
-               Set_Has_Small_Clause (U_Ent);
-               Set_Has_Small_Clause (Implicit_Base);
-               Set_Has_Non_Standard_Rep (Implicit_Base);
+               Expr :=
+                 Make_And_Then (Loc,
+                   Left_Opnd  => Relocate_Node (Expr),
+                   Right_Opnd => Exp);
+            end if;
+
+            --  Output info message on inheritance if required. Note we do not
+            --  give this information for generic actual types, since it is
+            --  unwelcome noise in that case in instantiations. We also
+            --  generally suppress the message in instantiations, and also
+            --  if it involves internal names.
+
+            if Opt.List_Inherited_Aspects
+              and then not Is_Generic_Actual_Type (Typ)
+              and then Instantiation_Depth (Sloc (Typ)) = 0
+              and then not Is_Internal_Name (Chars (T))
+              and then not Is_Internal_Name (Chars (Typ))
+            then
+               Error_Msg_Sloc := Sloc (Predicate_Function (T));
+               Error_Msg_Node_2 := T;
+               Error_Msg_N ("?info: & inherits predicate from & #", Typ);
             end if;
-         end Small;
+         end if;
+      end Add_Call;
 
-         ------------------
-         -- Storage_Pool --
-         ------------------
+      --------------------
+      -- Add_Predicates --
+      --------------------
 
-         --  Storage_Pool attribute definition clause
+      procedure Add_Predicates is
+         Ritem : Node_Id;
+         Arg1  : Node_Id;
+         Arg2  : Node_Id;
 
-         when Attribute_Storage_Pool => Storage_Pool : declare
-            Pool : Entity_Id;
-            T    : Entity_Id;
+         procedure Replace_Type_Reference (N : Node_Id);
+         --  Replace a single occurrence N of the subtype name with a reference
+         --  to the formal of the predicate function. N can be an identifier
+         --  referencing the subtype, or a selected component, representing an
+         --  appropriately qualified occurrence of the subtype name.
+
+         procedure Replace_Type_References is
+           new Replace_Type_References_Generic (Replace_Type_Reference);
+         --  Traverse an expression changing every occurrence of an identifier
+         --  whose name matches the name of the subtype with a reference to
+         --  the formal parameter of the predicate function.
 
+         ----------------------------
+         -- Replace_Type_Reference --
+         ----------------------------
+
+         procedure Replace_Type_Reference (N : Node_Id) is
          begin
-            if Ekind (U_Ent) = E_Access_Subprogram_Type then
-               Error_Msg_N
-                 ("storage pool cannot be given for access-to-subprogram type",
-                  Nam);
-               return;
+            Rewrite (N, Make_Identifier (Loc, Object_Name));
+            Set_Entity (N, Object_Entity);
+            Set_Etype (N, Typ);
+         end Replace_Type_Reference;
 
-            elsif not
-              Ekind_In (U_Ent, E_Access_Type, E_General_Access_Type)
+      --  Start of processing for Add_Predicates
+
+      begin
+         Ritem := First_Rep_Item (Typ);
+         while Present (Ritem) loop
+            if Nkind (Ritem) = N_Pragma
+              and then Pragma_Name (Ritem) = Name_Predicate
             then
-               Error_Msg_N
-                 ("storage pool can only be given for access types", Nam);
-               return;
+               if Present (Corresponding_Aspect (Ritem)) then
+                  case Chars (Identifier (Corresponding_Aspect (Ritem))) is
+                     when Name_Dynamic_Predicate =>
+                        Dynamic_Predicate_Present := True;
+                     when Name_Static_Predicate =>
+                        Static_Predicate_Present := Ritem;
+                     when others =>
+                        null;
+                  end case;
+               end if;
 
-            elsif Is_Derived_Type (U_Ent) then
-               Error_Msg_N
-                 ("storage pool cannot be given for a derived access type",
-                  Nam);
+               --  Acquire arguments
 
-            elsif Has_Storage_Size_Clause (U_Ent) then
-               Error_Msg_N ("storage size already given for &", Nam);
-               return;
+               Arg1 := First (Pragma_Argument_Associations (Ritem));
+               Arg2 := Next (Arg1);
 
-            elsif Present (Associated_Storage_Pool (U_Ent)) then
-               Error_Msg_N ("storage pool already given for &", Nam);
-               return;
-            end if;
+               Arg1 := Get_Pragma_Arg (Arg1);
+               Arg2 := Get_Pragma_Arg (Arg2);
 
-            Analyze_And_Resolve
-              (Expr, Class_Wide_Type (RTE (RE_Root_Storage_Pool)));
+               --  See if this predicate pragma is for the current type or for
+               --  its full view. A predicate on a private completion is placed
+               --  on the partial view beause this is the visible entity that
+               --  is frozen.
 
-            if not Denotes_Variable (Expr) then
-               Error_Msg_N ("storage pool must be a variable", Expr);
-               return;
-            end if;
+               if Entity (Arg1) = Typ
+                 or else Full_View (Entity (Arg1)) = Typ
+               then
 
-            if Nkind (Expr) = N_Type_Conversion then
-               T := Etype (Expression (Expr));
-            else
-               T := Etype (Expr);
-            end if;
+                  --  We have a match, this entry is for our subtype
 
-            --  The Stack_Bounded_Pool is used internally for implementing
-            --  access types with a Storage_Size. Since it only work
-            --  properly when used on one specific type, we need to check
-            --  that it is not hijacked improperly:
-            --    type T is access Integer;
-            --    for T'Storage_Size use n;
-            --    type Q is access Float;
-            --    for Q'Storage_Size use T'Storage_Size; -- incorrect
+                  --  We need to replace any occurrences of the name of the
+                  --  type with references to the object.
 
-            if RTE_Available (RE_Stack_Bounded_Pool)
-              and then Base_Type (T) = RTE (RE_Stack_Bounded_Pool)
-            then
-               Error_Msg_N ("non-shareable internal Pool", Expr);
-               return;
-            end if;
+                  Replace_Type_References (Arg2, Chars (Typ));
 
-            --  If the argument is a name that is not an entity name, then
-            --  we construct a renaming operation to define an entity of
-            --  type storage pool.
+                  --  If this predicate comes from an aspect, find the aspect
+                  --  specification, and replace the saved expression because
+                  --  we need the subtype references replaced for the calls to
+                  --  Preanalyze_Spec_Expressin in Check_Aspect_At_Freeze_Point
+                  --  and Check_Aspect_At_End_Of_Declarations.
 
-            if not Is_Entity_Name (Expr)
-              and then Is_Object_Reference (Expr)
-            then
-               Pool := Make_Temporary (Loc, 'P', Expr);
+                  if From_Aspect_Specification (Ritem) then
+                     declare
+                        Aitem : Node_Id;
 
-               declare
-                  Rnode : constant Node_Id :=
-                            Make_Object_Renaming_Declaration (Loc,
-                              Defining_Identifier => Pool,
-                              Subtype_Mark        =>
-                                New_Occurrence_Of (Etype (Expr), Loc),
-                              Name                => Expr);
+                     begin
+                        --  Loop to find corresponding aspect, note that this
+                        --  must be present given the pragma is marked delayed.
 
-               begin
-                  Insert_Before (N, Rnode);
-                  Analyze (Rnode);
-                  Set_Associated_Storage_Pool (U_Ent, Pool);
-               end;
+                        Aitem := Next_Rep_Item (Ritem);
+                        loop
+                           if Nkind (Aitem) = N_Aspect_Specification
+                             and then Aspect_Rep_Item (Aitem) = Ritem
+                           then
+                              Set_Entity
+                                (Identifier (Aitem), New_Copy_Tree (Arg2));
+                              exit;
+                           end if;
 
-            elsif Is_Entity_Name (Expr) then
-               Pool := Entity (Expr);
+                           Aitem := Next_Rep_Item (Aitem);
+                        end loop;
+                     end;
+                  end if;
 
-               --  If pool is a renamed object, get original one. This can
-               --  happen with an explicit renaming, and within instances.
+                  --  Now we can add the expression
 
-               while Present (Renamed_Object (Pool))
-                 and then Is_Entity_Name (Renamed_Object (Pool))
-               loop
-                  Pool := Entity (Renamed_Object (Pool));
-               end loop;
+                  if No (Expr) then
+                     Expr := Relocate_Node (Arg2);
 
-               if Present (Renamed_Object (Pool))
-                 and then Nkind (Renamed_Object (Pool)) = N_Type_Conversion
-                 and then Is_Entity_Name (Expression (Renamed_Object (Pool)))
-               then
-                  Pool := Entity (Expression (Renamed_Object (Pool)));
+                  --  There already was a predicate, so add to it
+
+                  else
+                     Expr :=
+                       Make_And_Then (Loc,
+                         Left_Opnd  => Relocate_Node (Expr),
+                         Right_Opnd => Relocate_Node (Arg2));
+                  end if;
                end if;
+            end if;
 
-               Set_Associated_Storage_Pool (U_Ent, Pool);
+            Next_Rep_Item (Ritem);
+         end loop;
+      end Add_Predicates;
 
-            elsif Nkind (Expr) = N_Type_Conversion
-              and then Is_Entity_Name (Expression (Expr))
-              and then Nkind (Original_Node (Expr)) = N_Attribute_Reference
-            then
-               Pool := Entity (Expression (Expr));
-               Set_Associated_Storage_Pool (U_Ent, Pool);
+   --  Start of processing for Build_Predicate_Function
 
-            else
-               Error_Msg_N ("incorrect reference to a Storage Pool", Expr);
-               return;
-            end if;
-         end Storage_Pool;
+   begin
+      --  Initialize for construction of statement list
 
-         ------------------
-         -- Storage_Size --
-         ------------------
+      Expr := Empty;
 
-         --  Storage_Size attribute definition clause
+      --  Return if already built or if type does not have predicates
 
-         when Attribute_Storage_Size => Storage_Size : declare
-            Btype : constant Entity_Id := Base_Type (U_Ent);
-            Sprag : Node_Id;
+      if not Has_Predicates (Typ)
+        or else Present (Predicate_Function (Typ))
+      then
+         return;
+      end if;
 
-         begin
-            if Is_Task_Type (U_Ent) then
-               Check_Restriction (No_Obsolescent_Features, N);
+      --  Add Predicates for the current type
 
-               if Warn_On_Obsolescent_Feature then
-                  Error_Msg_N
-                    ("storage size clause for task is an " &
-                     "obsolescent feature (RM J.9)?", N);
-                  Error_Msg_N ("\use Storage_Size pragma instead?", N);
-               end if;
+      Add_Predicates;
 
-               FOnly := True;
-            end if;
+      --  Add predicates for ancestor if present
 
-            if not Is_Access_Type (U_Ent)
-              and then Ekind (U_Ent) /= E_Task_Type
-            then
-               Error_Msg_N ("storage size cannot be given for &", Nam);
+      declare
+         Atyp : constant Entity_Id := Nearest_Ancestor (Typ);
+      begin
+         if Present (Atyp) then
+            Add_Call (Atyp);
+         end if;
+      end;
 
-            elsif Is_Access_Type (U_Ent) and Is_Derived_Type (U_Ent) then
-               Error_Msg_N
-                 ("storage size cannot be given for a derived access type",
-                  Nam);
+      --  If we have predicates, build the function
 
-            elsif Has_Storage_Size_Clause (Btype) then
-               Error_Msg_N ("storage size already given for &", Nam);
+      if Present (Expr) then
 
-            else
-               Analyze_And_Resolve (Expr, Any_Integer);
+         --  Build function declaration
 
-               if Is_Access_Type (U_Ent) then
-                  if Present (Associated_Storage_Pool (U_Ent)) then
-                     Error_Msg_N ("storage pool already given for &", Nam);
-                     return;
-                  end if;
+         pragma Assert (Has_Predicates (Typ));
+         SId :=
+           Make_Defining_Identifier (Loc,
+             Chars => New_External_Name (Chars (Typ), "Predicate"));
+         Set_Has_Predicates (SId);
+         Set_Predicate_Function (Typ, SId);
 
-                  if Is_OK_Static_Expression (Expr)
-                    and then Expr_Value (Expr) = 0
-                  then
-                     Set_No_Pool_Assigned (Btype);
-                  end if;
+         Spec :=
+           Make_Function_Specification (Loc,
+             Defining_Unit_Name       => SId,
+             Parameter_Specifications => New_List (
+               Make_Parameter_Specification (Loc,
+                 Defining_Identifier => Object_Entity,
+                 Parameter_Type      => New_Occurrence_Of (Typ, Loc))),
+             Result_Definition        =>
+               New_Occurrence_Of (Standard_Boolean, Loc));
 
-               else -- Is_Task_Type (U_Ent)
-                  Sprag := Get_Rep_Pragma (Btype, Name_Storage_Size);
+         FDecl := Make_Subprogram_Declaration (Loc, Specification => Spec);
 
-                  if Present (Sprag) then
-                     Error_Msg_Sloc := Sloc (Sprag);
-                     Error_Msg_N
-                       ("Storage_Size already specified#", Nam);
-                     return;
-                  end if;
-               end if;
+         --  Build function body
 
-               Set_Has_Storage_Size_Clause (Btype);
+         SId :=
+           Make_Defining_Identifier (Loc,
+             Chars => New_External_Name (Chars (Typ), "Predicate"));
+
+         Spec :=
+           Make_Function_Specification (Loc,
+             Defining_Unit_Name       => SId,
+             Parameter_Specifications => New_List (
+               Make_Parameter_Specification (Loc,
+                 Defining_Identifier =>
+                   Make_Defining_Identifier (Loc, Object_Name),
+                 Parameter_Type =>
+                   New_Occurrence_Of (Typ, Loc))),
+             Result_Definition        =>
+               New_Occurrence_Of (Standard_Boolean, Loc));
+
+         FBody :=
+           Make_Subprogram_Body (Loc,
+             Specification              => Spec,
+             Declarations               => Empty_List,
+             Handled_Statement_Sequence =>
+               Make_Handled_Sequence_Of_Statements (Loc,
+                 Statements => New_List (
+                   Make_Simple_Return_Statement (Loc,
+                     Expression => Expr))));
+
+         --  Insert declaration before freeze node and body after
+
+         Insert_Before_And_Analyze (N, FDecl);
+         Insert_After_And_Analyze  (N, FBody);
+
+         --  Deal with static predicate case
+
+         if Ekind_In (Typ, E_Enumeration_Subtype,
+                           E_Modular_Integer_Subtype,
+                           E_Signed_Integer_Subtype)
+           and then Is_Static_Subtype (Typ)
+           and then not Dynamic_Predicate_Present
+         then
+            Build_Static_Predicate (Typ, Expr, Object_Name);
+
+            if Present (Static_Predicate_Present)
+              and No (Static_Predicate (Typ))
+            then
+               Error_Msg_F
+                 ("expression does not have required form for "
+                  & "static predicate",
+                  Next (First (Pragma_Argument_Associations
+                                (Static_Predicate_Present))));
             end if;
-         end Storage_Size;
+         end if;
+      end if;
+   end Build_Predicate_Function;
 
-         -----------------
-         -- Stream_Size --
-         -----------------
+   ----------------------------
+   -- Build_Static_Predicate --
+   ----------------------------
 
-         when Attribute_Stream_Size => Stream_Size : declare
-            Size : constant Uint := Static_Integer (Expr);
+   procedure Build_Static_Predicate
+     (Typ  : Entity_Id;
+      Expr : Node_Id;
+      Nam  : Name_Id)
+   is
+      Loc : constant Source_Ptr := Sloc (Expr);
+
+      Non_Static : exception;
+      --  Raised if something non-static is found
+
+      Btyp : constant Entity_Id := Base_Type (Typ);
+
+      BLo : constant Uint := Expr_Value (Type_Low_Bound  (Btyp));
+      BHi : constant Uint := Expr_Value (Type_High_Bound (Btyp));
+      --  Low bound and high bound value of base type of Typ
+
+      TLo : constant Uint := Expr_Value (Type_Low_Bound  (Typ));
+      THi : constant Uint := Expr_Value (Type_High_Bound (Typ));
+      --  Low bound and high bound values of static subtype Typ
+
+      type REnt is record
+         Lo, Hi : Uint;
+      end record;
+      --  One entry in a Rlist value, a single REnt (range entry) value
+      --  denotes one range from Lo to Hi. To represent a single value
+      --  range Lo = Hi = value.
+
+      type RList is array (Nat range <>) of REnt;
+      --  A list of ranges. The ranges are sorted in increasing order,
+      --  and are disjoint (there is a gap of at least one value between
+      --  each range in the table). A value is in the set of ranges in
+      --  Rlist if it lies within one of these ranges
+
+      False_Range : constant RList :=
+                      RList'(1 .. 0 => REnt'(No_Uint, No_Uint));
+      --  An empty set of ranges represents a range list that can never be
+      --  satisfied, since there are no ranges in which the value could lie,
+      --  so it does not lie in any of them. False_Range is a canonical value
+      --  for this empty set, but general processing should test for an Rlist
+      --  with length zero (see Is_False predicate), since other null ranges
+      --  may appear which must be treated as False.
+
+      True_Range : constant RList := RList'(1 => REnt'(BLo, BHi));
+      --  Range representing True, value must be in the base range
+
+      function "and" (Left, Right : RList) return RList;
+      --  And's together two range lists, returning a range list. This is
+      --  a set intersection operation.
+
+      function "or" (Left, Right : RList) return RList;
+      --  Or's together two range lists, returning a range list. This is a
+      --  set union operation.
+
+      function "not" (Right : RList) return RList;
+      --  Returns complement of a given range list, i.e. a range list
+      --  representing all the values in TLo .. THi that are not in the
+      --  input operand Right.
+
+      function Build_Val (V : Uint) return Node_Id;
+      --  Return an analyzed N_Identifier node referencing this value, suitable
+      --  for use as an entry in the Static_Predicate list. This node is typed
+      --  with the base type.
+
+      function Build_Range (Lo, Hi : Uint) return Node_Id;
+      --  Return an analyzed N_Range node referencing this range, suitable
+      --  for use as an entry in the Static_Predicate list. This node is typed
+      --  with the base type.
+
+      function Get_RList (Exp : Node_Id) return RList;
+      --  This is a recursive routine that converts the given expression into
+      --  a list of ranges, suitable for use in building the static predicate.
+
+      function Is_False (R : RList) return Boolean;
+      pragma Inline (Is_False);
+      --  Returns True if the given range list is empty, and thus represents
+      --  a False list of ranges that can never be satisfied.
+
+      function Is_True (R : RList) return Boolean;
+      --  Returns True if R trivially represents the True predicate by having
+      --  a single range from BLo to BHi.
+
+      function Is_Type_Ref (N : Node_Id) return Boolean;
+      pragma Inline (Is_Type_Ref);
+      --  Returns if True if N is a reference to the type for the predicate in
+      --  the expression (i.e. if it is an identifier whose Chars field matches
+      --  the Nam given in the call).
+
+      function Lo_Val (N : Node_Id) return Uint;
+      --  Given static expression or static range from a Static_Predicate list,
+      --  gets expression value or low bound of range.
+
+      function Hi_Val (N : Node_Id) return Uint;
+      --  Given static expression or static range from a Static_Predicate list,
+      --  gets expression value of high bound of range.
+
+      function Membership_Entry (N : Node_Id) return RList;
+      --  Given a single membership entry (range, value, or subtype), returns
+      --  the corresponding range list. Raises Static_Error if not static.
+
+      function Membership_Entries (N : Node_Id) return RList;
+      --  Given an element on an alternatives list of a membership operation,
+      --  returns the range list corresponding to this entry and all following
+      --  entries (i.e. returns the "or" of this list of values).
+
+      function Stat_Pred (Typ : Entity_Id) return RList;
+      --  Given a type, if it has a static predicate, then return the predicate
+      --  as a range list, otherwise raise Non_Static.
+
+      -----------
+      -- "and" --
+      -----------
+
+      function "and" (Left, Right : RList) return RList is
+         FEnt : REnt;
+         --  First range of result
+
+         SLeft : Nat := Left'First;
+         --  Start of rest of left entries
+
+         SRight : Nat := Right'First;
+         --  Start of rest of right entries
 
-         begin
-            if Ada_Version <= Ada_95 then
-               Check_Restriction (No_Implementation_Attributes, N);
-            end if;
+      begin
+         --  If either range is True, return the other
 
-            if Has_Stream_Size_Clause (U_Ent) then
-               Error_Msg_N ("Stream_Size already given for &", Nam);
+         if Is_True (Left) then
+            return Right;
+         elsif Is_True (Right) then
+            return Left;
+         end if;
 
-            elsif Is_Elementary_Type (U_Ent) then
-               if Size /= System_Storage_Unit
-                    and then
-                  Size /= System_Storage_Unit * 2
-                    and then
-                  Size /= System_Storage_Unit * 4
-                     and then
-                  Size /= System_Storage_Unit * 8
-               then
-                  Error_Msg_Uint_1 := UI_From_Int (System_Storage_Unit);
-                  Error_Msg_N
-                    ("stream size for elementary type must be a"
-                       & " power of 2 and at least ^", N);
+         --  If either range is False, return False
 
-               elsif RM_Size (U_Ent) > Size then
-                  Error_Msg_Uint_1 := RM_Size (U_Ent);
-                  Error_Msg_N
-                    ("stream size for elementary type must be a"
-                       & " power of 2 and at least ^", N);
-               end if;
+         if Is_False (Left) or else Is_False (Right) then
+            return False_Range;
+         end if;
 
-               Set_Has_Stream_Size_Clause (U_Ent);
+         --  Loop to remove entries at start that are disjoint, and thus
+         --  just get discarded from the result entirely.
+
+         loop
+            --  If no operands left in either operand, result is false
+
+            if SLeft > Left'Last or else SRight > Right'Last then
+               return False_Range;
+
+            --  Discard first left operand entry if disjoint with right
+
+            elsif Left (SLeft).Hi < Right (SRight).Lo then
+               SLeft := SLeft + 1;
+
+            --  Discard first right operand entry if disjoint with left
+
+            elsif Right (SRight).Hi < Left (SLeft).Lo then
+               SRight := SRight + 1;
+
+            --  Otherwise we have an overlapping entry
 
             else
-               Error_Msg_N ("Stream_Size cannot be given for &", Nam);
+               exit;
             end if;
-         end Stream_Size;
+         end loop;
 
-         ----------------
-         -- Value_Size --
-         ----------------
+         --  Now we have two non-null operands, and first entries overlap.
+         --  The first entry in the result will be the overlapping part of
+         --  these two entries.
 
-         --  Value_Size attribute definition clause
+         FEnt := REnt'(Lo => UI_Max (Left (SLeft).Lo, Right (SRight).Lo),
+                       Hi => UI_Min (Left (SLeft).Hi, Right (SRight).Hi));
 
-         when Attribute_Value_Size => Value_Size : declare
-            Size   : constant Uint := Static_Integer (Expr);
-            Biased : Boolean;
+         --  Now we can remove the entry that ended at a lower value, since
+         --  its contribution is entirely contained in Fent.
 
-         begin
-            if not Is_Type (U_Ent) then
-               Error_Msg_N ("Value_Size cannot be given for &", Nam);
+         if Left (SLeft).Hi <= Right (SRight).Hi then
+            SLeft := SLeft + 1;
+         else
+            SRight := SRight + 1;
+         end if;
 
-            elsif Present
-                   (Get_Attribute_Definition_Clause
-                     (U_Ent, Attribute_Value_Size))
-            then
-               Error_Msg_N ("Value_Size already given for &", Nam);
+         --  Compute result by concatenating this first entry with the "and"
+         --  of the remaining parts of the left and right operands. Note that
+         --  if either of these is empty, "and" will yield empty, so that we
+         --  will end up with just Fent, which is what we want in that case.
 
-            elsif Is_Array_Type (U_Ent)
-              and then not Is_Constrained (U_Ent)
-            then
-               Error_Msg_N
-                 ("Value_Size cannot be given for unconstrained array", Nam);
+         return
+           FEnt & (Left (SLeft .. Left'Last) and Right (SRight .. Right'Last));
+      end "and";
 
-            else
-               if Is_Elementary_Type (U_Ent) then
-                  Check_Size (Expr, U_Ent, Size, Biased);
-                  Set_Biased (U_Ent, N, "value size clause", Biased);
-               end if;
+      -----------
+      -- "not" --
+      -----------
+
+      function "not" (Right : RList) return RList is
+      begin
+         --  Return True if False range
+
+         if Is_False (Right) then
+            return True_Range;
+         end if;
+
+         --  Return False if True range
+
+         if Is_True (Right) then
+            return False_Range;
+         end if;
+
+         --  Here if not trivial case
 
-               Set_RM_Size (U_Ent, Size);
-            end if;
-         end Value_Size;
+         declare
+            Result : RList (1 .. Right'Length + 1);
+            --  May need one more entry for gap at beginning and end
 
-         -----------
-         -- Write --
-         -----------
+            Count : Nat := 0;
+            --  Number of entries stored in Result
 
-         when Attribute_Write =>
-            Analyze_Stream_TSS_Definition (TSS_Stream_Write);
-            Set_Has_Specified_Stream_Write (Ent);
+         begin
+            --  Gap at start
 
-         --  All other attributes cannot be set
+            if Right (Right'First).Lo > TLo then
+               Count := Count + 1;
+               Result (Count) := REnt'(TLo, Right (Right'First).Lo - 1);
+            end if;
 
-         when others =>
-            Error_Msg_N
-              ("attribute& cannot be set with definition clause", N);
-      end case;
+            --  Gaps between ranges
 
-      --  The test for the type being frozen must be performed after
-      --  any expression the clause has been analyzed since the expression
-      --  itself might cause freezing that makes the clause illegal.
+            for J in Right'First .. Right'Last - 1 loop
+               Count := Count + 1;
+               Result (Count) :=
+                 REnt'(Right (J).Hi + 1, Right (J + 1).Lo - 1);
+            end loop;
 
-      if Rep_Item_Too_Late (U_Ent, N, FOnly) then
-         return;
-      end if;
-   end Analyze_Attribute_Definition_Clause;
+            --  Gap at end
 
-   ----------------------------
-   -- Analyze_Code_Statement --
-   ----------------------------
+            if Right (Right'Last).Hi < THi then
+               Count := Count + 1;
+               Result (Count) := REnt'(Right (Right'Last).Hi + 1, THi);
+            end if;
 
-   procedure Analyze_Code_Statement (N : Node_Id) is
-      HSS   : constant Node_Id   := Parent (N);
-      SBody : constant Node_Id   := Parent (HSS);
-      Subp  : constant Entity_Id := Current_Scope;
-      Stmt  : Node_Id;
-      Decl  : Node_Id;
-      StmtO : Node_Id;
-      DeclO : Node_Id;
+            return Result (1 .. Count);
+         end;
+      end "not";
 
-   begin
-      --  Analyze and check we get right type, note that this implements the
-      --  requirement (RM 13.8(1)) that Machine_Code be with'ed, since that
-      --  is the only way that Asm_Insn could possibly be visible.
+      ----------
+      -- "or" --
+      ----------
 
-      Analyze_And_Resolve (Expression (N));
+      function "or" (Left, Right : RList) return RList is
+         FEnt : REnt;
+         --  First range of result
 
-      if Etype (Expression (N)) = Any_Type then
-         return;
-      elsif Etype (Expression (N)) /= RTE (RE_Asm_Insn) then
-         Error_Msg_N ("incorrect type for code statement", N);
-         return;
-      end if;
+         SLeft : Nat := Left'First;
+         --  Start of rest of left entries
 
-      Check_Code_Statement (N);
+         SRight : Nat := Right'First;
+         --  Start of rest of right entries
 
-      --  Make sure we appear in the handled statement sequence of a
-      --  subprogram (RM 13.8(3)).
+      begin
+         --  If either range is True, return True
 
-      if Nkind (HSS) /= N_Handled_Sequence_Of_Statements
-        or else Nkind (SBody) /= N_Subprogram_Body
-      then
-         Error_Msg_N
-           ("code statement can only appear in body of subprogram", N);
-         return;
-      end if;
+         if Is_True (Left) or else Is_True (Right) then
+            return True_Range;
+         end if;
 
-      --  Do remaining checks (RM 13.8(3)) if not already done
+         --  If either range is False (empty), return the other
 
-      if not Is_Machine_Code_Subprogram (Subp) then
-         Set_Is_Machine_Code_Subprogram (Subp);
+         if Is_False (Left) then
+            return Right;
+         elsif Is_False (Right) then
+            return Left;
+         end if;
 
-         --  No exception handlers allowed
+         --  Initialize result first entry from left or right operand
+         --  depending on which starts with the lower range.
 
-         if Present (Exception_Handlers (HSS)) then
-            Error_Msg_N
-              ("exception handlers not permitted in machine code subprogram",
-               First (Exception_Handlers (HSS)));
+         if Left (SLeft).Lo < Right (SRight).Lo then
+            FEnt := Left (SLeft);
+            SLeft := SLeft + 1;
+         else
+            FEnt := Right (SRight);
+            SRight := SRight + 1;
          end if;
 
-         --  No declarations other than use clauses and pragmas (we allow
-         --  certain internally generated declarations as well).
+         --  This loop eats ranges from left and right operands that
+         --  are contiguous with the first range we are gathering.
 
-         Decl := First (Declarations (SBody));
-         while Present (Decl) loop
-            DeclO := Original_Node (Decl);
-            if Comes_From_Source (DeclO)
-              and not Nkind_In (DeclO, N_Pragma,
-                                       N_Use_Package_Clause,
-                                       N_Use_Type_Clause,
-                                       N_Implicit_Label_Declaration)
-            then
-               Error_Msg_N
-                 ("this declaration not allowed in machine code subprogram",
-                  DeclO);
-            end if;
+         loop
+            --  Eat first entry in left operand if contiguous or
+            --  overlapped by gathered first operand of result.
 
-            Next (Decl);
-         end loop;
+            if SLeft <= Left'Last
+              and then Left (SLeft).Lo <= FEnt.Hi + 1
+            then
+               FEnt.Hi := UI_Max (FEnt.Hi, Left (SLeft).Hi);
+               SLeft := SLeft + 1;
 
-         --  No statements other than code statements, pragmas, and labels.
-         --  Again we allow certain internally generated statements.
+               --  Eat first entry in right operand if contiguous or
+               --  overlapped by gathered right operand of result.
 
-         Stmt := First (Statements (HSS));
-         while Present (Stmt) loop
-            StmtO := Original_Node (Stmt);
-            if Comes_From_Source (StmtO)
-              and then not Nkind_In (StmtO, N_Pragma,
-                                            N_Label,
-                                            N_Code_Statement)
+            elsif SRight <= Right'Last
+              and then Right (SRight).Lo <= FEnt.Hi + 1
             then
-               Error_Msg_N
-                 ("this statement is not allowed in machine code subprogram",
-                  StmtO);
-            end if;
+               FEnt.Hi := UI_Max (FEnt.Hi, Right (SRight).Hi);
+               SRight := SRight + 1;
 
-            Next (Stmt);
+               --  All done if no more entries to eat!
+
+            else
+               exit;
+            end if;
          end loop;
-      end if;
-   end Analyze_Code_Statement;
 
-   -----------------------------------------------
-   -- Analyze_Enumeration_Representation_Clause --
-   -----------------------------------------------
+         --  Obtain result as the first entry we just computed, concatenated
+         --  to the "or" of the remaining results (if one operand is empty,
+         --  this will just concatenate with the other
 
-   procedure Analyze_Enumeration_Representation_Clause (N : Node_Id) is
-      Ident    : constant Node_Id    := Identifier (N);
-      Aggr     : constant Node_Id    := Array_Aggregate (N);
-      Enumtype : Entity_Id;
-      Elit     : Entity_Id;
-      Expr     : Node_Id;
-      Assoc    : Node_Id;
-      Choice   : Node_Id;
-      Val      : Uint;
-      Err      : Boolean := False;
+         return
+           FEnt & (Left (SLeft .. Left'Last) or Right (SRight .. Right'Last));
+      end "or";
 
-      Lo : constant Uint := Expr_Value (Type_Low_Bound (Universal_Integer));
-      Hi : constant Uint := Expr_Value (Type_High_Bound (Universal_Integer));
-      --  Allowed range of universal integer (= allowed range of enum lit vals)
+      -----------------
+      -- Build_Range --
+      -----------------
 
-      Min : Uint;
-      Max : Uint;
-      --  Minimum and maximum values of entries
+      function Build_Range (Lo, Hi : Uint) return Node_Id is
+         Result : Node_Id;
+      begin
+         if Lo = Hi then
+            return Build_Val (Hi);
+         else
+            Result :=
+              Make_Range (Loc,
+                Low_Bound  => Build_Val (Lo),
+                High_Bound => Build_Val (Hi));
+            Set_Etype (Result, Btyp);
+            Set_Analyzed (Result);
+            return Result;
+         end if;
+      end Build_Range;
 
-      Max_Node : Node_Id;
-      --  Pointer to node for literal providing max value
+      ---------------
+      -- Build_Val --
+      ---------------
 
-   begin
-      if Ignore_Rep_Clauses then
-         return;
-      end if;
+      function Build_Val (V : Uint) return Node_Id is
+         Result : Node_Id;
 
-      --  First some basic error checks
+      begin
+         if Is_Enumeration_Type (Typ) then
+            Result := Get_Enum_Lit_From_Pos (Typ, V, Loc);
+         else
+            Result := Make_Integer_Literal (Loc, V);
+         end if;
 
-      Find_Type (Ident);
-      Enumtype := Entity (Ident);
+         Set_Etype (Result, Btyp);
+         Set_Is_Static_Expression (Result);
+         Set_Analyzed (Result);
+         return Result;
+      end Build_Val;
 
-      if Enumtype = Any_Type
-        or else Rep_Item_Too_Early (Enumtype, N)
-      then
-         return;
-      else
-         Enumtype := Underlying_Type (Enumtype);
-      end if;
+      ---------------
+      -- Get_RList --
+      ---------------
 
-      if not Is_Enumeration_Type (Enumtype) then
-         Error_Msg_NE
-           ("enumeration type required, found}",
-            Ident, First_Subtype (Enumtype));
-         return;
-      end if;
+      function Get_RList (Exp : Node_Id) return RList is
+         Op  : Node_Kind;
+         Val : Uint;
 
-      --  Ignore rep clause on generic actual type. This will already have
-      --  been flagged on the template as an error, and this is the safest
-      --  way to ensure we don't get a junk cascaded message in the instance.
+      begin
+         --  Static expression can only be true or false
 
-      if Is_Generic_Actual_Type (Enumtype) then
-         return;
+         if Is_OK_Static_Expression (Exp) then
 
-      --  Type must be in current scope
+            --  For False
 
-      elsif Scope (Enumtype) /= Current_Scope then
-         Error_Msg_N ("type must be declared in this scope", Ident);
-         return;
+            if Expr_Value (Exp) = 0 then
+               return False_Range;
+            else
+               return True_Range;
+            end if;
+         end if;
 
-      --  Type must be a first subtype
+         --  Otherwise test node type
 
-      elsif not Is_First_Subtype (Enumtype) then
-         Error_Msg_N ("cannot give enumeration rep clause for subtype", N);
-         return;
+         Op := Nkind (Exp);
 
-      --  Ignore duplicate rep clause
+         case Op is
 
-      elsif Has_Enumeration_Rep_Clause (Enumtype) then
-         Error_Msg_N ("duplicate enumeration rep clause ignored", N);
-         return;
+            --  And
 
-      --  Don't allow rep clause for standard [wide_[wide_]]character
+            when N_Op_And | N_And_Then =>
+               return Get_RList (Left_Opnd (Exp))
+                        and
+                      Get_RList (Right_Opnd (Exp));
 
-      elsif Is_Standard_Character_Type (Enumtype) then
-         Error_Msg_N ("enumeration rep clause not allowed for this type", N);
-         return;
+            --  Or
 
-      --  Check that the expression is a proper aggregate (no parentheses)
+            when N_Op_Or | N_Or_Else =>
+               return Get_RList (Left_Opnd (Exp))
+                        or
+                      Get_RList (Right_Opnd (Exp));
 
-      elsif Paren_Count (Aggr) /= 0 then
-         Error_Msg
-           ("extra parentheses surrounding aggregate not allowed",
-            First_Sloc (Aggr));
-         return;
+            --  Not
 
-      --  All tests passed, so set rep clause in place
+            when N_Op_Not =>
+               return not Get_RList (Right_Opnd (Exp));
 
-      else
-         Set_Has_Enumeration_Rep_Clause (Enumtype);
-         Set_Has_Enumeration_Rep_Clause (Base_Type (Enumtype));
-      end if;
+            --  Comparisons of type with static value
 
-      --  Now we process the aggregate. Note that we don't use the normal
-      --  aggregate code for this purpose, because we don't want any of the
-      --  normal expansion activities, and a number of special semantic
-      --  rules apply (including the component type being any integer type)
+            when N_Op_Compare =>
+               --  Type is left operand
 
-      Elit := First_Literal (Enumtype);
+               if Is_Type_Ref (Left_Opnd (Exp))
+                 and then Is_OK_Static_Expression (Right_Opnd (Exp))
+               then
+                  Val := Expr_Value (Right_Opnd (Exp));
 
-      --  First the positional entries if any
+                  --  Typ is right operand
 
-      if Present (Expressions (Aggr)) then
-         Expr := First (Expressions (Aggr));
-         while Present (Expr) loop
-            if No (Elit) then
-               Error_Msg_N ("too many entries in aggregate", Expr);
-               return;
-            end if;
+               elsif Is_Type_Ref (Right_Opnd (Exp))
+                 and then Is_OK_Static_Expression (Left_Opnd (Exp))
+               then
+                  Val := Expr_Value (Left_Opnd (Exp));
 
-            Val := Static_Integer (Expr);
+                  --  Invert sense of comparison
 
-            --  Err signals that we found some incorrect entries processing
-            --  the list. The final checks for completeness and ordering are
-            --  skipped in this case.
+                  case Op is
+                     when N_Op_Gt => Op := N_Op_Lt;
+                     when N_Op_Lt => Op := N_Op_Gt;
+                     when N_Op_Ge => Op := N_Op_Le;
+                     when N_Op_Le => Op := N_Op_Ge;
+                     when others  => null;
+                  end case;
 
-            if Val = No_Uint then
-               Err := True;
-            elsif Val < Lo or else Hi < Val then
-               Error_Msg_N ("value outside permitted range", Expr);
-               Err := True;
-            end if;
+                  --  Other cases are non-static
 
-            Set_Enumeration_Rep (Elit, Val);
-            Set_Enumeration_Rep_Expr (Elit, Expr);
-            Next (Expr);
-            Next (Elit);
-         end loop;
-      end if;
+               else
+                  raise Non_Static;
+               end if;
 
-      --  Now process the named entries if present
+               --  Construct range according to comparison operation
 
-      if Present (Component_Associations (Aggr)) then
-         Assoc := First (Component_Associations (Aggr));
-         while Present (Assoc) loop
-            Choice := First (Choices (Assoc));
+               case Op is
+                  when N_Op_Eq =>
+                     return RList'(1 => REnt'(Val, Val));
 
-            if Present (Next (Choice)) then
-               Error_Msg_N
-                 ("multiple choice not allowed here", Next (Choice));
-               Err := True;
-            end if;
+                  when N_Op_Ge =>
+                     return RList'(1 => REnt'(Val, BHi));
 
-            if Nkind (Choice) = N_Others_Choice then
-               Error_Msg_N ("others choice not allowed here", Choice);
-               Err := True;
+                  when N_Op_Gt =>
+                     return RList'(1 => REnt'(Val + 1, BHi));
 
-            elsif Nkind (Choice) = N_Range then
-               --  ??? should allow zero/one element range here
-               Error_Msg_N ("range not allowed here", Choice);
-               Err := True;
+                  when N_Op_Le =>
+                     return RList'(1 => REnt'(BLo, Val));
 
-            else
-               Analyze_And_Resolve (Choice, Enumtype);
+                  when N_Op_Lt =>
+                     return RList'(1 => REnt'(BLo, Val - 1));
 
-               if Is_Entity_Name (Choice)
-                 and then Is_Type (Entity (Choice))
-               then
-                  Error_Msg_N ("subtype name not allowed here", Choice);
-                  Err := True;
-                  --  ??? should allow static subtype with zero/one entry
+                  when N_Op_Ne =>
+                     return RList'(REnt'(BLo, Val - 1),
+                                   REnt'(Val + 1, BHi));
 
-               elsif Etype (Choice) = Base_Type (Enumtype) then
-                  if not Is_Static_Expression (Choice) then
-                     Flag_Non_Static_Expr
-                       ("non-static expression used for choice!", Choice);
-                     Err := True;
+                  when others  =>
+                     raise Program_Error;
+               end case;
 
-                  else
-                     Elit := Expr_Value_E (Choice);
+            --  Membership (IN)
 
-                     if Present (Enumeration_Rep_Expr (Elit)) then
-                        Error_Msg_Sloc := Sloc (Enumeration_Rep_Expr (Elit));
-                        Error_Msg_NE
-                          ("representation for& previously given#",
-                           Choice, Elit);
-                        Err := True;
-                     end if;
+            when N_In =>
+               if not Is_Type_Ref (Left_Opnd (Exp)) then
+                  raise Non_Static;
+               end if;
+
+               if Present (Right_Opnd (Exp)) then
+                  return Membership_Entry (Right_Opnd (Exp));
+               else
+                  return Membership_Entries (First (Alternatives (Exp)));
+               end if;
 
-                     Set_Enumeration_Rep_Expr (Elit, Expression (Assoc));
+            --  Negative membership (NOT IN)
 
-                     Expr := Expression (Assoc);
-                     Val := Static_Integer (Expr);
+            when N_Not_In =>
+               if not Is_Type_Ref (Left_Opnd (Exp)) then
+                  raise Non_Static;
+               end if;
 
-                     if Val = No_Uint then
-                        Err := True;
+               if Present (Right_Opnd (Exp)) then
+                  return not Membership_Entry (Right_Opnd (Exp));
+               else
+                  return not Membership_Entries (First (Alternatives (Exp)));
+               end if;
 
-                     elsif Val < Lo or else Hi < Val then
-                        Error_Msg_N ("value outside permitted range", Expr);
-                        Err := True;
-                     end if;
+            --  Function call, may be call to static predicate
 
-                     Set_Enumeration_Rep (Elit, Val);
-                  end if;
+            when N_Function_Call =>
+               if Is_Entity_Name (Name (Exp)) then
+                  declare
+                     Ent : constant Entity_Id := Entity (Name (Exp));
+                  begin
+                     if Has_Predicates (Ent) then
+                        return Stat_Pred (Etype (First_Formal (Ent)));
+                     end if;
+                  end;
                end if;
-            end if;
 
-            Next (Assoc);
-         end loop;
-      end if;
+               --  Other function call cases are non-static
 
-      --  Aggregate is fully processed. Now we check that a full set of
-      --  representations was given, and that they are in range and in order.
-      --  These checks are only done if no other errors occurred.
+               raise Non_Static;
 
-      if not Err then
-         Min  := No_Uint;
-         Max  := No_Uint;
+            --  Qualified expression, dig out the expression
 
-         Elit := First_Literal (Enumtype);
-         while Present (Elit) loop
-            if No (Enumeration_Rep_Expr (Elit)) then
-               Error_Msg_NE ("missing representation for&!", N, Elit);
+            when N_Qualified_Expression =>
+               return Get_RList (Expression (Exp));
 
-            else
-               Val := Enumeration_Rep (Elit);
+            --  Xor operator
 
-               if Min = No_Uint then
-                  Min := Val;
-               end if;
+            when N_Op_Xor =>
+               return (Get_RList (Left_Opnd (Exp))
+                        and not Get_RList (Right_Opnd (Exp)))
+                 or   (Get_RList (Right_Opnd (Exp))
+                        and not Get_RList (Left_Opnd (Exp)));
 
-               if Val /= No_Uint then
-                  if Max /= No_Uint and then Val <= Max then
-                     Error_Msg_NE
-                       ("enumeration value for& not ordered!",
-                        Enumeration_Rep_Expr (Elit), Elit);
-                  end if;
+            --  Any other node type is non-static
 
-                  Max_Node := Enumeration_Rep_Expr (Elit);
-                  Max := Val;
-               end if;
+            when others =>
+               raise Non_Static;
+         end case;
+      end Get_RList;
 
-               --  If there is at least one literal whose representation is not
-               --  equal to the Pos value, then note that this enumeration type
-               --  has a non-standard representation.
+      ------------
+      -- Hi_Val --
+      ------------
 
-               if Val /= Enumeration_Pos (Elit) then
-                  Set_Has_Non_Standard_Rep (Base_Type (Enumtype));
-               end if;
-            end if;
+      function Hi_Val (N : Node_Id) return Uint is
+      begin
+         if Is_Static_Expression (N) then
+            return Expr_Value (N);
+         else
+            pragma Assert (Nkind (N) = N_Range);
+            return Expr_Value (High_Bound (N));
+         end if;
+      end Hi_Val;
 
-            Next (Elit);
-         end loop;
+      --------------
+      -- Is_False --
+      --------------
 
-         --  Now set proper size information
+      function Is_False (R : RList) return Boolean is
+      begin
+         return R'Length = 0;
+      end Is_False;
 
-         declare
-            Minsize : Uint := UI_From_Int (Minimum_Size (Enumtype));
+      -------------
+      -- Is_True --
+      -------------
 
-         begin
-            if Has_Size_Clause (Enumtype) then
+      function Is_True (R : RList) return Boolean is
+      begin
+         return R'Length = 1
+           and then R (R'First).Lo = BLo
+           and then R (R'First).Hi = BHi;
+      end Is_True;
 
-               --  All OK, if size is OK now
+      -----------------
+      -- Is_Type_Ref --
+      -----------------
 
-               if RM_Size (Enumtype) >= Minsize then
-                  null;
+      function Is_Type_Ref (N : Node_Id) return Boolean is
+      begin
+         return Nkind (N) = N_Identifier and then Chars (N) = Nam;
+      end Is_Type_Ref;
 
-               else
-                  --  Try if we can get by with biasing
+      ------------
+      -- Lo_Val --
+      ------------
 
-                  Minsize :=
-                    UI_From_Int (Minimum_Size (Enumtype, Biased => True));
+      function Lo_Val (N : Node_Id) return Uint is
+      begin
+         if Is_Static_Expression (N) then
+            return Expr_Value (N);
+         else
+            pragma Assert (Nkind (N) = N_Range);
+            return Expr_Value (Low_Bound (N));
+         end if;
+      end Lo_Val;
 
-                  --  Error message if even biasing does not work
+      ------------------------
+      -- Membership_Entries --
+      ------------------------
 
-                  if RM_Size (Enumtype) < Minsize then
-                     Error_Msg_Uint_1 := RM_Size (Enumtype);
-                     Error_Msg_Uint_2 := Max;
-                     Error_Msg_N
-                       ("previously given size (^) is too small "
-                        & "for this value (^)", Max_Node);
+      function Membership_Entries (N : Node_Id) return RList is
+      begin
+         if No (Next (N)) then
+            return Membership_Entry (N);
+         else
+            return Membership_Entry (N) or Membership_Entries (Next (N));
+         end if;
+      end Membership_Entries;
 
-                  --  If biasing worked, indicate that we now have biased rep
+      ----------------------
+      -- Membership_Entry --
+      ----------------------
 
-                  else
-                     Set_Biased
-                       (Enumtype, Size_Clause (Enumtype), "size clause");
-                  end if;
-               end if;
+      function Membership_Entry (N : Node_Id) return RList is
+         Val : Uint;
+         SLo : Uint;
+         SHi : Uint;
 
+      begin
+         --  Range case
+
+         if Nkind (N) = N_Range then
+            if not Is_Static_Expression (Low_Bound (N))
+                 or else
+               not Is_Static_Expression (High_Bound (N))
+            then
+               raise Non_Static;
             else
-               Set_RM_Size    (Enumtype, Minsize);
-               Set_Enum_Esize (Enumtype);
+               SLo := Expr_Value (Low_Bound  (N));
+               SHi := Expr_Value (High_Bound (N));
+               return RList'(1 => REnt'(SLo, SHi));
             end if;
 
-            Set_RM_Size   (Base_Type (Enumtype), RM_Size   (Enumtype));
-            Set_Esize     (Base_Type (Enumtype), Esize     (Enumtype));
-            Set_Alignment (Base_Type (Enumtype), Alignment (Enumtype));
-         end;
-      end if;
+         --  Static expression case
 
-      --  We repeat the too late test in case it froze itself!
+         elsif Is_Static_Expression (N) then
+            Val := Expr_Value (N);
+            return RList'(1 => REnt'(Val, Val));
 
-      if Rep_Item_Too_Late (Enumtype, N) then
-         null;
-      end if;
-   end Analyze_Enumeration_Representation_Clause;
+         --  Identifier (other than static expression) case
 
-   ----------------------------
-   -- Analyze_Free_Statement --
-   ----------------------------
+         else pragma Assert (Nkind (N) = N_Identifier);
 
-   procedure Analyze_Free_Statement (N : Node_Id) is
-   begin
-      Analyze (Expression (N));
-   end Analyze_Free_Statement;
+            --  Type case
 
-   ---------------------------
-   -- Analyze_Freeze_Entity --
-   ---------------------------
+            if Is_Type (Entity (N)) then
 
-   procedure Analyze_Freeze_Entity (N : Node_Id) is
-      E : constant Entity_Id := Entity (N);
+               --  If type has predicates, process them
 
-   begin
-      --  Remember that we are processing a freezing entity. Required to
-      --  ensure correct decoration of internal entities associated with
-      --  interfaces (see New_Overloaded_Entity).
+               if Has_Predicates (Entity (N)) then
+                  return Stat_Pred (Entity (N));
 
-      Inside_Freezing_Actions := Inside_Freezing_Actions + 1;
+               --  For static subtype without predicates, get range
 
-      --  For tagged types covering interfaces add internal entities that link
-      --  the primitives of the interfaces with the primitives that cover them.
-      --  Note: These entities were originally generated only when generating
-      --  code because their main purpose was to provide support to initialize
-      --  the secondary dispatch tables. They are now generated also when
-      --  compiling with no code generation to provide ASIS the relationship
-      --  between interface primitives and tagged type primitives. They are
-      --  also used to locate primitives covering interfaces when processing
-      --  generics (see Derive_Subprograms).
+               elsif Is_Static_Subtype (Entity (N)) then
+                  SLo := Expr_Value (Type_Low_Bound  (Entity (N)));
+                  SHi := Expr_Value (Type_High_Bound (Entity (N)));
+                  return RList'(1 => REnt'(SLo, SHi));
 
-      if Ada_Version >= Ada_05
-        and then Ekind (E) = E_Record_Type
-        and then Is_Tagged_Type (E)
-        and then not Is_Interface (E)
-        and then Has_Interfaces (E)
-      then
-         --  This would be a good common place to call the routine that checks
-         --  overriding of interface primitives (and thus factorize calls to
-         --  Check_Abstract_Overriding located at different contexts in the
-         --  compiler). However, this is not possible because it causes
-         --  spurious errors in case of late overriding.
+               --  Any other type makes us non-static
 
-         Add_Internal_Interface_Entities (E);
-      end if;
+               else
+                  raise Non_Static;
+               end if;
 
-      --  Check CPP types
+            --  Any other kind of identifier in predicate (e.g. a non-static
+            --  expression value) means this is not a static predicate.
 
-      if Ekind (E) = E_Record_Type
-        and then Is_CPP_Class (E)
-        and then Is_Tagged_Type (E)
-        and then Tagged_Type_Expansion
-        and then Expander_Active
-      then
-         if CPP_Num_Prims (E) = 0 then
+            else
+               raise Non_Static;
+            end if;
+         end if;
+      end Membership_Entry;
 
-            --  If the CPP type has user defined components then it must import
-            --  primitives from C++. This is required because if the C++ class
-            --  has no primitives then the C++ compiler does not added the _tag
-            --  component to the type.
+      ---------------
+      -- Stat_Pred --
+      ---------------
 
-            pragma Assert (Chars (First_Entity (E)) = Name_uTag);
+      function Stat_Pred (Typ : Entity_Id) return RList is
+      begin
+         --  Not static if type does not have static predicates
 
-            if First_Entity (E) /= Last_Entity (E) then
-               Error_Msg_N
-                 ("?'C'P'P type must import at least one primitive from C++",
-                  E);
-            end if;
+         if not Has_Predicates (Typ)
+           or else No (Static_Predicate (Typ))
+         then
+            raise Non_Static;
          end if;
 
-         --  Check that all its primitives are abstract or imported from C++.
-         --  Check also availability of the C++ constructor.
+         --  Otherwise we convert the predicate list to a range list
 
          declare
-            Has_Constructors : constant Boolean := Has_CPP_Constructors (E);
-            Elmt             : Elmt_Id;
-            Error_Reported   : Boolean := False;
-            Prim             : Node_Id;
+            Result : RList (1 .. List_Length (Static_Predicate (Typ)));
+            P      : Node_Id;
 
          begin
-            Elmt := First_Elmt (Primitive_Operations (E));
-            while Present (Elmt) loop
-               Prim := Node (Elmt);
+            P := First (Static_Predicate (Typ));
+            for J in Result'Range loop
+               Result (J) := REnt'(Lo_Val (P), Hi_Val (P));
+               Next (P);
+            end loop;
 
-               if Comes_From_Source (Prim) then
-                  if Is_Abstract_Subprogram (Prim) then
-                     null;
+            return Result;
+         end;
+      end Stat_Pred;
 
-                  elsif not Is_Imported (Prim)
-                    or else Convention (Prim) /= Convention_CPP
-                  then
-                     Error_Msg_N
-                       ("?primitives of 'C'P'P types must be imported from C++"
-                        & " or abstract", Prim);
+   --  Start of processing for Build_Static_Predicate
 
-                  elsif not Has_Constructors
-                     and then not Error_Reported
-                  then
-                     Error_Msg_Name_1 := Chars (E);
-                     Error_Msg_N
-                       ("?'C'P'P constructor required for type %", Prim);
-                     Error_Reported := True;
-                  end if;
-               end if;
+   begin
+      --  Now analyze the expression to see if it is a static predicate
 
-               Next_Elmt (Elmt);
-            end loop;
-         end;
-      end if;
+      declare
+         Ranges : constant RList := Get_RList (Expr);
+         --  Range list from expression if it is static
 
-      Inside_Freezing_Actions := Inside_Freezing_Actions - 1;
-   end Analyze_Freeze_Entity;
+         Plist : List_Id;
 
-   ------------------------------------------
-   -- Analyze_Record_Representation_Clause --
-   ------------------------------------------
+      begin
+         --  Convert range list into a form for the static predicate. In the
+         --  Ranges array, we just have raw ranges, these must be converted
+         --  to properly typed and analyzed static expressions or range nodes.
 
-   --  Note: we check as much as we can here, but we can't do any checks
-   --  based on the position values (e.g. overlap checks) until freeze time
-   --  because especially in Ada 2005 (machine scalar mode), the processing
-   --  for non-standard bit order can substantially change the positions.
-   --  See procedure Check_Record_Representation_Clause (called from Freeze)
-   --  for the remainder of this processing.
+         --  Note: here we limit ranges to the ranges of the subtype, so that
+         --  a predicate is always false for values outside the subtype. That
+         --  seems fine, such values are invalid anyway, and considering them
+         --  to fail the predicate seems allowed and friendly, and furthermore
+         --  simplifies processing for case statements and loops.
 
-   procedure Analyze_Record_Representation_Clause (N : Node_Id) is
-      Ident   : constant Node_Id := Identifier (N);
-      Biased  : Boolean;
-      CC      : Node_Id;
-      Comp    : Entity_Id;
-      Fbit    : Uint;
-      Hbit    : Uint := Uint_0;
-      Lbit    : Uint;
-      Ocomp   : Entity_Id;
-      Posit   : Uint;
-      Rectype : Entity_Id;
+         Plist := New_List;
 
-      CR_Pragma : Node_Id := Empty;
-      --  Points to N_Pragma node if Complete_Representation pragma present
+         for J in Ranges'Range loop
+            declare
+               Lo : Uint := Ranges (J).Lo;
+               Hi : Uint := Ranges (J).Hi;
 
-   begin
-      if Ignore_Rep_Clauses then
-         return;
-      end if;
+            begin
+               --  Ignore completely out of range entry
 
-      Find_Type (Ident);
-      Rectype := Entity (Ident);
+               if Hi < TLo or else Lo > THi then
+                  null;
 
-      if Rectype = Any_Type
-        or else Rep_Item_Too_Early (Rectype, N)
-      then
-         return;
-      else
-         Rectype := Underlying_Type (Rectype);
-      end if;
+                  --  Otherwise process entry
 
-      --  First some basic error checks
+               else
+                  --  Adjust out of range value to subtype range
 
-      if not Is_Record_Type (Rectype) then
-         Error_Msg_NE
-           ("record type required, found}", Ident, First_Subtype (Rectype));
-         return;
+                  if Lo < TLo then
+                     Lo := TLo;
+                  end if;
 
-      elsif Scope (Rectype) /= Current_Scope then
-         Error_Msg_N ("type must be declared in this scope", N);
-         return;
+                  if Hi > THi then
+                     Hi := THi;
+                  end if;
+
+                  --  Convert range into required form
+
+                  if Lo = Hi then
+                     Append_To (Plist, Build_Val (Lo));
+                  else
+                     Append_To (Plist, Build_Range (Lo, Hi));
+                  end if;
+               end if;
+            end;
+         end loop;
 
-      elsif not Is_First_Subtype (Rectype) then
-         Error_Msg_N ("cannot give record rep clause for subtype", N);
-         return;
+         --  Processing was successful and all entries were static, so now we
+         --  can store the result as the predicate list.
 
-      elsif Has_Record_Rep_Clause (Rectype) then
-         Error_Msg_N ("duplicate record rep clause ignored", N);
-         return;
+         Set_Static_Predicate (Typ, Plist);
 
-      elsif Rep_Item_Too_Late (Rectype, N) then
-         return;
-      end if;
+         --  The processing for static predicates put the expression into
+         --  canonical form as a series of ranges. It also eliminated
+         --  duplicates and collapsed and combined ranges. We might as well
+         --  replace the alternatives list of the right operand of the
+         --  membership test with the static predicate list, which will
+         --  usually be more efficient.
 
-      if Present (Mod_Clause (N)) then
          declare
-            Loc     : constant Source_Ptr := Sloc (N);
-            M       : constant Node_Id := Mod_Clause (N);
-            P       : constant List_Id := Pragmas_Before (M);
-            AtM_Nod : Node_Id;
-
-            Mod_Val : Uint;
-            pragma Warnings (Off, Mod_Val);
+            New_Alts : constant List_Id := New_List;
+            Old_Node : Node_Id;
+            New_Node : Node_Id;
 
          begin
-            Check_Restriction (No_Obsolescent_Features, Mod_Clause (N));
-
-            if Warn_On_Obsolescent_Feature then
-               Error_Msg_N
-                 ("mod clause is an obsolescent feature (RM J.8)?", N);
-               Error_Msg_N
-                 ("\use alignment attribute definition clause instead?", N);
-            end if;
+            Old_Node := First (Plist);
+            while Present (Old_Node) loop
+               New_Node := New_Copy (Old_Node);
 
-            if Present (P) then
-               Analyze_List (P);
-            end if;
+               if Nkind (New_Node) = N_Range then
+                  Set_Low_Bound  (New_Node, New_Copy (Low_Bound  (Old_Node)));
+                  Set_High_Bound (New_Node, New_Copy (High_Bound (Old_Node)));
+               end if;
 
-            --  In ASIS_Mode mode, expansion is disabled, but we must convert
-            --  the Mod clause into an alignment clause anyway, so that the
-            --  back-end can compute and back-annotate properly the size and
-            --  alignment of types that may include this record.
+               Append_To (New_Alts, New_Node);
+               Next (Old_Node);
+            end loop;
 
-            --  This seems dubious, this destroys the source tree in a manner
-            --  not detectable by ASIS ???
+            --  If empty list, replace by False
 
-            if Operating_Mode = Check_Semantics
-              and then ASIS_Mode
-            then
-               AtM_Nod :=
-                 Make_Attribute_Definition_Clause (Loc,
-                   Name       => New_Reference_To (Base_Type (Rectype), Loc),
-                   Chars      => Name_Alignment,
-                   Expression => Relocate_Node (Expression (M)));
+            if Is_Empty_List (New_Alts) then
+               Rewrite (Expr, New_Occurrence_Of (Standard_False, Loc));
 
-               Set_From_At_Mod (AtM_Nod);
-               Insert_After (N, AtM_Nod);
-               Mod_Val := Get_Alignment_Value (Expression (AtM_Nod));
-               Set_Mod_Clause (N, Empty);
+            --  Else replace by set membership test
 
             else
-               --  Get the alignment value to perform error checking
-
-               Mod_Val := Get_Alignment_Value (Expression (M));
+               Rewrite (Expr,
+                 Make_In (Loc,
+                   Left_Opnd    => Make_Identifier (Loc, Nam),
+                   Right_Opnd   => Empty,
+                   Alternatives => New_Alts));
+
+               --  Resolve new expression in function context
+
+               Install_Formals (Predicate_Function (Typ));
+               Push_Scope (Predicate_Function (Typ));
+               Analyze_And_Resolve (Expr, Standard_Boolean);
+               Pop_Scope;
             end if;
          end;
-      end if;
-
-      --  For untagged types, clear any existing component clauses for the
-      --  type. If the type is derived, this is what allows us to override
-      --  a rep clause for the parent. For type extensions, the representation
-      --  of the inherited components is inherited, so we want to keep previous
-      --  component clauses for completeness.
-
-      if not Is_Tagged_Type (Rectype) then
-         Comp := First_Component_Or_Discriminant (Rectype);
-         while Present (Comp) loop
-            Set_Component_Clause (Comp, Empty);
-            Next_Component_Or_Discriminant (Comp);
-         end loop;
-      end if;
-
-      --  All done if no component clauses
+      end;
 
-      CC := First (Component_Clauses (N));
+   --  If non-static, return doing nothing
 
-      if No (CC) then
+   exception
+      when Non_Static =>
          return;
-      end if;
-
-      --  A representation like this applies to the base type
-
-      Set_Has_Record_Rep_Clause (Base_Type (Rectype));
-      Set_Has_Non_Standard_Rep  (Base_Type (Rectype));
-      Set_Has_Specified_Layout  (Base_Type (Rectype));
+   end Build_Static_Predicate;
 
-      --  Process the component clauses
+   -----------------------------------------
+   -- Check_Aspect_At_End_Of_Declarations --
+   -----------------------------------------
 
-      while Present (CC) loop
+   procedure Check_Aspect_At_End_Of_Declarations (ASN : Node_Id) is
+      Ent   : constant Entity_Id := Entity     (ASN);
+      Ident : constant Node_Id   := Identifier (ASN);
 
-         --  Pragma
+      Freeze_Expr : constant Node_Id := Expression (ASN);
+      --  Expression from call to Check_Aspect_At_Freeze_Point
 
-         if Nkind (CC) = N_Pragma then
-            Analyze (CC);
+      End_Decl_Expr : constant Node_Id := Entity (Ident);
+      --  Expression to be analyzed at end of declarations
 
-            --  The only pragma of interest is Complete_Representation
+      T : constant Entity_Id := Etype (Freeze_Expr);
+      --  Type required for preanalyze call
 
-            if Pragma_Name (CC) = Name_Complete_Representation then
-               CR_Pragma := CC;
-            end if;
+      A_Id : constant Aspect_Id := Get_Aspect_Id (Chars (Ident));
 
-         --  Processing for real component clause
+      Err : Boolean;
+      --  Set False if error
 
-         else
-            Posit := Static_Integer (Position  (CC));
-            Fbit  := Static_Integer (First_Bit (CC));
-            Lbit  := Static_Integer (Last_Bit  (CC));
+      --  On entry to this procedure, Entity (Ident) contains a copy of the
+      --  original expression from the aspect, saved for this purpose, and
+      --  but Expression (Ident) is a preanalyzed copy of the expression,
+      --  preanalyzed just after the freeze point.
 
-            if Posit /= No_Uint
-              and then Fbit /= No_Uint
-              and then Lbit /= No_Uint
-            then
-               if Posit < 0 then
-                  Error_Msg_N
-                    ("position cannot be negative", Position (CC));
+   begin
+      --  Case of stream attributes, just have to compare entities
 
-               elsif Fbit < 0 then
-                  Error_Msg_N
-                    ("first bit cannot be negative", First_Bit (CC));
+      if A_Id = Aspect_Input  or else
+         A_Id = Aspect_Output or else
+         A_Id = Aspect_Read   or else
+         A_Id = Aspect_Write
+      then
+         Analyze (End_Decl_Expr);
+         Err := Entity (End_Decl_Expr) /= Entity (Freeze_Expr);
 
-               --  The Last_Bit specified in a component clause must not be
-               --  less than the First_Bit minus one (RM-13.5.1(10)).
+      elsif A_Id = Aspect_Variable_Indexing or else
+            A_Id = Aspect_Constant_Indexing or else
+            A_Id = Aspect_Default_Iterator  or else
+            A_Id = Aspect_Iterator_Element
+      then
+         --  Make type unfrozen before analysis, to prevent spurious errors
+         --  about late attributes.
 
-               elsif Lbit < Fbit - 1 then
-                  Error_Msg_N
-                    ("last bit cannot be less than first bit minus one",
-                     Last_Bit (CC));
+         Set_Is_Frozen (Ent, False);
+         Analyze (End_Decl_Expr);
+         Analyze (Aspect_Rep_Item (ASN));
+         Set_Is_Frozen (Ent, True);
 
-               --  Values look OK, so find the corresponding record component
-               --  Even though the syntax allows an attribute reference for
-               --  implementation-defined components, GNAT does not allow the
-               --  tag to get an explicit position.
+         --  If the end of declarations comes before any other freeze
+         --  point, the Freeze_Expr is not analyzed: no check needed.
 
-               elsif Nkind (Component_Name (CC)) = N_Attribute_Reference then
-                  if Attribute_Name (Component_Name (CC)) = Name_Tag then
-                     Error_Msg_N ("position of tag cannot be specified", CC);
-                  else
-                     Error_Msg_N ("illegal component name", CC);
-                  end if;
+         Err :=
+           Analyzed (Freeze_Expr)
+             and then not In_Instance
+             and then Entity (End_Decl_Expr) /= Entity (Freeze_Expr);
 
-               else
-                  Comp := First_Entity (Rectype);
-                  while Present (Comp) loop
-                     exit when Chars (Comp) = Chars (Component_Name (CC));
-                     Next_Entity (Comp);
-                  end loop;
+      --  All other cases
 
-                  if No (Comp) then
+      else
+         Preanalyze_Spec_Expression (End_Decl_Expr, T);
+         Err := not Fully_Conformant_Expressions (End_Decl_Expr, Freeze_Expr);
+      end if;
 
-                     --  Maybe component of base type that is absent from
-                     --  statically constrained first subtype.
+      --  Output error message if error
 
-                     Comp := First_Entity (Base_Type (Rectype));
-                     while Present (Comp) loop
-                        exit when Chars (Comp) = Chars (Component_Name (CC));
-                        Next_Entity (Comp);
-                     end loop;
-                  end if;
+      if Err then
+         Error_Msg_NE
+           ("visibility of aspect for& changes after freeze point",
+            ASN, Ent);
+         Error_Msg_NE
+           ("?info: & is frozen here, aspects evaluated at this point",
+            Freeze_Node (Ent), Ent);
+      end if;
+   end Check_Aspect_At_End_Of_Declarations;
 
-                  if No (Comp) then
-                     Error_Msg_N
-                       ("component clause is for non-existent field", CC);
+   ----------------------------------
+   -- Check_Aspect_At_Freeze_Point --
+   ----------------------------------
 
-                  --  Ada 2012 (AI05-0026): Any name that denotes a
-                  --  discriminant of an object of an unchecked union type
-                  --  shall not occur within a record_representation_clause.
+   procedure Check_Aspect_At_Freeze_Point (ASN : Node_Id) is
+      Ident : constant Node_Id := Identifier (ASN);
+      --  Identifier (use Entity field to save expression)
 
-                  --  The general restriction of using record rep clauses on
-                  --  Unchecked_Union types has now been lifted. Since it is
-                  --  possible to introduce a record rep clause which mentions
-                  --  the discriminant of an Unchecked_Union in non-Ada 2012
-                  --  code, this check is applied to all versions of the
-                  --  language.
+      T : Entity_Id;
+      --  Type required for preanalyze call
 
-                  elsif Ekind (Comp) = E_Discriminant
-                    and then Is_Unchecked_Union (Rectype)
-                  then
-                     Error_Msg_N
-                       ("cannot reference discriminant of Unchecked_Union",
-                        Component_Name (CC));
+      A_Id : constant Aspect_Id := Get_Aspect_Id (Chars (Ident));
 
-                  elsif Present (Component_Clause (Comp)) then
+   begin
+      --  On entry to this procedure, Entity (Ident) contains a copy of the
+      --  original expression from the aspect, saved for this purpose.
 
-                     --  Diagnose duplicate rep clause, or check consistency
-                     --  if this is an inherited component. In a double fault,
-                     --  there may be a duplicate inconsistent clause for an
-                     --  inherited component.
+      --  On exit from this procedure Entity (Ident) is unchanged, still
+      --  containing that copy, but Expression (Ident) is a preanalyzed copy
+      --  of the expression, preanalyzed just after the freeze point.
 
-                     if Scope (Original_Record_Component (Comp)) = Rectype
-                       or else Parent (Component_Clause (Comp)) = N
-                     then
-                        Error_Msg_Sloc := Sloc (Component_Clause (Comp));
-                        Error_Msg_N ("component clause previously given#", CC);
+      --  Make a copy of the expression to be preanalyed
 
-                     else
-                        declare
-                           Rep1 : constant Node_Id := Component_Clause (Comp);
-                        begin
-                           if Intval (Position (Rep1)) /=
-                                                   Intval (Position (CC))
-                             or else Intval (First_Bit (Rep1)) /=
-                                                   Intval (First_Bit (CC))
-                             or else Intval (Last_Bit (Rep1)) /=
-                                                   Intval (Last_Bit (CC))
-                           then
-                              Error_Msg_N ("component clause inconsistent "
-                                & "with representation of ancestor", CC);
-                           elsif Warn_On_Redundant_Constructs then
-                              Error_Msg_N ("?redundant component clause "
-                                & "for inherited component!", CC);
-                           end if;
-                        end;
-                     end if;
+      Set_Expression (ASN, New_Copy_Tree (Entity (Ident)));
 
-                  --  Normal case where this is the first component clause we
-                  --  have seen for this entity, so set it up properly.
+      --  Find type for preanalyze call
 
-                  else
-                     --  Make reference for field in record rep clause and set
-                     --  appropriate entity field in the field identifier.
+      case A_Id is
 
-                     Generate_Reference
-                       (Comp, Component_Name (CC), Set_Ref => False);
-                     Set_Entity (Component_Name (CC), Comp);
+         --  No_Aspect should be impossible
 
-                     --  Update Fbit and Lbit to the actual bit number
+         when No_Aspect =>
+            raise Program_Error;
 
-                     Fbit := Fbit + UI_From_Int (SSU) * Posit;
-                     Lbit := Lbit + UI_From_Int (SSU) * Posit;
+         --  Library unit aspects should be impossible (never delayed)
 
-                     if Has_Size_Clause (Rectype)
-                       and then Esize (Rectype) <= Lbit
-                     then
-                        Error_Msg_N
-                          ("bit number out of range of specified size",
-                           Last_Bit (CC));
-                     else
-                        Set_Component_Clause     (Comp, CC);
-                        Set_Component_Bit_Offset (Comp, Fbit);
-                        Set_Esize                (Comp, 1 + (Lbit - Fbit));
-                        Set_Normalized_First_Bit (Comp, Fbit mod SSU);
-                        Set_Normalized_Position  (Comp, Fbit / SSU);
+         when Library_Unit_Aspects =>
+            raise Program_Error;
 
-                        if Warn_On_Overridden_Size
-                          and then Has_Size_Clause (Etype (Comp))
-                          and then RM_Size (Etype (Comp)) /= Esize (Comp)
-                        then
-                           Error_Msg_NE
-                             ("?component size overrides size clause for&",
-                              Component_Name (CC), Etype (Comp));
-                        end if;
+         --  Aspects taking an optional boolean argument. Should be impossible
+         --  since these are never delayed.
 
-                        --  This information is also set in the corresponding
-                        --  component of the base type, found by accessing the
-                        --  Original_Record_Component link if it is present.
+         when Boolean_Aspects =>
+            raise Program_Error;
 
-                        Ocomp := Original_Record_Component (Comp);
+         --  Test_Case aspect applies to entries and subprograms, hence should
+         --  never be delayed.
 
-                        if Hbit < Lbit then
-                           Hbit := Lbit;
-                        end if;
+         when Aspect_Test_Case =>
+            raise Program_Error;
 
-                        Check_Size
-                          (Component_Name (CC),
-                           Etype (Comp),
-                           Esize (Comp),
-                           Biased);
+         when Aspect_Attach_Handler =>
+            T := RTE (RE_Interrupt_ID);
 
-                        Set_Biased
-                          (Comp, First_Node (CC), "component clause", Biased);
+         --  Default_Value is resolved with the type entity in question
 
-                        if Present (Ocomp) then
-                           Set_Component_Clause     (Ocomp, CC);
-                           Set_Component_Bit_Offset (Ocomp, Fbit);
-                           Set_Normalized_First_Bit (Ocomp, Fbit mod SSU);
-                           Set_Normalized_Position  (Ocomp, Fbit / SSU);
-                           Set_Esize                (Ocomp, 1 + (Lbit - Fbit));
+         when Aspect_Default_Value =>
+            T := Entity (ASN);
 
-                           Set_Normalized_Position_Max
-                             (Ocomp, Normalized_Position (Ocomp));
+         --  Default_Component_Value is resolved with the component type
 
-                           --  Note: we don't use Set_Biased here, because we
-                           --  already gave a warning above if needed, and we
-                           --  would get a duplicate for the same name here.
+         when Aspect_Default_Component_Value =>
+            T := Component_Type (Entity (ASN));
 
-                           Set_Has_Biased_Representation
-                             (Ocomp, Has_Biased_Representation (Comp));
-                        end if;
+         --  Aspects corresponding to attribute definition clauses
 
-                        if Esize (Comp) < 0 then
-                           Error_Msg_N ("component size is negative", CC);
-                        end if;
-                     end if;
-                  end if;
-               end if;
-            end if;
-         end if;
+         when Aspect_Address =>
+            T := RTE (RE_Address);
 
-         Next (CC);
-      end loop;
+         when Aspect_Bit_Order =>
+            T := RTE (RE_Bit_Order);
 
-      --  Check missing components if Complete_Representation pragma appeared
+         when Aspect_CPU =>
+            T := RTE (RE_CPU_Range);
 
-      if Present (CR_Pragma) then
-         Comp := First_Component_Or_Discriminant (Rectype);
-         while Present (Comp) loop
-            if No (Component_Clause (Comp)) then
-               Error_Msg_NE
-                 ("missing component clause for &", CR_Pragma, Comp);
-            end if;
+         when Aspect_Dispatching_Domain =>
+            T := RTE (RE_Dispatching_Domain);
 
-            Next_Component_Or_Discriminant (Comp);
-         end loop;
+         when Aspect_External_Tag =>
+            T := Standard_String;
 
-         --  If no Complete_Representation pragma, warn if missing components
+         when Aspect_Priority | Aspect_Interrupt_Priority =>
+            T := Standard_Integer;
 
-      elsif Warn_On_Unrepped_Components then
-         declare
-            Num_Repped_Components   : Nat := 0;
-            Num_Unrepped_Components : Nat := 0;
+         when Aspect_Small =>
+            T := Universal_Real;
 
-         begin
-            --  First count number of repped and unrepped components
+         when Aspect_Storage_Pool =>
+            T := Class_Wide_Type (RTE (RE_Root_Storage_Pool));
 
-            Comp := First_Component_Or_Discriminant (Rectype);
-            while Present (Comp) loop
-               if Present (Component_Clause (Comp)) then
-                  Num_Repped_Components := Num_Repped_Components + 1;
-               else
-                  Num_Unrepped_Components := Num_Unrepped_Components + 1;
-               end if;
+         when Aspect_Alignment      |
+              Aspect_Component_Size |
+              Aspect_Machine_Radix  |
+              Aspect_Object_Size    |
+              Aspect_Size           |
+              Aspect_Storage_Size   |
+              Aspect_Stream_Size    |
+              Aspect_Value_Size     =>
+            T := Any_Integer;
 
-               Next_Component_Or_Discriminant (Comp);
-            end loop;
+         --  Stream attribute. Special case, the expression is just an entity
+         --  that does not need any resolution, so just analyze.
 
-            --  We are only interested in the case where there is at least one
-            --  unrepped component, and at least half the components have rep
-            --  clauses. We figure that if less than half have them, then the
-            --  partial rep clause is really intentional. If the component
-            --  type has no underlying type set at this point (as for a generic
-            --  formal type), we don't know enough to give a warning on the
-            --  component.
+         when Aspect_Input  |
+              Aspect_Output |
+              Aspect_Read   |
+              Aspect_Write  =>
+            Analyze (Expression (ASN));
+            return;
 
-            if Num_Unrepped_Components > 0
-              and then Num_Unrepped_Components < Num_Repped_Components
-            then
-               Comp := First_Component_Or_Discriminant (Rectype);
-               while Present (Comp) loop
-                  if No (Component_Clause (Comp))
-                    and then Comes_From_Source (Comp)
-                    and then Present (Underlying_Type (Etype (Comp)))
-                    and then (Is_Scalar_Type (Underlying_Type (Etype (Comp)))
-                               or else Size_Known_At_Compile_Time
-                                         (Underlying_Type (Etype (Comp))))
-                    and then not Has_Warnings_Off (Rectype)
-                  then
-                     Error_Msg_Sloc := Sloc (Comp);
-                     Error_Msg_NE
-                       ("?no component clause given for & declared #",
-                        N, Comp);
-                  end if;
+         --  Same for Iterator aspects, where the expression is a function
+         --  name. Legality rules are checked separately.
 
-                  Next_Component_Or_Discriminant (Comp);
-               end loop;
-            end if;
-         end;
-      end if;
-   end Analyze_Record_Representation_Clause;
+         when Aspect_Constant_Indexing    |
+              Aspect_Default_Iterator     |
+              Aspect_Iterator_Element     |
+              Aspect_Implicit_Dereference |
+              Aspect_Variable_Indexing    =>
+            Analyze (Expression (ASN));
+            return;
+
+         --  Suppress/Unsuppress/Warnings should never be delayed
+
+         when Aspect_Suppress   |
+              Aspect_Unsuppress |
+              Aspect_Warnings   =>
+            raise Program_Error;
+
+         --  Pre/Post/Invariant/Predicate take boolean expressions
+
+         when Aspect_Dynamic_Predicate |
+              Aspect_Invariant         |
+              Aspect_Pre               |
+              Aspect_Precondition      |
+              Aspect_Post              |
+              Aspect_Postcondition     |
+              Aspect_Predicate         |
+              Aspect_Static_Predicate  |
+              Aspect_Type_Invariant    =>
+            T := Standard_Boolean;
+      end case;
+
+      --  Do the preanalyze call
+
+      Preanalyze_Spec_Expression (Expression (ASN), T);
+   end Check_Aspect_At_Freeze_Point;
 
    -----------------------------------
    -- Check_Constant_Address_Clause --
@@ -3568,18 +6598,10 @@ package body Sem_Ch13 is
 
          Set_Component_Clause (Fent,
            Make_Component_Clause (Loc,
-             Component_Name =>
-               Make_Identifier (Loc,
-                 Chars => Name_uTag),
-
-             Position  =>
-               Make_Integer_Literal (Loc,
-                 Intval => Uint_0),
-
-             First_Bit =>
-               Make_Integer_Literal (Loc,
-                 Intval => Uint_0),
+             Component_Name => Make_Identifier (Loc, Name_uTag),
 
+             Position  => Make_Integer_Literal (Loc, Uint_0),
+             First_Bit => Make_Integer_Literal (Loc, Uint_0),
              Last_Bit  =>
                Make_Integer_Literal (Loc,
                  UI_From_Int (System_Address_Size))));
@@ -3609,7 +6631,7 @@ package body Sem_Ch13 is
             --  Check bit position out of range of specified size
 
             if Has_Size_Clause (Rectype)
-              and then Esize (Rectype) <= Lbit
+              and then RM_Size (Rectype) <= Lbit
             then
                Error_Msg_N
                  ("bit number out of range of specified size",
@@ -4234,6 +7256,8 @@ package body Sem_Ch13 is
 
    procedure Initialize is
    begin
+      Address_Clause_Checks.Init;
+      Independence_Checks.Init;
       Unchecked_Conversions.Init;
    end Initialize;
 
@@ -4586,8 +7610,7 @@ package body Sem_Ch13 is
 
       else
          Subp_Id :=
-           Make_Defining_Identifier (Loc,
-             Chars => New_External_Name (Sname, 'V'));
+           Make_Defining_Identifier (Loc, New_External_Name (Sname, 'V'));
          Subp_Decl :=
            Make_Object_Declaration (Loc,
              Defining_Identifier => Subp_Id,
@@ -4632,6 +7655,9 @@ package body Sem_Ch13 is
 
       if Is_Incomplete_Or_Private_Type (T)
         and then No (Underlying_Type (T))
+        and then
+          (Nkind (N) /= N_Pragma
+            or else Get_Pragma_Id (N) /= Pragma_Import)
       then
          Error_Msg_N
            ("representation item must be after full type declaration", N);
@@ -4749,6 +7775,113 @@ package body Sem_Ch13 is
       return False;
    end Rep_Item_Too_Late;
 
+   -------------------------------------
+   -- Replace_Type_References_Generic --
+   -------------------------------------
+
+   procedure Replace_Type_References_Generic (N : Node_Id; TName : Name_Id) is
+
+      function Replace_Node (N : Node_Id) return Traverse_Result;
+      --  Processes a single node in the traversal procedure below, checking
+      --  if node N should be replaced, and if so, doing the replacement.
+
+      procedure Replace_Type_Refs is new Traverse_Proc (Replace_Node);
+      --  This instantiation provides the body of Replace_Type_References
+
+      ------------------
+      -- Replace_Node --
+      ------------------
+
+      function Replace_Node (N : Node_Id) return Traverse_Result is
+         S : Entity_Id;
+         P : Node_Id;
+
+      begin
+         --  Case of identifier
+
+         if Nkind (N) = N_Identifier then
+
+            --  If not the type name, all done with this node
+
+            if Chars (N) /= TName then
+               return Skip;
+
+            --  Otherwise do the replacement and we are done with this node
+
+            else
+               Replace_Type_Reference (N);
+               return Skip;
+            end if;
+
+         --  Case of selected component (which is what a qualification
+         --  looks like in the unanalyzed tree, which is what we have.
+
+         elsif Nkind (N) = N_Selected_Component then
+
+            --  If selector name is not our type, keeping going (we might
+            --  still have an occurrence of the type in the prefix).
+
+            if Nkind (Selector_Name (N)) /= N_Identifier
+              or else Chars (Selector_Name (N)) /= TName
+            then
+               return OK;
+
+            --  Selector name is our type, check qualification
+
+            else
+               --  Loop through scopes and prefixes, doing comparison
+
+               S := Current_Scope;
+               P := Prefix (N);
+               loop
+                  --  Continue if no more scopes or scope with no name
+
+                  if No (S) or else Nkind (S) not in N_Has_Chars then
+                     return OK;
+                  end if;
+
+                  --  Do replace if prefix is an identifier matching the
+                  --  scope that we are currently looking at.
+
+                  if Nkind (P) = N_Identifier
+                    and then Chars (P) = Chars (S)
+                  then
+                     Replace_Type_Reference (N);
+                     return Skip;
+                  end if;
+
+                  --  Go check scope above us if prefix is itself of the
+                  --  form of a selected component, whose selector matches
+                  --  the scope we are currently looking at.
+
+                  if Nkind (P) = N_Selected_Component
+                    and then Nkind (Selector_Name (P)) = N_Identifier
+                    and then Chars (Selector_Name (P)) = Chars (S)
+                  then
+                     S := Scope (S);
+                     P := Prefix (P);
+
+                  --  For anything else, we don't have a match, so keep on
+                  --  going, there are still some weird cases where we may
+                  --  still have a replacement within the prefix.
+
+                  else
+                     return OK;
+                  end if;
+               end loop;
+            end if;
+
+            --  Continue for any other node kind
+
+         else
+            return OK;
+         end if;
+      end Replace_Node;
+
+   begin
+      Replace_Type_Refs (N);
+   end Replace_Type_References_Generic;
+
    -------------------------
    -- Same_Representation --
    -------------------------
@@ -4803,7 +7936,17 @@ package body Sem_Ch13 is
            and then Known_Component_Size (T2)
            and then Component_Size (T1) = Component_Size (T2)
          then
-            return True;
+            if VM_Target = No_VM then
+               return True;
+
+            --  In VM targets the representation of arrays with aliased
+            --  components differs from arrays with non-aliased components
+
+            else
+               return Has_Aliased_Components (Base_Type (T1))
+                        =
+                      Has_Aliased_Components (Base_Type (T2));
+            end if;
          end if;
       end if;
 
@@ -5129,6 +8272,292 @@ package body Sem_Ch13 is
       end loop;
    end Validate_Address_Clauses;
 
+   ---------------------------
+   -- Validate_Independence --
+   ---------------------------
+
+   procedure Validate_Independence is
+      SU   : constant Uint := UI_From_Int (System_Storage_Unit);
+      N    : Node_Id;
+      E    : Entity_Id;
+      IC   : Boolean;
+      Comp : Entity_Id;
+      Addr : Node_Id;
+      P    : Node_Id;
+
+      procedure Check_Array_Type (Atyp : Entity_Id);
+      --  Checks if the array type Atyp has independent components, and
+      --  if not, outputs an appropriate set of error messages.
+
+      procedure No_Independence;
+      --  Output message that independence cannot be guaranteed
+
+      function OK_Component (C : Entity_Id) return Boolean;
+      --  Checks one component to see if it is independently accessible, and
+      --  if so yields True, otherwise yields False if independent access
+      --  cannot be guaranteed. This is a conservative routine, it only
+      --  returns True if it knows for sure, it returns False if it knows
+      --  there is a problem, or it cannot be sure there is no problem.
+
+      procedure Reason_Bad_Component (C : Entity_Id);
+      --  Outputs continuation message if a reason can be determined for
+      --  the component C being bad.
+
+      ----------------------
+      -- Check_Array_Type --
+      ----------------------
+
+      procedure Check_Array_Type (Atyp : Entity_Id) is
+         Ctyp : constant Entity_Id := Component_Type (Atyp);
+
+      begin
+         --  OK if no alignment clause, no pack, and no component size
+
+         if not Has_Component_Size_Clause (Atyp)
+           and then not Has_Alignment_Clause (Atyp)
+           and then not Is_Packed (Atyp)
+         then
+            return;
+         end if;
+
+         --  Check actual component size
+
+         if not Known_Component_Size (Atyp)
+           or else not (Addressable (Component_Size (Atyp))
+                          and then Component_Size (Atyp) < 64)
+           or else Component_Size (Atyp) mod Esize (Ctyp) /= 0
+         then
+            No_Independence;
+
+            --  Bad component size, check reason
+
+            if Has_Component_Size_Clause (Atyp) then
+               P :=
+                 Get_Attribute_Definition_Clause
+                   (Atyp, Attribute_Component_Size);
+
+               if Present (P) then
+                  Error_Msg_Sloc := Sloc (P);
+                  Error_Msg_N ("\because of Component_Size clause#", N);
+                  return;
+               end if;
+            end if;
+
+            if Is_Packed (Atyp) then
+               P := Get_Rep_Pragma (Atyp, Name_Pack);
+
+               if Present (P) then
+                  Error_Msg_Sloc := Sloc (P);
+                  Error_Msg_N ("\because of pragma Pack#", N);
+                  return;
+               end if;
+            end if;
+
+            --  No reason found, just return
+
+            return;
+         end if;
+
+         --  Array type is OK independence-wise
+
+         return;
+      end Check_Array_Type;
+
+      ---------------------
+      -- No_Independence --
+      ---------------------
+
+      procedure No_Independence is
+      begin
+         if Pragma_Name (N) = Name_Independent then
+            Error_Msg_NE
+              ("independence cannot be guaranteed for&", N, E);
+         else
+            Error_Msg_NE
+              ("independent components cannot be guaranteed for&", N, E);
+         end if;
+      end No_Independence;
+
+      ------------------
+      -- OK_Component --
+      ------------------
+
+      function OK_Component (C : Entity_Id) return Boolean is
+         Rec  : constant Entity_Id := Scope (C);
+         Ctyp : constant Entity_Id := Etype (C);
+
+      begin
+         --  OK if no component clause, no Pack, and no alignment clause
+
+         if No (Component_Clause (C))
+           and then not Is_Packed (Rec)
+           and then not Has_Alignment_Clause (Rec)
+         then
+            return True;
+         end if;
+
+         --  Here we look at the actual component layout. A component is
+         --  addressable if its size is a multiple of the Esize of the
+         --  component type, and its starting position in the record has
+         --  appropriate alignment, and the record itself has appropriate
+         --  alignment to guarantee the component alignment.
+
+         --  Make sure sizes are static, always assume the worst for any
+         --  cases where we cannot check static values.
+
+         if not (Known_Static_Esize (C)
+                  and then Known_Static_Esize (Ctyp))
+         then
+            return False;
+         end if;
+
+         --  Size of component must be addressable or greater than 64 bits
+         --  and a multiple of bytes.
+
+         if not Addressable (Esize (C))
+           and then Esize (C) < Uint_64
+         then
+            return False;
+         end if;
+
+         --  Check size is proper multiple
+
+         if Esize (C) mod Esize (Ctyp) /= 0 then
+            return False;
+         end if;
+
+         --  Check alignment of component is OK
+
+         if not Known_Component_Bit_Offset (C)
+           or else Component_Bit_Offset (C) < Uint_0
+           or else Component_Bit_Offset (C) mod Esize (Ctyp) /= 0
+         then
+            return False;
+         end if;
+
+         --  Check alignment of record type is OK
+
+         if not Known_Alignment (Rec)
+           or else (Alignment (Rec) * SU) mod Esize (Ctyp) /= 0
+         then
+            return False;
+         end if;
+
+         --  All tests passed, component is addressable
+
+         return True;
+      end OK_Component;
+
+      --------------------------
+      -- Reason_Bad_Component --
+      --------------------------
+
+      procedure Reason_Bad_Component (C : Entity_Id) is
+         Rec  : constant Entity_Id := Scope (C);
+         Ctyp : constant Entity_Id := Etype (C);
+
+      begin
+         --  If component clause present assume that's the problem
+
+         if Present (Component_Clause (C)) then
+            Error_Msg_Sloc := Sloc (Component_Clause (C));
+            Error_Msg_N ("\because of Component_Clause#", N);
+            return;
+         end if;
+
+         --  If pragma Pack clause present, assume that's the problem
+
+         if Is_Packed (Rec) then
+            P := Get_Rep_Pragma (Rec, Name_Pack);
+
+            if Present (P) then
+               Error_Msg_Sloc := Sloc (P);
+               Error_Msg_N ("\because of pragma Pack#", N);
+               return;
+            end if;
+         end if;
+
+         --  See if record has bad alignment clause
+
+         if Has_Alignment_Clause (Rec)
+           and then Known_Alignment (Rec)
+           and then (Alignment (Rec) * SU) mod Esize (Ctyp) /= 0
+         then
+            P := Get_Attribute_Definition_Clause (Rec, Attribute_Alignment);
+
+            if Present (P) then
+               Error_Msg_Sloc := Sloc (P);
+               Error_Msg_N ("\because of Alignment clause#", N);
+            end if;
+         end if;
+
+         --  Couldn't find a reason, so return without a message
+
+         return;
+      end Reason_Bad_Component;
+
+   --  Start of processing for Validate_Independence
+
+   begin
+      for J in Independence_Checks.First .. Independence_Checks.Last loop
+         N  := Independence_Checks.Table (J).N;
+         E  := Independence_Checks.Table (J).E;
+         IC := Pragma_Name (N) = Name_Independent_Components;
+
+         --  Deal with component case
+
+         if Ekind (E) = E_Discriminant or else Ekind (E) = E_Component then
+            if not OK_Component (E) then
+               No_Independence;
+               Reason_Bad_Component (E);
+               goto Continue;
+            end if;
+         end if;
+
+         --  Deal with record with Independent_Components
+
+         if IC and then Is_Record_Type (E) then
+            Comp := First_Component_Or_Discriminant (E);
+            while Present (Comp) loop
+               if not OK_Component (Comp) then
+                  No_Independence;
+                  Reason_Bad_Component (Comp);
+                  goto Continue;
+               end if;
+
+               Next_Component_Or_Discriminant (Comp);
+            end loop;
+         end if;
+
+         --  Deal with address clause case
+
+         if Is_Object (E) then
+            Addr := Address_Clause (E);
+
+            if Present (Addr) then
+               No_Independence;
+               Error_Msg_Sloc := Sloc (Addr);
+               Error_Msg_N ("\because of Address clause#", N);
+               goto Continue;
+            end if;
+         end if;
+
+         --  Deal with independent components for array type
+
+         if IC and then Is_Array_Type (E) then
+            Check_Array_Type (E);
+         end if;
+
+         --  Deal with independent components for array object
+
+         if IC and then Is_Object (E) and then Is_Array_Type (Etype (E)) then
+            Check_Array_Type (Etype (E));
+         end if;
+
+      <<Continue>> null;
+      end loop;
+   end Validate_Independence;
+
    -----------------------------------
    -- Validate_Unchecked_Conversion --
    -----------------------------------