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 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
|
------------------------------------------------------------------------------
-- --
-- GNATCHECK COMPONENTS --
-- --
-- G N A T C H E C K . C O M P I L E R --
-- --
-- B o d y --
-- --
-- Copyright (C) 2005-2017, 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 Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Strings; use Ada.Strings;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with System.Rident;
with Asis.Extensions.Strings; use Asis.Extensions.Strings;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with ASIS_UL.Misc; use ASIS_UL.Misc;
with ASIS_UL.Output; use ASIS_UL.Output;
with Gnatcheck.Diagnoses_Old;
with Gnatcheck.Diagnoses; use Gnatcheck.Diagnoses;
with Gnatcheck.Ids; use Gnatcheck.Ids;
with Gnatcheck.Options;
package body Gnatcheck.Compiler is
Tmp_Options : String_Access;
Style_Options_String : String_Access;
-- Stores parameters of the Style_Checks rule as is.
Warning_Options_String : String_Access;
-- Stores parameters of the Warnings rule as is.
procedure Process_Style_Options (Param : String);
-- Stores Param as parameter of the compiler -gnaty... option as is,
-- (if some -gnaty... parameter has already been stored, appends Param to
-- it.)
function Adjust_Message
(Diag : String;
Message_Kind : Compiler_Message_Kinds;
SF : SF_Id)
return String;
-- Does the following adjustments:
--
-- * Remove from the diagnostic message the reference to the configuration
-- file with restriction pragmas that is created by gnatcheck.
--
-- * If Gnatcheck.Options.Mapping_Mode is ON, annotates the message by
-- adding the compiler check (if for a warning message '.d' is specified,
-- the trailing part that indicates the warning message that causes this
-- warning is removed from the diagnosis, and the corresponding warning
-- parameter is added to the annotation.
--
-- * if '-l' option is set (use full file names), replaces the short file
-- name with the corresponding full name
function Annotation
(Message_Kind : Compiler_Message_Kinds;
Parameter : String)
return String;
-- Returns annotation to be added to the compiler diagnostic message if
-- Gnatcheck.Options.Mapping_Mode is ON. Parameter, if non-empty, is the
-- parameter of '-gnatw' option that causes the diagnosis
function Get_Rule_Id (Check : Compiler_Message_Kinds) return Rule_Id;
-- Returns the Id corresponding to the given compiler check
---------------------------------------------------------
-- Data structures and routines for restriction checks --
---------------------------------------------------------
subtype Option_Parameter is Natural;
package Gnatcheck_Restrictions is new System.Rident;
use Gnatcheck_Restrictions;
-- We cannot use the instantiation of System.Rident in System.Restrictions
-- because of the pragma Discard_Names that does not allow to use
-- Restriction_Id'Value when analyzing gnatcheck restriction parameters.
type Restriction_State is record
Active : Boolean;
Param : String_List_Access;
end record;
-- We can not use Option_Parameter here, because some restrictions (e.g.
-- Max_Task_Entries) may be active and may have zero parameter
Restriction_Setting : array (All_Restrictions) of Restriction_State :=
(others => (False, null));
-- This array represents only restrictions that are values of
-- System.Rident.Restriction_Id. But we need to process restrictions that
-- are not included in values of this type.
type Special_Restriction_Id is
(Not_A_Special_Restriction_Id,
No_Dependence);
subtype All_Special_Restrictions is Special_Restriction_Id range
No_Dependence .. No_Dependence;
-- All special restrictions, excluding Not_A_Special_Restriction_Id.
subtype All_Special_Parameter_Restrictions is Special_Restriction_Id range
No_Dependence .. No_Dependence;
-- All special restrictions that have a parameter
function Needs_Parameter_In_Exemption
(R : Restriction_Id;
SR : Special_Restriction_Id)
return Boolean;
-- Checks if R or SR denotes a restriction that needs a restriction
-- parameter if used in parametric rule exemption (such as
-- 'No_Dependence => Foo).
Special_Restriction_Setting : array (All_Special_Restrictions)
of Boolean := (others => False);
-- This array only indicates if a given special restriction is ON or OFF,
-- we cannot store any restriction parameter information, because
-- parameter format is restriction-specific
package Forbidden_Units_Dictionary is new Simple_String_Dictionary
(Dictionary_Name => "Forbidden units dictionary");
--------------------
-- Adjust_Message --
--------------------
function Adjust_Message
(Diag : String;
Message_Kind : Compiler_Message_Kinds;
SF : SF_Id)
return String
is
Result : constant String (1 .. Diag'Length) := Diag;
Last_Idx : Natural;
Diag_End : Natural;
Par_Start : Natural := 1;
Par_End : Natural := 0;
Fname_End : Natural := 0;
begin
Last_Idx := Index (Result, Gnatcheck_Config_File);
if Last_Idx = 0 then
Last_Idx := Result'Last;
else
Last_Idx := Last_Idx - 5;
end if;
if Gnatcheck.Options.Mapping_Mode then
if Message_Kind = General_Warning then
Diag_End := Index (Source => Result (1 .. Last_Idx),
Pattern => "[-gnatw",
Going => Backward);
if Diag_End = 0 then
Diag_End := Last_Idx;
else
Par_Start := Diag_End + 7;
Par_End := Par_Start;
if Result (Par_End) = '.' then
Par_End := Par_End + 1;
end if;
Diag_End := Diag_End - 2;
end if;
else
Diag_End := Last_Idx;
end if;
if Gnatcheck.Options.Full_Source_Locations then
Fname_End := Index (Result, (1 => ':'));
return Source_Name (SF) & Result (Fname_End .. Diag_End) &
Annotation (Message_Kind, Result (Par_Start .. Par_End));
else
return Result (1 .. Diag_End) &
Annotation (Message_Kind, Result (Par_Start .. Par_End));
end if;
else
if Gnatcheck.Options.Full_Source_Locations then
Fname_End := Index (Result, (1 => ':'));
return Source_Name (SF) & Result (Fname_End .. Last_Idx);
else
return Result (1 .. Last_Idx);
end if;
end if;
end Adjust_Message;
----------------------------
-- Analyze_Error_Messages --
----------------------------
procedure Analyze_Error_Messages
(Compiler_Out : String;
Wrong_Option : out Boolean)
is
Next_Line : String (1 .. 1024);
Line_Len : Natural;
Comp_Out_File : File_Type;
begin
Wrong_Option := False;
Open (File => Comp_Out_File,
Mode => In_File,
Name => Compiler_Out);
while not End_Of_File (Comp_Out_File) loop
Get_Line (Comp_Out_File, Next_Line, Line_Len);
if Line_Len >= 24
and then
Next_Line (1 .. 24) = "gnat1: bad -gnaty switch"
then
Wrong_Option := True;
end if;
if not Wrong_Option
and then
Line_Len > 29
and then
Next_Line (1 .. 29) = "gnat1: invalid switch: -gnatw"
then
Wrong_Option := True;
end if;
if Wrong_Option then
Error ("wrong parameter specified for compiler-related rule:");
Error_No_Tool_Name (Next_Line (1 .. Line_Len));
exit;
end if;
end loop;
Close (Comp_Out_File);
end Analyze_Error_Messages;
-----------------
-- Annotation --
----------------
function Annotation
(Message_Kind : Compiler_Message_Kinds;
Parameter : String)
return String
is
begin
case Message_Kind is
when Not_A_Compiler_Nessage =>
pragma Assert (False);
return "";
when General_Warning =>
return " [Warnings" &
(if Parameter = "" then
""
else
":" & Parameter) & "]";
when Style =>
return " [Style_Checks]";
when Restriction =>
return " [Restrictions]";
end case;
end Annotation;
-------------------------------
-- Analyze_Compiler_Warnings --
-------------------------------
procedure Analyze_Compiler_Warnings
(Compiler_Out : String;
For_File : SF_Id;
Success : out Boolean)
is
Next_Line : String (1 .. 1024);
Line_Len : Natural;
Comp_Out_File : File_Type;
procedure Analyze_Warning (Msg : String);
-- Analyses one line containing the compiler warning. Inserts the
-- warning messages into gnatcheck diagnoses table.
procedure Analyze_Warning (Msg : String) is
SF : SF_Id;
Line_Num : Positive;
Col_Num : Natural;
-- Coordinates of the warning message
Diag : String_Loc;
-- We store the whole warning message generated by the compiler as is
-- This would result in some considerable duplications, but what
-- would be better approach here ???
Compiler_Message_Kind : Compiler_Message_Kinds :=
Not_A_Compiler_Nessage;
First_Idx : constant Natural := Msg'First;
Last_Idx : Natural := Msg'Last;
Idx : Natural := First_Idx;
Word_End : Natural := 0;
begin
if Last_Idx = 0 then
-- An empty line?
return;
end if;
-- We assume the following format of the message:
--
-- filename:line:column: <message body>
--
-- If -dJ is set, <message body> has the following structure
--
-- [warning] scopename: line:col: text
--
-- So the first thing we have to do is to skip 3 colons and to define
-- the source the message is siiued for, and the line and column
-- numbers:
Idx := Index (Msg (Idx .. Last_Idx), ":");
if Idx = 0 then
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end if;
SF := File_Find (Msg (First_Idx .. Idx - 1), Use_Short_Name => True);
if not Is_Argument_Source (SF) then
-- This source is not an argument of this check
return;
end if;
Word_End := Index (Msg (Idx + 1 .. Last_Idx), ":");
if Word_End = 0 then
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end if;
begin
Line_Num := Positive'Value (Msg (Idx + 1 .. Word_End - 1));
exception
when others =>
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end;
Idx := Word_End;
Word_End := Index (Msg (Idx + 1 .. Last_Idx), ":");
if Word_End = 0 then
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end if;
begin
Col_Num := Positive'Value (Msg (Idx + 1 .. Word_End - 1));
exception
when others =>
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end;
Idx := Word_End + 2;
if Msg (Idx .. Idx + 8) = "warning: " then
if Index (Msg (Idx .. Last_Idx), ": violation of restriction") /= 0
then
Compiler_Message_Kind := Restriction;
else
Compiler_Message_Kind := General_Warning;
end if;
elsif Index (Msg (Idx .. Last_Idx), "(style)") /= 0 then
Compiler_Message_Kind := Style;
else
Error ("Unexpected format of compiler message for " &
Short_Source_Name (For_File) & ":");
Error_No_Tool_Name (Msg);
Success := False;
return;
end if;
if Compiler_Message_Kind = Restriction then
Last_Idx := Index (Msg, Gnatcheck_Config_File);
Last_Idx := Last_Idx - 5;
end if;
Diag := Enter_String (Msg (Idx .. Last_Idx));
Gnatcheck.Diagnoses_Old.Store_Compiler_Message
(In_SF => SF,
Line_Num => Line_Num,
Col_Num => Col_Num,
Message => Diag,
Message_Kind => Compiler_Message_Kind);
Gnatcheck.Diagnoses.Store_Diagnosis
(Text => Adjust_Message (Msg, Compiler_Message_Kind, SF),
Diagnosis_Kind => Gnatcheck.Diagnoses.Rule_Violation,
SF => SF,
Rule => Get_Rule_Id (Compiler_Message_Kind));
end Analyze_Warning;
begin
Open (File => Comp_Out_File,
Mode => In_File,
Name => Compiler_Out);
Success := True;
while not End_Of_File (Comp_Out_File) loop
Get_Line (Comp_Out_File, Next_Line, Line_Len);
Analyze_Warning (Next_Line (1 .. Line_Len));
end loop;
Close (Comp_Out_File);
exception
when Ex : others =>
if Is_Open (Comp_Out_File) then
Close (Comp_Out_File);
end if;
Error
("unknown bug detected when analyzing compiler warnings");
Error_No_Tool_Name
("Please submit bug report to report@adacore.com");
Report_Unhandled_Exception (Ex);
Success := False;
end Analyze_Compiler_Warnings;
-------------------------------------
-- Create_Restriction_Pragmas_File --
-------------------------------------
procedure Create_Restriction_Pragmas_File is
RPF : File_Type;
begin
Create (File => RPF,
Mode => Out_File,
Name => Gnatcheck_Config_File);
Put_Line (RPF, "pragma Warnings (Off, ""[enabled by default]"");");
for R in All_Restrictions loop
if Restriction_Setting (R).Active then
if R in All_Boolean_Restrictions then
Put_Line (RPF, "pragma Restriction_Warnings (" & R'Img & ");");
else
for J in Restriction_Setting (R).Param'Range loop
Put (RPF, "pragma Restriction_Warnings (");
Put (RPF, R'Img);
Put (RPF, " =>" & Restriction_Setting (R).Param (J).all);
Put_Line (RPF, ");");
end loop;
end if;
end if;
end loop;
for R in Special_Restriction_Setting'Range loop
if Special_Restriction_Setting (R) then
case R is
when No_Dependence =>
Forbidden_Units_Dictionary.Reset_Iterator;
while not Forbidden_Units_Dictionary.Done loop
Put
(RPF,
"pragma Restriction_Warnings (No_Dependence => ");
Put_Line
(RPF,
Forbidden_Units_Dictionary.Next_Entry & ");");
end loop;
end case;
end if;
end loop;
Close (RPF);
end Create_Restriction_Pragmas_File;
-----------------
-- Get_Rule_Id --
-----------------
function Get_Rule_Id (Check : Compiler_Message_Kinds) return Rule_Id is
begin
case Check is
when Not_A_Compiler_Nessage =>
pragma Assert (False);
return No_Rule;
when General_Warning =>
return Warnings_Id;
when Style =>
return Style_Checks_Id;
when Restriction =>
return Restrictions_Id;
end case;
end Get_Rule_Id;
----------------------------------
-- Get_Specified_Warning_Option --
----------------------------------
function Get_Specified_Warning_Option return String is
begin
if Warning_Options_String /= null then
return "-gnatw" & Warning_Options_String.all;
else
return "";
end if;
end Get_Specified_Warning_Option;
----------------------
-- Get_Style_Option --
----------------------
function Get_Style_Option return String is
begin
return "-gnaty" & Style_Options_String.all;
end Get_Style_Option;
------------------------
-- Get_Warning_Option --
------------------------
function Get_Warning_Option return String is
begin
-- We disable defaults first
if Warning_Options_String /= null then
return "-gnatw" & "AIOVZX" & Warning_Options_String.all;
else
return "-gnatwAIOVZX";
end if;
end Get_Warning_Option;
----------------------------------
-- Needs_Parameter_In_Exemption --
----------------------------------
function Needs_Parameter_In_Exemption
(R : Restriction_Id;
SR : Special_Restriction_Id)
return Boolean
is
Result : Boolean := False;
begin
if SR in All_Special_Parameter_Restrictions then
Result := True;
elsif R in All_Parameter_Restrictions then
-- Not all the restrictions from All_Parameter_Restrictions require
-- restriction parameter in parametric exemptions
Result := R not in Integer_Parameter_Restrictions;
end if;
return Result;
end Needs_Parameter_In_Exemption;
----------------------------------
-- Is_Restriction_Exemption_Par --
----------------------------------
function Is_Restriction_Exemption_Par (Par : String) return Boolean is
Result : Boolean := False;
Arrow_Idx : constant Natural := Index (Par, "=>");
Rest_Name_End : Natural := Par'Last;
Par_Start : constant Positive := Par'First;
R_Id : Restriction_Id := Not_A_Restriction_Id;
Special_R_Id : Special_Restriction_Id :=
Not_A_Special_Restriction_Id;
begin
if Arrow_Idx /= 0 then
Rest_Name_End := Arrow_Idx - 1;
while Rest_Name_End >= Par_Start
and then
Par (Par_Start) = ' '
loop
Rest_Name_End := Rest_Name_End - 1;
end loop;
end if;
begin
R_Id := Restriction_Id'Value (Par (Par_Start .. Rest_Name_End));
exception
when Constraint_Error =>
R_Id := Not_A_Restriction_Id;
end;
if R_Id = Not_A_Restriction_Id then
begin
Special_R_Id :=
Special_Restriction_Id'Value (Par (Par_Start .. Rest_Name_End));
exception
when Constraint_Error =>
Special_R_Id := Not_A_Special_Restriction_Id;
end;
end if;
if R_Id /= Not_A_Restriction_Id
or else
Special_R_Id /= Not_A_Special_Restriction_Id
then
if Arrow_Idx /= 0 then
Result := Needs_Parameter_In_Exemption (R_Id, Special_R_Id);
else
Result := not Needs_Parameter_In_Exemption (R_Id, Special_R_Id);
end if;
end if;
return Result;
end Is_Restriction_Exemption_Par;
------------------------------
-- Is_Warning_Exemption_Par --
------------------------------
function Is_Warning_Exemption_Par (Par : String) return Boolean is
Last_Idx : constant Positive := Par'Last;
Result : Boolean := True;
begin
-- We consider any string that can be used as a parameter of '-gnatw'
-- option as allowed exemption parameter
for J in Par'Range loop
if not (Par (J) = '.' or else Is_Letter (Par (J))) then
Result := False;
exit;
end if;
if Par (J) = '.'
and then
(J = Last_Idx or else not Is_Letter (Par (J + 1)))
then
Result := False;
exit;
end if;
end loop;
return Result;
end Is_Warning_Exemption_Par;
-------------------------------
-- Print_Active_Restrictions --
-------------------------------
procedure Print_Active_Restrictions (Ident_Level : Natural := 0) is
Bool_Tmp : Boolean := True;
begin
for R in Restriction_Setting'Range loop
if Restriction_Setting (R).Active then
if R in All_Boolean_Restrictions then
Report (Proper_Case (R'Img), Ident_Level);
else
for J in Restriction_Setting (R).Param'Range loop
Report_No_EOL (Proper_Case (R'Img), Ident_Level);
Report (" =>" & Restriction_Setting (R).Param (J).all);
end loop;
end if;
end if;
end loop;
for R in Special_Restriction_Setting'Range loop
if Special_Restriction_Setting (R) then
Report_No_EOL (Proper_Case (R'Img), Ident_Level);
case R is
when No_Dependence =>
Report_No_EOL (" => ");
Forbidden_Units_Dictionary.Reset_Iterator;
while not Forbidden_Units_Dictionary.Done loop
if Bool_Tmp then
Report (Forbidden_Units_Dictionary.Next_Entry);
Bool_Tmp := False;
else
Report
("No_Dependence => " &
Forbidden_Units_Dictionary.Next_Entry,
Ident_Level);
end if;
end loop;
end case;
end if;
end loop;
end Print_Active_Restrictions;
---------------------------------------
-- Print_Active_Restrictions_To_File --
---------------------------------------
procedure Print_Active_Restrictions_To_File (Rule_File : File_Type) is
begin
for R in Restriction_Setting'Range loop
if Restriction_Setting (R).Active then
if R in All_Boolean_Restrictions then
Put_Line (Rule_File, "+RRestrictions : " & Proper_Case (R'Img));
else
for J in Restriction_Setting (R).Param'Range loop
Put (Rule_File, "+RRestrictions : " & Proper_Case (R'Img));
Put_Line (Rule_File,
" =>" & Restriction_Setting (R).Param (J).all);
end loop;
end if;
end if;
end loop;
for R in Special_Restriction_Setting'Range loop
if Special_Restriction_Setting (R) then
case R is
when No_Dependence =>
Forbidden_Units_Dictionary.Reset_Iterator;
while not Forbidden_Units_Dictionary.Done loop
Put (Rule_File, "+RRestrictions : ");
Put (Rule_File, Proper_Case (R'Img) & " => ");
Put_Line (Rule_File,
Forbidden_Units_Dictionary.Next_Entry);
end loop;
end case;
end if;
end loop;
end Print_Active_Restrictions_To_File;
-------------------------------
-- Process_Restriction_Param --
-------------------------------
procedure Process_Restriction_Param
(Parameter : String;
Enable : Boolean)
is
Param : constant String := Trim (Parameter, Both);
First_Idx : constant Natural := Param'First;
Last_Idx : Natural := Param'Last;
Arg_Present : Boolean := False;
R_Id : Restriction_Id;
Special_R_Id : Special_Restriction_Id;
R_Val : Option_Parameter;
begin
-- Param should have the format
--
-- restriction_parameter_identifier[ => restriction_parameter_argument]
--
-- We assume that it can be spaces around '=>'
-- First, try to define the restriction name.
for J in First_Idx + 1 .. Last_Idx loop
if Param (J) = ' '
or else Param (J) = '='
then
Last_Idx := J - 1;
exit;
end if;
end loop;
begin
R_Id := Restriction_Id'Value (Param (First_Idx .. Last_Idx));
exception
when Constraint_Error =>
R_Id := Not_A_Restriction_Id;
end;
if R_Id = Not_A_Restriction_Id then
begin
Special_R_Id :=
Special_Restriction_Id'Value (Param (First_Idx .. Last_Idx));
exception
when Constraint_Error =>
Special_R_Id := Not_A_Special_Restriction_Id;
end;
end if;
if R_Id = Not_A_Restriction_Id
and then
Special_R_Id = Not_A_Special_Restriction_Id
then
Error ("wrong restriction identifier : " &
Param (First_Idx .. Last_Idx) & ", ignored");
return;
end if;
-- Check if we have a restriction_parameter_argument, and if we do,
-- set First_Idx to the first character after '=>'
for J in Last_Idx + 1 .. Param'Last - 2 loop
if Param (J) = '=' then
if J <= Param'Last - 2
and then Param (J + 1) = '>'
then
Arg_Present := True;
Last_Idx := J + 2;
exit;
else
Error ("wrong structure of restriction rule parameter " &
Param & ", ignored");
return;
end if;
end if;
end loop;
if not Enable then
if R_Id in All_Restrictions then
Restriction_Setting (R_Id).Active := False;
else
Special_Restriction_Setting (Special_R_Id) := False;
-- We may need to correct stored parameters of some restrictions
if Arg_Present then
case Special_R_Id is
when No_Dependence =>
Forbidden_Units_Dictionary.Remove_From_Dictionary
(Trim (Param (Last_Idx .. Param'Last), Both));
when others =>
null;
end case;
end if;
end if;
return;
end if;
if R_Id in All_Boolean_Restrictions then
if Arg_Present then
Error ("RESTRICTIONS rule parameter: " & Param &
" can not contain expression, ignored");
else
Restriction_Setting (R_Id).Active := Enable;
end if;
elsif R_Id /= Not_A_Restriction_Id then
if not Arg_Present then
Error ("RESTRICTIONS rule parameter: " & Param &
" should contain an expression, ignored");
return;
else
if R_Id in Integer_Parameter_Restrictions then
begin
R_Val :=
Option_Parameter'Value
(Trim (Param (Last_Idx .. Param'Last), Both));
if Restriction_Setting (R_Id).Param /= null
and then
Gnatcheck.Options.Check_Param_Redefinition
then
Free (Restriction_Setting (R_Id).Param);
Last_Idx := Index (Param, "=", Backward) - 1;
for J in reverse First_Idx .. Last_Idx loop
if Param (J) /= ' ' then
Last_Idx := J;
exit;
end if;
end loop;
Error ("expression for RESTRICTIONS rule parameter: " &
Param (First_Idx .. Last_Idx) &
" is specified more than once");
end if;
Restriction_Setting (R_Id).Param :=
new String_List'(1 => new String'(R_Val'Img));
exception
when Constraint_Error =>
Error ("wrong restriction parameter expression in " &
Param & ", ignored");
return;
end;
else
-- No check is made for the moment for non-integer restriction
-- parameters:
if Restriction_Setting (R_Id).Param = null then
Restriction_Setting (R_Id).Param :=
new String_List'(1 => new String'
(Trim (Param (Last_Idx .. Param'Last), Both)));
else
declare
Tmp : constant String_List :=
Restriction_Setting (R_Id).Param.all &
new String'(Trim
(Param (Last_Idx .. Param'Last), Both));
begin
Restriction_Setting (R_Id).Param :=
new String_List'(Tmp);
end;
end if;
end if;
end if;
Restriction_Setting (R_Id).Active := Enable;
else
-- If we are here, R_Id = Not_A_Restriction_Id, therefore
-- Special_R_Id /= Not_A_Special_Restriction_Id
case Special_R_Id is
when No_Dependence =>
if not Arg_Present then
Error ("RESTRICTIONS rule parameter: " & Param &
" should contain an unit name, ignored");
return;
end if;
Special_Restriction_Setting (Special_R_Id) := True;
Forbidden_Units_Dictionary.Add_To_Dictionary
(Trim (Param (Last_Idx .. Param'Last), Both));
when Not_A_Special_Restriction_Id =>
null;
pragma Assert (False);
end case;
end if;
end Process_Restriction_Param;
-------------------------------
-- Process_Style_Check_Param --
-------------------------------
procedure Process_Style_Check_Param (Param : String) is
begin
if To_Lower (Param) = "all_checks" then
Process_Style_Options ("y");
else
Process_Style_Options (Param);
end if;
end Process_Style_Check_Param;
---------------------------
-- Process_Style_Options --
---------------------------
procedure Process_Style_Options (Param : String) is
begin
if Style_Options_String = null then
Style_Options_String := new String'(Param);
else
Tmp_Options := new String'(Style_Options_String.all);
Free (Style_Options_String);
Style_Options_String := new String'(Tmp_Options.all & Param);
Free (Tmp_Options);
end if;
end Process_Style_Options;
---------------------------
-- Process_Warning_Param --
---------------------------
procedure Process_Warning_Param (Param : String) is
begin
if Warning_Options_String = null then
Warning_Options_String := new String'(Param);
else
-- Checking for 'e' and 's' that should not be supplied for gnatcheck
-- Warnings rule.
for J in Param'Range loop
if Param (J) in 'e' | 's'
and then
(J = Param'First
or else
Param (J - 1) /= '.')
then
Error ("Warnings rule cannot have " & Param (J) &
" parameter, parameter string " & Param & " ignored");
return;
end if;
end loop;
Tmp_Options := new String'(Warning_Options_String.all);
Free (Warning_Options_String);
Warning_Options_String := new String'(Tmp_Options.all & Param);
Free (Tmp_Options);
end if;
end Process_Warning_Param;
--------------------------------
-- Restriction_Rule_parameter --
---------------------------------
function Restriction_Rule_Parameter (Diag : String) return String is
R_Name_Start : Natural;
R_Name_End : Natural;
Par_End : Natural;
Arr_Idx : Natural;
Diag_End : constant Positive := Diag'Last;
R_Id : Restriction_Id := Not_A_Restriction_Id;
Special_R_Id : Special_Restriction_Id :=
Not_A_Special_Restriction_Id;
begin
R_Name_Start := Index (Diag, "of restriction ");
pragma Assert (R_Name_Start /= 0);
R_Name_Start := R_Name_Start + 16;
Arr_Idx := Index (Diag (R_Name_Start .. Diag_End), "=>");
if Arr_Idx /= 0 then
R_Name_End := Arr_Idx - 1;
while R_Name_End > R_Name_Start loop
exit when Diag (R_Name_End) /= ' ';
R_Name_End := R_Name_End - 1;
end loop;
else
R_Name_End := Index (Diag (R_Name_Start .. Diag_End), """") - 1;
end if;
begin
R_Id := Restriction_Id'Value (Diag (R_Name_Start .. R_Name_End));
exception
when Constraint_Error =>
R_Id := Not_A_Restriction_Id;
end;
if R_Id = Not_A_Restriction_Id then
begin
Special_R_Id :=
Special_Restriction_Id'Value
(Diag (R_Name_Start .. R_Name_End));
exception
when Constraint_Error =>
Special_R_Id := Not_A_Special_Restriction_Id;
end;
end if;
if Arr_Idx /= 0
and then
Needs_Parameter_In_Exemption (R_Id, Special_R_Id)
then
Par_End := Index (Diag (R_Name_Start .. Diag_End), """") - 1;
return To_Lower (Remove_Spaces (Diag (R_Name_Start .. Par_End)));
else
return To_Lower (Diag (R_Name_Start .. R_Name_End));
end if;
end Restriction_Rule_Parameter;
-------------------------
-- Set_Compiler_Checks --
-------------------------
procedure Set_Compiler_Checks is
begin
Use_gnaty_Option := Style_Options_String /= null;
Use_gnatw_Option := Warning_Options_String /= null;
-- Check_Restrictions
for J in Restriction_Setting'Range loop
if Restriction_Setting (J).Active then
Check_Restrictions := True;
exit;
end if;
end loop;
if not Check_Restrictions then
for J in Special_Restriction_Setting'Range loop
if Special_Restriction_Setting (J) then
Check_Restrictions := True;
exit;
end if;
end loop;
end if;
end Set_Compiler_Checks;
----------------------------
-- Warning_Rule_Parameter --
----------------------------
function Warning_Rule_Parameter (Diag : String) return String is
First_Idx, Last_Idx : Natural;
String_To_Search : constant String := "[Warnings:";
begin
-- This function returns non-empty result only if .d parameter is
-- specified for Warnings rule or is --show-rule gnatcheck option is
-- set (that is, if Diag ends with "[Warnings:<option>]"
First_Idx := Index (Diag, String_To_Search);
if First_Idx = 0 then
return "";
else
First_Idx := First_Idx + String_To_Search'Length;
Last_Idx := (if Diag (First_Idx) = '.' then
First_Idx + 1
else
First_Idx);
end if;
return Diag (First_Idx .. Last_Idx);
end Warning_Rule_Parameter;
-----------------------------------
-- XML_Print_Active_Restrictions --
-----------------------------------
procedure XML_Print_Active_Restrictions (Indent_Level : Natural := 0) is
begin
XML_Report ("<rule id=""Restrictions"">", Indent_Level);
for R in Restriction_Setting'Range loop
if Restriction_Setting (R).Active then
if R in All_Boolean_Restrictions then
XML_Report
("<parameter>" & Proper_Case (R'Img) & "</parameter>",
Indent_Level + 1);
else
for J in Restriction_Setting (R).Param'Range loop
XML_Report
("<parameter>" & Proper_Case (R'Img) &
"=>" & Restriction_Setting (R).Param (J).all &
"</parameter>",
Indent_Level + 1);
end loop;
end if;
end if;
end loop;
for R in Special_Restriction_Setting'Range loop
if Special_Restriction_Setting (R) then
case R is
when No_Dependence =>
Forbidden_Units_Dictionary.Reset_Iterator;
while not Forbidden_Units_Dictionary.Done loop
XML_Report
("<parameter>No_Dependence=>" &
Forbidden_Units_Dictionary.Next_Entry &
"</parameter>",
Indent_Level + 1);
end loop;
end case;
end if;
end loop;
XML_Report ("</rule>", Indent_Level);
end XML_Print_Active_Restrictions;
end Gnatcheck.Compiler;
|