1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- G N A T . T R A C E B A C K . S Y M B O L I C --
9 -- Copyright (C) 1999-2012, 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 is the default implementation for platforms where the full capability
33 -- is not supported. It returns tracebacks as lists of LF separated strings of
34 -- the form "0x..." corresponding to the addresses.
36 with Ada
.Exceptions
.Traceback
; use Ada
.Exceptions
.Traceback
;
37 with System
.Address_Image
;
39 package body GNAT
.Traceback
.Symbolic
is
41 ------------------------
42 -- Symbolic_Traceback --
43 ------------------------
45 function Symbolic_Traceback
(Traceback
: Tracebacks_Array
) return String is
47 if Traceback
'Length = 0 then
52 Img
: String := System
.Address_Image
(Traceback
(Traceback
'First));
54 Result
: String (1 .. (Img
'Length + 3) * Traceback
'Length);
58 for J
in Traceback
'Range loop
59 Img
:= System
.Address_Image
(Traceback
(J
));
60 Result
(Last
+ 1 .. Last
+ 2) := "0x";
62 Result
(Last
+ 1 .. Last
+ Img
'Length) := Img
;
63 Last
:= Last
+ Img
'Length + 1;
64 Result
(Last
) := ASCII
.LF
;
67 return Result
(1 .. Last
);
70 end Symbolic_Traceback
;
72 function Symbolic_Traceback
(E
: Exception_Occurrence
) return String is
74 return Symbolic_Traceback
(Tracebacks
(E
));
75 end Symbolic_Traceback
;
77 end GNAT
.Traceback
.Symbolic
;