OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-tasatt.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                        GNAT RUN-TIME COMPONENTS                          --
4 --                                                                          --
5 --                  A D A . T A S K _ A T T R I B U T E S                   --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                                                                          --
10 --             Copyright (C) 1991-2002 Florida State University             --
11 --                                                                          --
12 -- GNARL is free software; you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNARL; see file COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- As a special exception,  if other files  instantiate  generics from this --
24 -- unit, or you link  this unit with other files  to produce an executable, --
25 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
26 -- covered  by the  GNU  General  Public  License.  This exception does not --
27 -- however invalidate  any other reasons why  the executable file  might be --
28 -- covered by the  GNU Public License.                                      --
29 --                                                                          --
30 -- GNARL was developed by the GNARL team at Florida State University. It is --
31 -- now maintained by Ada Core Technologies, Inc. (http://www.gnat.com).     --
32 --                                                                          --
33 ------------------------------------------------------------------------------
34
35 --  The following notes are provided in case someone decides the
36 --  implementation of this package is too complicated, or too slow.
37 --  Please read this before making any "simplifications".
38
39 --  Correct implementation of this package is more difficult than one
40 --  might expect. After considering (and coding) several alternatives,
41 --  we settled on the present compromise. Things we do not like about
42 --  this implementation include:
43
44 --  -  It is vulnerable to bad Task_ID values, to the extent of
45 --     possibly trashing memory and crashing the runtime system.
46
47 --  -  It requires dynamic storage allocation for each new attribute value,
48 --     except for types that happen to be the same size as System.Address,
49 --     or shorter.
50
51 --  -  Instantiations at other than the library level rely on being able to
52 --     do down-level calls to a procedure declared in the generic package body.
53 --     This makes it potentially vulnerable to compiler changes.
54
55 --  The main implementation issue here is that the connection from
56 --  task to attribute is a potential source of dangling references.
57
58 --  When a task goes away, we want to be able to recover all the storage
59 --  associated with its attributes. The Ada mechanism for this is
60 --  finalization, via controlled attribute types. For this reason,
61 --  the ARM requires finalization of attribute values when the
62 --  associated task terminates.
63
64 --  This finalization must be triggered by the tasking runtime system,
65 --  during termination of the task. Given the active set of instantiations
66 --  of Ada.Task_Attributes is dynamic, the number and types of attributes
67 --  belonging to a task will not be known until the task actually terminates.
68 --  Some of these types may be controlled and some may not. The RTS must find
69 --  some way to determine which of these attributes need finalization, and
70 --  invoke the appropriate finalization on them.
71
72 --  One way this might be done is to create a special finalization chain
73 --  for each task, similar to the finalization chain that is used for
74 --  controlled objects within the task. This would differ from the usual
75 --  finalization chain in that it would not have a LIFO structure, since
76 --  attributes may be added to a task at any time during its lifetime.
77 --  This might be the right way to go for the longer term, but at present
78 --  this approach is not open, since GNAT does not provide such special
79 --  finalization support.
80
81 --  Lacking special compiler support, the RTS is limited to the
82 --  normal ways an application invokes finalization, i.e.
83
84 --  a) Explicit call to the procedure Finalize, if we know the type
85 --     has this operation defined on it. This is not sufficient, since
86 --     we have no way of determining whether a given generic formal
87 --     Attribute type is controlled, and no visibility of the associated
88 --     Finalize procedure, in the generic body.
89
90 --  b) Leaving the scope of a local object of a controlled type.
91 --     This does not help, since the lifetime of an instantiation of
92 --     Ada.Task_Attributes does not correspond to the lifetimes of the
93 --     various tasks which may have that attribute.
94
95 --  c) Assignment of another value to the object. This would not help,
96 --     since we then have to finalize the new value of the object.
97
98 --  d) Unchecked deallocation of an object of a controlled type.
99 --     This seems to be the only mechanism available to the runtime
100 --     system for finalization of task attributes.
101
102 --  We considered two ways of using unchecked deallocation, both based
103 --  on a linked list of that would hang from the task control block.
104
105 --  In the first approach the objects on the attribute list are all derived
106 --  from one controlled type, say T, and are linked using an access type to
107 --  T'Class. The runtime system has an Unchecked_Deallocation for T'Class
108 --  with access type T'Class, and uses this to deallocate and finalize all
109 --  the items in the list. The limitation of this approach is that each
110 --  instantiation of the package Ada.Task_Attributes derives a new record
111 --  extension of T, and since T is controlled (RM 3.9.1 (3)), instantiation
112 --  is only allowed at the library level.
113
114 --  In the second approach the objects on the attribute list are of
115 --  unrelated but structurally similar types. Unchecked conversion is
116 --  used to circument Ada type checking. Each attribute-storage node
117 --  contains not only the attribute value and a link for chaining, but
118 --  also a pointer to a descriptor for the corresponding instantiation
119 --  of Task_Attributes. The instantiation-descriptor contains a
120 --  pointer to a procedure that can do the correct deallocation and
121 --  finalization for that type of attribute. On task termination, the
122 --  runtime system uses the pointer to call the appropriate deallocator.
123
124 --  While this gets around the limitation that instantiations be at
125 --  the library level, it relies on an implementation feature that
126 --  may not always be safe, i.e. that it is safe to call the
127 --  Deallocate procedure for an instantiation of Ada.Task_Attributes
128 --  that no longer exists. In general, it seems this might result in
129 --  dangling references.
130
131 --  Another problem with instantiations deeper than the library level
132 --  is that there is risk of storage leakage, or dangling references
133 --  to reused storage. That is, if an instantiation of Ada.Task_Attributes
134 --  is made within a procedure, what happens to the storage allocated for
135 --  attributes, when the procedure call returns?  Apparently (RM 7.6.1 (4))
136 --  any such objects must be finalized, since they will no longer be
137 --  accessible, and in general one would expect that the storage they occupy
138 --  would be recovered for later reuse. (If not, we would have a case of
139 --  storage leakage.)  Assuming the storage is recovered and later reused,
140 --  we have potentially dangerous dangling references. When the procedure
141 --  containing the instantiation of Ada.Task_Attributes returns, there
142 --  may still be unterminated tasks with associated attribute values for
143 --  that instantiation. When such tasks eventually terminate, the RTS
144 --  will attempt to call the Deallocate procedure on them. If the
145 --  corresponding storage has already been deallocated, when the master
146 --  of the access type was left, we have a potential disaster. This
147 --  disaster is compounded since the pointer to Deallocate is probably
148 --  through a "trampoline" which will also have been destroyed.
149
150 --  For this reason, we arrange to remove all dangling references
151 --  before leaving the scope of an instantiation. This is ugly, since
152 --  it requires traversing the list of all tasks, but it is no more ugly
153 --  than a similar traversal that we must do at the point of instantiation
154 --  in order to initialize the attributes of all tasks. At least we only
155 --  need to do these traversals if the type is controlled.
156
157 --  We chose to defer allocation of storage for attributes until the
158 --  Reference function is called or the attribute is first set to a value
159 --  different from the default initial one. This allows a potential
160 --  savings in allocation, for attributes that are not used by all tasks.
161
162 --  For efficiency, we reserve space in the TCB for a fixed number of
163 --  direct-access attributes. These are required to be of a size that
164 --  fits in the space of an object of type System.Address. Because
165 --  we must use unchecked bitwise copy operations on these values, they
166 --  cannot be of a controlled type, but that is covered automatically
167 --  since controlled objects are too large to fit in the spaces.
168
169 --  We originally deferred the initialization of these direct-access
170 --  attributes, just as we do for the indirect-access attributes, and
171 --  used a per-task bit vector to keep track of which attributes were
172 --  currently defined for that task. We found that the overhead of
173 --  maintaining this bit-vector seriously slowed down access to the
174 --  attributes, and made the fetch operation non-atomic, so that even
175 --  to read an attribute value required locking the TCB. Therefore,
176 --  we now initialize such attributes for all existing tasks at the time
177 --  of the attribute instantiation, and initialize existing attributes
178 --  for each new task at the time it is created.
179
180 --  The latter initialization requires a list of all the instantiation
181 --  descriptors. Updates to this list, as well as the bit-vector that
182 --  is used to reserve slots for attributes in the TCB, require mutual
183 --  exclusion. That is provided by the Lock/Unlock_RTS.
184
185 --  One special problem that added complexity to the design is that
186 --  the per-task list of indirect attributes contains objects of
187 --  different types. We use unchecked pointer conversion to link
188 --  these nodes together and access them, but the records may not have
189 --  identical internal structure. Initially, we thought it would be
190 --  enough to allocate all the common components of the records at the
191 --  front of each record, so that their positions would correspond.
192 --  Unfortunately, GNAT adds "dope" information at the front of a record,
193 --  if the record contains any controlled-type components.
194 --
195 --  This means that the offset of the fields we use to link the nodes is
196 --  at different positions on nodes of different types. To get around this,
197 --  each attribute storage record consists of a core node and wrapper.
198 --  The core nodes are all of the same type, and it is these that are
199 --  linked together and generally "seen" by the RTS. Each core node
200 --  contains a pointer to its own wrapper, which is a record that contains
201 --  the core node along with an attribute value, approximately
202 --  as follows:
203
204 --    type Node;
205 --    type Node_Access is access all Node;
206 --    type Node_Access;
207 --    type Access_Wrapper is access all Wrapper;
208 --    type Node is record
209 --       Next    : Node_Access;
210 --       ...
211 --       Wrapper : Access_Wrapper;
212 --    end record;
213 --    type Wrapper is record
214 --       Noed    : aliased Node;
215 --       Value   : aliased Attribute;  --  the generic formal type
216 --    end record;
217
218 --  Another interesting problem is with the initialization of
219 --  the instantiation descriptors. Originally, we did this all via
220 --  the Initialize procedure of the descriptor type and code in the
221 --  package body. It turned out that the Initialize procedure needed
222 --  quite a bit of information, including the size of the attribute
223 --  type, the initial value of the attribute (if it fits in the TCB),
224 --  and a pointer to the deallocator procedure. These needed to be
225 --  "passed" in via access discriminants. GNAT was having trouble
226 --  with access discriminants, so all this work was moved to the
227 --  package body.
228
229 with Ada.Task_Identification;
230 --  used for Task_Id
231 --           Null_Task_ID
232 --           Current_Task
233
234 with System.Error_Reporting;
235 --  used for Shutdown;
236
237 with System.Storage_Elements;
238 --  used for Integer_Address
239
240 with System.Task_Primitives.Operations;
241 --  used for Write_Lock
242 --           Unlock
243 --           Lock/Unlock_RTS
244
245 with System.Tasking;
246 --  used for Access_Address
247 --           Task_ID
248 --           Direct_Index_Vector
249 --           Direct_Index
250
251 with System.Tasking.Initialization;
252 --  used for Defer_Abortion
253 --           Undefer_Abortion
254 --           Initialize_Attributes_Link
255 --           Finalize_Attributes_Link
256
257 with System.Tasking.Task_Attributes;
258 --  used for Access_Node
259 --           Access_Dummy_Wrapper
260 --           Deallocator
261 --           Instance
262 --           Node
263 --           Access_Instance
264
265 with Ada.Exceptions;
266 --  used for Raise_Exception
267
268 with Unchecked_Conversion;
269 with Unchecked_Deallocation;
270
271 pragma Elaborate_All (System.Tasking.Task_Attributes);
272 --  to ensure the initialization of object Local (below) will work
273
274 package body Ada.Task_Attributes is
275
276    use System.Error_Reporting,
277        System.Tasking.Initialization,
278        System.Tasking,
279        System.Tasking.Task_Attributes,
280        Ada.Exceptions;
281
282    use type System.Tasking.Access_Address;
283
284    package POP renames System.Task_Primitives.Operations;
285
286    ---------------------------
287    -- Unchecked Conversions --
288    ---------------------------
289
290    pragma Warnings (Off);
291    --  These unchecked conversions can give warnings when alignments
292    --  are incorrect, but they will not be used in such cases anyway,
293    --  so the warnings can be safely ignored.
294
295    --  The following type corresponds to Dummy_Wrapper,
296    --  declared in System.Tasking.Task_Attributes.
297
298    type Wrapper;
299    type Access_Wrapper is access all Wrapper;
300
301    pragma Warnings (Off);
302    --  We turn warnings off for the following declarations of the
303    --  To_Attribute_Handle conversions, since these are used only
304    --  for small attributes where we know that there are no problems
305    --  with alignment, but the compiler will generate warnings for
306    --  the occurrences in the large attribute case, even though
307    --  they will not actually be used.
308
309    function To_Attribute_Handle is new Unchecked_Conversion
310      (Access_Address, Attribute_Handle);
311    --  For reference to directly addressed task attributes
312
313    type Access_Integer_Address is access all
314      System.Storage_Elements.Integer_Address;
315
316    function To_Attribute_Handle is new Unchecked_Conversion
317      (Access_Integer_Address, Attribute_Handle);
318    --  For reference to directly addressed task attributes
319
320    pragma Warnings (On);
321    --  End of warnings off region for directly addressed
322    --  attribute conversion functions.
323
324    function To_Access_Address is new Unchecked_Conversion
325      (Access_Node, Access_Address);
326    --  To store pointer to list of indirect attributes
327
328    function To_Access_Node is new Unchecked_Conversion
329      (Access_Address, Access_Node);
330    --  To fetch pointer to list of indirect attributes
331
332    pragma Warnings (Off);
333    function To_Access_Wrapper is new Unchecked_Conversion
334      (Access_Dummy_Wrapper, Access_Wrapper);
335    pragma Warnings (On);
336    --  To fetch pointer to actual wrapper of attribute node. We turn off
337    --  warnings since this may generate an alignment warning. The warning
338    --  can be ignored since Dummy_Wrapper is only a non-generic standin
339    --  for the real wrapper type (we never actually allocate objects of
340    --  type Dummy_Wrapper).
341
342    function To_Access_Dummy_Wrapper is new Unchecked_Conversion
343      (Access_Wrapper, Access_Dummy_Wrapper);
344    --  To store pointer to actual wrapper of attribute node
345
346    function To_Task_ID is new Unchecked_Conversion
347      (Task_Identification.Task_Id, Task_ID);
348    --  To access TCB of identified task
349
350    Null_ID : constant Task_ID := To_Task_ID (Task_Identification.Null_Task_Id);
351    --  ??? need comments on use and purpose
352
353    type Local_Deallocator is
354       access procedure (P : in out Access_Node);
355
356    function To_Lib_Level_Deallocator is new Unchecked_Conversion
357      (Local_Deallocator, Deallocator);
358    --  To defeat accessibility check
359
360    pragma Warnings (On);
361
362    ------------------------
363    -- Storage Management --
364    ------------------------
365
366    procedure Deallocate (P : in out Access_Node);
367    --  Passed to the RTS via unchecked conversion of a pointer to
368    --  permit finalization and deallocation of attribute storage nodes
369
370    --------------------------
371    -- Instantiation Record --
372    --------------------------
373
374    Local : aliased Instance;
375    --  Initialized in package body
376
377    type Wrapper is record
378       Noed : aliased Node;
379
380       Value : aliased Attribute := Initial_Value;
381       --  The generic formal type, may be controlled
382    end record;
383
384    procedure Free is
385       new Unchecked_Deallocation (Wrapper, Access_Wrapper);
386
387    procedure Deallocate (P : in out Access_Node) is
388       T : Access_Wrapper := To_Access_Wrapper (P.Wrapper);
389
390    begin
391       Free (T);
392
393    exception
394       when others =>
395          pragma Assert (Shutdown ("Exception in Deallocate")); null;
396    end Deallocate;
397
398    ---------------
399    -- Reference --
400    ---------------
401
402    function Reference
403      (T    : Task_Identification.Task_Id := Task_Identification.Current_Task)
404       return Attribute_Handle
405    is
406       TT            : Task_ID := To_Task_ID (T);
407       Error_Message : constant String := "Trying to get the reference of a";
408
409    begin
410       if TT = Null_ID then
411          Raise_Exception (Program_Error'Identity,
412            Error_Message & "null task");
413       end if;
414
415       if TT.Common.State = Terminated then
416          Raise_Exception (Tasking_Error'Identity,
417            Error_Message & "terminated task");
418       end if;
419
420       begin
421          Defer_Abortion;
422          POP.Lock_RTS;
423
424          --  Directly addressed case
425
426          if Local.Index /= 0 then
427             POP.Unlock_RTS;
428             Undefer_Abortion;
429
430             --  Return the attribute handle. Warnings off because this return
431             --  statement generates alignment warnings for large attributes
432             --  (but will never be executed in this case anyway).
433
434             pragma Warnings (Off);
435             return
436               To_Attribute_Handle (TT.Direct_Attributes (Local.Index)'Access);
437             pragma Warnings (On);
438
439          --  Not directly addressed
440
441          else
442             declare
443                P : Access_Node := To_Access_Node (TT.Indirect_Attributes);
444                W : Access_Wrapper;
445
446             begin
447                while P /= null loop
448                   if P.Instance = Access_Instance'(Local'Unchecked_Access) then
449                      POP.Unlock_RTS;
450                      Undefer_Abortion;
451                      return To_Access_Wrapper (P.Wrapper).Value'Access;
452                   end if;
453
454                   P := P.Next;
455                end loop;
456
457                --  Unlock the RTS here to follow the lock ordering rule
458                --  that prevent us from using new (i.e the Global_Lock) while
459                --  holding any other lock.
460
461                POP.Unlock_RTS;
462                W := new Wrapper'
463                      ((null, Local'Unchecked_Access, null), Initial_Value);
464                POP.Lock_RTS;
465
466                P := W.Noed'Unchecked_Access;
467                P.Wrapper := To_Access_Dummy_Wrapper (W);
468                P.Next := To_Access_Node (TT.Indirect_Attributes);
469                TT.Indirect_Attributes := To_Access_Address (P);
470                POP.Unlock_RTS;
471                Undefer_Abortion;
472                return W.Value'Access;
473             end;
474          end if;
475
476          pragma Assert (Shutdown ("Should never get here in Reference"));
477          return null;
478
479       exception
480          when others =>
481             POP.Unlock_RTS;
482             Undefer_Abortion;
483             raise;
484       end;
485
486    exception
487       when Tasking_Error | Program_Error =>
488          raise;
489
490       when others =>
491          raise Program_Error;
492    end Reference;
493
494    ------------------
495    -- Reinitialize --
496    ------------------
497
498    procedure Reinitialize
499      (T : Task_Identification.Task_Id := Task_Identification.Current_Task)
500    is
501       TT : Task_ID := To_Task_ID (T);
502       Error_Message : constant String := "Trying to Reinitialize a";
503
504    begin
505       if TT = Null_ID then
506          Raise_Exception (Program_Error'Identity,
507            Error_Message & "null task");
508       end if;
509
510       if TT.Common.State = Terminated then
511          Raise_Exception (Tasking_Error'Identity,
512            Error_Message & "terminated task");
513       end if;
514
515       if Local.Index = 0 then
516          declare
517             P, Q : Access_Node;
518             W    : Access_Wrapper;
519
520          begin
521             Defer_Abortion;
522             POP.Lock_RTS;
523             Q := To_Access_Node (TT.Indirect_Attributes);
524
525             while Q /= null loop
526                if Q.Instance = Access_Instance'(Local'Unchecked_Access) then
527                   if P = null then
528                      TT.Indirect_Attributes := To_Access_Address (Q.Next);
529                   else
530                      P.Next := Q.Next;
531                   end if;
532
533                   W := To_Access_Wrapper (Q.Wrapper);
534                   Free (W);
535                   POP.Unlock_RTS;
536                   Undefer_Abortion;
537                   return;
538                end if;
539
540                P := Q;
541                Q := Q.Next;
542             end loop;
543
544             POP.Unlock_RTS;
545             Undefer_Abortion;
546
547          exception
548             when others =>
549                POP.Unlock_RTS;
550                Undefer_Abortion;
551          end;
552
553       else
554          Set_Value (Initial_Value, T);
555       end if;
556
557    exception
558       when Tasking_Error | Program_Error =>
559          raise;
560
561       when others =>
562          raise Program_Error;
563    end Reinitialize;
564
565    ---------------
566    -- Set_Value --
567    ---------------
568
569    procedure Set_Value
570      (Val : Attribute;
571       T   : Task_Identification.Task_Id := Task_Identification.Current_Task)
572    is
573       TT          : Task_ID := To_Task_ID (T);
574       Error_Message : constant String := "Trying to Set the Value of a";
575
576    begin
577       if TT = Null_ID then
578          Raise_Exception (Program_Error'Identity,
579            Error_Message & "null task");
580       end if;
581
582       if TT.Common.State = Terminated then
583          Raise_Exception (Tasking_Error'Identity,
584            Error_Message & "terminated task");
585       end if;
586
587       begin
588          Defer_Abortion;
589          POP.Lock_RTS;
590
591          --  Directly addressed case
592
593          if Local.Index /= 0 then
594
595             --  Set attribute handle, warnings off, because this code can
596             --  generate alignment warnings with large attributes (but of
597             --  course wil not be executed in this case, since we never
598             --  have direct addressing in such cases).
599
600             pragma Warnings (Off);
601             To_Attribute_Handle
602                (TT.Direct_Attributes (Local.Index)'Access).all := Val;
603             pragma Warnings (On);
604             POP.Unlock_RTS;
605             Undefer_Abortion;
606             return;
607
608          --  Not directly addressed
609
610          else
611             declare
612                P : Access_Node := To_Access_Node (TT.Indirect_Attributes);
613                W : Access_Wrapper;
614
615             begin
616                while P /= null loop
617
618                   if P.Instance = Access_Instance'(Local'Unchecked_Access) then
619                      To_Access_Wrapper (P.Wrapper).Value := Val;
620                      POP.Unlock_RTS;
621                      Undefer_Abortion;
622                      return;
623                   end if;
624
625                   P := P.Next;
626                end loop;
627
628                --  Unlock RTS here to follow the lock ordering rule that
629                --  prevent us from using new (i.e the Global_Lock) while
630                --  holding any other lock.
631
632                POP.Unlock_RTS;
633                W := new Wrapper'
634                      ((null, Local'Unchecked_Access, null), Val);
635                POP.Lock_RTS;
636                P := W.Noed'Unchecked_Access;
637                P.Wrapper := To_Access_Dummy_Wrapper (W);
638                P.Next := To_Access_Node (TT.Indirect_Attributes);
639                TT.Indirect_Attributes := To_Access_Address (P);
640             end;
641          end if;
642
643          POP.Unlock_RTS;
644          Undefer_Abortion;
645
646       exception
647          when others =>
648             POP.Unlock_RTS;
649             Undefer_Abortion;
650             raise;
651       end;
652
653       return;
654
655    exception
656       when Tasking_Error | Program_Error =>
657          raise;
658
659       when others =>
660          raise Program_Error;
661
662    end Set_Value;
663
664    -----------
665    -- Value --
666    -----------
667
668    function Value
669      (T    : Task_Identification.Task_Id := Task_Identification.Current_Task)
670       return Attribute
671    is
672       Result        : Attribute;
673       TT            : Task_ID := To_Task_ID (T);
674       Error_Message : constant String := "Trying to get the Value of a";
675
676    begin
677       if TT = Null_ID then
678          Raise_Exception
679            (Program_Error'Identity, Error_Message & "null task");
680       end if;
681
682       if TT.Common.State = Terminated then
683          Raise_Exception
684            (Program_Error'Identity, Error_Message & "terminated task");
685       end if;
686
687       begin
688          --  Directly addressed case
689
690          if Local.Index /= 0 then
691
692             --  Get value of attribute. Warnings off, because for large
693             --  attributes, this code can generate alignment warnings.
694             --  But of course large attributes are never directly addressed
695             --  so in fact we will never execute the code in this case.
696
697             pragma Warnings (Off);
698             Result :=
699               To_Attribute_Handle
700                 (TT.Direct_Attributes (Local.Index)'Access).all;
701             pragma Warnings (On);
702
703          --  Not directly addressed
704
705          else
706             declare
707                P : Access_Node;
708
709             begin
710                Defer_Abortion;
711                POP.Lock_RTS;
712                P := To_Access_Node (TT.Indirect_Attributes);
713
714                while P /= null loop
715                   if P.Instance = Access_Instance'(Local'Unchecked_Access) then
716                      POP.Unlock_RTS;
717                      Undefer_Abortion;
718                      return To_Access_Wrapper (P.Wrapper).Value;
719                   end if;
720
721                   P := P.Next;
722                end loop;
723
724                Result := Initial_Value;
725                POP.Unlock_RTS;
726                Undefer_Abortion;
727
728             exception
729                when others =>
730                   POP.Unlock_RTS;
731                   Undefer_Abortion;
732                   raise;
733             end;
734          end if;
735
736          return Result;
737       end;
738
739    exception
740       when Tasking_Error | Program_Error =>
741          raise;
742
743       when others =>
744          raise Program_Error;
745    end Value;
746
747 --  Start of elaboration code for package Ada.Task_Attributes
748
749 begin
750    --  This unchecked conversion can give warnings when alignments
751    --  are incorrect, but they will not be used in such cases anyway,
752    --  so the warnings can be safely ignored.
753
754    pragma Warnings (Off);
755    Local.Deallocate := To_Lib_Level_Deallocator (Deallocate'Access);
756    pragma Warnings (On);
757
758    declare
759       Two_To_J : Direct_Index_Vector;
760    begin
761       Defer_Abortion;
762
763       --  Need protection for updating links to per-task initialization and
764       --  finalization routines, in case some task is being created or
765       --  terminated concurrently.
766
767       POP.Lock_RTS;
768
769       --  Add this instantiation to the list of all instantiations.
770
771       Local.Next := System.Tasking.Task_Attributes.All_Attributes;
772       System.Tasking.Task_Attributes.All_Attributes :=
773         Local'Unchecked_Access;
774
775       --  Try to find space for the attribute in the TCB.
776
777       Local.Index := 0;
778       Two_To_J := 2 ** Direct_Index'First;
779
780       if Attribute'Size <= System.Address'Size then
781          for J in Direct_Index loop
782             if (Two_To_J and In_Use) /= 0 then
783
784                --  Reserve location J for this attribute
785
786                In_Use := In_Use or Two_To_J;
787                Local.Index := J;
788
789                --  This unchecked conversions can give a warning when the
790                --  the alignment is incorrect, but it will not be used in
791                --  such a case anyway, so the warning can be safely ignored.
792
793                pragma Warnings (Off);
794                To_Attribute_Handle (Local.Initial_Value'Access).all :=
795                  Initial_Value;
796                pragma Warnings (On);
797
798                exit;
799             end if;
800
801             Two_To_J := Two_To_J * 2;
802          end loop;
803       end if;
804
805       --  Attribute goes directly in the TCB
806
807       if Local.Index /= 0 then
808
809          --  Replace stub for initialization routine
810          --  that is called at task creation.
811
812          Initialization.Initialize_Attributes_Link :=
813            System.Tasking.Task_Attributes.Initialize_Attributes'Access;
814
815          --  Initialize the attribute, for all tasks.
816
817          declare
818             C : System.Tasking.Task_ID := System.Tasking.All_Tasks_List;
819
820          begin
821             while C /= null loop
822                POP.Write_Lock (C);
823                C.Direct_Attributes (Local.Index) :=
824                  System.Storage_Elements.To_Address (Local.Initial_Value);
825                POP.Unlock (C);
826                C := C.Common.All_Tasks_Link;
827             end loop;
828          end;
829
830       --  Attribute goes into a node onto a linked list
831
832       else
833          --  Replace stub for finalization routine
834          --  that is called at task termination.
835
836          Initialization.Finalize_Attributes_Link :=
837            System.Tasking.Task_Attributes.Finalize_Attributes'Access;
838
839       end if;
840
841       POP.Unlock_RTS;
842       Undefer_Abortion;
843
844    exception
845       when others => null;
846          pragma Assert (Shutdown ("Exception in task attribute initializer"));
847
848          --  If we later decide to allow exceptions to propagate, we need to
849          --  not only release locks and undefer abortion, we also need to undo
850          --  any initializations that succeeded up to this point, or we will
851          --  risk a dangling reference when the task terminates.
852    end;
853 end Ada.Task_Attributes;