home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gnat-2.06-src.tgz
/
tar.out
/
fsf
/
gnat
/
ada
/
butil.adb
< prev
next >
Wrap
Text File
|
1996-09-28
|
5KB
|
152 lines
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- B U T I L --
-- --
-- B o d y --
-- --
-- $Revision: 1.10 $ --
-- --
-- Copyright (c) 1992,1993,1994 NYU, All Rights Reserved --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
-- --
------------------------------------------------------------------------------
with Namet; use Namet;
with Output; use Output;
package body Butil is
------------------------
-- Is_Predefined_Unit --
------------------------
function Is_Predefined_Unit return Boolean is
begin
return (Name_Len > 3
and then Name_Buffer (1 .. 4) = "ada.")
or else (Name_Len > 6
and then Name_Buffer (1 .. 7) = "system.")
or else (Name_Len > 10
and then Name_Buffer (1 .. 11) = "interfaces.")
or else (Name_Len > 3
and then Name_Buffer (1 .. 4) = "ada%")
or else (Name_Len > 8
and then Name_Buffer (1 .. 9) = "calendar%")
or else (Name_Len > 9
and then Name_Buffer (1 .. 10) = "direct_io%")
or else (Name_Len > 10
and then Name_Buffer (1 .. 11) = "interfaces%")
or else (Name_Len > 13
and then Name_Buffer (1 .. 14) = "io_exceptions%")
or else (Name_Len > 12
and then Name_Buffer (1 .. 13) = "machine_code%")
or else (Name_Len > 13
and then Name_Buffer (1 .. 14) = "sequential_io%")
or else (Name_Len > 6
and then Name_Buffer (1 .. 7) = "system%")
or else (Name_Len > 7
and then Name_Buffer (1 .. 8) = "text_io%")
or else (Name_Len > 20
and then Name_Buffer (1 .. 21) = "unchecked_conversion%")
or else (Name_Len > 22
and then Name_Buffer (1 .. 23) = "unchecked_deallocation%");
end Is_Predefined_Unit;
-----------
-- Later --
-----------
function Later (T1, T2 : Time_Stamp_Type) return Boolean is
begin
for I in T1'Range loop
if T1 (I) > T2 (I) then
return True;
elsif T1 (I) < T2 (I) then
return False;
end if;
end loop;
return False;
end Later;
----------------
-- Uname_Less --
----------------
function Uname_Less (U1, U2 : Unit_Name_Type) return Boolean is
begin
Get_Name_String (U1);
declare
U1_Name : constant String (1 .. Name_Len) :=
Name_Buffer (1 .. Name_Len);
Min_Length : Natural;
begin
Get_Name_String (U2);
if Name_Len < U1_Name'Last then
Min_Length := Name_Len;
else
Min_Length := U1_Name'Last;
end if;
for I in 1 .. Min_Length loop
if U1_Name (I) > Name_Buffer (I) then
return False;
elsif U1_Name (I) < Name_Buffer (I) then
return True;
end if;
end loop;
return U1_Name'Last < Name_Len;
end;
end Uname_Less;
---------------------
-- Write_Unit_Name --
---------------------
procedure Write_Unit_Name (U : Unit_Name_Type) is
begin
Get_Name_String (U);
Write_Str (Name_Buffer (1 .. Name_Len - 2));
if Name_Buffer (Name_Len) = 's' then
Write_Str (" (spec)");
else
Write_Str (" (body)");
end if;
Name_Len := Name_Len + 5;
end Write_Unit_Name;
end Butil;