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-2008, 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 2, or (at your option) any later ver- --
14 -- sion. GNARL 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNARL; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 ------------------------------------------------------------------------------
34 with System
.Parameters
;
38 package body System
.Stack_Usage
is
39 use System
.Storage_Elements
;
48 -- Stackl_Slots is an internal data type to represent a sequence of real
49 -- stack slots initialized with a provided pattern, with operations to
50 -- abstract away the target call stack growth direction.
52 type Stack_Slots
is array (Integer range <>) of Pattern_Type
;
53 for Stack_Slots
'Component_Size use Pattern_Type
'Object_Size;
55 -- We will carefully handle the initializations ourselves and might want
56 -- to remap an initialized overlay later on with an address clause.
58 pragma Suppress_Initialization
(Stack_Slots
);
60 -- The abstract Stack_Slots operations all operate over the simple array
63 -- memory addresses increasing ---->
65 -- Slots('First) Slots('Last)
68 -- +------------------------------------------------------------------+
70 -- +------------------------------------------------------------------+
72 -- What we call Top or Bottom always denotes call chain leaves or entry
73 -- points respectively, and their relative positions in the stack array
74 -- depends on the target stack growth direction:
78 -- <----- calls push frames towards decreasing addresses
80 -- Top(most) Slot Bottom(most) Slot
83 -- +------------------------------------------------------------------+
84 -- |####| | leaf frame | ... | entry frame |
85 -- +------------------------------------------------------------------+
89 -- calls push frames towards increasing addresses ----->
91 -- Bottom(most) Slot Top(most) Slot
94 -- +------------------------------------------------------------------+
95 -- | entry frame | ... | leaf frame | |####|
96 -- +------------------------------------------------------------------+
98 function Top_Slot_Index_In
(Stack
: Stack_Slots
) return Integer;
99 -- Index of the stack Top slot in the Slots array, denoting the latest
100 -- possible slot available to call chain leaves.
102 function Bottom_Slot_Index_In
(Stack
: Stack_Slots
) return Integer;
103 -- Index of the stack Bottom slot in the Slots array, denoting the first
104 -- possible slot available to call chain entry points.
106 function Push_Index_Step_For
(Stack
: Stack_Slots
) return Integer;
107 -- By how much do we need to update a Slots index to Push a single slot on
110 function Pop_Index_Step_For
(Stack
: Stack_Slots
) return Integer;
111 -- By how much do we need to update a Slots index to Pop a single slot off
114 pragma Inline_Always
(Top_Slot_Index_In
);
115 pragma Inline_Always
(Bottom_Slot_Index_In
);
116 pragma Inline_Always
(Push_Index_Step_For
);
117 pragma Inline_Always
(Pop_Index_Step_For
);
119 -----------------------
120 -- Top_Slot_Index_In --
121 -----------------------
123 function Top_Slot_Index_In
(Stack
: Stack_Slots
) return Integer is
125 if System
.Parameters
.Stack_Grows_Down
then
130 end Top_Slot_Index_In
;
132 ----------------------------
133 -- Bottom_Slot_Index_In --
134 ----------------------------
136 function Bottom_Slot_Index_In
(Stack
: Stack_Slots
) return Integer is
138 if System
.Parameters
.Stack_Grows_Down
then
143 end Bottom_Slot_Index_In
;
145 -------------------------
146 -- Push_Index_Step_For --
147 -------------------------
149 function Push_Index_Step_For
(Stack
: Stack_Slots
) return Integer is
150 pragma Unreferenced
(Stack
);
152 if System
.Parameters
.Stack_Grows_Down
then
157 end Push_Index_Step_For
;
159 ------------------------
160 -- Pop_Index_Step_For --
161 ------------------------
163 function Pop_Index_Step_For
(Stack
: Stack_Slots
) return Integer is
165 return -Push_Index_Step_For
(Stack
);
166 end Pop_Index_Step_For
;
172 -- Now the implementation of the services offered by this unit, on top of
173 -- the Stack_Slots abstraction above.
175 Index_Str
: constant String := "Index";
176 Task_Name_Str
: constant String := "Task Name";
177 Stack_Size_Str
: constant String := "Stack Size";
178 Actual_Size_Str
: constant String := "Stack usage [min - max]";
180 function Get_Usage_Range
(Result
: Task_Result
) return String;
181 -- Return string representing the range of possible result of stack usage
183 procedure Output_Result
184 (Result_Id
: Natural;
185 Result
: Task_Result
;
186 Max_Stack_Size_Len
: Natural;
187 Max_Actual_Use_Len
: Natural);
188 -- Prints the result on the standard output. Result Id is the number of
189 -- the result in the array, and Result the contents of the actual result.
190 -- Max_Stack_Size_Len and Max_Actual_Use_Len are used for displaying the
191 -- proper layout. They hold the maximum length of the string representing
192 -- the Stack_Size and Actual_Use values.
198 procedure Initialize
(Buffer_Size
: Natural) is
199 Bottom_Of_Stack
: aliased Integer;
200 Stack_Size_Chars
: System
.Address
;
203 -- Initialize the buffered result array
205 Result_Array
:= new Result_Array_Type
(1 .. Buffer_Size
);
208 (Task_Name
=> (others => ASCII
.NUL
),
213 -- Set the Is_Enabled flag to true, so that the task wrapper knows that
214 -- it has to handle dynamic stack analysis
218 Stack_Size_Chars
:= System
.CRTL
.getenv
("GNAT_STACK_LIMIT" & ASCII
.NUL
);
220 -- If variable GNAT_STACK_LIMIT is set, then we will take care of the
221 -- environment task, using GNAT_STASK_LIMIT as the size of the stack.
222 -- It doesn't make sens to process the stack when no bound is set (e.g.
223 -- limit is typically up to 4 GB).
225 if Stack_Size_Chars
/= Null_Address
then
227 Stack_Size
: Integer;
230 Stack_Size
:= System
.CRTL
.atoi
(Stack_Size_Chars
) * 1024;
233 (Environment_Task_Analyzer
,
237 System
.Storage_Elements
.To_Integer
(Bottom_Of_Stack
'Address));
239 Fill_Stack
(Environment_Task_Analyzer
);
241 Compute_Environment_Task
:= True;
244 -- GNAT_STACK_LIMIT not set
247 Compute_Environment_Task
:= False;
255 procedure Fill_Stack
(Analyzer
: in out Stack_Analyzer
) is
256 -- Change the local variables and parameters of this function with
257 -- super-extra care. The more the stack frame size of this function is
258 -- big, the more an "instrumentation threshold at writing" error is
261 Stack_Used_When_Filling
: Integer;
262 Current_Stack_Level
: aliased Integer;
265 -- Readjust the pattern size. When we arrive in this function, there is
266 -- already a given amount of stack used, that we won't analyze.
268 Stack_Used_When_Filling
:=
270 (Analyzer
.Bottom_Of_Stack
,
271 To_Stack_Address
(Current_Stack_Level
'Address))
272 + Natural (Current_Stack_Level
'Size);
274 if Stack_Used_When_Filling
> Analyzer
.Pattern_Size
then
275 -- In this case, the known size of the stack is too small, we've
276 -- already taken more than expected, so there's no possible
279 Analyzer
.Pattern_Size
:= 0;
281 Analyzer
.Pattern_Size
:=
282 Analyzer
.Pattern_Size
- Stack_Used_When_Filling
;
286 Stack
: aliased Stack_Slots
287 (1 .. Analyzer
.Pattern_Size
/ Bytes_Per_Pattern
);
290 Stack
:= (others => Analyzer
.Pattern
);
292 Analyzer
.Stack_Overlay_Address
:= Stack
'Address;
294 if Analyzer
.Pattern_Size
/= 0 then
295 Analyzer
.Bottom_Pattern_Mark
:=
296 To_Stack_Address
(Stack
(Bottom_Slot_Index_In
(Stack
))'Address);
297 Analyzer
.Top_Pattern_Mark
:=
298 To_Stack_Address
(Stack
(Top_Slot_Index_In
(Stack
))'Address);
300 Analyzer
.Bottom_Pattern_Mark
:= To_Stack_Address
(Stack
'Address);
301 Analyzer
.Top_Pattern_Mark
:= To_Stack_Address
(Stack
'Address);
304 -- If Arr has been packed, the following assertion must be true (we
305 -- add the size of the element whose address is:
306 -- Min (Analyzer.Inner_Pattern_Mark, Analyzer.Outer_Pattern_Mark)):
309 (Analyzer
.Pattern_Size
= 0 or else
310 Analyzer
.Pattern_Size
=
312 (Analyzer
.Top_Pattern_Mark
, Analyzer
.Bottom_Pattern_Mark
));
316 -------------------------
317 -- Initialize_Analyzer --
318 -------------------------
320 procedure Initialize_Analyzer
321 (Analyzer
: in out Stack_Analyzer
;
323 Stack_Size
: Natural;
324 Max_Pattern_Size
: Natural;
325 Bottom
: Stack_Address
;
326 Pattern
: Unsigned_32
:= 16#DEAD_BEEF#
)
329 -- Initialize the analyzer fields
331 Analyzer
.Bottom_Of_Stack
:= Bottom
;
332 Analyzer
.Stack_Size
:= Stack_Size
;
333 Analyzer
.Pattern_Size
:= Max_Pattern_Size
;
334 Analyzer
.Pattern
:= Pattern
;
335 Analyzer
.Result_Id
:= Next_Id
;
337 Analyzer
.Task_Name
:= (others => ' ');
339 -- Compute the task name, and truncate if bigger than Task_Name_Length
341 if Task_Name
'Length <= Task_Name_Length
then
342 Analyzer
.Task_Name
(1 .. Task_Name
'Length) := Task_Name
;
344 Analyzer
.Task_Name
:=
345 Task_Name
(Task_Name
'First ..
346 Task_Name
'First + Task_Name_Length
- 1);
349 Next_Id
:= Next_Id
+ 1;
350 end Initialize_Analyzer
;
357 (SP_Low
: Stack_Address
;
358 SP_High
: Stack_Address
) return Natural
361 if SP_Low
> SP_High
then
362 return Natural (SP_Low
- SP_High
+ 4);
364 return Natural (SP_High
- SP_Low
+ 4);
372 procedure Compute_Result
(Analyzer
: in out Stack_Analyzer
) is
374 -- Change the local variables and parameters of this function with
375 -- super-extra care. The larger the stack frame size of this function
376 -- is, the more an "instrumentation threshold at reading" error is
379 Stack
: Stack_Slots
(1 .. Analyzer
.Pattern_Size
/ Bytes_Per_Pattern
);
380 for Stack
'Address use Analyzer
.Stack_Overlay_Address
;
383 Analyzer
.Topmost_Touched_Mark
:= Analyzer
.Bottom_Pattern_Mark
;
385 if Analyzer
.Pattern_Size
= 0 then
389 -- Look backward from the topmost possible end of the marked stack to
390 -- the bottom of it. The first index not equals to the patterns marks
391 -- the beginning of the used stack.
394 Top_Index
: constant Integer := Top_Slot_Index_In
(Stack
);
395 Bottom_Index
: constant Integer := Bottom_Slot_Index_In
(Stack
);
396 Step
: constant Integer := Pop_Index_Step_For
(Stack
);
402 if Stack
(J
) /= Analyzer
.Pattern
then
403 Analyzer
.Topmost_Touched_Mark
404 := To_Stack_Address
(Stack
(J
)'Address);
408 exit when J
= Bottom_Index
;
414 ---------------------
415 -- Get_Usage_Range --
416 ---------------------
418 function Get_Usage_Range
(Result
: Task_Result
) return String is
419 Min_Used_Str
: constant String := Natural'Image (Result
.Min_Measure
);
420 Max_Used_Str
: constant String := Natural'Image (Result
.Max_Measure
);
422 return "[" & Min_Used_Str
(2 .. Min_Used_Str
'Last) & " -"
423 & Max_Used_Str
& "]";
426 ---------------------
428 ---------------------
430 procedure Output_Result
431 (Result_Id
: Natural;
432 Result
: Task_Result
;
433 Max_Stack_Size_Len
: Natural;
434 Max_Actual_Use_Len
: Natural)
436 Result_Id_Str
: constant String := Natural'Image (Result_Id
);
437 Stack_Size_Str
: constant String := Natural'Image (Result
.Max_Size
);
438 Actual_Use_Str
: constant String := Get_Usage_Range
(Result
);
440 Result_Id_Blanks
: constant
441 String (1 .. Index_Str
'Length - Result_Id_Str
'Length) :=
444 Stack_Size_Blanks
: constant
445 String (1 .. Max_Stack_Size_Len
- Stack_Size_Str
'Length) :=
448 Actual_Use_Blanks
: constant
449 String (1 .. Max_Actual_Use_Len
- Actual_Use_Str
'Length) :=
453 Set_Output
(Standard_Error
);
454 Put
(Result_Id_Blanks
& Natural'Image (Result_Id
));
456 Put
(Result
.Task_Name
);
458 Put
(Stack_Size_Blanks
& Stack_Size_Str
);
460 Put
(Actual_Use_Blanks
& Actual_Use_Str
);
464 ---------------------
466 ---------------------
468 procedure Output_Results
is
469 Max_Stack_Size
: Natural := 0;
470 Max_Actual_Use_Result_Id
: Natural := Result_Array
'First;
471 Max_Stack_Size_Len
, Max_Actual_Use_Len
: Natural := 0;
473 Task_Name_Blanks
: constant
474 String (1 .. Task_Name_Length
- Task_Name_Str
'Length) :=
478 Set_Output
(Standard_Error
);
480 if Compute_Environment_Task
then
481 Compute_Result
(Environment_Task_Analyzer
);
482 Report_Result
(Environment_Task_Analyzer
);
485 if Result_Array
'Length > 0 then
487 -- Computes the size of the largest strings that will get displayed,
488 -- in order to do correct column alignment.
490 for J
in Result_Array
'Range loop
491 exit when J
>= Next_Id
;
493 if Result_Array
(J
).Max_Measure
494 > Result_Array
(Max_Actual_Use_Result_Id
).Max_Measure
496 Max_Actual_Use_Result_Id
:= J
;
499 if Result_Array
(J
).Max_Size
> Max_Stack_Size
then
500 Max_Stack_Size
:= Result_Array
(J
).Max_Size
;
504 Max_Stack_Size_Len
:= Natural'Image (Max_Stack_Size
)'Length;
506 Max_Actual_Use_Len
:=
507 Get_Usage_Range
(Result_Array
(Max_Actual_Use_Result_Id
))'Length;
509 -- Display the output header. Blanks will be added in front of the
513 Stack_Size_Blanks
: constant
514 String (1 .. Max_Stack_Size_Len
- Stack_Size_Str
'Length) :=
517 Stack_Usage_Blanks
: constant
518 String (1 .. Max_Actual_Use_Len
- Actual_Size_Str
'Length) :=
522 if Stack_Size_Str
'Length > Max_Stack_Size_Len
then
523 Max_Stack_Size_Len
:= Stack_Size_Str
'Length;
526 if Actual_Size_Str
'Length > Max_Actual_Use_Len
then
527 Max_Actual_Use_Len
:= Actual_Size_Str
'Length;
531 (Index_Str
& " | " & Task_Name_Str
& Task_Name_Blanks
& " | "
532 & Stack_Size_Str
& Stack_Size_Blanks
& " | "
533 & Stack_Usage_Blanks
& Actual_Size_Str
);
538 -- Now display the individual results
540 for J
in Result_Array
'Range loop
541 exit when J
>= Next_Id
;
543 (J
, Result_Array
(J
), Max_Stack_Size_Len
, Max_Actual_Use_Len
);
546 -- Case of no result stored, still display the labels
550 (Index_Str
& " | " & Task_Name_Str
& Task_Name_Blanks
& " | "
551 & Stack_Size_Str
& " | " & Actual_Size_Str
);
560 procedure Report_Result
(Analyzer
: Stack_Analyzer
) is
561 Result
: Task_Result
:=
562 (Task_Name
=> Analyzer
.Task_Name
,
563 Max_Size
=> Analyzer
.Stack_Size
,
567 Overflow_Guard
: constant Integer :=
569 - Stack_Size
(Analyzer
.Top_Pattern_Mark
, Analyzer
.Bottom_Of_Stack
);
572 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 Result
.Min_Measure
:= Analyzer
.Stack_Size
- Overflow_Guard
;
578 Result
.Max_Measure
:= Analyzer
.Stack_Size
;
580 Result
.Min_Measure
:= Stack_Size
581 (Analyzer
.Topmost_Touched_Mark
,
582 Analyzer
.Bottom_Of_Stack
);
583 Result
.Max_Measure
:= Result
.Min_Measure
+ Overflow_Guard
;
586 if Analyzer
.Result_Id
in Result_Array
'Range then
588 -- If the result can be stored, then store it in Result_Array
590 Result_Array
(Analyzer
.Result_Id
) := Result
;
593 -- If the result cannot be stored, then we display it right away
596 Result_Str_Len
: constant Natural :=
597 Get_Usage_Range
(Result
)'Length;
598 Size_Str_Len
: constant Natural :=
599 Natural'Image (Analyzer
.Stack_Size
)'Length;
601 Max_Stack_Size_Len
: Natural;
602 Max_Actual_Use_Len
: Natural;
605 -- Take either the label size or the number image size for the
606 -- size of the column "Stack Size".
608 if Size_Str_Len
> Stack_Size_Str
'Length then
609 Max_Stack_Size_Len
:= Size_Str_Len
;
611 Max_Stack_Size_Len
:= Stack_Size_Str
'Length;
614 -- Take either the label size or the number image size for the
615 -- size of the column "Stack Usage"
617 if Result_Str_Len
> Actual_Size_Str
'Length then
618 Max_Actual_Use_Len
:= Result_Str_Len
;
620 Max_Actual_Use_Len
:= Actual_Size_Str
'Length;
632 end System
.Stack_Usage
;