aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/ada/acats/tests/cxb/cxb2003.a
blob: ec3998ad875b85d2ccbca194b27d8b6c46d8df76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
-- CXB2003.A
--
--                             Grant of Unlimited Rights
--
--     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 
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making 
--     this public release, the Government intends to confer upon all 
--     recipients unlimited rights  equal to those held by the Government.  
--     These rights include rights to use, duplicate, release or disclose the 
--     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 
--     to do so.
--
--                                    DISCLAIMER
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED 
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE 
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--
-- OBJECTIVE:
--      Check that subprograms Shift_Left, Shift_Right, 
--      Shift_Right_Arithmetic, Rotate_Left, and Rotate_Right are available
--      and produce correct results for values of signed and modular
--      integer types of 32 bits.  
--
-- TEST DESCRIPTION:
--      This test uses the shift and rotate functions of package Interfaces
--      with a modular type representative of 32 bits.  The functions
--      are used as the right hand of assignment statements, as part of
--      conditional statements, and as arguments in other function calls.
--
-- APPLICABILITY CRITERIA: 
--      This test is applicable to all implementations that support signed
--      and modular integer types of 32 bits.
--
--       
-- CHANGE HISTORY:
--      23 Aug 95   SAIC    Initial prerelease version.
--      07 May 96   SAIC    Incorporated reviewer comments for ACVC 2.1.
--      26 Oct 96   SAIC    Removed all references to Big/Little endian.
--
--!

with Report;
with Interfaces;
with Ada.Exceptions;

procedure CXB2003 is
begin

   Report.Test ("CXB2003", 
                "Check that subprograms Shift_Left, Shift_Right, "       &
                "Shift_Right_Arithmetic, Rotate_Left, and Rotate_Right " &
                "are available and produce correct results");

   Test_Block:
   declare

      use Interfaces;
      use Ada.Exceptions;

      TC_Amount   : Natural  := Natural'First;

      -- Range of type Unsigned_32 is 0..(2**32)-1    (0..Modulus-1).
      TC_Val_Unsigned_32,
      TC_Result_Unsigned_32 : Unsigned_32 := Unsigned_32'First;

   begin

      -- Note: The shifting and rotating subprograms operate on a bit-by-bit
      --       basis, using the binary representation of the value of the 
      --       operands to yield a binary representation for the result.


      -- Function Shift_Left.

         TC_Amount             := 2;
         TC_Val_Unsigned_32    := Unsigned_32'Last; 
         TC_Result_Unsigned_32 := Shift_Left(TC_Val_Unsigned_32, TC_Amount);

         if TC_Result_Unsigned_32 /= Unsigned_32'Last - (2**0 + 2**1) then
            Report.Failed("Incorrect result from Shift_Left - 1");
         end if;

         TC_Result_Unsigned_32 := Unsigned_32'Last - (2**0 + 2**1 + 2**2 +
                                                      2**3 + 2**4);
         if Shift_Left(TC_Val_Unsigned_32,  5) /= TC_Result_Unsigned_32  or
            Shift_Left(TC_Val_Unsigned_32,  0) /= Unsigned_32'Last       
         then
            Report.Failed("Incorrect result from Shift_Left - 2");
         end if;


      -- Function Shift_Right.

         TC_Amount             := 3;
         TC_Val_Unsigned_32    := Unsigned_32'Last;  
         TC_Result_Unsigned_32 := Shift_Right(Value  => TC_Val_Unsigned_32, 
                                              Amount => TC_Amount);
         if TC_Result_Unsigned_32 /= 
            Unsigned_32'Last - (2**31 + 2**30 + 2**29) 
         then
            Report.Failed("Incorrect result from Shift_Right - 1");
         end if;

         if Shift_Right(TC_Val_Unsigned_32,  0) /= Unsigned_32'Last    or
            Shift_Right(TC_Val_Unsigned_32,  2) /= Unsigned_32'Last - 
                                                   (2**31 + 2**30)     
         then
            Report.Failed("Incorrect result from Shift_Right - 2");
         end if;


      -- Tests of Shift_Left and Shift_Right in combination.

         TC_Val_Unsigned_32 := Unsigned_32'Last;

         if Shift_Left(Shift_Right(TC_Val_Unsigned_32, 4),  4) /=
            Unsigned_32'Last - (2**0 + 2**1 + 2**2 + 2**3)          or
            Shift_Left(Shift_Right(TC_Val_Unsigned_32, 3),  1) /=
            Unsigned_32'Last - (2**31 + 2**30 + 2**0)               or
            Shift_Left(Shift_Right(TC_Val_Unsigned_32, 5),  3) /=
            Unsigned_32'Last - (2**31 + 2**30 + 2**2 + 2**1 + 2**0) or
            Shift_Right(Shift_Left(TC_Val_Unsigned_32, 2),  1) /=
            Unsigned_32'Last - (2**31 + 2**0)                       
         then
            Report.Failed("Incorrect result from Shift_Left - " &
                          "Shift_Right functions used in combination");
         end if;


      -- Function Shift_Right_Arithmetic.

         -- Case where the parameter Value is less than 
         -- one half of the modulus.  Zero bits will be shifted in.

         TC_Amount             := 3;
         TC_Val_Unsigned_32    := 2**15 + 2**10 + 2**1;
         TC_Result_Unsigned_32 := Shift_Right_Arithmetic(TC_Val_Unsigned_32,
                                                         TC_Amount);
         if TC_Result_Unsigned_32 /= (2**12 + 2**7) then
            Report.Failed
              ("Incorrect result from Shift_Right_Arithmetic - 1");
         end if;

         if Shift_Right_Arithmetic(TC_Val_Unsigned_32, 0)  /= 
            TC_Val_Unsigned_32                                  or
            Shift_Right_Arithmetic(TC_Val_Unsigned_32, 5)  /= 
            (2**10 + 2**5)                                      
         then
            Report.Failed
              ("Incorrect result from Shift_Right_Arithmetic - 2");
         end if;

         -- Case where the parameter Value is greater than or equal to
         -- one half of the modulus.  One bits will be shifted in.

         TC_Amount             := 1;
         TC_Val_Unsigned_32    := 2**31; -- One half of modulus
         TC_Result_Unsigned_32 := Shift_Right_Arithmetic(TC_Val_Unsigned_32,
                                                         TC_Amount);
         if TC_Result_Unsigned_32 /= (2**31 + 2**30) then
            Report.Failed
              ("Incorrect result from Shift_Right_Arithmetic - 3");
         end if;

         TC_Amount             := 1;
         TC_Val_Unsigned_32    := (2**31 + 2**1);
         TC_Result_Unsigned_32 := Shift_Right_Arithmetic(TC_Val_Unsigned_32,
                                                         TC_Amount);
         if TC_Result_Unsigned_32 /= (2**31 + 2**30 + 2**0) then
            Report.Failed
              ("Incorrect result from Shift_Right_Arithmetic - 4");
         end if;

         if Shift_Right_Arithmetic(TC_Val_Unsigned_32, 0)  /= 
            TC_Val_Unsigned_32                                or
            Shift_Right_Arithmetic(TC_Val_Unsigned_32, 3)  /= 
            (2**31 + 2**30 + 2**29 + 2**28)                   
         then
            Report.Failed
              ("Incorrect result from Shift_Right_Arithmetic - 5");
         end if;


      -- Function Rotate_Left.

         TC_Amount             := 3;
         TC_Val_Unsigned_32    := Unsigned_32'Last; 
         TC_Result_Unsigned_32 := Rotate_Left(Value  => TC_Val_Unsigned_32, 
                                              Amount => TC_Amount);
         if TC_Result_Unsigned_32 /= Unsigned_32'Last then
            Report.Failed("Incorrect result from Rotate_Left - 1");
         end if;

         TC_Val_Unsigned_32    := 2**31 + 2**30;
         if Rotate_Left(TC_Val_Unsigned_32,  1) /= (2**31 + 2**0)  or
            Rotate_Left(TC_Val_Unsigned_32,  5) /= (2**4  + 2**3)  or
            Rotate_Left(TC_Val_Unsigned_32, 32) /= TC_Val_Unsigned_32  
         then
            Report.Failed("Incorrect result from Rotate_Left - 2");
         end if;


      -- Function Rotate_Right.

         TC_Amount             := 2;
         TC_Val_Unsigned_32    := (2**1 + 2**0);
         TC_Result_Unsigned_32 := Rotate_Right(Value  => TC_Val_Unsigned_32, 
                                               Amount => TC_Amount);
         if TC_Result_Unsigned_32 /= (2**31 + 2**30) then
            Report.Failed("Incorrect result from Rotate_Right - 1");
         end if;

         if Rotate_Right(TC_Val_Unsigned_32,  3) /=  (2**30 + 2**29)  or
            Rotate_Right(TC_Val_Unsigned_32,  6) /=  (2**27 + 2**26)  or
            Rotate_Right(TC_Val_Unsigned_32, 32) /=  (2**1  + 2**0) 
         then
            Report.Failed("Incorrect result from Rotate_Right - 2");
         end if;


      -- Tests of Rotate_Left and Rotate_Right in combination.

         TC_Val_Unsigned_32 := (2**31 + 2**15 + 2**3);

         if Rotate_Left(Rotate_Right(TC_Val_Unsigned_32, 4),  3) /= 
            (2**30 + 2**14 + 2**2)                                   or
            Rotate_Left(Rotate_Right(TC_Val_Unsigned_32, 1),  3) /= 
            (2**17 + 2**5  + 2**1)                                   or
            Rotate_Right(Rotate_Left(TC_Val_Unsigned_32, 3),  7) /= 
            (2**31 + 2**27 + 2**11)                                  or
            Rotate_Right(Rotate_Left(TC_Val_Unsigned_32, 1), 32) /= 
            (2**16 + 2**4  + 2**0)
         then
            Report.Failed("Incorrect result from Rotate_Left - " &
                          "Rotate_Right functions used in combination");
         end if;


   exception
      when The_Error : others => 
         Report.Failed ("The following exception was raised in the " &
                        "Test_Block: " & Exception_Name(The_Error));
   end Test_Block;

   Report.Result;

end CXB2003;