1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M - S T A C K _ U S A G E --
9 -- Copyright (C) 2004-2009, Free Software Foundation, Inc. --
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. --
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. --
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/>. --
27 -- GNARL was developed by the GNARL team at Florida State University. --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
30 ------------------------------------------------------------------------------
32 with System
.Parameters
;
36 package body System
.Stack_Usage
is
37 use System
.Storage_Elements
;
46 -- Stackl_Slots is an internal data type to represent a sequence of real
47 -- stack slots initialized with a provided pattern, with operations to
48 -- abstract away the target call stack growth direction.
50 type Stack_Slots
is array (Integer range <>) of Pattern_Type
;
51 for Stack_Slots
'Component_Size use Pattern_Type
'Object_Size;
53 -- We will carefully handle the initializations ourselves and might want
54 -- to remap an initialized overlay later on with an address clause.
56 pragma Suppress_Initialization
(Stack_Slots
);
58 -- The abstract Stack_Slots operations all operate over the simple array
61 -- memory addresses increasing ---->
63 -- Slots('First) Slots('Last)
66 -- +------------------------------------------------------------------+
68 -- +------------------------------------------------------------------+
70 -- What we call Top or Bottom always denotes call chain leaves or entry
71 -- points respectively, and their relative positions in the stack array
72 -- depends on the target stack growth direction:
76 -- <----- calls push frames towards decreasing addresses
78 -- Top(most) Slot Bottom(most) Slot
81 -- +------------------------------------------------------------------+
82 -- |####| | leaf frame | ... | entry frame |
83 -- +------------------------------------------------------------------+
87 -- calls push frames towards increasing addresses ----->
89 -- Bottom(most) Slot Top(most) Slot
92 -- +------------------------------------------------------------------+
93 -- | entry frame | ... | leaf frame | |####|
94 -- +------------------------------------------------------------------+
96 function Top_Slot_Index_In
(Stack
: Stack_Slots
) return Integer;
97 -- Index of the stack Top slot in the Slots array, denoting the latest
98 -- possible slot available to call chain leaves.
100 function Bottom_Slot_Index_In
(Stack
: Stack_Slots
) return Integer;
101 -- Index of the stack Bottom slot in the Slots array, denoting the first
102 -- possible slot available to call chain entry points.
104 function Push_Index_Step_For
(Stack
: Stack_Slots
) return Integer;
105 -- By how much do we need to update a Slots index to Push a single slot on
108 function Pop_Index_Step_For
(Stack
: Stack_Slots
) return Integer;
109 -- By how much do we need to update a Slots index to Pop a single slot off
112 pragma Inline_Always
(Top_Slot_Index_In
);
113 pragma Inline_Always
(Bottom_Slot_Index_In
);
114 pragma Inline_Always
(Push_Index_Step_For
);
115 pragma Inline_Always
(Pop_Index_Step_For
);
117 -----------------------
118 -- Top_Slot_Index_In --
119 -----------------------
121 function Top_Slot_Index_In
(Stack
: Stack_Slots
) return Integer is
123 if System
.Parameters
.Stack_Grows_Down
then
128 end Top_Slot_Index_In
;
130 ----------------------------
131 -- Bottom_Slot_Index_In --
132 ----------------------------
134 function Bottom_Slot_Index_In
(Stack
: Stack_Slots
) return Integer is
136 if System
.Parameters
.Stack_Grows_Down
then
141 end Bottom_Slot_Index_In
;
143 -------------------------
144 -- Push_Index_Step_For --
145 -------------------------
147 function Push_Index_Step_For
(Stack
: Stack_Slots
) return Integer is
148 pragma Unreferenced
(Stack
);
150 if System
.Parameters
.Stack_Grows_Down
then
155 end Push_Index_Step_For
;
157 ------------------------
158 -- Pop_Index_Step_For --
159 ------------------------
161 function Pop_Index_Step_For
(Stack
: Stack_Slots
) return Integer is
163 return -Push_Index_Step_For
(Stack
);
164 end Pop_Index_Step_For
;
170 -- Now the implementation of the services offered by this unit, on top of
171 -- the Stack_Slots abstraction above.
173 Index_Str
: constant String := "Index";
174 Task_Name_Str
: constant String := "Task Name";
175 Stack_Size_Str
: constant String := "Stack Size";
176 Actual_Size_Str
: constant String := "Stack usage";
178 function Get_Usage_Range
(Result
: Task_Result
) return String;
179 -- Return string representing the range of possible result of stack usage
181 procedure Output_Result
182 (Result_Id
: Natural;
183 Result
: Task_Result
;
184 Max_Stack_Size_Len
: Natural;
185 Max_Actual_Use_Len
: Natural);
186 -- Prints the result on the standard output. Result Id is the number of
187 -- the result in the array, and Result the contents of the actual result.
188 -- Max_Stack_Size_Len and Max_Actual_Use_Len are used for displaying the
189 -- proper layout. They hold the maximum length of the string representing
190 -- the Stack_Size and Actual_Use values.
196 procedure Initialize
(Buffer_Size
: Natural) is
197 Bottom_Of_Stack
: aliased Integer;
198 Stack_Size_Chars
: System
.Address
;
201 -- Initialize the buffered result array
203 Result_Array
:= new Result_Array_Type
(1 .. Buffer_Size
);
206 (Task_Name
=> (others => ASCII
.NUL
),
211 -- Set the Is_Enabled flag to true, so that the task wrapper knows that
212 -- it has to handle dynamic stack analysis
216 Stack_Size_Chars
:= System
.CRTL
.getenv
("GNAT_STACK_LIMIT" & ASCII
.NUL
);
218 -- If variable GNAT_STACK_LIMIT is set, then we will take care of the
219 -- environment task, using GNAT_STASK_LIMIT as the size of the stack.
220 -- It doesn't make sens to process the stack when no bound is set (e.g.
221 -- limit is typically up to 4 GB).
223 if Stack_Size_Chars
/= Null_Address
then
225 My_Stack_Size
: Integer;
228 My_Stack_Size
:= System
.CRTL
.atoi
(Stack_Size_Chars
) * 1024;
231 (Environment_Task_Analyzer
,
235 System
.Storage_Elements
.To_Integer
(Bottom_Of_Stack
'Address));
237 Fill_Stack
(Environment_Task_Analyzer
);
239 Compute_Environment_Task
:= True;
242 -- GNAT_STACK_LIMIT not set
245 Compute_Environment_Task
:= False;
253 procedure Fill_Stack
(Analyzer
: in out Stack_Analyzer
) is
254 -- Change the local variables and parameters of this function with
255 -- super-extra care. The more the stack frame size of this function is
256 -- big, the more an "instrumentation threshold at writing" error is
259 Stack_Used_When_Filling
: Integer;
260 Current_Stack_Level
: aliased Integer;
263 -- Readjust the pattern size. When we arrive in this function, there is
264 -- already a given amount of stack used, that we won't analyze.
266 Stack_Used_When_Filling
:=
268 (Analyzer
.Bottom_Of_Stack
,
269 To_Stack_Address
(Current_Stack_Level
'Address))
270 + Natural (Current_Stack_Level
'Size);
272 if Stack_Used_When_Filling
> Analyzer
.Pattern_Size
then
273 -- In this case, the known size of the stack is too small, we've
274 -- already taken more than expected, so there's no possible
277 Analyzer
.Pattern_Size
:= 0;
279 Analyzer
.Pattern_Size
:=
280 Analyzer
.Pattern_Size
- Stack_Used_When_Filling
;
284 Stack
: aliased Stack_Slots
285 (1 .. Analyzer
.Pattern_Size
/ Bytes_Per_Pattern
);
288 Stack
:= (others => Analyzer
.Pattern
);
290 Analyzer
.Stack_Overlay_Address
:= Stack
'Address;
292 if Analyzer
.Pattern_Size
/= 0 then
293 Analyzer
.Bottom_Pattern_Mark
:=
294 To_Stack_Address
(Stack
(Bottom_Slot_Index_In
(Stack
))'Address);
295 Analyzer
.Top_Pattern_Mark
:=
296 To_Stack_Address
(Stack
(Top_Slot_Index_In
(Stack
))'Address);
298 Analyzer
.Bottom_Pattern_Mark
:= To_Stack_Address
(Stack
'Address);
299 Analyzer
.Top_Pattern_Mark
:= To_Stack_Address
(Stack
'Address);
302 -- If Arr has been packed, the following assertion must be true (we
303 -- add the size of the element whose address is:
304 -- Min (Analyzer.Inner_Pattern_Mark, Analyzer.Outer_Pattern_Mark)):
307 (Analyzer
.Pattern_Size
= 0 or else
308 Analyzer
.Pattern_Size
=
310 (Analyzer
.Top_Pattern_Mark
, Analyzer
.Bottom_Pattern_Mark
));
314 -------------------------
315 -- Initialize_Analyzer --
316 -------------------------
318 procedure Initialize_Analyzer
319 (Analyzer
: in out Stack_Analyzer
;
321 My_Stack_Size
: Natural;
322 Max_Pattern_Size
: Natural;
323 Bottom
: Stack_Address
;
324 Pattern
: Unsigned_32
:= 16#DEAD_BEEF#
)
327 -- Initialize the analyzer fields
329 Analyzer
.Bottom_Of_Stack
:= Bottom
;
330 Analyzer
.Stack_Size
:= My_Stack_Size
;
331 Analyzer
.Pattern_Size
:= Max_Pattern_Size
;
332 Analyzer
.Pattern
:= Pattern
;
333 Analyzer
.Result_Id
:= Next_Id
;
334 Analyzer
.Task_Name
:= (others => ' ');
336 -- Compute the task name, and truncate if bigger than Task_Name_Length
338 if Task_Name
'Length <= Task_Name_Length
then
339 Analyzer
.Task_Name
(1 .. Task_Name
'Length) := Task_Name
;
341 Analyzer
.Task_Name
:=
342 Task_Name
(Task_Name
'First ..
343 Task_Name
'First + Task_Name_Length
- 1);
346 Next_Id
:= Next_Id
+ 1;
347 end Initialize_Analyzer
;
354 (SP_Low
: Stack_Address
;
355 SP_High
: Stack_Address
) return Natural
358 if SP_Low
> SP_High
then
359 return Natural (SP_Low
- SP_High
+ 4);
361 return Natural (SP_High
- SP_Low
+ 4);
369 procedure Compute_Result
(Analyzer
: in out Stack_Analyzer
) is
371 -- Change the local variables and parameters of this function with
372 -- super-extra care. The larger the stack frame size of this function
373 -- is, the more an "instrumentation threshold at reading" error is
376 Stack
: Stack_Slots
(1 .. Analyzer
.Pattern_Size
/ Bytes_Per_Pattern
);
377 for Stack
'Address use Analyzer
.Stack_Overlay_Address
;
380 Analyzer
.Topmost_Touched_Mark
:= Analyzer
.Bottom_Pattern_Mark
;
382 if Analyzer
.Pattern_Size
= 0 then
386 -- Look backward from the topmost possible end of the marked stack to
387 -- the bottom of it. The first index not equals to the patterns marks
388 -- the beginning of the used stack.
391 Top_Index
: constant Integer := Top_Slot_Index_In
(Stack
);
392 Bottom_Index
: constant Integer := Bottom_Slot_Index_In
(Stack
);
393 Step
: constant Integer := Pop_Index_Step_For
(Stack
);
399 if Stack
(J
) /= Analyzer
.Pattern
then
400 Analyzer
.Topmost_Touched_Mark
401 := To_Stack_Address
(Stack
(J
)'Address);
405 exit when J
= Bottom_Index
;
411 ---------------------
412 -- Get_Usage_Range --
413 ---------------------
415 function Get_Usage_Range
(Result
: Task_Result
) return String is
416 Variation_Used_Str
: constant String :=
417 Natural'Image (Result
.Variation
);
418 Value_Used_Str
: constant String :=
419 Natural'Image (Result
.Value
);
421 return Value_Used_Str
& " +/- " & Variation_Used_Str
;
424 ---------------------
426 ---------------------
428 procedure Output_Result
429 (Result_Id
: Natural;
430 Result
: Task_Result
;
431 Max_Stack_Size_Len
: Natural;
432 Max_Actual_Use_Len
: Natural)
434 Result_Id_Str
: constant String := Natural'Image (Result_Id
);
435 My_Stack_Size_Str
: constant String := Natural'Image (Result
.Max_Size
);
436 Actual_Use_Str
: constant String := Get_Usage_Range
(Result
);
438 Result_Id_Blanks
: constant
439 String (1 .. Index_Str
'Length - Result_Id_Str
'Length) :=
442 Stack_Size_Blanks
: constant
443 String (1 .. Max_Stack_Size_Len
- My_Stack_Size_Str
'Length) :=
446 Actual_Use_Blanks
: constant
447 String (1 .. Max_Actual_Use_Len
- Actual_Use_Str
'Length) :=
451 Set_Output
(Standard_Error
);
452 Put
(Result_Id_Blanks
& Natural'Image (Result_Id
));
454 Put
(Result
.Task_Name
);
456 Put
(Stack_Size_Blanks
& My_Stack_Size_Str
);
458 Put
(Actual_Use_Blanks
& Actual_Use_Str
);
462 ---------------------
464 ---------------------
466 procedure Output_Results
is
467 Max_Stack_Size
: Natural := 0;
468 Max_Actual_Use_Result_Id
: Natural := Result_Array
'First;
469 Max_Stack_Size_Len
, Max_Actual_Use_Len
: Natural := 0;
471 Task_Name_Blanks
: constant
472 String (1 .. Task_Name_Length
- Task_Name_Str
'Length) :=
476 Set_Output
(Standard_Error
);
478 if Compute_Environment_Task
then
479 Compute_Result
(Environment_Task_Analyzer
);
480 Report_Result
(Environment_Task_Analyzer
);
483 if Result_Array
'Length > 0 then
485 -- Computes the size of the largest strings that will get displayed,
486 -- in order to do correct column alignment.
488 for J
in Result_Array
'Range loop
489 exit when J
>= Next_Id
;
491 if Result_Array
(J
).Value
>
492 Result_Array
(Max_Actual_Use_Result_Id
).Value
494 Max_Actual_Use_Result_Id
:= J
;
497 if Result_Array
(J
).Max_Size
> Max_Stack_Size
then
498 Max_Stack_Size
:= Result_Array
(J
).Max_Size
;
502 Max_Stack_Size_Len
:= Natural'Image (Max_Stack_Size
)'Length;
504 Max_Actual_Use_Len
:=
505 Get_Usage_Range
(Result_Array
(Max_Actual_Use_Result_Id
))'Length;
507 -- Display the output header. Blanks will be added in front of the
511 Stack_Size_Blanks
: constant
512 String (1 .. Max_Stack_Size_Len
- Stack_Size_Str
'Length) :=
515 Stack_Usage_Blanks
: constant
516 String (1 .. Max_Actual_Use_Len
- Actual_Size_Str
'Length) :=
520 if Stack_Size_Str
'Length > Max_Stack_Size_Len
then
521 Max_Stack_Size_Len
:= Stack_Size_Str
'Length;
524 if Actual_Size_Str
'Length > Max_Actual_Use_Len
then
525 Max_Actual_Use_Len
:= Actual_Size_Str
'Length;
529 (Index_Str
& " | " & Task_Name_Str
& Task_Name_Blanks
& " | "
530 & Stack_Size_Str
& Stack_Size_Blanks
& " | "
531 & Stack_Usage_Blanks
& Actual_Size_Str
);
536 -- Now display the individual results
538 for J
in Result_Array
'Range loop
539 exit when J
>= Next_Id
;
541 (J
, Result_Array
(J
), Max_Stack_Size_Len
, Max_Actual_Use_Len
);
544 -- Case of no result stored, still display the labels
548 (Index_Str
& " | " & Task_Name_Str
& Task_Name_Blanks
& " | "
549 & Stack_Size_Str
& " | " & Actual_Size_Str
);
558 procedure Report_Result
(Analyzer
: Stack_Analyzer
) is
559 Result
: Task_Result
:=
560 (Task_Name
=> Analyzer
.Task_Name
,
561 Max_Size
=> Analyzer
.Stack_Size
,
565 Overflow_Guard
: constant Integer :=
567 - Stack_Size
(Analyzer
.Top_Pattern_Mark
, Analyzer
.Bottom_Of_Stack
);
571 if Analyzer
.Pattern_Size
= 0 then
573 -- If we have that result, it means that we didn't do any computation
574 -- at all. In other words, we used at least everything (and possibly
577 Min
:= Analyzer
.Stack_Size
- Overflow_Guard
;
578 Max
:= Analyzer
.Stack_Size
;
583 (Analyzer
.Topmost_Touched_Mark
, Analyzer
.Bottom_Of_Stack
);
584 Max
:= Min
+ Overflow_Guard
;
587 Result
.Value
:= (Max
+ Min
) / 2;
588 Result
.Variation
:= (Max
- Min
) / 2;
590 if Analyzer
.Result_Id
in Result_Array
'Range then
592 -- If the result can be stored, then store it in Result_Array
594 Result_Array
(Analyzer
.Result_Id
) := Result
;
597 -- If the result cannot be stored, then we display it right away
600 Result_Str_Len
: constant Natural :=
601 Get_Usage_Range
(Result
)'Length;
602 Size_Str_Len
: constant Natural :=
603 Natural'Image (Analyzer
.Stack_Size
)'Length;
605 Max_Stack_Size_Len
: Natural;
606 Max_Actual_Use_Len
: Natural;
609 -- Take either the label size or the number image size for the
610 -- size of the column "Stack Size".
612 Max_Stack_Size_Len
:=
613 (if Size_Str_Len
> Stack_Size_Str
'Length
615 else Stack_Size_Str
'Length);
617 -- Take either the label size or the number image size for the
618 -- size of the column "Stack Usage".
620 Max_Actual_Use_Len
:=
621 (if Result_Str_Len
> Actual_Size_Str
'Length
623 else Actual_Size_Str
'Length);
634 end System
.Stack_Usage
;