1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2014, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Aspects
; use Aspects
;
27 with Atree
; use Atree
;
28 with Casing
; use Casing
;
29 with Einfo
; use Einfo
;
30 with Errout
; use Errout
;
31 with Debug
; use Debug
;
32 with Fname
; use Fname
;
33 with Fname
.UF
; use Fname
.UF
;
36 with Sinfo
; use Sinfo
;
37 with Sinput
; use Sinput
;
38 with Snames
; use Snames
;
39 with Stand
; use Stand
;
40 with Uname
; use Uname
;
42 package body Restrict
is
44 -------------------------------
45 -- SPARK Restriction Control --
46 -------------------------------
48 -- SPARK HIDE directives allow the effect of the SPARK_05 restriction to be
49 -- turned off for a specified region of code, and the following tables are
50 -- the data structures used to keep track of these regions.
52 -- The table contains pairs of source locations, the first being the start
53 -- location for hidden region, and the second being the end location.
55 -- Note that the start location is included in the hidden region, while
56 -- the end location is excluded from it. (It typically corresponds to the
57 -- next token during scanning.)
59 type SPARK_Hide_Entry
is record
64 package SPARK_Hides
is new Table
.Table
(
65 Table_Component_Type
=> SPARK_Hide_Entry
,
66 Table_Index_Type
=> Natural,
69 Table_Increment
=> 200,
70 Table_Name
=> "SPARK Hides");
72 --------------------------------
73 -- Package Local Declarations --
74 --------------------------------
76 Config_Cunit_Boolean_Restrictions
: Save_Cunit_Boolean_Restrictions
;
77 -- Save compilation unit restrictions set by config pragma files
79 Restricted_Profile_Result
: Boolean := False;
80 -- This switch memoizes the result of Restricted_Profile function calls for
81 -- improved efficiency. Valid only if Restricted_Profile_Cached is True.
82 -- Note: if this switch is ever set True, it is never turned off again.
84 Restricted_Profile_Cached
: Boolean := False;
85 -- This flag is set to True if the Restricted_Profile_Result contains the
86 -- correct cached result of Restricted_Profile calls.
88 No_Specification_Of_Aspects
: array (Aspect_Id
) of Source_Ptr
:=
89 (others => No_Location
);
90 -- Entries in this array are set to point to a previously occuring pragma
91 -- that activates a No_Specification_Of_Aspect check.
93 No_Specification_Of_Aspect_Warning
: array (Aspect_Id
) of Boolean :=
95 -- An entry in this array is set False in reponse to a previous call to
96 -- Set_No_Speficiation_Of_Aspect for pragmas in the main unit that
97 -- specify Warning as False. Once set False, an entry is never reset.
99 No_Specification_Of_Aspect_Set
: Boolean := False;
100 -- Set True if any entry of No_Specifcation_Of_Aspects has been set True.
101 -- Once set True, this is never turned off again.
103 No_Use_Of_Attribute
: array (Attribute_Id
) of Source_Ptr
:=
104 (others => No_Location
);
106 No_Use_Of_Attribute_Warning
: array (Attribute_Id
) of Boolean :=
109 No_Use_Of_Attribute_Set
: Boolean := False;
110 -- Indicates that No_Use_Of_Attribute was set at least once
112 No_Use_Of_Pragma
: array (Pragma_Id
) of Source_Ptr
:=
113 (others => No_Location
);
115 No_Use_Of_Pragma_Warning
: array (Pragma_Id
) of Boolean :=
118 No_Use_Of_Pragma_Set
: Boolean := False;
119 -- Indicates that No_Use_Of_Pragma was set at least once
121 -----------------------
122 -- Local Subprograms --
123 -----------------------
125 procedure Restriction_Msg
(R
: Restriction_Id
; N
: Node_Id
);
126 -- Called if a violation of restriction R at node N is found. This routine
127 -- outputs the appropriate message or messages taking care of warning vs
128 -- real violation, serious vs non-serious, implicit vs explicit, the second
129 -- message giving the profile name if needed, and the location information.
131 function Same_Unit
(U1
, U2
: Node_Id
) return Boolean;
132 -- Returns True iff U1 and U2 represent the same library unit. Used for
133 -- handling of No_Dependence => Unit restriction case.
135 function Suppress_Restriction_Message
(N
: Node_Id
) return Boolean;
136 -- N is the node for a possible restriction violation message, but the
137 -- message is to be suppressed if this is an internal file and this file is
138 -- not the main unit. Returns True if message is to be suppressed.
144 function Abort_Allowed
return Boolean is
146 if Restrictions
.Set
(No_Abort_Statements
)
147 and then Restrictions
.Set
(Max_Asynchronous_Select_Nesting
)
148 and then Restrictions
.Value
(Max_Asynchronous_Select_Nesting
) = 0
156 ----------------------------------------
157 -- Add_To_Config_Boolean_Restrictions --
158 ----------------------------------------
160 procedure Add_To_Config_Boolean_Restrictions
(R
: Restriction_Id
) is
162 Config_Cunit_Boolean_Restrictions
(R
) := True;
163 end Add_To_Config_Boolean_Restrictions
;
164 -- Add specified restriction to stored configuration boolean restrictions.
165 -- This is used for handling the special case of No_Elaboration_Code.
167 -------------------------
168 -- Check_Compiler_Unit --
169 -------------------------
171 procedure Check_Compiler_Unit
(Feature
: String; N
: Node_Id
) is
173 if Compiler_Unit
then
174 Error_Msg_N
(Feature
& " not allowed in compiler unit!!??", N
);
176 end Check_Compiler_Unit
;
178 procedure Check_Compiler_Unit
(Feature
: String; Loc
: Source_Ptr
) is
180 if Compiler_Unit
then
181 Error_Msg
(Feature
& " not allowed in compiler unit!!??", Loc
);
183 end Check_Compiler_Unit
;
185 ------------------------------------
186 -- Check_Elaboration_Code_Allowed --
187 ------------------------------------
189 procedure Check_Elaboration_Code_Allowed
(N
: Node_Id
) is
191 Check_Restriction
(No_Elaboration_Code
, N
);
192 end Check_Elaboration_Code_Allowed
;
194 --------------------------------
195 -- Check_No_Implicit_Aliasing --
196 --------------------------------
198 procedure Check_No_Implicit_Aliasing
(Obj
: Node_Id
) is
202 -- If restriction not active, nothing to check
204 if not Restriction_Active
(No_Implicit_Aliasing
) then
208 -- If we have an entity name, check entity
210 if Is_Entity_Name
(Obj
) then
213 -- Restriction applies to entities that are objects
215 if Is_Object
(E
) then
216 if Is_Aliased
(E
) then
219 elsif Present
(Renamed_Object
(E
)) then
220 Check_No_Implicit_Aliasing
(Renamed_Object
(E
));
224 -- If we don't have an object, then it's OK
230 -- For selected component, check selector
232 elsif Nkind
(Obj
) = N_Selected_Component
then
233 Check_No_Implicit_Aliasing
(Selector_Name
(Obj
));
236 -- Indexed component is OK if aliased components
238 elsif Nkind
(Obj
) = N_Indexed_Component
then
239 if Has_Aliased_Components
(Etype
(Prefix
(Obj
)))
241 (Is_Access_Type
(Etype
(Prefix
(Obj
)))
242 and then Has_Aliased_Components
243 (Designated_Type
(Etype
(Prefix
(Obj
)))))
248 -- For type conversion, check converted expression
250 elsif Nkind_In
(Obj
, N_Unchecked_Type_Conversion
, N_Type_Conversion
) then
251 Check_No_Implicit_Aliasing
(Expression
(Obj
));
254 -- Explicit dereference is always OK
256 elsif Nkind
(Obj
) = N_Explicit_Dereference
then
260 -- If we fall through, then we have an aliased view that does not meet
261 -- the rules for being explicitly aliased, so issue restriction msg.
263 Check_Restriction
(No_Implicit_Aliasing
, Obj
);
264 end Check_No_Implicit_Aliasing
;
266 -----------------------------------------
267 -- Check_Implicit_Dynamic_Code_Allowed --
268 -----------------------------------------
270 procedure Check_Implicit_Dynamic_Code_Allowed
(N
: Node_Id
) is
272 Check_Restriction
(No_Implicit_Dynamic_Code
, N
);
273 end Check_Implicit_Dynamic_Code_Allowed
;
275 ----------------------------------
276 -- Check_No_Implicit_Heap_Alloc --
277 ----------------------------------
279 procedure Check_No_Implicit_Heap_Alloc
(N
: Node_Id
) is
281 Check_Restriction
(No_Implicit_Heap_Allocations
, N
);
282 end Check_No_Implicit_Heap_Alloc
;
284 -----------------------------------
285 -- Check_Obsolescent_2005_Entity --
286 -----------------------------------
288 procedure Check_Obsolescent_2005_Entity
(E
: Entity_Id
; N
: Node_Id
) is
289 function Chars_Is
(E
: Entity_Id
; S
: String) return Boolean;
290 -- Return True iff Chars (E) matches S (given in lower case)
296 function Chars_Is
(E
: Entity_Id
; S
: String) return Boolean is
297 Nam
: constant Name_Id
:= Chars
(E
);
299 if Length_Of_Name
(Nam
) /= S
'Length then
302 return Get_Name_String
(Nam
) = S
;
306 -- Start of processing for Check_Obsolescent_2005_Entity
309 if Restriction_Check_Required
(No_Obsolescent_Features
)
310 and then Ada_Version
>= Ada_2005
311 and then Chars_Is
(Scope
(E
), "handling")
312 and then Chars_Is
(Scope
(Scope
(E
)), "characters")
313 and then Chars_Is
(Scope
(Scope
(Scope
(E
))), "ada")
314 and then Scope
(Scope
(Scope
(Scope
(E
)))) = Standard_Standard
316 if Chars_Is
(E
, "is_character") or else
317 Chars_Is
(E
, "is_string") or else
318 Chars_Is
(E
, "to_character") or else
319 Chars_Is
(E
, "to_string") or else
320 Chars_Is
(E
, "to_wide_character") or else
321 Chars_Is
(E
, "to_wide_string")
323 Check_Restriction
(No_Obsolescent_Features
, N
);
326 end Check_Obsolescent_2005_Entity
;
328 ---------------------------
329 -- Check_Restricted_Unit --
330 ---------------------------
332 procedure Check_Restricted_Unit
(U
: Unit_Name_Type
; N
: Node_Id
) is
334 if Suppress_Restriction_Message
(N
) then
337 elsif Is_Spec_Name
(U
) then
339 Fnam
: constant File_Name_Type
:=
340 Get_File_Name
(U
, Subunit
=> False);
345 Get_Name_String
(Fnam
);
347 -- Nothing to do if name not at least 5 characters long ending
348 -- in .ads or .adb extension, which we strip.
351 or else (Name_Buffer
(Name_Len
- 3 .. Name_Len
) /= ".ads"
353 Name_Buffer
(Name_Len
- 3 .. Name_Len
) /= ".adb")
358 -- Strip extension and pad to eight characters
360 Name_Len
:= Name_Len
- 4;
361 Add_Str_To_Name_Buffer
((Name_Len
+ 1 .. 8 => ' '));
363 -- If predefined unit, check the list of restricted units
365 if Is_Predefined_File_Name
(Fnam
) then
366 for J
in Unit_Array
'Range loop
368 and then Name_Buffer
(1 .. 8) = Unit_Array
(J
).Filenm
370 Check_Restriction
(Unit_Array
(J
).Res_Id
, N
);
374 -- If not predefined unit, then one special check still
375 -- remains. GNAT.Current_Exception is not allowed if we have
376 -- restriction No_Exception_Propagation active.
379 if Name_Buffer
(1 .. 8) = "g-curexc" then
380 Check_Restriction
(No_Exception_Propagation
, N
);
385 end Check_Restricted_Unit
;
387 -----------------------
388 -- Check_Restriction --
389 -----------------------
391 procedure Check_Restriction
394 V
: Uint
:= Uint_Minus_1
)
396 Msg_Issued
: Boolean;
397 pragma Unreferenced
(Msg_Issued
);
399 Check_Restriction
(Msg_Issued
, R
, N
, V
);
400 end Check_Restriction
;
402 procedure Check_Restriction
403 (Msg_Issued
: out Boolean;
406 V
: Uint
:= Uint_Minus_1
)
409 -- V converted to integer form. If V is greater than Integer'Last,
410 -- it is reset to minus 1 (unknown value).
412 procedure Update_Restrictions
(Info
: in out Restrictions_Info
);
413 -- Update violation information in Info.Violated and Info.Count
415 -------------------------
416 -- Update_Restrictions --
417 -------------------------
419 procedure Update_Restrictions
(Info
: in out Restrictions_Info
) is
421 -- If not violated, set as violated now
423 if not Info
.Violated
(R
) then
424 Info
.Violated
(R
) := True;
426 if R
in All_Parameter_Restrictions
then
428 Info
.Unknown
(R
) := True;
432 Info
.Count
(R
) := VV
;
436 -- Otherwise if violated already and a parameter restriction,
437 -- update count by maximizing or summing depending on restriction.
439 elsif R
in All_Parameter_Restrictions
then
441 -- If new value is unknown, result is unknown
444 Info
.Unknown
(R
) := True;
446 -- If checked by maximization, nothing to do because the
447 -- check is per-object.
449 elsif R
in Checked_Max_Parameter_Restrictions
then
452 -- If checked by adding, do add, checking for overflow
454 elsif R
in Checked_Add_Parameter_Restrictions
then
456 pragma Unsuppress
(Overflow_Check
);
458 Info
.Count
(R
) := Info
.Count
(R
) + VV
;
460 when Constraint_Error
=>
461 Info
.Count
(R
) := Integer'Last;
462 Info
.Unknown
(R
) := True;
465 -- Should not be able to come here, known counts should only
466 -- occur for restrictions that are Checked_max or Checked_Sum.
472 end Update_Restrictions
;
474 -- Start of processing for Check_Restriction
479 -- In CodePeer and SPARK mode, we do not want to check for any
480 -- restriction, or set additional restrictions other than those already
481 -- set in gnat1drv.adb so that we have consistency between each
484 -- Just checking, SPARK does not allow restrictions to be set ???
486 if CodePeer_Mode
or GNATprove_Mode
then
490 -- In SPARK mode, issue an error for any use of class-wide, even if the
491 -- No_Dispatch restriction is not set.
493 if R
= No_Dispatch
then
494 Check_SPARK_05_Restriction
("class-wide is not allowed", N
);
497 if UI_Is_In_Int_Range
(V
) then
498 VV
:= Integer (UI_To_Int
(V
));
503 -- Count can only be specified in the checked val parameter case
505 pragma Assert
(VV
< 0 or else R
in Checked_Val_Parameter_Restrictions
);
507 -- Nothing to do if value of zero specified for parameter restriction
513 -- Update current restrictions
515 Update_Restrictions
(Restrictions
);
517 -- If in main extended unit, update main restrictions as well. Note
518 -- that as usual we check for Main_Unit explicitly to deal with the
519 -- case of configuration pragma files.
521 if Current_Sem_Unit
= Main_Unit
522 or else In_Extended_Main_Source_Unit
(N
)
524 Update_Restrictions
(Main_Restrictions
);
527 -- Nothing to do if restriction message suppressed
529 if Suppress_Restriction_Message
(N
) then
532 -- If restriction not set, nothing to do
534 elsif not Restrictions
.Set
(R
) then
537 -- Don't complain about No_Obsolescent_Features in an instance, since we
538 -- will complain on the template, which is much better. Are there other
539 -- cases like this ??? Do we need a more general mechanism ???
541 elsif R
= No_Obsolescent_Features
542 and then Instantiation_Location
(Sloc
(N
)) /= No_Location
546 -- Here if restriction set, check for violation (this is a Boolean
547 -- restriction, or a parameter restriction with a value of zero and an
548 -- unknown count, or a parameter restriction with a known value that
549 -- exceeds the restriction count).
551 elsif R
in All_Boolean_Restrictions
552 or else (Restrictions
.Unknown
(R
)
553 and then Restrictions
.Value
(R
) = 0)
554 or else Restrictions
.Count
(R
) > Restrictions
.Value
(R
)
557 Restriction_Msg
(R
, N
);
560 -- For Max_Entries and the like, do not carry forward the violation
561 -- count because it does not affect later declarations.
563 if R
in Checked_Max_Parameter_Restrictions
then
564 Restrictions
.Count
(R
) := 0;
565 Restrictions
.Violated
(R
) := False;
567 end Check_Restriction
;
569 -------------------------------------
570 -- Check_Restriction_No_Dependence --
571 -------------------------------------
573 procedure Check_Restriction_No_Dependence
(U
: Node_Id
; Err
: Node_Id
) is
577 -- Ignore call if node U is not in the main source unit. This avoids
578 -- cascaded errors, e.g. when Ada.Containers units with other units.
579 -- However, allow Standard_Location here, since this catches some cases
580 -- of constructs that get converted to run-time calls.
582 if not In_Extended_Main_Source_Unit
(U
)
583 and then Sloc
(U
) /= Standard_Location
588 -- Loop through entries in No_Dependence table to check each one in turn
590 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
591 DU
:= No_Dependences
.Table
(J
).Unit
;
593 if Same_Unit
(U
, DU
) then
594 Error_Msg_Sloc
:= Sloc
(DU
);
595 Error_Msg_Node_1
:= DU
;
597 if No_Dependences
.Table
(J
).Warn
then
599 ("?*?violation of restriction `No_Dependence '='> &`#",
603 ("|violation of restriction `No_Dependence '='> &`#",
610 end Check_Restriction_No_Dependence
;
612 --------------------------------------------------
613 -- Check_Restriction_No_Specification_Of_Aspect --
614 --------------------------------------------------
616 procedure Check_Restriction_No_Specification_Of_Aspect
(N
: Node_Id
) is
621 -- Ignore call if no instances of this restriction set
623 if not No_Specification_Of_Aspect_Set
then
627 -- Ignore call if node N is not in the main source unit, since we only
628 -- give messages for the main unit. This avoids giving messages for
629 -- aspects that are specified in withed units.
631 if not In_Extended_Main_Source_Unit
(N
) then
635 Id
:= Identifier
(N
);
636 A_Id
:= Get_Aspect_Id
(Chars
(Id
));
637 pragma Assert
(A_Id
/= No_Aspect
);
639 Error_Msg_Sloc
:= No_Specification_Of_Aspects
(A_Id
);
641 if Error_Msg_Sloc
/= No_Location
then
642 Error_Msg_Node_1
:= Id
;
643 Error_Msg_Warn
:= No_Specification_Of_Aspect_Warning
(A_Id
);
645 ("<*<violation of restriction `No_Specification_Of_Aspect '='> &`#",
648 end Check_Restriction_No_Specification_Of_Aspect
;
650 -------------------------------------------
651 -- Check_Restriction_No_Use_Of_Attribute --
652 --------------------------------------------
654 procedure Check_Restriction_No_Use_Of_Attribute
(N
: Node_Id
) is
655 Id
: constant Name_Id
:= Chars
(N
);
656 A_Id
: constant Attribute_Id
:= Get_Attribute_Id
(Id
);
659 -- Ignore call if node N is not in the main source unit, since we only
660 -- give messages for the main unit. This avoids giving messages for
661 -- aspects that are specified in withed units.
663 if not In_Extended_Main_Source_Unit
(N
) then
667 -- If nothing set, nothing to check
669 if not No_Use_Of_Attribute_Set
then
673 Error_Msg_Sloc
:= No_Use_Of_Attribute
(A_Id
);
675 if Error_Msg_Sloc
/= No_Location
then
676 Error_Msg_Node_1
:= N
;
677 Error_Msg_Warn
:= No_Use_Of_Attribute_Warning
(A_Id
);
679 ("<*<violation of restriction `No_Use_Of_Attribute '='> &`#", N
);
681 end Check_Restriction_No_Use_Of_Attribute
;
683 ----------------------------------------
684 -- Check_Restriction_No_Use_Of_Pragma --
685 ----------------------------------------
687 procedure Check_Restriction_No_Use_Of_Pragma
(N
: Node_Id
) is
688 Id
: constant Node_Id
:= Pragma_Identifier
(N
);
689 P_Id
: constant Pragma_Id
:= Get_Pragma_Id
(Chars
(Id
));
692 -- Ignore call if node N is not in the main source unit, since we only
693 -- give messages for the main unit. This avoids giving messages for
694 -- aspects that are specified in withed units.
696 if not In_Extended_Main_Source_Unit
(N
) then
700 -- If nothing set, nothing to check
702 if not No_Use_Of_Pragma_Set
then
706 Error_Msg_Sloc
:= No_Use_Of_Pragma
(P_Id
);
708 if Error_Msg_Sloc
/= No_Location
then
709 Error_Msg_Node_1
:= Id
;
710 Error_Msg_Warn
:= No_Use_Of_Pragma_Warning
(P_Id
);
712 ("<*<violation of restriction `No_Use_Of_Pragma '='> &`#", Id
);
714 end Check_Restriction_No_Use_Of_Pragma
;
716 --------------------------------------
717 -- Check_Wide_Character_Restriction --
718 --------------------------------------
720 procedure Check_Wide_Character_Restriction
(E
: Entity_Id
; N
: Node_Id
) is
722 if Restriction_Check_Required
(No_Wide_Characters
)
723 and then Comes_From_Source
(N
)
726 T
: constant Entity_Id
:= Root_Type
(E
);
728 if T
= Standard_Wide_Character
or else
729 T
= Standard_Wide_String
or else
730 T
= Standard_Wide_Wide_Character
or else
731 T
= Standard_Wide_Wide_String
733 Check_Restriction
(No_Wide_Characters
, N
);
737 end Check_Wide_Character_Restriction
;
739 ----------------------------------------
740 -- Cunit_Boolean_Restrictions_Restore --
741 ----------------------------------------
743 procedure Cunit_Boolean_Restrictions_Restore
744 (R
: Save_Cunit_Boolean_Restrictions
)
747 for J
in Cunit_Boolean_Restrictions
loop
748 Restrictions
.Set
(J
) := R
(J
);
751 -- If No_Elaboration_Code set in configuration restrictions, and we
752 -- in the main extended source, then set it here now. This is part of
753 -- the special processing for No_Elaboration_Code.
755 if In_Extended_Main_Source_Unit
(Cunit_Entity
(Current_Sem_Unit
))
756 and then Config_Cunit_Boolean_Restrictions
(No_Elaboration_Code
)
758 Restrictions
.Set
(No_Elaboration_Code
) := True;
760 end Cunit_Boolean_Restrictions_Restore
;
762 -------------------------------------
763 -- Cunit_Boolean_Restrictions_Save --
764 -------------------------------------
766 function Cunit_Boolean_Restrictions_Save
767 return Save_Cunit_Boolean_Restrictions
769 R
: Save_Cunit_Boolean_Restrictions
;
772 for J
in Cunit_Boolean_Restrictions
loop
773 R
(J
) := Restrictions
.Set
(J
);
777 end Cunit_Boolean_Restrictions_Save
;
779 ------------------------
780 -- Get_Restriction_Id --
781 ------------------------
783 function Get_Restriction_Id
784 (N
: Name_Id
) return Restriction_Id
788 Set_Casing
(All_Upper_Case
);
790 for J
in All_Restrictions
loop
792 S
: constant String := Restriction_Id
'Image (J
);
794 if S
= Name_Buffer
(1 .. Name_Len
) then
800 return Not_A_Restriction_Id
;
801 end Get_Restriction_Id
;
803 --------------------------------
804 -- Is_In_Hidden_Part_In_SPARK --
805 --------------------------------
807 function Is_In_Hidden_Part_In_SPARK
(Loc
: Source_Ptr
) return Boolean is
809 -- Loop through table of hidden ranges
811 for J
in SPARK_Hides
.First
.. SPARK_Hides
.Last
loop
812 if SPARK_Hides
.Table
(J
).Start
<= Loc
813 and then Loc
< SPARK_Hides
.Table
(J
).Stop
820 end Is_In_Hidden_Part_In_SPARK
;
822 -------------------------------
823 -- No_Exception_Handlers_Set --
824 -------------------------------
826 function No_Exception_Handlers_Set
return Boolean is
828 return (No_Run_Time_Mode
or else Configurable_Run_Time_Mode
)
829 and then (Restrictions
.Set
(No_Exception_Handlers
)
831 Restrictions
.Set
(No_Exception_Propagation
));
832 end No_Exception_Handlers_Set
;
834 -------------------------------------
835 -- No_Exception_Propagation_Active --
836 -------------------------------------
838 function No_Exception_Propagation_Active
return Boolean is
840 return (No_Run_Time_Mode
841 or else Configurable_Run_Time_Mode
842 or else Debug_Flag_Dot_G
)
843 and then Restriction_Active
(No_Exception_Propagation
);
844 end No_Exception_Propagation_Active
;
846 --------------------------------
847 -- OK_No_Dependence_Unit_Name --
848 --------------------------------
850 function OK_No_Dependence_Unit_Name
(N
: Node_Id
) return Boolean is
852 if Nkind
(N
) = N_Selected_Component
then
854 OK_No_Dependence_Unit_Name
(Prefix
(N
))
856 OK_No_Dependence_Unit_Name
(Selector_Name
(N
));
858 elsif Nkind
(N
) = N_Identifier
then
862 Error_Msg_N
("wrong form for unit name for No_Dependence", N
);
865 end OK_No_Dependence_Unit_Name
;
867 ----------------------------------
868 -- Process_Restriction_Synonyms --
869 ----------------------------------
871 -- Note: body of this function must be coordinated with list of renaming
872 -- declarations in System.Rident.
874 function Process_Restriction_Synonyms
(N
: Node_Id
) return Name_Id
876 Old_Name
: constant Name_Id
:= Chars
(N
);
881 when Name_Boolean_Entry_Barriers
=>
882 New_Name
:= Name_Simple_Barriers
;
884 when Name_Max_Entry_Queue_Depth
=>
885 New_Name
:= Name_Max_Entry_Queue_Length
;
887 when Name_No_Dynamic_Interrupts
=>
888 New_Name
:= Name_No_Dynamic_Attachment
;
890 when Name_No_Requeue
=>
891 New_Name
:= Name_No_Requeue_Statements
;
893 when Name_No_Task_Attributes
=>
894 New_Name
:= Name_No_Task_Attributes_Package
;
896 -- SPARK is special in that we unconditionally warn
899 Error_Msg_Name_1
:= Name_SPARK
;
900 Error_Msg_N
("restriction identifier % is obsolescent??", N
);
901 Error_Msg_Name_1
:= Name_SPARK_05
;
902 Error_Msg_N
("|use restriction identifier % instead??", N
);
903 return Name_SPARK_05
;
909 -- Output warning if we are warning on obsolescent features for all
910 -- cases other than SPARK.
912 if Warn_On_Obsolescent_Feature
then
913 Error_Msg_Name_1
:= Old_Name
;
914 Error_Msg_N
("restriction identifier % is obsolescent?j?", N
);
915 Error_Msg_Name_1
:= New_Name
;
916 Error_Msg_N
("|use restriction identifier % instead?j?", N
);
920 end Process_Restriction_Synonyms
;
922 --------------------------------------
923 -- Reset_Cunit_Boolean_Restrictions --
924 --------------------------------------
926 procedure Reset_Cunit_Boolean_Restrictions
is
928 for J
in Cunit_Boolean_Restrictions
loop
929 Restrictions
.Set
(J
) := False;
931 end Reset_Cunit_Boolean_Restrictions
;
933 -----------------------------------------------
934 -- Restore_Config_Cunit_Boolean_Restrictions --
935 -----------------------------------------------
937 procedure Restore_Config_Cunit_Boolean_Restrictions
is
939 Cunit_Boolean_Restrictions_Restore
(Config_Cunit_Boolean_Restrictions
);
940 end Restore_Config_Cunit_Boolean_Restrictions
;
942 ------------------------
943 -- Restricted_Profile --
944 ------------------------
946 function Restricted_Profile
return Boolean is
948 if Restricted_Profile_Cached
then
949 return Restricted_Profile_Result
;
952 Restricted_Profile_Result
:= True;
953 Restricted_Profile_Cached
:= True;
956 R
: Restriction_Flags
renames Profile_Info
(Restricted
).Set
;
957 V
: Restriction_Values
renames Profile_Info
(Restricted
).Value
;
959 for J
in R
'Range loop
961 and then (Restrictions
.Set
(J
) = False
962 or else Restriction_Warnings
(J
)
964 (J
in All_Parameter_Restrictions
965 and then Restrictions
.Value
(J
) > V
(J
)))
967 Restricted_Profile_Result
:= False;
972 return Restricted_Profile_Result
;
975 end Restricted_Profile
;
977 ------------------------
978 -- Restriction_Active --
979 ------------------------
981 function Restriction_Active
(R
: All_Restrictions
) return Boolean is
983 return Restrictions
.Set
(R
) and then not Restriction_Warnings
(R
);
984 end Restriction_Active
;
986 --------------------------------
987 -- Restriction_Check_Required --
988 --------------------------------
990 function Restriction_Check_Required
(R
: All_Restrictions
) return Boolean is
992 return Restrictions
.Set
(R
);
993 end Restriction_Check_Required
;
995 ---------------------
996 -- Restriction_Msg --
997 ---------------------
999 procedure Restriction_Msg
(R
: Restriction_Id
; N
: Node_Id
) is
1000 Msg
: String (1 .. 100);
1003 procedure Add_Char
(C
: Character);
1004 -- Append given character to Msg, bumping Len
1006 procedure Add_Str
(S
: String);
1007 -- Append given string to Msg, bumping Len appropriately
1009 procedure Id_Case
(S
: String; Quotes
: Boolean := True);
1010 -- Given a string S, case it according to current identifier casing,
1011 -- except for SPARK_05 (an acronym) which is set all upper case, and
1012 -- store in Error_Msg_String. Then append `~` to the message buffer
1013 -- to output the string unchanged surrounded in quotes. The quotes
1014 -- are suppressed if Quotes = False.
1020 procedure Add_Char
(C
: Character) is
1030 procedure Add_Str
(S
: String) is
1032 Msg
(Len
+ 1 .. Len
+ S
'Length) := S
;
1033 Len
:= Len
+ S
'Length;
1040 procedure Id_Case
(S
: String; Quotes
: Boolean := True) is
1042 Name_Buffer
(1 .. S
'Last) := S
;
1043 Name_Len
:= S
'Length;
1045 if R
= SPARK_05
then
1048 Set_Casing
(Identifier_Casing
(Get_Source_File_Index
(Sloc
(N
))));
1051 Error_Msg_Strlen
:= Name_Len
;
1052 Error_Msg_String
(1 .. Name_Len
) := Name_Buffer
(1 .. Name_Len
);
1061 -- Start of processing for Restriction_Msg
1064 -- Set warning message if warning
1066 if Restriction_Warnings
(R
) then
1069 -- If real violation (not warning), then mark it as non-serious unless
1070 -- it is a violation of No_Finalization in which case we leave it as a
1071 -- serious message, since otherwise we get crashes during attempts to
1072 -- expand stuff that is not properly formed due to assumptions made
1073 -- about no finalization being present.
1075 elsif R
/= No_Finalization
then
1079 Error_Msg_Sloc
:= Restrictions_Loc
(R
);
1081 -- Set main message, adding implicit if no source location
1083 if Error_Msg_Sloc
> No_Location
1084 or else Error_Msg_Sloc
= System_Location
1086 Add_Str
("violation of restriction ");
1088 Add_Str
("violation of implicit restriction ");
1089 Error_Msg_Sloc
:= No_Location
;
1092 -- Case of parameterized restriction
1094 if R
in All_Parameter_Restrictions
then
1096 Id_Case
(Restriction_Id
'Image (R
), Quotes
=> False);
1098 Error_Msg_Uint_1
:= UI_From_Int
(Int
(Restrictions
.Value
(R
)));
1100 -- Case of boolean restriction
1103 Id_Case
(Restriction_Id
'Image (R
));
1106 -- Case of no secondary profile continuation message
1108 if Restriction_Profile_Name
(R
) = No_Profile
then
1109 if Error_Msg_Sloc
/= No_Location
then
1114 Error_Msg_N
(Msg
(1 .. Len
), N
);
1116 -- Case of secondary profile continuation message present
1120 Error_Msg_N
(Msg
(1 .. Len
), N
);
1125 -- Set as warning if warning case
1127 if Restriction_Warnings
(R
) then
1133 Add_Str
("from profile ");
1134 Id_Case
(Profile_Name
'Image (Restriction_Profile_Name
(R
)));
1136 -- Add location if we have one
1138 if Error_Msg_Sloc
/= No_Location
then
1142 -- Output unconditional message and we are done
1145 Error_Msg_N
(Msg
(1 .. Len
), N
);
1147 end Restriction_Msg
;
1153 function Same_Unit
(U1
, U2
: Node_Id
) return Boolean is
1155 if Nkind
(U1
) = N_Identifier
and then Nkind
(U2
) = N_Identifier
then
1156 return Chars
(U1
) = Chars
(U2
);
1158 elsif Nkind_In
(U1
, N_Selected_Component
, N_Expanded_Name
)
1160 Nkind_In
(U2
, N_Selected_Component
, N_Expanded_Name
)
1162 return Same_Unit
(Prefix
(U1
), Prefix
(U2
))
1164 Same_Unit
(Selector_Name
(U1
), Selector_Name
(U2
));
1170 --------------------------------------------
1171 -- Save_Config_Cunit_Boolean_Restrictions --
1172 --------------------------------------------
1174 procedure Save_Config_Cunit_Boolean_Restrictions
is
1176 Config_Cunit_Boolean_Restrictions
:= Cunit_Boolean_Restrictions_Save
;
1177 end Save_Config_Cunit_Boolean_Restrictions
;
1179 ------------------------------
1180 -- Set_Hidden_Part_In_SPARK --
1181 ------------------------------
1183 procedure Set_Hidden_Part_In_SPARK
(Loc1
, Loc2
: Source_Ptr
) is
1185 SPARK_Hides
.Increment_Last
;
1186 SPARK_Hides
.Table
(SPARK_Hides
.Last
).Start
:= Loc1
;
1187 SPARK_Hides
.Table
(SPARK_Hides
.Last
).Stop
:= Loc2
;
1188 end Set_Hidden_Part_In_SPARK
;
1190 ------------------------------
1191 -- Set_Profile_Restrictions --
1192 ------------------------------
1194 procedure Set_Profile_Restrictions
1199 R
: Restriction_Flags
renames Profile_Info
(P
).Set
;
1200 V
: Restriction_Values
renames Profile_Info
(P
).Value
;
1203 for J
in R
'Range loop
1206 Already_Restricted
: constant Boolean := Restriction_Active
(J
);
1209 -- Set the restriction
1211 if J
in All_Boolean_Restrictions
then
1212 Set_Restriction
(J
, N
);
1214 Set_Restriction
(J
, N
, V
(J
));
1217 -- Record that this came from a Profile[_Warnings] restriction
1219 Restriction_Profile_Name
(J
) := P
;
1221 -- Set warning flag, except that we do not set the warning
1222 -- flag if the restriction was already active and this is
1223 -- the warning case. That avoids a warning overriding a real
1224 -- restriction, which should never happen.
1226 if not (Warn
and Already_Restricted
) then
1227 Restriction_Warnings
(J
) := Warn
;
1232 end Set_Profile_Restrictions
;
1234 ---------------------
1235 -- Set_Restriction --
1236 ---------------------
1238 -- Case of Boolean restriction
1240 procedure Set_Restriction
1241 (R
: All_Boolean_Restrictions
;
1245 Restrictions
.Set
(R
) := True;
1247 if Restricted_Profile_Cached
and Restricted_Profile_Result
then
1250 Restricted_Profile_Cached
:= False;
1253 -- Set location, but preserve location of system restriction for nice
1254 -- error msg with run time name.
1256 if Restrictions_Loc
(R
) /= System_Location
then
1257 Restrictions_Loc
(R
) := Sloc
(N
);
1260 -- Note restriction came from restriction pragma, not profile
1262 Restriction_Profile_Name
(R
) := No_Profile
;
1264 -- Record the restriction if we are in the main unit, or in the extended
1265 -- main unit. The reason that we test separately for Main_Unit is that
1266 -- gnat.adc is processed with Current_Sem_Unit = Main_Unit, but nodes in
1267 -- gnat.adc do not appear to be in the extended main source unit (they
1268 -- probably should do ???)
1270 if Current_Sem_Unit
= Main_Unit
1271 or else In_Extended_Main_Source_Unit
(N
)
1273 if not Restriction_Warnings
(R
) then
1274 Main_Restrictions
.Set
(R
) := True;
1277 end Set_Restriction
;
1279 -- Case of parameter restriction
1281 procedure Set_Restriction
1282 (R
: All_Parameter_Restrictions
;
1287 if Restricted_Profile_Cached
and Restricted_Profile_Result
then
1290 Restricted_Profile_Cached
:= False;
1293 if Restrictions
.Set
(R
) then
1294 if V
< Restrictions
.Value
(R
) then
1295 Restrictions
.Value
(R
) := V
;
1296 Restrictions_Loc
(R
) := Sloc
(N
);
1300 Restrictions
.Set
(R
) := True;
1301 Restrictions
.Value
(R
) := V
;
1302 Restrictions_Loc
(R
) := Sloc
(N
);
1305 -- Record the restriction if we are in the main unit, or in the extended
1306 -- main unit. The reason that we test separately for Main_Unit is that
1307 -- gnat.adc is processed with Current_Sem_Unit = Main_Unit, but nodes in
1308 -- gnat.adc do not appear to be the extended main source unit (they
1309 -- probably should do ???)
1311 if Current_Sem_Unit
= Main_Unit
1312 or else In_Extended_Main_Source_Unit
(N
)
1314 if Main_Restrictions
.Set
(R
) then
1315 if V
< Main_Restrictions
.Value
(R
) then
1316 Main_Restrictions
.Value
(R
) := V
;
1319 elsif not Restriction_Warnings
(R
) then
1320 Main_Restrictions
.Set
(R
) := True;
1321 Main_Restrictions
.Value
(R
) := V
;
1325 -- Note restriction came from restriction pragma, not profile
1327 Restriction_Profile_Name
(R
) := No_Profile
;
1328 end Set_Restriction
;
1330 -----------------------------------
1331 -- Set_Restriction_No_Dependence --
1332 -----------------------------------
1334 procedure Set_Restriction_No_Dependence
1337 Profile
: Profile_Name
:= No_Profile
)
1340 -- Loop to check for duplicate entry
1342 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
1344 -- Case of entry already in table
1346 if Same_Unit
(Unit
, No_Dependences
.Table
(J
).Unit
) then
1348 -- Error has precedence over warning
1351 No_Dependences
.Table
(J
).Warn
:= False;
1358 -- Entry is not currently in table
1360 No_Dependences
.Append
((Unit
, Warn
, Profile
));
1361 end Set_Restriction_No_Dependence
;
1363 ------------------------------------------------
1364 -- Set_Restriction_No_Specification_Of_Aspect --
1365 ------------------------------------------------
1367 procedure Set_Restriction_No_Specification_Of_Aspect
1371 A_Id
: constant Aspect_Id_Exclude_No_Aspect
:= Get_Aspect_Id
(Chars
(N
));
1374 No_Specification_Of_Aspects
(A_Id
) := Sloc
(N
);
1376 if Warning
= False then
1377 No_Specification_Of_Aspect_Warning
(A_Id
) := False;
1380 No_Specification_Of_Aspect_Set
:= True;
1381 end Set_Restriction_No_Specification_Of_Aspect
;
1383 -----------------------------------------
1384 -- Set_Restriction_No_Use_Of_Attribute --
1385 -----------------------------------------
1387 procedure Set_Restriction_No_Use_Of_Attribute
1391 A_Id
: constant Attribute_Id
:= Get_Attribute_Id
(Chars
(N
));
1394 No_Use_Of_Attribute_Set
:= True;
1395 No_Use_Of_Attribute
(A_Id
) := Sloc
(N
);
1397 if Warning
= False then
1398 No_Use_Of_Attribute_Warning
(A_Id
) := False;
1400 end Set_Restriction_No_Use_Of_Attribute
;
1402 --------------------------------------
1403 -- Set_Restriction_No_Use_Of_Pragma --
1404 --------------------------------------
1406 procedure Set_Restriction_No_Use_Of_Pragma
1410 A_Id
: constant Pragma_Id
:= Get_Pragma_Id
(Chars
(N
));
1413 No_Use_Of_Pragma_Set
:= True;
1414 No_Use_Of_Pragma
(A_Id
) := Sloc
(N
);
1416 if Warning
= False then
1417 No_Use_Of_Pragma_Warning
(A_Id
) := False;
1419 end Set_Restriction_No_Use_Of_Pragma
;
1421 --------------------------------
1422 -- Check_SPARK_05_Restriction --
1423 --------------------------------
1425 procedure Check_SPARK_05_Restriction
1428 Force
: Boolean := False)
1430 Msg_Issued
: Boolean;
1431 Save_Error_Msg_Sloc
: Source_Ptr
;
1432 Onode
: constant Node_Id
:= Original_Node
(N
);
1435 -- Output message if Force set
1439 -- Or if this node comes from source
1441 or else Comes_From_Source
(N
)
1443 -- Or if this is a range node which rewrites a range attribute and
1444 -- the range attribute comes from source.
1446 or else (Nkind
(N
) = N_Range
1447 and then Nkind
(Onode
) = N_Attribute_Reference
1448 and then Attribute_Name
(Onode
) = Name_Range
1449 and then Comes_From_Source
(Onode
))
1451 -- Or this is an expression that does not come from source, which is
1452 -- a rewriting of an expression that does come from source.
1454 or else (Nkind
(N
) in N_Subexpr
and then Comes_From_Source
(Onode
))
1456 if Restriction_Check_Required
(SPARK_05
)
1457 and then Is_In_Hidden_Part_In_SPARK
(Sloc
(N
))
1462 -- Since the call to Restriction_Msg from Check_Restriction may set
1463 -- Error_Msg_Sloc to the location of the pragma restriction, save and
1464 -- restore the previous value of the global variable around the call.
1466 Save_Error_Msg_Sloc
:= Error_Msg_Sloc
;
1467 Check_Restriction
(Msg_Issued
, SPARK_05
, First_Node
(N
));
1468 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
1471 Error_Msg_F
("\\| " & Msg
, N
);
1474 end Check_SPARK_05_Restriction
;
1476 procedure Check_SPARK_05_Restriction
(Msg1
, Msg2
: String; N
: Node_Id
) is
1477 Msg_Issued
: Boolean;
1478 Save_Error_Msg_Sloc
: Source_Ptr
;
1481 pragma Assert
(Msg2
'Length /= 0 and then Msg2
(Msg2
'First) = '\');
1483 if Comes_From_Source
(Original_Node
(N
)) then
1484 if Restriction_Check_Required
(SPARK_05
)
1485 and then Is_In_Hidden_Part_In_SPARK
(Sloc
(N
))
1490 -- Since the call to Restriction_Msg from Check_Restriction may set
1491 -- Error_Msg_Sloc to the location of the pragma restriction, save and
1492 -- restore the previous value of the global variable around the call.
1494 Save_Error_Msg_Sloc
:= Error_Msg_Sloc
;
1495 Check_Restriction
(Msg_Issued
, SPARK_05
, First_Node
(N
));
1496 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
1499 Error_Msg_F
("\\| " & Msg1
, N
);
1500 Error_Msg_F
(Msg2
, N
);
1503 end Check_SPARK_05_Restriction
;
1505 ----------------------------------
1506 -- Suppress_Restriction_Message --
1507 ----------------------------------
1509 function Suppress_Restriction_Message
(N
: Node_Id
) return Boolean is
1511 -- We only output messages for the extended main source unit
1513 if In_Extended_Main_Source_Unit
(N
) then
1516 -- If loaded by rtsfind, then suppress message
1518 elsif Sloc
(N
) <= No_Location
then
1521 -- Otherwise suppress message if internal file
1524 return Is_Internal_File_Name
(Unit_File_Name
(Get_Source_Unit
(N
)));
1526 end Suppress_Restriction_Message
;
1528 ---------------------
1529 -- Tasking_Allowed --
1530 ---------------------
1532 function Tasking_Allowed
return Boolean is
1534 return not Restrictions
.Set
(No_Tasking
)
1535 and then (not Restrictions
.Set
(Max_Tasks
)
1536 or else Restrictions
.Value
(Max_Tasks
) > 0)
1537 and then not No_Run_Time_Mode
;
1538 end Tasking_Allowed
;