1 |
706 |
jeremybenn |
------------------------------------------------------------------------------
|
2 |
|
|
-- --
|
3 |
|
|
-- GNAT RUN-TIME COMPONENTS --
|
4 |
|
|
-- --
|
5 |
|
|
-- G N A T . T R A C E B A C K . S Y M B O L I C --
|
6 |
|
|
-- --
|
7 |
|
|
-- B o d y --
|
8 |
|
|
-- --
|
9 |
|
|
-- Copyright (C) 1999-2011, AdaCore --
|
10 |
|
|
-- --
|
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. --
|
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 |
|
|
-- GNAT was originally developed by the GNAT team at New York University. --
|
28 |
|
|
-- Extensive contributions were provided by Ada Core Technologies Inc. --
|
29 |
|
|
-- --
|
30 |
|
|
------------------------------------------------------------------------------
|
31 |
|
|
|
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.
|
35 |
|
|
|
36 |
|
|
with Ada.Exceptions.Traceback; use Ada.Exceptions.Traceback;
|
37 |
|
|
with System.Address_Image;
|
38 |
|
|
|
39 |
|
|
package body GNAT.Traceback.Symbolic is
|
40 |
|
|
|
41 |
|
|
------------------------
|
42 |
|
|
-- Symbolic_Traceback --
|
43 |
|
|
------------------------
|
44 |
|
|
|
45 |
|
|
function Symbolic_Traceback (Traceback : Tracebacks_Array) return String
|
46 |
|
|
is
|
47 |
|
|
begin
|
48 |
|
|
if Traceback'Length = 0 then
|
49 |
|
|
return "";
|
50 |
|
|
|
51 |
|
|
else
|
52 |
|
|
declare
|
53 |
|
|
Img : String := System.Address_Image (Traceback (Traceback'First));
|
54 |
|
|
|
55 |
|
|
Result : String (1 .. (Img'Length + 3) * Traceback'Length);
|
56 |
|
|
Last : Natural := 0;
|
57 |
|
|
|
58 |
|
|
begin
|
59 |
|
|
for J in Traceback'Range loop
|
60 |
|
|
Img := System.Address_Image (Traceback (J));
|
61 |
|
|
Result (Last + 1 .. Last + 2) := "0x";
|
62 |
|
|
Last := Last + 2;
|
63 |
|
|
Result (Last + 1 .. Last + Img'Length) := Img;
|
64 |
|
|
Last := Last + Img'Length + 1;
|
65 |
|
|
Result (Last) := ASCII.LF;
|
66 |
|
|
end loop;
|
67 |
|
|
|
68 |
|
|
return Result (1 .. Last);
|
69 |
|
|
end;
|
70 |
|
|
end if;
|
71 |
|
|
end Symbolic_Traceback;
|
72 |
|
|
|
73 |
|
|
function Symbolic_Traceback (E : Exception_Occurrence) return String
|
74 |
|
|
is
|
75 |
|
|
begin
|
76 |
|
|
return Symbolic_Traceback (Tracebacks (E));
|
77 |
|
|
end Symbolic_Traceback;
|
78 |
|
|
|
79 |
|
|
end GNAT.Traceback.Symbolic;
|