annotate gcc/testsuite/ada/acats/tests/cc/cc51003.a @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 -- CC51003.A
kono
parents:
diff changeset
2 --
kono
parents:
diff changeset
3 -- Grant of Unlimited Rights
kono
parents:
diff changeset
4 --
kono
parents:
diff changeset
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
kono
parents:
diff changeset
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
kono
parents:
diff changeset
7 -- unlimited rights in the software and documentation contained herein.
kono
parents:
diff changeset
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
kono
parents:
diff changeset
9 -- this public release, the Government intends to confer upon all
kono
parents:
diff changeset
10 -- recipients unlimited rights equal to those held by the Government.
kono
parents:
diff changeset
11 -- These rights include rights to use, duplicate, release or disclose the
kono
parents:
diff changeset
12 -- released technical data and computer software in whole or in part, in
kono
parents:
diff changeset
13 -- any manner and for any purpose whatsoever, and to have or permit others
kono
parents:
diff changeset
14 -- to do so.
kono
parents:
diff changeset
15 --
kono
parents:
diff changeset
16 -- DISCLAIMER
kono
parents:
diff changeset
17 --
kono
parents:
diff changeset
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
kono
parents:
diff changeset
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
kono
parents:
diff changeset
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
kono
parents:
diff changeset
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
kono
parents:
diff changeset
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
kono
parents:
diff changeset
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
kono
parents:
diff changeset
24 --*
kono
parents:
diff changeset
25 --
kono
parents:
diff changeset
26 -- OBJECTIVE:
kono
parents:
diff changeset
27 -- Check that if the ancestor type of a formal derived type is a composite
kono
parents:
diff changeset
28 -- type that is not an array type, the formal type inherits components,
kono
parents:
diff changeset
29 -- including discriminants, from the ancestor type.
kono
parents:
diff changeset
30 --
kono
parents:
diff changeset
31 -- Check for the case where the ancestor type is a record type, and the
kono
parents:
diff changeset
32 -- formal derived type is declared in a generic subprogram.
kono
parents:
diff changeset
33 --
kono
parents:
diff changeset
34 -- TEST DESCRIPTION:
kono
parents:
diff changeset
35 -- Define a discriminated record type in a package. Declare a
kono
parents:
diff changeset
36 -- library-level generic subprogram with a formal derived type using the
kono
parents:
diff changeset
37 -- record type as ancestor. Give the generic subprogram an in out
kono
parents:
diff changeset
38 -- parameter of the formal derived type. Inside the generic, use the
kono
parents:
diff changeset
39 -- discriminant component and modify the remaining components of the
kono
parents:
diff changeset
40 -- record parameter. In the main program, declare record objects with two
kono
parents:
diff changeset
41 -- different discriminant values. Derive an indefinite type from the
kono
parents:
diff changeset
42 -- record type with a new discriminant part. Instantiate the generic
kono
parents:
diff changeset
43 -- subprogram for the root record subtype and the derived subtype. Call
kono
parents:
diff changeset
44 -- the root subtype instance with actual parameters having the two
kono
parents:
diff changeset
45 -- discriminant values. Also call the derived subtype instance with
kono
parents:
diff changeset
46 -- an appropriate actual.
kono
parents:
diff changeset
47 --
kono
parents:
diff changeset
48 --
kono
parents:
diff changeset
49 -- CHANGE HISTORY:
kono
parents:
diff changeset
50 -- 06 Dec 94 SAIC ACVC 2.0
kono
parents:
diff changeset
51 -- 03 Jan 95 SAIC Removed unknown discriminant part from formal
kono
parents:
diff changeset
52 -- derived type.
kono
parents:
diff changeset
53 -- 05 Nov 95 SAIC ACVC 2.0.1 fixes: Removed constrained subtype
kono
parents:
diff changeset
54 -- instantiation and associated declarations.
kono
parents:
diff changeset
55 -- Modified commentary.
kono
parents:
diff changeset
56 --
kono
parents:
diff changeset
57 --!
kono
parents:
diff changeset
58
kono
parents:
diff changeset
59
kono
parents:
diff changeset
60 -- Simulate a fragment of a matrix manipulation application.
kono
parents:
diff changeset
61
kono
parents:
diff changeset
62 package CC51003_0 is -- Matrix types.
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 type Matrix is array (Natural range <>, Natural range <>) of Integer;
kono
parents:
diff changeset
65
kono
parents:
diff changeset
66 type Square (Side : Natural) is record
kono
parents:
diff changeset
67 Mat : Matrix (1 .. Side, 1 .. Side);
kono
parents:
diff changeset
68 end record;
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 type Double_Square (Number : Natural) is record
kono
parents:
diff changeset
71 Left : Square (Number);
kono
parents:
diff changeset
72 Right : Square (Number);
kono
parents:
diff changeset
73 end record;
kono
parents:
diff changeset
74
kono
parents:
diff changeset
75 end CC51003_0;
kono
parents:
diff changeset
76
kono
parents:
diff changeset
77
kono
parents:
diff changeset
78 -- No body for CC51003_0;
kono
parents:
diff changeset
79
kono
parents:
diff changeset
80
kono
parents:
diff changeset
81 --==================================================================--
kono
parents:
diff changeset
82
kono
parents:
diff changeset
83
kono
parents:
diff changeset
84 with CC51003_0; -- Matrix types.
kono
parents:
diff changeset
85 generic -- Generic double-matrix "clear" operation.
kono
parents:
diff changeset
86 type Dbl_Square is new CC51003_0.Double_Square; -- Indefinite
kono
parents:
diff changeset
87 procedure CC51003_1 (Dbl : in out Dbl_Square); -- formal.
kono
parents:
diff changeset
88
kono
parents:
diff changeset
89
kono
parents:
diff changeset
90 --==================================================================--
kono
parents:
diff changeset
91
kono
parents:
diff changeset
92
kono
parents:
diff changeset
93 procedure CC51003_1 (Dbl : in out Dbl_Square) is
kono
parents:
diff changeset
94 begin
kono
parents:
diff changeset
95 for I in 1 .. Dbl.Number loop -- Discriminants inherited from ancestor
kono
parents:
diff changeset
96 for J in 1 .. Dbl.Number loop -- type (should work even for derived type
kono
parents:
diff changeset
97 -- declaring new discriminant part).
kono
parents:
diff changeset
98 Dbl.Left.Mat (I, J) := 0; -- Other components inherited from
kono
parents:
diff changeset
99 Dbl.Right.Mat (I, J) := 0; -- ancestor type.
kono
parents:
diff changeset
100
kono
parents:
diff changeset
101 end loop;
kono
parents:
diff changeset
102 end loop;
kono
parents:
diff changeset
103 end CC51003_1;
kono
parents:
diff changeset
104
kono
parents:
diff changeset
105
kono
parents:
diff changeset
106 --==================================================================--
kono
parents:
diff changeset
107
kono
parents:
diff changeset
108
kono
parents:
diff changeset
109 with CC51003_0; -- Matrix types.
kono
parents:
diff changeset
110 with CC51003_1; -- Generic double-matrix "clear" operation.
kono
parents:
diff changeset
111
kono
parents:
diff changeset
112 with Report;
kono
parents:
diff changeset
113 procedure CC51003 is
kono
parents:
diff changeset
114
kono
parents:
diff changeset
115 use CC51003_0; -- "/=" operator directly visible for Double_Square.
kono
parents:
diff changeset
116
kono
parents:
diff changeset
117 -- Matrices of root type:
kono
parents:
diff changeset
118
kono
parents:
diff changeset
119 Mat_2x2 : Square(Side => 2) := (Side => 2,
kono
parents:
diff changeset
120 Mat => ( (1, 2), (3, 4) ));
kono
parents:
diff changeset
121 Dbl_Mat_2x2 : Double_Square(Number => 2) := (2, Mat_2x2, Mat_2x2);
kono
parents:
diff changeset
122
kono
parents:
diff changeset
123
kono
parents:
diff changeset
124 Zero_2x2 : constant Square(2) := (2, Mat => ( (0, 0), (0, 0) ));
kono
parents:
diff changeset
125 Expected_2x2 : constant Double_Square(2) := (Number => 2,
kono
parents:
diff changeset
126 others => Zero_2x2);
kono
parents:
diff changeset
127
kono
parents:
diff changeset
128
kono
parents:
diff changeset
129
kono
parents:
diff changeset
130 Mat_3x3 : Square(Side => 3) := (Side => 3,
kono
parents:
diff changeset
131 Mat => (1 => (1, 4, 9),
kono
parents:
diff changeset
132 others => (1 => 5,
kono
parents:
diff changeset
133 others => 7)));
kono
parents:
diff changeset
134 Dbl_Mat_3x3 : Double_Square(3) := (Number => 3, others => Mat_3x3);
kono
parents:
diff changeset
135
kono
parents:
diff changeset
136
kono
parents:
diff changeset
137 Zero_3x3 : constant Square(3) := (3, Mat => (others => (0,0,0)));
kono
parents:
diff changeset
138 Expected_3x3 : constant Double_Square(Number => 3) :=
kono
parents:
diff changeset
139 (3, Zero_3x3, Zero_3x3);
kono
parents:
diff changeset
140
kono
parents:
diff changeset
141
kono
parents:
diff changeset
142 -- Derived type with new discriminant part (which constrains parent):
kono
parents:
diff changeset
143
kono
parents:
diff changeset
144 type New_Dbl_Sq (Num : Natural) is new Double_Square(Num);
kono
parents:
diff changeset
145
kono
parents:
diff changeset
146 New_Dbl_2x2 : New_Dbl_Sq (Num => 2) := (2, Mat_2x2, Mat_2x2);
kono
parents:
diff changeset
147 Expected_New_2x2 : constant New_Dbl_Sq := (Num => 2, others => Zero_2x2);
kono
parents:
diff changeset
148
kono
parents:
diff changeset
149
kono
parents:
diff changeset
150
kono
parents:
diff changeset
151 -- Instantiations:
kono
parents:
diff changeset
152
kono
parents:
diff changeset
153 procedure Clr_Dbl is new CC51003_1 (Double_Square);
kono
parents:
diff changeset
154 procedure Clr_New_Dbl is new CC51003_1 (New_Dbl_Sq);
kono
parents:
diff changeset
155
kono
parents:
diff changeset
156
kono
parents:
diff changeset
157 begin
kono
parents:
diff changeset
158 Report.Test ("CC51003", "Check that a formal derived record type " &
kono
parents:
diff changeset
159 "inherits components, including discriminants, " &
kono
parents:
diff changeset
160 "from its ancestor type");
kono
parents:
diff changeset
161
kono
parents:
diff changeset
162 -- Simulate use of matrix manipulation operations.
kono
parents:
diff changeset
163
kono
parents:
diff changeset
164 Clr_Dbl (Dbl_Mat_2x2);
kono
parents:
diff changeset
165
kono
parents:
diff changeset
166 if (Dbl_Mat_2x2 /= Expected_2x2) then
kono
parents:
diff changeset
167 Report.Failed ("Wrong result for root type (2x2 matrix)");
kono
parents:
diff changeset
168 end if;
kono
parents:
diff changeset
169
kono
parents:
diff changeset
170
kono
parents:
diff changeset
171 Clr_Dbl (Dbl_Mat_3x3);
kono
parents:
diff changeset
172
kono
parents:
diff changeset
173 if (Dbl_Mat_3x3 /= Expected_3x3) then
kono
parents:
diff changeset
174 Report.Failed ("Wrong result for root type (3x3 matrix)");
kono
parents:
diff changeset
175 end if;
kono
parents:
diff changeset
176
kono
parents:
diff changeset
177
kono
parents:
diff changeset
178 Clr_New_Dbl (New_Dbl_2x2);
kono
parents:
diff changeset
179
kono
parents:
diff changeset
180 if (New_Dbl_2x2 /= Expected_New_2x2) then
kono
parents:
diff changeset
181 Report.Failed ("Wrong result for derived type (2x2 matrix)");
kono
parents:
diff changeset
182 end if;
kono
parents:
diff changeset
183
kono
parents:
diff changeset
184
kono
parents:
diff changeset
185 Report.Result;
kono
parents:
diff changeset
186
kono
parents:
diff changeset
187 end CC51003;