1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . T R A C E B A C K --
9 -- Copyright (C) 1999-2014, AdaCore --
11 -- GNAT 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 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- This version uses System.Machine_State_Operations routines
34 with System
.Machine_State_Operations
;
36 package body System
.Traceback
is
38 use System
.Machine_State_Operations
;
40 -- procedure Call_Chain
41 -- (Traceback : System.Address;
44 -- Exclude_Min : System.Address := System.Null_Address;
45 -- Exclude_Max : System.Address := System.Null_Address;
46 -- Skip_Frames : Natural := 1);
47 -- -- Same as the exported version, but takes Traceback as an Address
48 -- ???See declaration in the spec for why this is temporarily commented out.
55 (Traceback
: System
.Address
;
58 Exclude_Min
: System
.Address
:= System
.Null_Address
;
59 Exclude_Max
: System
.Address
:= System
.Null_Address
;
60 Skip_Frames
: Natural := 1)
62 type Tracebacks_Array
is array (1 .. Max_Len
) of Code_Loc
;
63 pragma Suppress_Initialization
(Tracebacks_Array
);
68 Trace
: Tracebacks_Array
;
69 for Trace
'Address use Traceback
;
71 N_Skips
: Natural := 0;
74 M
:= Allocate_Machine_State
;
75 Set_Machine_State
(M
);
77 -- Skip the requested number of frames
80 Code
:= Get_Code_Loc
(M
);
81 exit when Code
= Null_Address
or else N_Skips
= Skip_Frames
;
84 N_Skips
:= N_Skips
+ 1;
87 -- Now, record the frames outside the exclusion bounds, updating
88 -- the Len output value along the way.
92 Code
:= Get_Code_Loc
(M
);
93 exit when Code
= Null_Address
or else Len
= Max_Len
;
95 if Code
< Exclude_Min
or else Code
> Exclude_Max
then
103 Free_Machine_State
(M
);
107 (Traceback
: in out System
.Traceback_Entries
.Tracebacks_Array
;
110 Exclude_Min
: System
.Address
:= System
.Null_Address
;
111 Exclude_Max
: System
.Address
:= System
.Null_Address
;
112 Skip_Frames
: Natural := 1)
116 (Traceback
'Address, Max_Len
, Len
,
117 Exclude_Min
, Exclude_Max
,
119 -- Skip one extra frame to skip the other Call_Chain entry as well
121 Skip_Frames
=> Skip_Frames
+ 1);
128 function C_Call_Chain
129 (Traceback
: System
.Address
;
130 Max_Len
: Natural) return Natural
134 Call_Chain
(Traceback
, Max_Len
, Val
);
138 end System
.Traceback
;