config.gcc: Reorganize --with-cpu section.
[official-gcc.git] / gcc / ada / g-debuti.adb
blob9266c0cf1cc3fdb6cae93ce998c74441f70d3048
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT LIBRARY COMPONENTS --
4 -- --
5 -- G N A T . D E B U G _ U T I L I T I E S --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1997-2002 Ada Core Technologies, Inc. --
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 2, 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. 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 GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
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. --
28 -- --
29 -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). --
30 -- --
31 ------------------------------------------------------------------------------
33 with System; use System;
34 with System.Storage_Elements; use System.Storage_Elements;
36 package body GNAT.Debug_Utilities is
38 --------------------------
39 -- Image (address case) --
40 --------------------------
42 function Image (A : Address) return String is
43 S : String (1 .. Address_Image_Length);
44 P : Natural := S'Last - 1;
45 N : Integer_Address := To_Integer (A);
46 U : Natural := 0;
48 H : constant array (Integer range 0 .. 15) of Character :=
49 "0123456789ABCDEF";
51 begin
52 S (S'Last) := '#';
54 while P > 3 loop
55 if U = 4 then
56 S (P) := '_';
57 P := P - 1;
58 U := 1;
60 else
61 U := U + 1;
62 end if;
64 S (P) := H (Integer (N mod 16));
65 P := P - 1;
66 N := N / 16;
67 end loop;
69 S (1 .. 3) := "16#";
70 return S;
71 end Image;
73 -------------------------
74 -- Image (string case) --
75 -------------------------
77 function Image (S : String) return String is
78 W : String (1 .. 2 * S'Length + 2);
79 P : Positive := 1;
81 begin
82 W (1) := '"';
84 for J in S'Range loop
85 if S (J) = '"' then
86 P := P + 1;
87 W (P) := '"';
88 end if;
90 P := P + 1;
91 W (P) := S (J);
92 end loop;
94 P := P + 1;
95 W (P) := '"';
96 return W (1 .. P);
97 end Image;
99 -----------
100 -- Value --
101 -----------
103 function Value (S : String) return System.Address is
104 N : constant Integer_Address := Integer_Address'Value (S);
106 begin
107 return To_Address (N);
108 end Value;
110 end GNAT.Debug_Utilities;