Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / ada / acats / tests / cd / cd30002.a
blob7b6fff713ee628630ab6fc5850bc66ba0c7e51a9
1 -- CD30002.A
2 --
3 -- Grant of Unlimited Rights
4 --
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
7 -- unlimited rights in the software and documentation contained herein.
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
9 -- this public release, the Government intends to confer upon all
10 -- recipients unlimited rights equal to those held by the Government.
11 -- These rights include rights to use, duplicate, release or disclose the
12 -- released technical data and computer software in whole or in part, in
13 -- any manner and for any purpose whatsoever, and to have or permit others
14 -- to do so.
16 -- DISCLAIMER
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
24 --*
26 -- OBJECTIVE:
27 -- Check that the implementation supports Alignments for subtypes and
28 -- objects specified as factors and multiples of the number of storage
29 -- elements per word, unless those values cannot be loaded and stored.
30 -- Check that the largest alignment returned by default is supported.
32 -- Check that the implementation supports Alignments supported by the
33 -- target linker for stand-alone library-level objects of statically
34 -- constrained subtypes.
36 -- TEST DESCRIPTION:
37 -- This test defines several types and objects, specifying various
38 -- alignments for them (as factors and multiples of the number of
39 -- storage elements per word). It then checks the alignments by
40 -- declaring some objects, and checking that the integer values of
41 -- their addresses is mod the specified alignment. This will not
42 -- prevent false passes where the lucky compiler gets it right by
43 -- chance, but will catch compilers that specifically do not obey
44 -- the alignment clauses.
46 -- APPLICABILITY CRITERIA:
47 -- All implementations must attempt to compile this test.
49 -- For implementations validating against Systems Programming Annex (C):
50 -- this test must execute and report PASSED.
52 -- For implementations not validating against Annex C:
53 -- this test may report compile time errors at one or more points
54 -- indicated by "-- ANX-C RQMT", in which case it may be graded as inapplicable.
55 -- Otherwise, the test must execute and report PASSED.
58 -- CHANGE HISTORY:
59 -- 22 JUL 95 SAIC Initial version
60 -- 09 MAY 96 SAIC Strengthened for 2.1
61 -- 26 FEB 97 PWB.CTA Allowed for unexpected word sizes
62 -- 16 FEB 98 EDS Modified documentation.
63 -- 26 SEP 98 RLB Fixed value on line 130 so check and dec. match.
64 -- 30 OCT 98 RLB Split Multiple_Alignment and revised the
65 -- calculation to work on all targets.
66 -- 18 JAN 99 RLB Repaired again to work on targets where word size
67 -- equals storage unit.
68 --!
70 ----------------------------------------------------------------- CD30002_0
72 with Impdef;
73 with System.Storage_Elements;
74 package CD30002_0 is
76 S_Units_per_Word : constant := System.Word_Size/System.Storage_Unit;
77 -- Must be 1 or greater.
79 Multiple_Type_Alignment : constant :=
80 Integer'Min ( Impdef.Max_Default_Alignment,
81 2 * S_Units_per_Word );
82 -- Calculate a reasonable alignment, but not larger than the
83 -- implementation is required to support.
85 Multiple_Object_Alignment : constant :=
86 Integer'Min ( Impdef.Max_Linker_Alignment,
87 2 * S_Units_per_Word );
88 -- Calculate a reasonable object alignment, but not larger than
89 -- the implementation is required to support.
91 Small_Alignment : constant :=
92 Integer'Max ( S_Units_per_Word / 2, 1);
93 -- Calculate a reasonable small alignment, but not less than 1.
94 -- (If S_Units_per_Word = 1, 1/2 => 0 which causes problems
95 -- verifying alignment.)
97 subtype Storage_Element is System.Storage_Elements.Storage_Element;
99 type Some_Stuff is array(1..S_Units_Per_Word) of Storage_Element;
100 for Some_Stuff'Alignment
101 use Impdef.Max_Default_Alignment; -- ANX-C RQMT.
103 Library_Level_Object : Some_Stuff;
104 for Library_Level_Object'Alignment
105 use Impdef.Max_Linker_Alignment; -- ANX-C RQMT.
107 type Quarter is mod 4; -- two bits
108 for Quarter'Alignment use Small_Alignment; -- ANX-C RQMT.
110 type Half is mod 16; -- nibble
111 for Half'Alignment use Multiple_Type_Alignment; -- ANX-C RQMT.
113 type O_Some_Stuff is array(1..S_Units_Per_Word) of Storage_Element;
115 type O_Quarter is mod 4; -- two bits
117 type O_Half is mod 16; -- nibble
119 end CD30002_0;
121 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
123 -- there is no package body CD30002_0
125 ------------------------------------------------------------------- CD30002
127 with Report;
128 with Impdef;
129 with CD30002_0;
130 with System.Storage_Elements;
131 procedure CD30002 is
133 My_Stuff : CD30002_0.Some_Stuff;
134 -- Impdef.Max_Default_Alignment
136 My_Quarter : CD30002_0.Quarter;
137 -- CD30002_0.S_Units_per_Word / 2
139 My_Half : CD30002_0.Half;
140 -- CD30002_0.S_Units_per_Word * 2
142 Stuff_Object : CD30002_0.O_Some_Stuff;
143 for Stuff_Object'Alignment
144 use Impdef.Max_Default_Alignment; -- ANX-C RQMT.
146 Quarter_Object : CD30002_0.O_Quarter;
147 for Quarter_Object'Alignment
148 use CD30002_0.Small_Alignment; -- ANX-C RQMT.
150 Half_Object : CD30002_0.O_Half;
151 for Half_Object'Alignment
152 use CD30002_0.Multiple_Object_Alignment; -- ANX-C RQMT.
154 subtype IntAdd is System.Storage_Elements.Integer_Address;
155 use type System.Storage_Elements.Integer_Address;
157 function A2I(Value: System.Address) return IntAdd renames
158 System.Storage_Elements.To_Integer;
160 NAC : constant String := " not aligned correctly";
162 begin -- Main test procedure.
164 Report.Test ("CD30002", "Check that the implementation supports " &
165 "Alignments for subtypes and objects specified " &
166 "as factors and multiples of the number of " &
167 "storage elements per word, unless those values " &
168 "cannot be loaded and stored. Check that the " &
169 "largest alignment returned by default is " &
170 "supported. Check that the implementation " &
171 "supports Alignments supported by the target " &
172 "linker for stand-alone library-level objects " &
173 "of statically constrained subtypes" );
175 if A2I(CD30002_0.Library_Level_Object'Address)
176 mod Impdef.Max_Linker_Alignment /= 0 then
177 Report.Failed("Library_Level_Object" & NAC);
178 end if;
180 if A2I(My_Stuff'Address) mod Impdef.Max_Default_Alignment /= 0 then
181 Report.Failed("Max alignment subtype" & NAC);
182 end if;
184 if A2I(My_Quarter'Address) mod (CD30002_0.Small_Alignment) /= 0 then
185 Report.Failed("Factor of words subtype" & NAC);
186 end if;
188 if A2I(My_Half'Address) mod (CD30002_0.Multiple_Type_Alignment) /= 0 then
189 Report.Failed("Multiple of words subtype" & NAC);
190 end if;
192 if A2I(Stuff_Object'Address) mod Impdef.Max_Default_Alignment /= 0 then
193 Report.Failed("Stuff alignment object" & NAC);
194 end if;
196 if A2I(Quarter_Object'Address)
197 mod (CD30002_0.Small_Alignment) /= 0 then
198 Report.Failed("Factor of words object" & NAC);
199 end if;
201 if A2I(Half_Object'Address) mod (CD30002_0.Multiple_Object_Alignment) /= 0 then
202 Report.Failed("Multiple of words object" & NAC);
203 end if;
205 Report.Result;
207 end CD30002;