2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / s-trasym.adb
blobad5588761d1404a114a93c22a18d9884517ca834
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- S Y S T E M . 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-2014, 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 ------------------------------------------------------------------------------
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 System.Traceback.Symbolic is
41 ------------------------
42 -- Symbolic_Traceback --
43 ------------------------
45 function Symbolic_Traceback
46 (Traceback : System.Traceback_Entries.Tracebacks_Array) return String
48 begin
49 if Traceback'Length = 0 then
50 return "";
52 else
53 declare
54 Img : String := System.Address_Image (Traceback (Traceback'First));
56 Result : String (1 .. (Img'Length + 3) * Traceback'Length);
57 Last : Natural := 0;
59 begin
60 for J in Traceback'Range loop
61 Img := System.Address_Image (Traceback (J));
62 Result (Last + 1 .. Last + 2) := "0x";
63 Last := Last + 2;
64 Result (Last + 1 .. Last + Img'Length) := Img;
65 Last := Last + Img'Length + 1;
66 Result (Last) := ASCII.LF;
67 end loop;
69 return Result (1 .. Last);
70 end;
71 end if;
72 end Symbolic_Traceback;
74 function Symbolic_Traceback
75 (E : Ada.Exceptions.Exception_Occurrence) return String
77 begin
78 return Symbolic_Traceback (Ada.Exceptions.Traceback.Tracebacks (E));
79 end Symbolic_Traceback;
81 end System.Traceback.Symbolic;