OSDN Git Service

2010-10-26 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-taskin.adb
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-2010, 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 ------------------------------------------------------------------------------
31
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.
35
36 with Ada.Unchecked_Deallocation;
37
38 with System.Task_Primitives.Operations;
39 with System.Storage_Elements;
40
41 package body System.Tasking is
42
43    package STPO renames System.Task_Primitives.Operations;
44
45    ----------------------------
46    -- Free_Entry_Names_Array --
47    ----------------------------
48
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;
57
58    ---------------------
59    -- Detect_Blocking --
60    ---------------------
61
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.
68
69    begin
70       return GL_Detect_Blocking = 1;
71    end Detect_Blocking;
72
73    ----------
74    -- Self --
75    ----------
76
77    function Self return Task_Id renames STPO.Self;
78
79    ------------------
80    -- Storage_Size --
81    ------------------
82
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;
89
90    ---------------------
91    -- Initialize_ATCB --
92    ---------------------
93
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       Task_Info        : System.Task_Info.Task_Info_Type;
103       Stack_Size       : System.Parameters.Size_Type;
104       T                : Task_Id;
105       Success          : out Boolean)
106    is
107    begin
108       T.Common.State := Unactivated;
109
110       --  Initialize T.Common.LL
111
112       STPO.Initialize_TCB (T, Success);
113
114       if not Success then
115          return;
116       end if;
117
118       --  Wouldn't the following be better done using an assignment of an
119       --  aggregate so that we could be sure no components were forgotten???
120
121       T.Common.Parent                   := Parent;
122       T.Common.Base_Priority            := Base_Priority;
123       T.Common.Base_CPU                 := Base_CPU;
124       T.Common.Current_Priority         := 0;
125       T.Common.Protected_Action_Nesting := 0;
126       T.Common.Call                     := null;
127       T.Common.Task_Arg                 := Task_Arg;
128       T.Common.Task_Entry_Point         := Task_Entry_Point;
129       T.Common.Activator                := Self_ID;
130       T.Common.Wait_Count               := 0;
131       T.Common.Elaborated               := Elaborated;
132       T.Common.Activation_Failed        := False;
133       T.Common.Task_Info                := Task_Info;
134       T.Common.Global_Task_Lock_Nesting := 0;
135       T.Common.Fall_Back_Handler        := null;
136       T.Common.Specific_Handler         := null;
137       T.Common.Debug_Events             := (others => False);
138
139       if T.Common.Parent = null then
140
141          --  For the environment task, the adjusted stack size is meaningless.
142          --  For example, an unspecified Stack_Size means that the stack size
143          --  is determined by the environment, or can grow dynamically. The
144          --  Stack_Checking algorithm therefore needs to use the requested
145          --  size, or 0 in case of an unknown size.
146
147          T.Common.Compiler_Data.Pri_Stack_Info.Size :=
148             Storage_Elements.Storage_Offset (Stack_Size);
149
150       else
151          T.Common.Compiler_Data.Pri_Stack_Info.Size :=
152            Storage_Elements.Storage_Offset
153              (Parameters.Adjust_Storage_Size (Stack_Size));
154       end if;
155
156       --  Link the task into the list of all tasks
157
158       T.Common.All_Tasks_Link := All_Tasks_List;
159       All_Tasks_List := T;
160    end Initialize_ATCB;
161
162    ----------------
163    -- Initialize --
164    ----------------
165
166    Main_Task_Image : constant String := "main_task";
167    --  Image of environment task
168
169    Main_Priority : Integer;
170    pragma Import (C, Main_Priority, "__gl_main_priority");
171    --  Priority for main task. Note that this is of type Integer, not Priority,
172    --  because we use the value -1 to indicate the default main priority, and
173    --  that is of course not in Priority'range.
174
175    Main_CPU : Integer;
176    pragma Import (C, Main_CPU, "__gl_main_cpu");
177    --  Affinity for main task. Note that this is of type Integer, not
178    --  CPU_Range, because we use the value -1 to indicate the unassigned
179    --  affinity, and that is of course not in CPU_Range'Range.
180
181    Initialized : Boolean := False;
182    --  Used to prevent multiple calls to Initialize
183
184    procedure Initialize is
185       T             : Task_Id;
186       Base_Priority : Any_Priority;
187       Base_CPU      : System.Multiprocessors.CPU_Range;
188       Success       : Boolean;
189
190    begin
191       if Initialized then
192          return;
193       end if;
194
195       Initialized := True;
196
197       --  Initialize Environment Task
198
199       Base_Priority :=
200         (if Main_Priority = Unspecified_Priority
201          then Default_Priority
202          else Priority (Main_Priority));
203
204       Base_CPU :=
205         (if Main_CPU = Unspecified_CPU
206          then System.Multiprocessors.Not_A_Specific_CPU
207          else System.Multiprocessors.CPU_Range (Main_CPU));
208
209       T := STPO.New_ATCB (0);
210       Initialize_ATCB
211         (null, null, Null_Address, Null_Task, null, Base_Priority, Base_CPU,
212          Task_Info.Unspecified_Task_Info, 0, T, Success);
213       pragma Assert (Success);
214
215       STPO.Initialize (T);
216       STPO.Set_Priority (T, T.Common.Base_Priority);
217       T.Common.State := Runnable;
218       T.Common.Task_Image_Len := Main_Task_Image'Length;
219       T.Common.Task_Image (Main_Task_Image'Range) := Main_Task_Image;
220
221       --  Only initialize the first element since others are not relevant
222       --  in ravenscar mode. Rest of the initialization is done in Init_RTS.
223
224       T.Entry_Calls (1).Self := T;
225    end Initialize;
226
227 end System.Tasking;