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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
|
------------------------------------------------------------------------------
-- --
-- GNATCHECK COMPONENTS --
-- --
-- ASIS_UL.SOURCE_TABLE.GNATCHECK_PROCESSING --
-- --
-- B o d y --
-- --
-- Copyright (C) 2004-2014, AdaCore --
-- --
-- GNATCHECK is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or ( at your option) any later --
-- version. GNATCHECK is distributed in the hope that it will be useful, --
-- but WITHOUT 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 COPYING3. If --
-- not, go to http://www.gnu.org/licenses for a complete copy of the --
-- license. --
-- --
-- GNATCHECK is maintained by AdaCore (http://www.adacore.com). --
-- --
------------------------------------------------------------------------------
pragma Ada_2012;
with Text_IO;
with Ada.Characters.Handling; use Ada.Characters.Handling;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with Asis; use Asis;
with Asis.Ada_Environments;
with Asis.Compilation_Units; use Asis.Compilation_Units;
with Asis.Elements; use Asis.Elements;
with Asis.Errors;
with Asis.Exceptions;
with Asis.Extensions; use Asis.Extensions;
with Asis.Extensions.Strings; use Asis.Extensions.Strings;
with Asis.Implementation;
with Asis.Set_Get;
with Asis.Text; use Asis.Text;
with ASIS_UL.Common; use ASIS_UL.Common;
with Gnatcheck.Source_Checks;
with ASIS_UL.Debug; use ASIS_UL.Debug;
with ASIS_UL.Environment;
with ASIS_UL.Global_State;
with ASIS_UL.Global_State.CG;
with ASIS_UL.Misc; use ASIS_UL.Misc;
with ASIS_UL.Options; use ASIS_UL.Options;
with ASIS_UL.Output; use ASIS_UL.Output;
with ASIS_UL.Source_Table;
with ASIS_UL.String_Utilities;
with ASIS_UL.Tree_Creation; use ASIS_UL.Tree_Creation;
with ASIS_UL.Utilities; use ASIS_UL.Utilities;
with Gnatcheck.Compiler; use Gnatcheck.Compiler;
with Gnatcheck.Diagnoses;
with Gnatcheck.Diagnoses_Old;
with Gnatcheck.Options;
with Gnatcheck.Rules; use Gnatcheck.Rules;
with Gnatcheck.Rules.Traversing; use Gnatcheck.Rules.Traversing;
with Gnatcheck.Traversal_Stack;
package body ASIS_UL.Source_Table.Gnatcheck_Processing is
------------------------
-- Local subprograms --
------------------------
procedure Process_Sources_From_Table (Only_Bodies : Boolean);
-- Processes sources stores in the sources table trying to minimize
-- compilations needed to create the tree files. If Only_Bodies is set ON,
-- only files with .adb suffixes are compiled for the trees.
procedure Process_Source (SF : SF_Id; Only_Bodies : Boolean);
-- Processes the source file stored under SF index into source file table.
-- The caller is responsible to keep the actual parameter inside the
-- range of the existing table entries. The processing consists of
-- creating the tree file for this source, and if the tree is successfully
-- created, then the ASIS Compilation Unit corresponding to this source
-- is processed. Then this routine tries to locate in the set of ASIS
-- Compilation Units representing by this tree units corresponding to some
-- other sources stored in the source table, and to process all these
-- units. When the processing is complete, the tree file and the
-- corresponding ALI file are deleted from the temporary directory.
-- The Only_Bodies flag is used to optimize the search for the sources for
-- parallel tree creations.
procedure Traverse_Source
(CU : Asis.Compilation_Unit;
SF : SF_Id);
-- Implements the general ASIS Compilation Unit traversal algorithm:
-- traverses the ASIS Compilation Unit CU contained in the source file SF,
-- checks all the active rules, collects the information needed to create
-- global structure. Sets SF status to Processed.
----------------------
-- Define_Exit_Code --
----------------------
procedure Define_Exit_Code is
begin
if Gnatcheck.Diagnoses.Detected_Non_Exempted_Violations > 0 then
Exit_Code := E_Violation;
elsif Tool_Failures = 0 then
Exit_Code := E_Success;
else
Exit_Code := E_Non_Trusted;
end if;
end Define_Exit_Code;
--------------------
-- Exit_Gnatcheck --
--------------------
procedure Exit_Gnatcheck (Exit_Code : Exit_Code_Type) is
begin
if Debug_Flag_C then
if ASIS_UL.Options.Incremental_Mode then
Text_IO.Put ("(outer)");
end if;
if ASIS_UL.Options.Mimic_gcc then
Text_IO.Put ("(inner)");
end if;
Text_IO.Put (" exiting");
if Exit_Code /= E_Success then
Text_IO.Put (" with exit code " & Exit_Code'Img);
end if;
Text_IO.Put_Line (".");
end if;
if ASIS_UL.Options.Test_Mode then
if Tool_Failures = 0 then
OS_Exit (0);
else
OS_Exit (1);
end if;
else
case Exit_Code is
when E_Success => OS_Exit (0);
when E_Violation => OS_Exit (if Mimic_gcc then 0 else 1);
-- For the inner invocation in an incremental build, we don't want
-- rule violations to stop the builder from continuing to process
-- more files.
when E_Fatal => OS_Exit (2);
when E_Non_Trusted => OS_Exit (2);
when No_Check => OS_Exit (3);
end case;
end if;
end Exit_Gnatcheck;
--------------
-- Finalize --
--------------
procedure Finalize is
begin
if not ASIS_UL.Options.Nothing_To_Do then
if ASIS_UL.Options.Buld_Call_Graph then
-- When creating a global data structure, we may have added new
-- files (as needed files) in the sources table, and nodes in
-- the global structure may refer to these added source as
-- their enclosing sources. So we have to add the corresponding
-- nodes to the diagnosis mapping table.
for J in Last_Argument_Source + 1 .. Last_Source loop
Gnatcheck.Diagnoses_Old.Add_Line_To_Mapping_Table;
end loop;
if not ASIS_UL.Global_State.CG.Traverse_Renamings_Done then
ASIS_UL.Global_State.CG.Traverse_Renamings;
end if;
if Do_Transitive_Closure then
if ASIS_UL.Options.Debug_Mode then
Info ("Call graph closure ... ");
end if;
ASIS_UL.Global_State.CG.Transitive_Closure;
end if;
if ASIS_UL.Options.Debug_Mode then
Info ("...Done");
end if;
end if;
Gnatcheck.Rules.Traversing.Check_Global_Rules;
if ASIS_UL.Options.Debug_Mode then
ASIS_UL.Global_State.Print_Global_Structure;
end if;
if ASIS_UL.Options.Debug_Mode then
Info ("Generate report ... ");
end if;
if Gnatcheck.Options.Qualification_Report then
Gnatcheck.Diagnoses.Generate_Qualification_Report;
else
Gnatcheck.Diagnoses_Old.Generate_Regular_Report;
end if;
ASIS_UL.Output.Close_Report_File;
if ASIS_UL.Options.Debug_Mode then
Info ("...Done");
end if;
if Tool_Failures > 0 or else Debug_Mode then
Info ("Total gnatcheck failures :" & Tool_Failures'Img);
end if;
end if;
end Finalize;
----------------
-- Initialize --
----------------
procedure Initialize is
use String_Utilities.String_Vectors;
begin
if Incremental_Mode then
Change_Dir (ASIS_UL.Environment.Tool_Current_Dir);
Append (ASIS_UL.Environment.Extra_Inner_Pre_Args,
String'("-asis-tool-args"));
Append (ASIS_UL.Environment.Extra_Inner_Post_Args,
String'("-asis-tool-args"));
return;
end if;
Gnatcheck.Diagnoses.Init_Exemptions;
Gnatcheck.Diagnoses_Old.Create_Mapping_Table;
if ASIS_UL.Options.Buld_Call_Graph then
ASIS_UL.Global_State.Initialize;
end if;
if Check_Restrictions or else Use_gnatw_Option then
Create_Restriction_Pragmas_File;
end if;
Gnatcheck.Traversal_Stack.Initialize;
end Initialize;
--------------------
-- Process_Source --
--------------------
procedure Process_Source (SF : SF_Id; Only_Bodies : Boolean) is
-- Compare the following to Process_Source in
-- ASIS_UL.Source_Table.Processing. The two should be kept in synch;
-- they cannot easily be merged.
Add_Needed_Sources : constant Boolean := Mimic_gcc;
Keep_ALI_Files : constant Boolean := Mimic_gcc;
procedure Process_Subunits (CU : Asis.Compilation_Unit);
-- Assuming that CU is of Compilation_Unit kind that may have subunits,
-- recursively process all the subunits that are the arguments of the
-- tool (or, if Add_Needed_Sources is True, all subunits whether or not
-- they are arguments).
procedure Process_Needed_Source (Needed_CU : Asis.Compilation_Unit);
-- If Add_Needed_Sources is True, add the needed Source_File to the
-- Source_Table if it's not already there. Then do ASIS_Processing on it
-- if it is now there (i.e. was already there or is newly added).
--
-- When Process_Source is called for a library unit body, it calls
-- Process_Needed_Source for the corresponding spec and for all
-- subunits. In Mimic_gcc mode, Process_Source is called ONLY for bodies
-- (and specs without bodies). For library unit bodies, it is important
-- that the spec (if any) be processed as part of that, using the tree
-- for the body, because otherwise the tree file for the spec would
-- overwrite the one for the body, which would confuse
-- gnatmake. Subunits are also processed as part of the library unit
-- body.
procedure Process_Needed_Source (Needed_CU : Asis.Compilation_Unit) is
File_Name : constant String :=
Normalize_Pathname
(To_String (Text_Name (Needed_CU)),
Resolve_Links => False,
Case_Sensitive => True);
Needed_SF : SF_Id := File_Find (File_Name);
begin
if Add_Needed_Sources and then not Present (Needed_SF) then
Needed_SF := Add_Needed_Source (File_Name);
Gnatcheck.Diagnoses_Old.Add_Line_To_Mapping_Table;
Total_Sources := Natural (Last_Source);
Sources_Left := Sources_Left + 1;
end if;
pragma Assert (if Add_Needed_Sources then Present (Needed_SF));
if Present (Needed_SF)
and then Source_Status (Needed_SF) = Waiting
then
Output_Source (Needed_SF);
Set_Current_SF (Needed_SF);
Traverse_Source (Needed_CU, Needed_SF);
if Source_Status (Needed_SF) in Waiting | Tree_Is_Ready then
Set_Source_Status (Needed_SF, Processed);
end if;
end if;
exception
when Ex :
Asis.Exceptions.ASIS_Inappropriate_Context |
Asis.Exceptions.ASIS_Inappropriate_Container |
Asis.Exceptions.ASIS_Inappropriate_Compilation_Unit |
Asis.Exceptions.ASIS_Inappropriate_Element |
Asis.Exceptions.ASIS_Inappropriate_Line |
Asis.Exceptions.ASIS_Inappropriate_Line_Number |
Asis.Exceptions.ASIS_Failed =>
ASIS_UL.Output.Report_Unhandled_ASIS_Exception (Ex);
Source_Clean_Up (Needed_SF, Keep_ALI_Files);
raise Fatal_Error;
when Ex : others =>
Error
("unknown bug detected when processing " &
Source_Name (Needed_SF));
Error_No_Tool_Name
("Please submit bug report to report@adacore.com");
Report_Unhandled_Exception (Ex);
Source_Clean_Up (Needed_SF, Keep_ALI_Files);
raise Fatal_Error;
end Process_Needed_Source;
procedure Process_Subunits (CU : Asis.Compilation_Unit) is
Subunit_List : constant Asis.Compilation_Unit_List := Subunits (CU);
begin
for J in Subunit_List'Range loop
if Asis.Set_Get.Kind (Subunit_List (J)) /= A_Nonexistent_Body then
Process_Needed_Source (Subunit_List (J));
Process_Subunits (Subunit_List (J));
end if;
end loop;
end Process_Subunits;
CU_Tmp : Asis.Compilation_Unit;
Success : Boolean;
pragma Warnings (Off, Success);
use type Asis.Errors.Error_Kinds;
Compiler_Out_File_Name : constant String :=
Get_Compiler_Out_File_Name (SF);
-- Start of processing for Process_Source
begin
-- The current directory is Tool_Temp_Dir. In Mimic_gcc mode, we need to
-- switch to Tool_Current_Dir so the ALI file ends up in the right
-- directory. We switch back at the end (see <<Done>> below).
if Mimic_gcc then
pragma Assert (Is_Argument_Source (SF));
Change_Dir (ASIS_UL.Environment.Tool_Current_Dir);
end if;
Output_Source (SF);
-- We always send compiler output to temporary file to be able to
-- store compiler error messages and to include them in final gnatcheck
-- report
if Source_Status (SF) = Waiting then
Create_Tree
(SF,
Success,
Compiler_Out => Compiler_Out_File_Name,
All_Warnings_Off => Suppess_Compiler_Check);
end if;
Start_Tree_Creations
(SF,
Only_Bodies,
Need_Compiler_Output => True,
All_Warnings_Off => Suppess_Compiler_Check);
if Source_Status (SF) in
Not_A_Legal_Source |
Not_A_Legal_Source_Needs_Listing_Processing
then
if Source_Status (SF) =
Not_A_Legal_Source_Needs_Listing_Processing
then
Set_Source_Status (SF, Not_A_Legal_Source);
end if;
if Analyze_Compiler_Output then
Analyze_Error_Messages
(Compiler_Out_File_Name,
Wrong_Option => Success);
if Success then
-- This means that wrong (style) parameters have been specified
-- as compiler-related rule parameter, so the same error will
-- be detected when compiling another source, so:
raise Fatal_Error;
end if;
end if;
Gnatcheck.Diagnoses.Store_Error_Messages (Compiler_Out_File_Name, SF);
goto Done;
end if;
if Use_Parallel_Tree_Creation then
Asis.Ada_Environments.Associate
(The_Context => The_Context,
Name => "",
Parameters => "-C1 "
& To_Wide_String
(Image (Integer (SF)) & Directory_Separator &
Suffixless_Name (SF) & ".adt"));
else
Asis.Ada_Environments.Associate
(The_Context => The_Context,
Name => "",
Parameters => "-C1 "
& To_Wide_String (Suffixless_Name (SF) & ".adt"));
end if;
begin
Asis.Ada_Environments.Open (The_Context);
Success := True;
if Debug_Flag_T then
Print_Tree_Sources;
end if;
exception
when Asis.Exceptions.ASIS_Failed =>
-- The only known situation when we can not open a C1 context for
-- newly created tree is recompilation of System (see D617-017)
if Asis.Implementation.Status = Asis.Errors.Use_Error
and then
Asis.Implementation.Diagnosis = "Internal implementation error:"
& " Asis.Ada_Environments.Open - System is recompiled"
then
Error ("can not process redefinition of System in " &
Source_Name (SF));
Set_Source_Status (SF, Not_A_Legal_Source);
Success := False;
else
raise;
end if;
end;
if Success then
The_CU := Main_Unit_In_Current_Tree (The_Context);
if Unit_Origin (The_CU) /= An_Application_Unit
and then
not Process_RTL_Units
then
Error ("cannot process RTL unit " & Source_Name (SF) &
" Use '-a' option for processing RTL components");
Set_Source_Status (SF, Processed);
else
if Mimic_gcc then
if CU_Requires_Body (The_CU)
or else Unit_Class (The_CU) = A_Separate_Body
then
if Debug_Flag_V then
Text_IO.Put_Line ("ignoring " & Short_Source_Name (SF));
end if;
Set_Source_Status (SF, Processed);
goto Done;
else
if Debug_Flag_V then
Text_IO.Put_Line ("doing " & Short_Source_Name (SF));
end if;
end if;
end if;
Set_Current_SF (SF);
Traverse_Source (The_CU, SF);
if Mimic_gcc then
-- If it's a library unit body, process the spec
if Unit_Class (The_CU) in A_Public_Body | A_Private_Body then
CU_Tmp := Corresponding_Declaration (The_CU);
if not Is_Nil (CU_Tmp) then
Process_Needed_Source (CU_Tmp);
end if;
end if;
-- If it's a body, process any subunits
if Unit_Class (The_CU) in
A_Public_Body | A_Private_Body | A_Separate_Body
then
Process_Subunits (The_CU);
end if;
end if;
end if;
end if;
if Analyze_Compiler_Output then
Analyze_Compiler_Warnings (Compiler_Out_File_Name, SF, Success);
if not Success then
Set_Source_Status (SF, Error_Detected);
end if;
end if;
if not Debug_Flag_N
and then
Is_Regular_File (Compiler_Out_File_Name)
then
Delete_File (Compiler_Out_File_Name, Success);
end if;
<<Done>>
Source_Clean_Up (SF, Keep_ALI_Files);
if Mimic_gcc then
Change_Dir (ASIS_UL.Environment.Tool_Temp_Dir.all);
end if;
exception
when Fatal_Error =>
raise;
when Ex : Asis.Exceptions.ASIS_Inappropriate_Context |
Asis.Exceptions.ASIS_Inappropriate_Container |
Asis.Exceptions.ASIS_Inappropriate_Compilation_Unit |
Asis.Exceptions.ASIS_Inappropriate_Element |
Asis.Exceptions.ASIS_Inappropriate_Line |
Asis.Exceptions.ASIS_Inappropriate_Line_Number |
Asis.Exceptions.ASIS_Failed =>
ASIS_UL.Output.Report_Unhandled_ASIS_Exception (Ex);
raise Fatal_Error;
when Ex : others =>
Error ("unknown bug detected when processing " & Source_Name (SF));
Error_No_Tool_Name
("Please submit bug report to report@adacore.com");
Report_Unhandled_Exception (Ex);
Source_Clean_Up (SF, Keep_ALI_Files);
raise Fatal_Error;
end Process_Source;
---------------------
-- Process_Sources --
---------------------
procedure Process_Sources is
begin
pragma Assert (not Incremental_Mode);
if not Nothing_To_Do then
Asis.Implementation.Initialize ("-k -asis05 -ws -sv");
Process_Sources_From_Table (Only_Bodies => True);
Process_Sources_From_Table (Only_Bodies => False);
Asis.Implementation.Finalize;
end if;
end Process_Sources;
--------------------------------
-- Process_Sources_From_Table --
--------------------------------
procedure Process_Sources_From_Table (Only_Bodies : Boolean) is
Next_SF : SF_Id;
begin
Reset_Source_Iterator;
loop
Next_SF := Next_Non_Processed_Source (Only_Bodies);
exit when not Present (Next_SF);
Process_Source (Next_SF, Only_Bodies);
Check_Tree_Creations;
end loop;
end Process_Sources_From_Table;
---------------------
-- Traverse_Source --
---------------------
procedure Traverse_Source
(CU : Asis.Compilation_Unit;
SF : SF_Id)
is
Program_Unit : constant Asis.Element := Unit_Declaration (CU);
Contex_Clause : constant Asis.Element_List :=
Context_Clause_Elements (CU, True);
Comp_Pragmas : constant Asis.Element_List :=
Compilation_Pragmas (CU);
First_Pragma_After : List_Index := Comp_Pragmas'Last + 1;
Unit_Span : constant Asis.Text.Span :=
Element_Span (Program_Unit);
-- We also may have to check pragmas after the unit, that's why we need
-- these objects.
Check_Control : Traverse_Control := Continue;
Check_State : Rule_Traversal_State :=
(Initial_State, False, SF, 0, Nil_String_Loc, 0, 0, 0);
begin
if Mimic_gcc and then (Verbose_Mode or else Debug_Flag_V) then
Text_IO.Put_Line (" checking " & Short_Source_Name (SF));
end if;
-- if Gnatcheck.Options.Active_Rule_Present then
-- ??? we need to process exemptions sections for compiler checks anyway
Gnatcheck.Diagnoses.Init_Postponed_Check_Exemptions;
if Gnatcheck.Options.Analyse_Source_Text then
Gnatcheck.Source_Checks.Init_Source_Text_Checks (Program_Unit);
end if;
for J in Comp_Pragmas'Range loop
if Is_Equal (Enclosing_Compilation_Unit (Comp_Pragmas (J)), CU)
-- condition needed to filter out pragmas from configuration file
and then
Unit_Span.Last_Line <=
Element_Span (Comp_Pragmas (J)).First_Line
then
First_Pragma_After := J;
exit;
end if;
end loop;
for J in Contex_Clause'Range loop
Check_Rules (Contex_Clause (J), Check_Control, Check_State);
end loop;
Check_Rules (Program_Unit, Check_Control, Check_State);
for J in First_Pragma_After .. Comp_Pragmas'Last loop
if Is_Equal (Enclosing_Compilation_Unit (Comp_Pragmas (J)), CU) then
-- We may have configuration pragmas in the list
Check_Rules (Comp_Pragmas (J), Check_Control, Check_State);
end if;
end loop;
if Gnatcheck.Options.Analyse_Source_Text then
Gnatcheck.Source_Checks.Check_Text_Rules_For_Remaining_Lines
(Unit => Program_Unit,
State => Check_State);
end if;
Gnatcheck.Diagnoses.Check_Unclosed_Rule_Exemptions (SF, Program_Unit);
-- end if;
if Source_Status (SF) in Waiting | Tree_Is_Ready then
Set_Source_Status (SF, Processed);
end if;
exception
when others =>
Set_Source_Status (SF, Error_Detected);
Gnatcheck.Diagnoses.Store_Diagnosis
(Text => Short_Source_Name (SF) & ":1:1: " &
Tool_Name.all & " internal error",
Diagnosis_Kind => Gnatcheck.Diagnoses.Compiler_Error,
SF => SF);
end Traverse_Source;
end ASIS_UL.Source_Table.Gnatcheck_Processing;
|