OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [cc/] [cc54002.a] - Diff between revs 294 and 338

Only display areas with differences | Details | Blame | View Log

Rev 294 Rev 338
-- CC54002.A
-- CC54002.A
--
--
--                             Grant of Unlimited Rights
--                             Grant of Unlimited Rights
--
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     unlimited rights in the software and documentation contained herein.
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     this public release, the Government intends to confer upon all
--     this public release, the Government intends to confer upon all
--     recipients unlimited rights  equal to those held by the Government.
--     recipients unlimited rights  equal to those held by the Government.
--     These rights include rights to use, duplicate, release or disclose the
--     These rights include rights to use, duplicate, release or disclose the
--     released technical data and computer software in whole or in part, in
--     released technical data and computer software in whole or in part, in
--     any manner and for any purpose whatsoever, and to have or permit others
--     any manner and for any purpose whatsoever, and to have or permit others
--     to do so.
--     to do so.
--
--
--                                    DISCLAIMER
--                                    DISCLAIMER
--
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--*
--
--
-- OBJECTIVE:
-- OBJECTIVE:
--      Check that a general access-to-variable type may be passed as an
--      Check that a general access-to-variable type may be passed as an
--      actual to a generic formal general access-to-variable type. Check that
--      actual to a generic formal general access-to-variable type. Check that
--      designated objects may be read and updated through the access value.
--      designated objects may be read and updated through the access value.
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      The generic implements a List of access objects as an array, which
--      The generic implements a List of access objects as an array, which
--      is itself a component of a record. The designated type of the formal
--      is itself a component of a record. The designated type of the formal
--      access type is a formal private type declared in the same generic
--      access type is a formal private type declared in the same generic
--      formal part.
--      formal part.
--
--
--      The access objects to be placed in the List are created both
--      The access objects to be placed in the List are created both
--      statically and dynamically, utilizing allocators and the 'Access
--      statically and dynamically, utilizing allocators and the 'Access
--      attribute.
--      attribute.
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--      10 Apr 96   SAIC    ACVC 2.1: Added pragma Elaborate to context clause
--      10 Apr 96   SAIC    ACVC 2.1: Added pragma Elaborate to context clause
--                          preceding CC54002_1.
--                          preceding CC54002_1.
--
--
--!
--!
generic
generic
   Size : in Positive;
   Size : in Positive;
   type Element_Type (<>) is private;
   type Element_Type (<>) is private;
   type Element_Ptr       is access all Element_Type;
   type Element_Ptr       is access all Element_Type;
package CC54002_0 is -- Generic list of pointers.
package CC54002_0 is -- Generic list of pointers.
   subtype Index is Positive range 1 .. (Size + 1);
   subtype Index is Positive range 1 .. (Size + 1);
   type List_Array is array (Index) of Element_Ptr;
   type List_Array is array (Index) of Element_Ptr;
   type List_Type is record
   type List_Type is record
      Elements : List_Array;
      Elements : List_Array;
      Next     : Index := 1;    -- Next available "slot" in list.
      Next     : Index := 1;    -- Next available "slot" in list.
   end record;
   end record;
   procedure Put (List     : in out List_Type;
   procedure Put (List     : in out List_Type;
                  Elem_Ptr : in     Element_Ptr;
                  Elem_Ptr : in     Element_Ptr;
                  Location : in     Index);
                  Location : in     Index);
   procedure Get (List     : in out List_Type;
   procedure Get (List     : in out List_Type;
                  Elem_Ptr :    out Element_Ptr;
                  Elem_Ptr :    out Element_Ptr;
                  Location : in     Index);
                  Location : in     Index);
   -- ... Other operations.
   -- ... Other operations.
end CC54002_0;
end CC54002_0;
     --===================================================================--
     --===================================================================--
package body CC54002_0 is
package body CC54002_0 is
   procedure Put (List     : in out List_Type;
   procedure Put (List     : in out List_Type;
                  Elem_Ptr : in     Element_Ptr;
                  Elem_Ptr : in     Element_Ptr;
                  Location : in     Index) is
                  Location : in     Index) is
   begin
   begin
      List.Elements(Location) := Elem_Ptr;
      List.Elements(Location) := Elem_Ptr;
   end Put;
   end Put;
   procedure Get (List     : in out List_Type;
   procedure Get (List     : in out List_Type;
                  Elem_Ptr :    out Element_Ptr;
                  Elem_Ptr :    out Element_Ptr;
                  Location : in     Index) is
                  Location : in     Index) is
   begin  -- Artificial: no provision for getting "empty" element.
   begin  -- Artificial: no provision for getting "empty" element.
      Elem_Ptr := List.Elements(Location);
      Elem_Ptr := List.Elements(Location);
   end Get;
   end Get;
end CC54002_0;
end CC54002_0;
     --===================================================================--
     --===================================================================--
with CC54002_0;      -- Generic List of pointers.
with CC54002_0;      -- Generic List of pointers.
pragma Elaborate (CC54002_0);
pragma Elaborate (CC54002_0);
package CC54002_1 is
package CC54002_1 is
   subtype Lengths is Natural range 0 .. 50;
   subtype Lengths is Natural range 0 .. 50;
   type Subscriber (NLen, ALen: Lengths := 50) is record
   type Subscriber (NLen, ALen: Lengths := 50) is record
      Name    : String(1 .. NLen);
      Name    : String(1 .. NLen);
      Address : String(1 .. ALen);
      Address : String(1 .. ALen);
      -- ... Other components.
      -- ... Other components.
   end record;
   end record;
   type Subscriber_Ptr is access all Subscriber;         -- General access-to-
   type Subscriber_Ptr is access all Subscriber;         -- General access-to-
                                                         -- variable type.
                                                         -- variable type.
   package District_Subscription_Lists is new CC54002_0
   package District_Subscription_Lists is new CC54002_0
     (Element_Type => Subscriber,
     (Element_Type => Subscriber,
      Element_Ptr  => Subscriber_Ptr,
      Element_Ptr  => Subscriber_Ptr,
      Size         => 100);
      Size         => 100);
   District_01_Subscribers : District_Subscription_Lists.List_Type;
   District_01_Subscribers : District_Subscription_Lists.List_Type;
   New_Subscriber_01 : aliased CC54002_1.Subscriber :=
   New_Subscriber_01 : aliased CC54002_1.Subscriber :=
     (12, 23, "Brown, Silas", "King's Pyland, Dartmoor");
     (12, 23, "Brown, Silas", "King's Pyland, Dartmoor");
   New_Subscriber_02 : aliased CC54002_1.Subscriber :=
   New_Subscriber_02 : aliased CC54002_1.Subscriber :=
     (16, 23, "Hatherly, Victor", "16A Victoria St. London");
     (16, 23, "Hatherly, Victor", "16A Victoria St. London");
end CC54002_1;
end CC54002_1;
-- No body for CC54002_1.
-- No body for CC54002_1.
     --===================================================================--
     --===================================================================--
with CC54002_1;
with CC54002_1;
with Report;
with Report;
procedure CC54002 is
procedure CC54002 is
   Mod_Subscriber_01 : constant CC54002_1.Subscriber :=
   Mod_Subscriber_01 : constant CC54002_1.Subscriber :=
     (12, 23, "Brown, Silas", "Mapleton, Dartmoor     ");
     (12, 23, "Brown, Silas", "Mapleton, Dartmoor     ");
   TC_Actual_01, TC_Actual_02 : CC54002_1.Subscriber_Ptr;
   TC_Actual_01, TC_Actual_02 : CC54002_1.Subscriber_Ptr;
   use type CC54002_1.Subscriber;  -- "/=" directly visible.
   use type CC54002_1.Subscriber;  -- "/=" directly visible.
begin
begin
   Report.Test ("CC54002", "Check that a general access-to-variable type "   &
   Report.Test ("CC54002", "Check that a general access-to-variable type "   &
                           "may be passed as an actual to a generic formal " &
                           "may be passed as an actual to a generic formal " &
                           "access-to-variable type");
                           "access-to-variable type");
   -- Add elements to the list:
   -- Add elements to the list:
   CC54002_1.District_Subscription_Lists.Put    -- Element created statically.
   CC54002_1.District_Subscription_Lists.Put    -- Element created statically.
     (List     => CC54002_1.District_01_Subscribers,
     (List     => CC54002_1.District_01_Subscribers,
      Elem_Ptr => CC54002_1.New_Subscriber_01'Access,
      Elem_Ptr => CC54002_1.New_Subscriber_01'Access,
      Location => 1);
      Location => 1);
   CC54002_1.District_Subscription_Lists.Put    -- Element created dynamically.
   CC54002_1.District_Subscription_Lists.Put    -- Element created dynamically.
     (List     => CC54002_1.District_01_Subscribers,
     (List     => CC54002_1.District_01_Subscribers,
      Elem_Ptr => new CC54002_1.Subscriber'(CC54002_1.New_Subscriber_02),
      Elem_Ptr => new CC54002_1.Subscriber'(CC54002_1.New_Subscriber_02),
      Location => 2);
      Location => 2);
   -- Manipulation of the objects on the list is performed below directly
   -- Manipulation of the objects on the list is performed below directly
   -- through the access objects. Although such manipulation is artificial
   -- through the access objects. Although such manipulation is artificial
   -- from the perspective of this usage model, it is not artificial in
   -- from the perspective of this usage model, it is not artificial in
   -- general and is necessary in order to test the objective.
   -- general and is necessary in order to test the objective.
   -- Modify the first list element through the access object:
   -- Modify the first list element through the access object:
   CC54002_1.District_01_Subscribers.Elements(1).Address :=      -- Update
   CC54002_1.District_01_Subscribers.Elements(1).Address :=      -- Update
      "Mapleton, Dartmoor     ";      -- Implicit dereference.   -- through the
      "Mapleton, Dartmoor     ";      -- Implicit dereference.   -- through the
                                                                 -- access
                                                                 -- access
                                                                 -- object.
                                                                 -- object.
   -- Retrieve elements of the list:
   -- Retrieve elements of the list:
   CC54002_1.District_Subscription_Lists.Get
   CC54002_1.District_Subscription_Lists.Get
     (CC54002_1.District_01_Subscribers,
     (CC54002_1.District_01_Subscribers,
      TC_Actual_01,
      TC_Actual_01,
      1);
      1);
   CC54002_1.District_Subscription_Lists.Get
   CC54002_1.District_Subscription_Lists.Get
     (CC54002_1.District_01_Subscribers,
     (CC54002_1.District_01_Subscribers,
      TC_Actual_02,
      TC_Actual_02,
      2);
      2);
   -- Verify list contents in two ways: 1st verify the directly-dereferenced
   -- Verify list contents in two ways: 1st verify the directly-dereferenced
   -- access objects against the dereferenced access objects returned by Get;
   -- access objects against the dereferenced access objects returned by Get;
   -- 2nd verify them against objects the expected values:
   -- 2nd verify them against objects the expected values:
                                                                 -- Read
                                                                 -- Read
                                                                 -- through the
                                                                 -- through the
                                                                 -- access
                                                                 -- access
                                                                 -- objects.
                                                                 -- objects.
   if CC54002_1.District_01_Subscribers.Elements(1).all /= TC_Actual_01.all
   if CC54002_1.District_01_Subscribers.Elements(1).all /= TC_Actual_01.all
      or else
      or else
      CC54002_1.District_01_Subscribers.Elements(2).all /= TC_Actual_02.all
      CC54002_1.District_01_Subscribers.Elements(2).all /= TC_Actual_02.all
   then
   then
      Report.Failed ("Wrong results returned by Get");
      Report.Failed ("Wrong results returned by Get");
   elsif CC54002_1.District_01_Subscribers.Elements(1).all /=
   elsif CC54002_1.District_01_Subscribers.Elements(1).all /=
           Mod_Subscriber_01
           Mod_Subscriber_01
         or
         or
         CC54002_1.District_01_Subscribers.Elements(2).all /=
         CC54002_1.District_01_Subscribers.Elements(2).all /=
           CC54002_1.New_Subscriber_02
           CC54002_1.New_Subscriber_02
   then
   then
      Report.Failed ("List elements do not have expected values");
      Report.Failed ("List elements do not have expected values");
   end if;
   end if;
   Report.Result;
   Report.Result;
end CC54002;
end CC54002;
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.