summaryrefslogtreecommitdiff
path: root/gcc/testsuite/ada/acats/tests/cd/cd30001.a
blob: d65e14508369ad13cef2a71c3dde6141333a315c (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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
-- CD30001.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 X'Address produces a useful result when X is an aliased
--      object.
--      Check that X'Address produces a useful result when X is an object of
--      a by-reference type.
--      Check that X'Address produces a useful result when X is an entity
--      whose Address has been specified.
--
--      Check that aliased objects and subcomponents are allocated on storage
--      element boundaries.  Check that objects and subcomponents of by
--      reference types are allocated on storage element boundaries.
--
--      Check that for an array X, X'Address points at the first component
--      of the array, and not at the array bounds.
--   
-- TEST DESCRIPTION:
--      This test defines a data structure (an array of records) where each
--      aspect of the data structure is aliased.  The test checks 'Address
--      for each "layer" of aliased objects.
--
-- APPLICABILITY CRITERIA:
--      All implementations must attempt to compile this test.
--
--      For implementations validating against Systems Programming Annex (C):
--        this test must execute and report PASSED.
--
--      For implementations not validating against Annex C:
--        this test may report compile time errors at one or more points
--        indicated by "-- ANX-C RQMT", in which case it may be graded as inapplicable.
--        Otherwise, the test must execute and report PASSED.
--
--
-- CHANGE HISTORY:
--      22 JUL 95   SAIC   Initial version
--      08 MAY 96   SAIC   Reinforced for 2.1
--      16 FEB 98   EDS    Modified documentation
--!

----------------------------------------------------------------- CD30001_0

with SPPRT13;
package CD30001_0 is

  --    Check that X'Address produces a useful result when X is an aliased
  --    object.
  --    Check that X'Address produces a useful result when X is an object of
  --    a by-reference type.
  --    Check that X'Address produces a useful result when X is an entity
  --    whose Address has been specified.
  --    (using the new form of "for X'Address use ...")
  --
  --    Check that aliased objects and subcomponents are allocated on storage
  --    element boundaries.  Check that objects and subcomponents of by
  --    reference types are allocated on storage element boundaries.

  type Simple_Enum_Type is (Just, A, Little, Bit);

  type Data is record
    Aliased_Comp_1 : aliased Simple_Enum_Type;
    Aliased_Comp_2 : aliased Simple_Enum_Type;
  end record;

  type Array_W_Aliased_Comps is array(1..2) of aliased Data;

  Aliased_Object  : aliased Array_W_Aliased_Comps;

  Specific_Object : aliased Array_W_Aliased_Comps;
  for Specific_Object'Address use SPPRT13.Variable_Address2;  -- ANX-C RQMT.

  procedure TC_Check_Aliased_Addresses;

  procedure TC_Check_Specific_Addresses;

  procedure TC_Check_By_Reference_Types;

end CD30001_0;

-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

with Report;
with System.Storage_Elements;
with System.Address_To_Access_Conversions;
package body CD30001_0 is

  package Simple_Enum_Type_Ref_Conv is
    new System.Address_To_Access_Conversions(Simple_Enum_Type);

  package Data_Ref_Conv is new System.Address_To_Access_Conversions(Data);

  package Array_W_Aliased_Comps_Ref_Conv is
    new System.Address_To_Access_Conversions(Array_W_Aliased_Comps);

  use type System.Address;
  use type System.Storage_Elements.Integer_Address;
  use type System.Storage_Elements.Storage_Offset;

  procedure TC_Check_Aliased_Addresses is
    use type Simple_Enum_Type_Ref_Conv.Object_Pointer;
    use type Data_Ref_Conv.Object_Pointer;
    use type Array_W_Aliased_Comps_Ref_Conv.Object_Pointer;

  begin

    -- Check the object Aliased_Object

    if Aliased_Object'Address not in System.Address then
      Report.Failed("Aliased_Object'Address not an address");
    end if;

    if Array_W_Aliased_Comps_Ref_Conv.To_Pointer(Aliased_Object'Address)
       /= Aliased_Object'Unchecked_Access then                   
      Report.Failed
                  ("'Unchecked_Access does not match expected address value");
    end if;

    -- Check the element Aliased_Object(1)

    if Data_Ref_Conv.To_Address( Aliased_Object(1)'Access )
       /= Aliased_Object(1)'Address then
      Report.Failed
             ("Array element 'Access does not match expected address value");
    end if;

    -- Check that Array'Address points at the first component...   

    if Array_W_Aliased_Comps_Ref_Conv.To_Address( Aliased_Object'Access )
       /= Aliased_Object(1)'Address then
      Report.Failed
        ("Address of array object does not equal address of first component");
    end if;

    -- Check the components of Aliased_Object(2)

    if Simple_Enum_Type_Ref_Conv.To_Address(
                          Aliased_Object(2).Aliased_Comp_1'Unchecked_Access)
       not in System.Address then
      Report.Failed("Component 2 'Unchecked_Access not a valid address");
    end if;

    if Aliased_Object(2).Aliased_Comp_2'Address not in System.Address then
      Report.Failed("Component 2 not located at a valid address ");
    end if;

  end TC_Check_Aliased_Addresses;

  procedure TC_Check_Specific_Addresses is
    use type System.Address;
    use type System.Storage_Elements.Integer_Address;
    use type Simple_Enum_Type_Ref_Conv.Object_Pointer;
    use type Data_Ref_Conv.Object_Pointer;
    use type Array_W_Aliased_Comps_Ref_Conv.Object_Pointer;
  begin

    -- Check the object Specific_Object

    if System.Storage_Elements.To_Integer(Specific_Object'Address)
       /= System.Storage_Elements.To_Integer(SPPRT13.Variable_Address2) then
      Report.Failed
        ("Specific_Object not at address specified in representation clause");
    end if;

    if Array_W_Aliased_Comps_Ref_Conv.To_Pointer(SPPRT13.Variable_Address2)
       /= Specific_Object'Unchecked_Access then
      Report.Failed("Specific_Object'Unchecked_Access not expected value");
    end if;

    -- Check the element Specific_Object(1)

    if Data_Ref_Conv.To_Address( Specific_Object(1)'Access )
       /= Specific_Object(1)'Address then
      Report.Failed
        ("Specific Array element 'Access does not correspond to the "
         & "elements 'Address");
    end if;

    -- Check that Array'Address points at the first component...

    if Array_W_Aliased_Comps_Ref_Conv.To_Address( Specific_Object'Access )
       /= Specific_Object(1)'Address then
      Report.Failed
        ("Address of array object does not equal address of first component");
    end if;

    -- Check the components of Specific_Object(2)

    if Simple_Enum_Type_Ref_Conv.To_Address(
                                    Specific_Object(1).Aliased_Comp_1'Access)
                                                    not in System.Address then
      Report.Failed("Access value of first record component for object at " &
                    "specific address not a valid address");
    end if;

    if Specific_Object(2).Aliased_Comp_2'Address not in System.Address then
      Report.Failed("Second record component for object at specific " &
                    "address not located at a valid address");
    end if;

  end TC_Check_Specific_Addresses;

--      Check that X'Address produces a useful result when X is an object of
--      a by-reference type.

    type Tagged_But_Not_Exciting is tagged record
      A_Bit_Of_Data : Boolean;
    end record;

    Tagged_Object : Tagged_But_Not_Exciting;

  procedure Muck_With_Addresses( It : in out Tagged_But_Not_Exciting;
                                 Its_Address : in System.Address ) is
  begin
    if It'Address /= Its_Address then
      Report.Failed("Address of object passed by reference does not " &
                    "match address of object passed" );
    end if;
  end Muck_With_Addresses;

  procedure TC_Check_By_Reference_Types is 
  begin
    Muck_With_Addresses( Tagged_Object, Tagged_Object'Address );
  end TC_Check_By_Reference_Types;

end CD30001_0;

------------------------------------------------------------------- CD30001

with Report;
with CD30001_0;
procedure CD30001 is

begin  -- Main test procedure.

  Report.Test ("CD30001",
               "Check that X'Address produces a useful result when X is " &
               "an aliased object, or an entity whose Address has been " &
               "specified" );
   
--      Check that X'Address produces a useful result when X is an aliased
--      object.
--
--      Check that aliased objects and subcomponents are allocated on storage
--      element boundaries.  Check that objects and subcomponents of by
--      reference types are allocated on storage element boundaries.

  CD30001_0.TC_Check_Aliased_Addresses;

--      Check that X'Address produces a useful result when X is an entity
--      whose Address has been specified.

  CD30001_0.TC_Check_Specific_Addresses;

--      Check that X'Address produces a useful result when X is an object of
--      a by-reference type.

  CD30001_0.TC_Check_By_Reference_Types;

  Report.Result;

end CD30001;