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
|
------------------------------------------------------------------------------
-- --
-- GNATCHECK COMPONENTS --
-- --
-- G N A T C H E C K . R U L E S . D E F A U L T --
-- --
-- S p e c --
-- --
-- Copyright (C) 2004-2007, 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 2, 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 COPYING. If --
-- not, write to the Free Software Foundation, 51 Franklin Street, Fifth --
-- Floor, Boston, MA 02110-1301, USA. --
-- --
-- GNATCHECK is maintained by AdaCore (http://www.adacore.com). --
-- --
------------------------------------------------------------------------------
-- This package defines the default set of rules for gnatcheck. Use ???
-- to extend the set of rules
package Gnatcheck.Rules.Default is
--------------------------------
-- Abstract_Type_Declarations --
--------------------------------
-- The use of abstract types are detected. In case of an abstract private
-- type, both private and full type declarations are detected.
type Abstract_Type_Declarations_Rule_Type is new Rule_Template with
null record;
procedure Rule_Check_Pre_Op
(Rule : in out Abstract_Type_Declarations_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is an abstract type declaration
procedure Init_Rule (Rule : in out Abstract_Type_Declarations_Rule_Type);
Abstract_Type_Declarations_Rule :
aliased Abstract_Type_Declarations_Rule_Type;
------------------------
-- Anonymous_Subtypes --
------------------------
-- Any use of an anonymous subtype is detected.
-- A use of an anonymous subtype is any use of a construct
-- 'subtype_mark constraint' different from immediatelly within a subtype
-- declaration. Any use of range different from the situation when this
-- range is a constraint used immediatelly within a subtype declaration is
-- also considered as the use of an anonymous subtype and should be
-- detected
type Anonymous_Subtypes_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Anonymous_Subtypes_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is an abstract type declaration
procedure Init_Rule (Rule : in out Anonymous_Subtypes_Rule_Type);
Anonymous_Subtypes_Rule : aliased Anonymous_Subtypes_Rule_Type;
------------
-- Blocks --
------------
-- Block statements are detected.
type Blocks_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Blocks_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a block statement
procedure Init_Rule (Rule : in out Blocks_Rule_Type);
Blocks_Rule : aliased Blocks_Rule_Type;
----------------------------------
-- Boolean_Relational_Operators --
----------------------------------
-- According to the definition of the Spark language, relation operations
-- <, >, <=, >=, = and /= cannot be used for the type Boolean.
-- Calls to predefined relation operators (<, >, <=, >=, = and /=) of
-- the predefined Boolean type are detected.
-- Calls to predefined relation operations of any type derived from
-- Standard.Boolean are not detected.
-- Calls to user-defined functions with these designators are not detected
-- The use of an operation that is a renaming of a predefined relation
-- operation for Standard.Boolean is nopt detected
type Boolean_Relational_Operators_Rule_Type is new Rule_Template with
null record;
procedure Rule_Check_Pre_Op
(Rule : in out Boolean_Relational_Operators_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element represents any of the comparison operators listed above,
-- checks that the argument of this operation are both of the type
-- Standard.Boolean
procedure Init_Rule (Rule : in out Boolean_Relational_Operators_Rule_Type);
Boolean_Relational_Operators_Rule :
aliased Boolean_Relational_Operators_Rule_Type;
------------------------
-- Ceiling_Violations --
------------------------
-- Any caller to a protected operation should have the priority not higher
-- then the called protected operation.
-- The situations when a protected operation is called by a higher priority
-- task is detected.
-- At the moment, the detection of violations of ceiling priority
-- consistency is performed with the following limitations:
--
-- - We consider only pragmas Priority and Interrupt_Priority as means to
-- define a task/protected operation priority. We do not consider the
-- effect of using Ada.Dynamic_Priorities.Set_Priority procedure;
--
-- - We consider only base task priorites, and no priority inheritance.
-- That is, we do not make a difference between calls issued during task
-- activation and execution of the sequence of statements from task body;
--
-- - Any situation when the priority of protected operation caller is set
-- by a dynamic expression (that is, the corresponding Priority or
-- Interrupt_Priority pragma has a non-static expression as an argument)
-- we treat as a priority inconsistensy (and, therefore, detect this
-- situation).
--
-- At the moment the notion of the main subprogram is not implemented in
-- gnatcheck, so any pragma Priority in a library level subprogram body
-- (in case if this subprogram Can_Be_Main_Program) changes the priority
-- of an environment task. So if we have more then one such pragma in the
-- set of processed sources, the pragma that is processed last, defines the
-- priority of an environment task.
type Ceiling_Violations_Rule_Type is new Global_Rule_Template with
null record;
procedure Collect_Global_Info_Pre_Op
(Rule : in out Ceiling_Violations_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Tries to detect the priority of the given scope from pragmas Priority
-- and Interrupt_Priority (if any).
procedure Analyze_Global_Structure
(Rule : Ceiling_Violations_Rule_Type);
-- If for the given node the priority is not defined, computes the priority
-- from the call graph: for a protected operation, takes the priority from
-- the node corresponding to protected definition, for other nodes, or in
-- case if there is no priority setting pragmas applied to a protected
-- definition, "inherites" the priority of an enclosing scope.
procedure Check_Global_Structure_Node
(Rule : Ceiling_Violations_Rule_Type;
N : Gnatcheck.Global_State.GS_Node_Id;
Detected : out Boolean);
-- If the given call graph node represents a protected operation, checks
-- that all the callers have priorities not higher, then the protected
-- operation. Dynamic priority is considered as a highest priority level.
procedure Init_Rule (Rule : in out Ceiling_Violations_Rule_Type);
Ceiling_Violations_Rule : aliased Ceiling_Violations_Rule_Type;
----------------------------------
-- Controlled_Type_Declarations --
----------------------------------
-- Declarations of controlled types are detected.
-- A declaration of a private type is detected if its full declaration
-- defines a controlled type.
-- A declaration of a a derived type is detected if its ansestor type is
-- controlled.
-- Subtype declarations are not detected.
-- The declaration of a type that itself is not a decendant of a type
-- declared in Ada.Finalization but has a controlles component is not
-- detected
type Controlled_Type_Declarations_Rule_Type is new Rule_Template with
null record;
procedure Rule_Check_Pre_Op
(Rule : in out Controlled_Type_Declarations_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a declaration of a controlled type as described
-- above
procedure Init_Rule (Rule : in out Controlled_Type_Declarations_Rule_Type);
Controlled_Type_Declarations_Rule :
aliased Controlled_Type_Declarations_Rule_Type;
----------------------------
-- Declarations_In_Blocks --
----------------------------
-- Block statements with local declarations are detected.
-- A declare block with an empty declarative_part or with a declarative
-- part containing only pragmas and/or use clauses is not detected.
type Declarations_In_Blocks_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Declarations_In_Blocks_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a block statement containing local declarations.
procedure Init_Rule (Rule : in out Declarations_In_Blocks_Rule_Type);
Declarations_In_Blocks_Rule : aliased Declarations_In_Blocks_Rule_Type;
------------------------
-- Default_Parameters --
------------------------
-- Default expressions for subprogram parameters are detected.
-- Parameter declarations of formal and generic subprograms are also
-- considered
type Default_Parameters_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Default_Parameters_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a parameter specification containing a default
-- initialization expression
procedure Init_Rule (Rule : in out Default_Parameters_Rule_Type);
Default_Parameters_Rule : aliased Default_Parameters_Rule_Type;
---------------------------
-- Discriminated_Records --
---------------------------
-- Declarations of record types with discriminants are detected.
-- Only the declarations of record and record extension types are detected.
-- Incomplete, formal, private, derived and private extension type
-- declaratins are not detected. Task and protected type declarations also
-- are not detected.
type Discriminated_Records_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Discriminated_Records_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is known discriminant part in a record or record
-- extension definition
procedure Init_Rule (Rule : in out Discriminated_Records_Rule_Type);
Discriminated_Records_Rule : aliased Discriminated_Records_Rule_Type;
------------------------------
-- Expanded_Loop_Exit_Names --
------------------------------
-- According to the definition of the Spark language, the loop name in an
-- exit statement should be only a simple loop name, expanded names are not
-- allowed.
-- Expanded loop name in an exit statement is detected
type Expanded_Loop_Exit_Names_Rule_Type is new Rule_Template
with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Expanded_Loop_Exit_Names_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is an exit statement, checks if the statement contains a loop
-- name and if it does, check that this is a somple name
procedure Init_Rule (Rule : in out Expanded_Loop_Exit_Names_Rule_Type);
Expanded_Loop_Exit_Names_Rule : aliased Expanded_Loop_Exit_Names_Rule_Type;
---------------------------
-- Float_Equality_Checks --
---------------------------
-- Calls to the predefined equality operations for floating point types
-- are detected
-- Both "=" and "/=" operations are checked.
-- A floating point type here is a type declared with floating point
-- definition or a type derived from a floating point type
-- User-defined equality operations are not detected.
-- "=" and "/=" operations for fixed point types are not detected
type Float_Equality_Checks_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Float_Equality_Checks_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks if Element is a name of a predefined "=" or "/=" operator from
-- a (function) call with float arguments
procedure Init_Rule (Rule : in out Float_Equality_Checks_Rule_Type);
Float_Equality_Checks_Rule : aliased Float_Equality_Checks_Rule_Type;
---------------------
-- GOTO_Statements --
---------------------
-- goto statements are detected.
type GOTO_Statements_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out GOTO_Statements_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a goto statement
procedure Init_Rule (Rule : in out GOTO_Statements_Rule_Type);
GOTO_Statements_Rule : aliased GOTO_Statements_Rule_Type;
----------------------
-- Improper_Returns --
----------------------
-- A return statement in a procedure body is detected
-- The situation when there is more then exactly one return statement in a
-- function body is detected (diagnostic message is generated for all the
-- return statements except the first one).
-- Should we should split this rule into two rules - one for procedures,
-- and another one for functions?
type Improper_Returns_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Improper_Returns_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is a return statement, checks that the enclosing subprogram
-- body is not a procedure body, and if it is a function body, checks that
-- this is the first return statement in the body.
procedure Init_Rule (Rule : in out Improper_Returns_Rule_Type);
Improper_Returns_Rule : aliased Improper_Returns_Rule_Type;
-----------------------------------------
-- Improperly_Called_Protected_Entries --
-----------------------------------------
-- There are situations when it is required that the maximal number of
-- tasks calling a given protected entry is 1.
-- Protected entries that can be called more then one task are detected.
type Improperly_Called_Protected_Entries_Rule_Type is
new Global_Rule_Template with null record;
procedure Check_Global_Structure_Node
(Rule : Improperly_Called_Protected_Entries_Rule_Type;
N : Gnatcheck.Global_State.GS_Node_Id;
Detected : out Boolean);
-- Checks if there are more then one task calling the given protected
-- entry.
procedure Init_Rule
(Rule : in out Improperly_Called_Protected_Entries_Rule_Type);
Improperly_Called_Protected_Entries_Rule :
aliased Improperly_Called_Protected_Entries_Rule_Type;
-----------------------
-- Limited_Renamings --
-----------------------
-- This rule combines a part of the SPARK limitations imposed on remanings.
-- It is formulated for renaming declarations only, not for the use of
-- renamed entities. The following situations should be detected:
-- Syntax of renaming declarations: all forms of renaming declarations
-- except package and subprogram renaming declarations should be detected.
-- Renamed entities: only subprograms declared immediatelly within package
-- specs and only child packages can be renamed. All other cases of
-- subprogram and package renamings should be detected.
-- Limitations on new and old names: the name after RENAMES should have
-- the form package_name.entity_name, the new name should be exactly the
-- same as entity_name, entity_name should not itself be detected by a
-- renaming declaration. Moreover, in case of a subprogram renaming, the
-- new and the old profiles should be the same (the same parameter and
-- subtype names should be used). All the renamings that do not follow
-- these rules should be detected.
-- Placement of renamings. According to the definition of SPARK, the
-- following restrictions are imposed on the placement of renaming
-- declarations:
--
-- for subprogram renamings (that are not operator renamings):
-- - if the package where the subprogram is declared is a local package,
-- renaming is allowed immediatelly after the declaration of this
-- package;
-- - if the package where the subprogram is declared is a library-level
-- package, renaming is allowed at the start of the body of a library
-- package (or library subprogram) that "withes" this package;
--
-- for operator renamings: the same is allowed as for subprogram renamings
-- plus renamings are alloved at the start of the visible or private part
-- of the library package that "withes" the package where the operator is
-- declared;
--
-- for package renamings: the renaming of a (child!) package is allowed
-- only immediatelly within a library package or library sybprogram that
-- "withes" this package;
--
-- All the other cases of renaming declaration placement should be
-- detected.
--
-- Note that the rules about allowed remaning placement are taken from the
-- definition of the SPARK subset. This definition uses the following
-- wording: "at the start of the body", "at the start of the visible
-- (private) part", and it the same time the SPARK book contains examples
-- where an (allowed) renaming follows an object declaration. So we do
-- not check that renamiings precede all the non-renaming declarations.
-- All the things stated above are checked and detected in the orged given.
-- If some feature is detected for a renaming declaration, all the other
-- things are not checked for this renaming declaration
-- Current implementation limitation: an the moment this rule is not
-- completely checked for renaming of predefined operators.
type Limited_Renamings_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Limited_Renamings_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is a renaming declaration, checks the rules staed above in
-- the order diven. As soon as the first rule violation is detedcted, stops
-- further processing
procedure Init_Rule (Rule : in out Limited_Renamings_Rule_Type);
Limited_Renamings : aliased Limited_Renamings_Rule_Type;
-------------------------------
-- Library_Level_Subprograms --
-------------------------------
-- Library level subprograms (including subprogram instantiations) are
-- detected.
type Library_Level_Subprograms_Rule_Type is new Rule_Template
with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Library_Level_Subprograms_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a library_Level subprogram
procedure Init_Rule (Rule : in out Library_Level_Subprograms_Rule_Type);
Library_Level_Subprograms_Rule :
aliased Library_Level_Subprograms_Rule_Type;
--------------------
-- Local_Packages --
--------------------
-- Local packages in package and generic package specs are detected.
-- Local packages in bodies are not detected
type Local_Packages_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Local_Packages_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a package spec enclosed in another (generic)
-- package spec
procedure Init_Rule (Rule : in out Local_Packages_Rule_Type);
Local_Packages_Rule : aliased Local_Packages_Rule_Type;
-----------------------------------------------
-- Multiple_Entries_In_Protected_Definitions --
-----------------------------------------------
-- At most one entry is allowed in protected object (or in protected type).
-- This is the requirement from the Ravenscar Profile.
-- The situations when a protected definition defines more then one entry
-- are detected (diagnostim nessages are generated for all the entry
-- declarations except the first one).
-- An entry family is counted as one entry.
-- Entries from the private part of the protected definition are also
-- counted
type Multiple_Entries_In_Protected_Definitions_Rule_Type is new
Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Multiple_Entries_In_Protected_Definitions_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is An_Entry_Declaration, checks if the enclosing element is
-- A_Protected_Definition and if there are some other entries declared for
-- the given protected object or type. In case if the protected type/object
-- has more then one entry, the diagnostic message is generated the all but
-- the first entry.
procedure Init_Rule
(Rule : in out Multiple_Entries_In_Protected_Definitions_Rule_Type);
Multiple_Entries_In_Protected_Definitions_Rule :
aliased Multiple_Entries_In_Protected_Definitions_Rule_Type;
------------------
-- Name_Clashes --
------------------
-- Detect that some names are not used as defining identifiers. To activate
-- this rule, one have to provide a reference to a dictionary file as a
-- rule parameter(s), more then one dictionary file can be specificed. If
-- no dictionary file is set, nothing is detcted.
-- Only defining identifiers are detected. but not references. The check is
-- not case-sensitive.
-- See Gnatcheck.Name_Dictionary (spec) for the description of the
-- dictionary structure
type Name_Clashes_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Name_Clashes_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is a defining identifier, checks if it is not in the
-- dictionary of the forbidden names
procedure Init_Rule (Rule : in out Name_Clashes_Rule_Type);
procedure Process_Rule_Parameter
(Rule : in out Name_Clashes_Rule_Type;
Param : String;
Enable : Boolean);
-- If Enable is OFF, this procedure does nothing. If Enable is ON, treats
-- Param as a name of the dictionary file. Scans this file and fill in the
-- dictionary of forbidden names. The rule is turned into 'Enabled" state
-- if the dictionary conatins at least one entry. (Note that this entry may
-- be created by the previous call to this routine)
--
-- We may want to have more sophisticated way of controlling the dictionary
-- of forbidden names. For example, the option "-RRestrict_Name_Space:dict"
-- may remove from the dictionary of forbidden names the names that are
-- stated in 'dict'
Name_Clashes_Rule : aliased Name_Clashes_Rule_Type;
------------------------------
-- Non_Qualified_Aggregates --
------------------------------
-- According to the definition of the Spark language, all the aggregates
-- should be explicitly qualified
-- Non-qualified aggregates are detected
-- A non qualified aggregate is an aggregate that is not an immediate
-- component of a qualified expression.
-- A string literal is not considered as aggregate by this rule, but an
-- array aggregate of some string type is considered as a normal aggregate.
type Non_Qualified_Aggregates_Rule_Type is new Rule_Template
with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Non_Qualified_Aggregates_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is an aggregate, checks that the enclosing element is
-- of A_Qualified_Expression kind
procedure Init_Rule (Rule : in out Non_Qualified_Aggregates_Rule_Type);
Non_Qualified_Aggregates_Rule : aliased Non_Qualified_Aggregates_Rule_Type;
--------------------------
-- Non_SPARK_Attributes --
--------------------------
-- The definition of the Spark language defines a subset of Ada 95
-- attribute designators that can be used in Spark programs.
-- The use of any attribute that is not from this subset is detected
type Non_SPARK_Attributes_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Non_SPARK_Attributes_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element is an attribute, checks that this is the attribute from the
-- Spark subset of Ada 95 attrubutes
procedure Init_Rule (Rule : in out Non_SPARK_Attributes_Rule_Type);
Non_SPARK_Attributes_Rule : aliased Non_SPARK_Attributes_Rule_Type;
------------------------------
-- Non_Tagged_Derived_Types --
------------------------------
-- According to the definition of the Spark language, "derived types are
-- only used for type extensions". Derived type declarations that do not
-- have a record extension part are detected
type Non_Tagged_Derived_Types_Rule_Type is new Rule_Template with
null record;
procedure Rule_Check_Pre_Op
(Rule : in out Non_Tagged_Derived_Types_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks if Element is of A_Derived_Type_Definition kind
procedure Init_Rule (Rule : in out Non_Tagged_Derived_Types_Rule_Type);
Non_Tagged_Derived_Types_Rule : aliased Non_Tagged_Derived_Types_Rule_Type;
----------------------
-- Outer_Loop_Exits --
----------------------
-- According to the definition of the Spark language, an exit statement can
-- transfer control only out of the immediatelly enclosing loop statement.
-- An exit statement containing a loop name that is not the name of the
-- immediatelly enclosing loop statement is detected.
type Outer_Loop_Exits_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Outer_Loop_Exits_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is an exit statement with a loop name that does not
-- denote an immediatelly enclosing loop
procedure Init_Rule (Rule : in out Outer_Loop_Exits_Rule_Type);
Outer_Loop_Exits_Rule : aliased Outer_Loop_Exits_Rule_Type;
--------------------------
-- Overloaded_Operators --
--------------------------
-- According to the definition of the Spark language, the designator of a
-- function cannot be an operator, because operator overloading is not
-- allowed in Spark.
-- A function declaration with an operator symbol as a defining designator
-- is detected.
-- A function body is detected only if the body does not have a separate
-- spec
-- Formal functions are also considered for this rule
-- For a renaming declarations, only renaming-as-declaration is detected
type Overloaded_Operators_Rule_Type is new Rule_Template with
null record;
procedure Rule_Check_Pre_Op
(Rule : in out Overloaded_Operators_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a defining operator symbol.
procedure Init_Rule (Rule : in out Overloaded_Operators_Rule_Type);
Overloaded_Operators_Rule : aliased Overloaded_Operators_Rule_Type;
---------------
-- Recursion --
---------------
-- Recursion (cycles in the call graph) is detected. We detect
-- declarations of recursive subprograms but not calls to recursive
-- subprograms.
type Recursion_Rule_Type is new Global_Rule_Template with null record;
procedure Check_Global_Structure_Node
(Rule : Recursion_Rule_Type;
N : Gnatcheck.Global_State.GS_Node_Id;
Detected : out Boolean);
-- Checks if the given call graph node calls inself.
procedure Init_Rule (Rule : in out Recursion_Rule_Type);
Recursion_Rule : aliased Recursion_Rule_Type;
---------------------------
-- Side_Effect_Functions --
---------------------------
-- Functions with side effect are detected.
-- We define a side effect as changing any data object that is not local
-- for the body of this function.
-- At the moment, we do NOT consider a side effect any input-output
-- operations (changing a state or a content of any file).
-- We do not consider protected functions for this rule (???)
-- There are the following sources of side effect:
-- 1. Explicit (or direct) side-effect:
--
-- - direct assignment to a non-local variable;
--
-- - direct call to an entity that is known to change some data object
-- that is not local for the body of this function (Note, that if F1
-- calls F2 and F2 does have a side effect, this does not
-- automatically mean that F1 also have a side effect, because it may
-- be the case that F2 is declared in F1's body and it changes some
-- data object that is global for F2, but local for F1);
-- 2. Indirect side-effect:
--
-- - Subprogram calls implicitly issued by:
-- - computing initialization expressions from type declarations as
-- a part of object elaboration or allocator evaluation;
-- - computing implicit parameters of subprogram or entry calls or
-- generic instantiations;
--
-- - activation of a task that change some non-local data object
-- (directly or indirectly);
--
-- - elaboration code of a package that is a result of a package
-- instantiation;
--
-- - controlled objects;
-- 3. Situations when we can suspect a side-effect, but the full static
-- check is either impossible or too hard:
--
-- - assignment to access variables or to the objects pointed by access
-- variables;
--
-- - call to a subprogram pointed by access-to-subprogram value
--
-- - dispatching calls;
type Side_Effect_Functions_Rule_Type is new Global_Rule_Template
with null record;
procedure Collect_Global_Info_Pre_Op
(Rule : in out Side_Effect_Functions_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that a given construct may cause a side effect for enclosing
-- scope.
procedure Collect_Global_Info_Post_Op
(Rule : in out Side_Effect_Functions_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks if we can consider a side effect to be fully defined for a given
-- scope. This is only a partial check, because we may not know the side
-- effect status for callees. But in case if we can define that a side
-- effect for a given scope is already known for sure, we do the
-- corresponding settings in the global structure to speed up
-- post-transitive-clousure processing.
procedure Analyze_Global_Structure
(Rule : Side_Effect_Functions_Rule_Type);
-- Traverses the call graph call chains (after making the transitive
-- clousure) and tries to resolve all the situations where we have a side
-- effect not defined completely because a given entity calls some entity
-- for that the side effect was not completely known at the moment of
-- the traversing of the code of the first entity.
-- ??? Recursive chains?
procedure Check_Global_Structure_Node
(Rule : Side_Effect_Functions_Rule_Type;
N : Gnatcheck.Global_State.GS_Node_Id;
Detected : out Boolean);
-- Checks if for the given scope entity we have a side effect.
procedure Init_Rule (Rule : in out Side_Effect_Functions_Rule_Type);
Side_Effect_Functions_Rule : aliased Side_Effect_Functions_Rule_Type;
------------
-- Slices --
------------
-- The definition of the Spark language does not have a slice as a variant
-- of the name syntax structure.
-- The use of slices is detected.
type Slices_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Slices_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a slice
procedure Init_Rule (Rule : in out Slices_Rule_Type);
Slices_Rule : aliased Slices_Rule_Type;
---------------------------------
-- Unconstrained_Array_Returns --
---------------------------------
-- Functions returning unconstrained arrays are detected
-- Functions declarations, function bodies (and body stubs) having no
-- separate declarations and function instantiations are detected. Function
-- calls are not detected. Function renamings are not detected.
type Unconstrained_Array_Returns_Rule_Type is new Rule_Template
with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Unconstrained_Array_Returns_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is the declaration of a function returning an
-- unconstrained array type
procedure Init_Rule (Rule : in out Unconstrained_Array_Returns_Rule_Type);
Unconstrained_Array_Returns_Rule :
aliased Unconstrained_Array_Returns_Rule_Type;
----------------------
-- Universal_Ranges --
----------------------
-- In the Spark language, ranges with the bounds of universal_integer
-- type are not allowed in index constraints, constrained array definitions
-- and FOR-loop parameter specifications.
-- Discrete ranges that are a part of index constraing, constrained array
-- definition or FOR-loop parameter specification, and that have both
-- bounds of the unuversal type integer type are detected. Ranges that have
-- at least one bound of a specific type, (suc as '1 .. N', where N is a
-- variable or an expression of non-universal type) are not detected.
type Universal_Ranges_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Universal_Ranges_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- If Element if of A_Discrete_Simple_Expression_Range kind and its
-- enclosing Element is either A_Loop_Parameter_Specification, or
-- An_Index_Constraint, or A_Discrete_Subtype_Definition, checks that
-- both bounds are of universal_integer type.
procedure Init_Rule (Rule : in out Universal_Ranges_Rule_Type);
Universal_Ranges_Rule : aliased Universal_Ranges_Rule_Type;
------------------------
-- Unused_Subprograms --
------------------------
-- Unused subprograms are detected.
-- In some sense this rule duplicates the functionality of gnatelim
-- For the moment the main purpose of this rule is to use gnatelim tests
-- to check the gnatcheck call graph.
-- ??? What kinds of callable entinies should be checked here?
type Unused_Subprograms_Rule_Type is new Global_Rule_Template with
null record;
procedure Analyze_Global_Structure (Rule : Unused_Subprograms_Rule_Type);
-- Sets Is_Used flags by analysing the Call Graph enry points and call
-- chains. Does not detect any rule violation.
procedure Check_Global_Structure_Node
(Rule : Unused_Subprograms_Rule_Type;
N : Gnatcheck.Global_State.GS_Node_Id;
Detected : out Boolean);
-- Checks if the given call graph node is called by some other (used!)
-- node.
procedure Init_Rule (Rule : in out Unused_Subprograms_Rule_Type);
Unused_Subprograms_Rule : aliased Unused_Subprograms_Rule_Type;
-------------------------
-- USE_PACKAGE_Clauses --
-------------------------
-- Use package clauses are detected. Use type clauses are not detected.
type USE_PACKAGE_Clauses_Rule_Type is new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out USE_PACKAGE_Clauses_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- Checks that Element is a use package clause
procedure Init_Rule (Rule : in out USE_PACKAGE_Clauses_Rule_Type);
USE_PACKAGE_Clauses_Rule : aliased USE_PACKAGE_Clauses_Rule_Type;
----------------------------------------------
-- Volatile_Objects_Without_Address_Clauses --
----------------------------------------------
-- A volatile object that does not have an address clause applied to it is
-- detected
-- At the moment we check the following. If the pragma Volatile is applied
-- to a data object or to the type of this data object, then the address
-- clause should be applied to this object.
-- We do not check this rule for the components of data objects. We do
-- not consider the array components that are volatile as a result of the
-- pragma Volatile_Components. We also do not consider objects that are
-- volatile because they are atomic as a result of pragmas Atomic or
-- Atomic_Components.
-- Only variable declarations, but not constant declarations are detected.
type Volatile_Objects_Without_Address_Clauses_Rule_Type is
new Rule_Template with null record;
procedure Rule_Check_Pre_Op
(Rule : in out Volatile_Objects_Without_Address_Clauses_Rule_Type;
Element : Asis.Element;
Control : in out Traverse_Control;
State : in out Rule_Traversal_State);
-- ???
procedure Init_Rule
(Rule : in out Volatile_Objects_Without_Address_Clauses_Rule_Type);
Volatile_Objects_Without_Address_Clauses_Rule :
aliased Volatile_Objects_Without_Address_Clauses_Rule_Type;
end Gnatcheck.Rules.Default;
|