* config/darwin.c (darwin_assemble_visibility): Treat
[official-gcc.git] / gcc / ada / s-taskin.adb
blob519626cb9c44d62f0e31e8708b4a81d1ad0f338b
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
4 -- --
5 -- S Y S T E M . T A S K I N G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
10 -- --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 pragma Polling (Off);
33 -- Turn off polling, we do not want ATC polling to take place during tasking
34 -- operations. It causes infinite loops and other problems.
36 with Ada.Unchecked_Deallocation;
38 with System.Task_Primitives.Operations;
39 with System.Storage_Elements;
41 package body System.Tasking is
43 package STPO renames System.Task_Primitives.Operations;
45 ----------------------------
46 -- Free_Entry_Names_Array --
47 ----------------------------
49 procedure Free_Entry_Names_Array (Obj : in out Entry_Names_Array) is
50 procedure Free_String is new
51 Ada.Unchecked_Deallocation (String, String_Access);
52 begin
53 for Index in Obj'Range loop
54 Free_String (Obj (Index));
55 end loop;
56 end Free_Entry_Names_Array;
58 ---------------------
59 -- Detect_Blocking --
60 ---------------------
62 function Detect_Blocking return Boolean is
63 GL_Detect_Blocking : Integer;
64 pragma Import (C, GL_Detect_Blocking, "__gl_detect_blocking");
65 -- Global variable exported by the binder generated file. A value equal
66 -- to 1 indicates that pragma Detect_Blocking is active, while 0 is used
67 -- for the pragma not being present.
69 begin
70 return GL_Detect_Blocking = 1;
71 end Detect_Blocking;
73 ----------
74 -- Self --
75 ----------
77 function Self return Task_Id renames STPO.Self;
79 ------------------
80 -- Storage_Size --
81 ------------------
83 function Storage_Size (T : Task_Id) return System.Parameters.Size_Type is
84 begin
85 return
86 System.Parameters.Size_Type
87 (T.Common.Compiler_Data.Pri_Stack_Info.Size);
88 end Storage_Size;
90 ---------------------
91 -- Initialize_ATCB --
92 ---------------------
94 procedure Initialize_ATCB
95 (Self_ID : Task_Id;
96 Task_Entry_Point : Task_Procedure_Access;
97 Task_Arg : System.Address;
98 Parent : Task_Id;
99 Elaborated : Access_Boolean;
100 Base_Priority : System.Any_Priority;
101 Base_CPU : System.Multiprocessors.CPU_Range;
102 Domain : Dispatching_Domain_Access;
103 Task_Info : System.Task_Info.Task_Info_Type;
104 Stack_Size : System.Parameters.Size_Type;
105 T : Task_Id;
106 Success : out Boolean)
108 begin
109 T.Common.State := Unactivated;
111 -- Initialize T.Common.LL
113 STPO.Initialize_TCB (T, Success);
115 if not Success then
116 return;
117 end if;
119 -- Wouldn't the following be better done using an assignment of an
120 -- aggregate so that we could be sure no components were forgotten???
122 T.Common.Parent := Parent;
123 T.Common.Base_Priority := Base_Priority;
124 T.Common.Base_CPU := Base_CPU;
125 T.Common.Domain := Domain;
126 T.Common.Current_Priority := 0;
127 T.Common.Protected_Action_Nesting := 0;
128 T.Common.Call := null;
129 T.Common.Task_Arg := Task_Arg;
130 T.Common.Task_Entry_Point := Task_Entry_Point;
131 T.Common.Activator := Self_ID;
132 T.Common.Wait_Count := 0;
133 T.Common.Elaborated := Elaborated;
134 T.Common.Activation_Failed := False;
135 T.Common.Task_Info := Task_Info;
136 T.Common.Global_Task_Lock_Nesting := 0;
137 T.Common.Fall_Back_Handler := null;
138 T.Common.Specific_Handler := null;
139 T.Common.Debug_Events := (others => False);
140 T.Common.Task_Image_Len := 0;
142 if T.Common.Parent = null then
144 -- For the environment task, the adjusted stack size is meaningless.
145 -- For example, an unspecified Stack_Size means that the stack size
146 -- is determined by the environment, or can grow dynamically. The
147 -- Stack_Checking algorithm therefore needs to use the requested
148 -- size, or 0 in case of an unknown size.
150 T.Common.Compiler_Data.Pri_Stack_Info.Size :=
151 Storage_Elements.Storage_Offset (Stack_Size);
153 else
154 T.Common.Compiler_Data.Pri_Stack_Info.Size :=
155 Storage_Elements.Storage_Offset
156 (Parameters.Adjust_Storage_Size (Stack_Size));
157 end if;
159 -- Link the task into the list of all tasks
161 T.Common.All_Tasks_Link := All_Tasks_List;
162 All_Tasks_List := T;
163 end Initialize_ATCB;
165 ----------------
166 -- Initialize --
167 ----------------
169 Main_Task_Image : constant String := "main_task";
170 -- Image of environment task
172 Main_Priority : Integer;
173 pragma Import (C, Main_Priority, "__gl_main_priority");
174 -- Priority for main task. Note that this is of type Integer, not Priority,
175 -- because we use the value -1 to indicate the default main priority, and
176 -- that is of course not in Priority'range.
178 Main_CPU : Integer;
179 pragma Import (C, Main_CPU, "__gl_main_cpu");
180 -- Affinity for main task. Note that this is of type Integer, not
181 -- CPU_Range, because we use the value -1 to indicate the unassigned
182 -- affinity, and that is of course not in CPU_Range'Range.
184 Initialized : Boolean := False;
185 -- Used to prevent multiple calls to Initialize
187 procedure Initialize is
188 T : Task_Id;
189 Base_Priority : Any_Priority;
190 Base_CPU : System.Multiprocessors.CPU_Range;
191 Success : Boolean;
193 use type System.Multiprocessors.CPU_Range;
195 begin
196 if Initialized then
197 return;
198 end if;
200 Initialized := True;
202 -- Initialize Environment Task
204 Base_Priority :=
205 (if Main_Priority = Unspecified_Priority
206 then Default_Priority
207 else Priority (Main_Priority));
209 Base_CPU :=
210 (if Main_CPU = Unspecified_CPU
211 then System.Multiprocessors.Not_A_Specific_CPU
212 else System.Multiprocessors.CPU_Range (Main_CPU));
214 T := STPO.New_ATCB (0);
215 Initialize_ATCB
216 (null, null, Null_Address, Null_Task, null, Base_Priority, Base_CPU,
217 null, Task_Info.Unspecified_Task_Info, 0, T, Success);
218 pragma Assert (Success);
220 STPO.Initialize (T);
221 STPO.Set_Priority (T, T.Common.Base_Priority);
222 T.Common.State := Runnable;
223 T.Common.Task_Image_Len := Main_Task_Image'Length;
224 T.Common.Task_Image (Main_Task_Image'Range) := Main_Task_Image;
226 -- At program start-up the environment task is allocated to the default
227 -- system dispatching domain.
228 -- Make sure that the processors which are not available are not taken
229 -- into account. Use Number_Of_CPUs to know the exact number of
230 -- processors in the system at execution time.
232 System_Domain :=
233 new Dispatching_Domain'
234 (Multiprocessors.CPU'First .. Multiprocessors.Number_Of_CPUs =>
235 True);
237 T.Common.Domain := System_Domain;
239 Dispatching_Domain_Tasks :=
240 new Array_Allocated_Tasks'
241 (Multiprocessors.CPU'First .. Multiprocessors.Number_Of_CPUs => 0);
243 -- Signal that this task is being allocated to a processor
245 if Base_CPU /= System.Multiprocessors.Not_A_Specific_CPU then
247 -- Increase the number of tasks attached to the CPU to which this
248 -- task is allocated.
250 Dispatching_Domain_Tasks (Base_CPU) :=
251 Dispatching_Domain_Tasks (Base_CPU) + 1;
252 end if;
254 -- Only initialize the first element since others are not relevant
255 -- in ravenscar mode. Rest of the initialization is done in Init_RTS.
257 T.Entry_Calls (1).Self := T;
258 end Initialize;
260 end System.Tasking;