1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
------------------------------------------------------------------------------
-- --
-- GNATELIM COMPONENTS
-- --
-- ASIS_UL.SOURCE_TABLE.PROCESSING.FINALIZE --
-- --
-- B o d y --
-- --
-- Copyright (C) 2008-2009, AdaCore --
-- --
-- GNATELIM is free software; you can redistribute it and/or modify it --
-- under the terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 2 or (at your option) any later --
-- version. GNATELIM is distributed in the hope that it will be useful, but --
-- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABI- --
-- LITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Li- --
-- cense 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, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- The original version of Gnatelim was developed by Alain Le Guennec --
-- It is now maintained by AdaCore (http://www.adacore.com) --
-- --
------------------------------------------------------------------------------
with ASIS_UL.Global_State;
with ASIS_UL.Global_State.CG;
with ASIS_UL.Global_State.CG.Gnatelim;
with ASIS_UL.Output;
with Gnatelim.Output;
separate (ASIS_UL.Source_Table.Processing)
procedure Finalize is
begin
ASIS_UL.Global_State.CG.Transitive_Closure;
ASIS_UL.Global_State.CG.Gnatelim.Mark_Used_Subprograms;
if Debug_Mode then
ASIS_UL.Global_State.Print_Global_Structure;
Source_Table_Debug_Image;
end if;
Gnatelim.Output.Report_Unused_Subprograms;
ASIS_UL.Output.Close_Report_File;
if Tool_Failures > 0 or else Debug_Mode then
Info ("Total tool failures :" & Tool_Failures'Img);
end if;
end Finalize;
|