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_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;
566 end Check_Restriction
;
568 -------------------------------------
569 -- Check_Restriction_No_Dependence --
570 -------------------------------------
572 procedure Check_Restriction_No_Dependence
(U
: Node_Id
; Err
: Node_Id
) is
576 -- Ignore call if node U is not in the main source unit. This avoids
577 -- cascaded errors, e.g. when Ada.Containers units with other units.
578 -- However, allow Standard_Location here, since this catches some cases
579 -- of constructs that get converted to run-time calls.
581 if not In_Extended_Main_Source_Unit
(U
)
582 and then Sloc
(U
) /= Standard_Location
587 -- Loop through entries in No_Dependence table to check each one in turn
589 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
590 DU
:= No_Dependences
.Table
(J
).Unit
;
592 if Same_Unit
(U
, DU
) then
593 Error_Msg_Sloc
:= Sloc
(DU
);
594 Error_Msg_Node_1
:= DU
;
596 if No_Dependences
.Table
(J
).Warn
then
598 ("?*?violation of restriction `No_Dependence '='> &`#",
602 ("|violation of restriction `No_Dependence '='> &`#",
609 end Check_Restriction_No_Dependence
;
611 --------------------------------------------------
612 -- Check_Restriction_No_Specification_Of_Aspect --
613 --------------------------------------------------
615 procedure Check_Restriction_No_Specification_Of_Aspect
(N
: Node_Id
) is
620 -- Ignore call if no instances of this restriction set
622 if not No_Specification_Of_Aspect_Set
then
626 -- Ignore call if node N is not in the main source unit, since we only
627 -- give messages for the main unit. This avoids giving messages for
628 -- aspects that are specified in withed units.
630 if not In_Extended_Main_Source_Unit
(N
) then
634 Id
:= Identifier
(N
);
635 A_Id
:= Get_Aspect_Id
(Chars
(Id
));
636 pragma Assert
(A_Id
/= No_Aspect
);
638 Error_Msg_Sloc
:= No_Specification_Of_Aspects
(A_Id
);
640 if Error_Msg_Sloc
/= No_Location
then
641 Error_Msg_Node_1
:= Id
;
642 Error_Msg_Warn
:= No_Specification_Of_Aspect_Warning
(A_Id
);
644 ("<*<violation of restriction `No_Specification_Of_Aspect '='> &`#",
647 end Check_Restriction_No_Specification_Of_Aspect
;
649 -------------------------------------------
650 -- Check_Restriction_No_Use_Of_Attribute --
651 --------------------------------------------
653 procedure Check_Restriction_No_Use_Of_Attribute
(N
: Node_Id
) is
654 Id
: constant Name_Id
:= Chars
(N
);
655 A_Id
: constant Attribute_Id
:= Get_Attribute_Id
(Id
);
658 -- Ignore call if node N is not in the main source unit, since we only
659 -- give messages for the main unit. This avoids giving messages for
660 -- aspects that are specified in withed units.
662 if not In_Extended_Main_Source_Unit
(N
) then
666 -- If nothing set, nothing to check
668 if not No_Use_Of_Attribute_Set
then
672 Error_Msg_Sloc
:= No_Use_Of_Attribute
(A_Id
);
674 if Error_Msg_Sloc
/= No_Location
then
675 Error_Msg_Node_1
:= N
;
676 Error_Msg_Warn
:= No_Use_Of_Attribute_Warning
(A_Id
);
678 ("<*<violation of restriction `No_Use_Of_Attribute '='> &`#", N
);
680 end Check_Restriction_No_Use_Of_Attribute
;
682 ----------------------------------------
683 -- Check_Restriction_No_Use_Of_Pragma --
684 ----------------------------------------
686 procedure Check_Restriction_No_Use_Of_Pragma
(N
: Node_Id
) is
687 Id
: constant Node_Id
:= Pragma_Identifier
(N
);
688 P_Id
: constant Pragma_Id
:= Get_Pragma_Id
(Chars
(Id
));
691 -- Ignore call if node N is not in the main source unit, since we only
692 -- give messages for the main unit. This avoids giving messages for
693 -- aspects that are specified in withed units.
695 if not In_Extended_Main_Source_Unit
(N
) then
699 -- If nothing set, nothing to check
701 if not No_Use_Of_Pragma_Set
then
705 Error_Msg_Sloc
:= No_Use_Of_Pragma
(P_Id
);
707 if Error_Msg_Sloc
/= No_Location
then
708 Error_Msg_Node_1
:= Id
;
709 Error_Msg_Warn
:= No_Use_Of_Pragma_Warning
(P_Id
);
711 ("<*<violation of restriction `No_Use_Of_Pragma '='> &`#", Id
);
713 end Check_Restriction_No_Use_Of_Pragma
;
715 --------------------------------------
716 -- Check_Wide_Character_Restriction --
717 --------------------------------------
719 procedure Check_Wide_Character_Restriction
(E
: Entity_Id
; N
: Node_Id
) is
721 if Restriction_Check_Required
(No_Wide_Characters
)
722 and then Comes_From_Source
(N
)
725 T
: constant Entity_Id
:= Root_Type
(E
);
727 if T
= Standard_Wide_Character
or else
728 T
= Standard_Wide_String
or else
729 T
= Standard_Wide_Wide_Character
or else
730 T
= Standard_Wide_Wide_String
732 Check_Restriction
(No_Wide_Characters
, N
);
736 end Check_Wide_Character_Restriction
;
738 ----------------------------------------
739 -- Cunit_Boolean_Restrictions_Restore --
740 ----------------------------------------
742 procedure Cunit_Boolean_Restrictions_Restore
743 (R
: Save_Cunit_Boolean_Restrictions
)
746 for J
in Cunit_Boolean_Restrictions
loop
747 Restrictions
.Set
(J
) := R
(J
);
750 -- If No_Elaboration_Code set in configuration restrictions, and we
751 -- in the main extended source, then set it here now. This is part of
752 -- the special processing for No_Elaboration_Code.
754 if In_Extended_Main_Source_Unit
(Cunit_Entity
(Current_Sem_Unit
))
755 and then Config_Cunit_Boolean_Restrictions
(No_Elaboration_Code
)
757 Restrictions
.Set
(No_Elaboration_Code
) := True;
759 end Cunit_Boolean_Restrictions_Restore
;
761 -------------------------------------
762 -- Cunit_Boolean_Restrictions_Save --
763 -------------------------------------
765 function Cunit_Boolean_Restrictions_Save
766 return Save_Cunit_Boolean_Restrictions
768 R
: Save_Cunit_Boolean_Restrictions
;
771 for J
in Cunit_Boolean_Restrictions
loop
772 R
(J
) := Restrictions
.Set
(J
);
776 end Cunit_Boolean_Restrictions_Save
;
778 ------------------------
779 -- Get_Restriction_Id --
780 ------------------------
782 function Get_Restriction_Id
783 (N
: Name_Id
) return Restriction_Id
787 Set_Casing
(All_Upper_Case
);
789 for J
in All_Restrictions
loop
791 S
: constant String := Restriction_Id
'Image (J
);
793 if S
= Name_Buffer
(1 .. Name_Len
) then
799 return Not_A_Restriction_Id
;
800 end Get_Restriction_Id
;
802 --------------------------------
803 -- Is_In_Hidden_Part_In_SPARK --
804 --------------------------------
806 function Is_In_Hidden_Part_In_SPARK
(Loc
: Source_Ptr
) return Boolean is
808 -- Loop through table of hidden ranges
810 for J
in SPARK_Hides
.First
.. SPARK_Hides
.Last
loop
811 if SPARK_Hides
.Table
(J
).Start
<= Loc
812 and then Loc
< SPARK_Hides
.Table
(J
).Stop
819 end Is_In_Hidden_Part_In_SPARK
;
821 -------------------------------
822 -- No_Exception_Handlers_Set --
823 -------------------------------
825 function No_Exception_Handlers_Set
return Boolean is
827 return (No_Run_Time_Mode
or else Configurable_Run_Time_Mode
)
828 and then (Restrictions
.Set
(No_Exception_Handlers
)
830 Restrictions
.Set
(No_Exception_Propagation
));
831 end No_Exception_Handlers_Set
;
833 -------------------------------------
834 -- No_Exception_Propagation_Active --
835 -------------------------------------
837 function No_Exception_Propagation_Active
return Boolean is
839 return (No_Run_Time_Mode
840 or else Configurable_Run_Time_Mode
841 or else Debug_Flag_Dot_G
)
842 and then Restriction_Active
(No_Exception_Propagation
);
843 end No_Exception_Propagation_Active
;
845 --------------------------------
846 -- OK_No_Dependence_Unit_Name --
847 --------------------------------
849 function OK_No_Dependence_Unit_Name
(N
: Node_Id
) return Boolean is
851 if Nkind
(N
) = N_Selected_Component
then
853 OK_No_Dependence_Unit_Name
(Prefix
(N
))
855 OK_No_Dependence_Unit_Name
(Selector_Name
(N
));
857 elsif Nkind
(N
) = N_Identifier
then
861 Error_Msg_N
("wrong form for unit name for No_Dependence", N
);
864 end OK_No_Dependence_Unit_Name
;
866 ----------------------------------
867 -- Process_Restriction_Synonyms --
868 ----------------------------------
870 -- Note: body of this function must be coordinated with list of renaming
871 -- declarations in System.Rident.
873 function Process_Restriction_Synonyms
(N
: Node_Id
) return Name_Id
875 Old_Name
: constant Name_Id
:= Chars
(N
);
880 when Name_Boolean_Entry_Barriers
=>
881 New_Name
:= Name_Simple_Barriers
;
883 when Name_Max_Entry_Queue_Depth
=>
884 New_Name
:= Name_Max_Entry_Queue_Length
;
886 when Name_No_Dynamic_Interrupts
=>
887 New_Name
:= Name_No_Dynamic_Attachment
;
889 when Name_No_Requeue
=>
890 New_Name
:= Name_No_Requeue_Statements
;
892 when Name_No_Task_Attributes
=>
893 New_Name
:= Name_No_Task_Attributes_Package
;
895 -- SPARK is special in that we unconditionally warn
898 Error_Msg_Name_1
:= Name_SPARK
;
899 Error_Msg_N
("restriction identifier % is obsolescent??", N
);
900 Error_Msg_Name_1
:= Name_SPARK_05
;
901 Error_Msg_N
("|use restriction identifier % instead??", N
);
902 return Name_SPARK_05
;
908 -- Output warning if we are warning on obsolescent features for all
909 -- cases other than SPARK.
911 if Warn_On_Obsolescent_Feature
then
912 Error_Msg_Name_1
:= Old_Name
;
913 Error_Msg_N
("restriction identifier % is obsolescent?j?", N
);
914 Error_Msg_Name_1
:= New_Name
;
915 Error_Msg_N
("|use restriction identifier % instead?j?", N
);
919 end Process_Restriction_Synonyms
;
921 --------------------------------------
922 -- Reset_Cunit_Boolean_Restrictions --
923 --------------------------------------
925 procedure Reset_Cunit_Boolean_Restrictions
is
927 for J
in Cunit_Boolean_Restrictions
loop
928 Restrictions
.Set
(J
) := False;
930 end Reset_Cunit_Boolean_Restrictions
;
932 -----------------------------------------------
933 -- Restore_Config_Cunit_Boolean_Restrictions --
934 -----------------------------------------------
936 procedure Restore_Config_Cunit_Boolean_Restrictions
is
938 Cunit_Boolean_Restrictions_Restore
(Config_Cunit_Boolean_Restrictions
);
939 end Restore_Config_Cunit_Boolean_Restrictions
;
941 ------------------------
942 -- Restricted_Profile --
943 ------------------------
945 function Restricted_Profile
return Boolean is
947 if Restricted_Profile_Cached
then
948 return Restricted_Profile_Result
;
951 Restricted_Profile_Result
:= True;
952 Restricted_Profile_Cached
:= True;
955 R
: Restriction_Flags
renames Profile_Info
(Restricted
).Set
;
956 V
: Restriction_Values
renames Profile_Info
(Restricted
).Value
;
958 for J
in R
'Range loop
960 and then (Restrictions
.Set
(J
) = False
961 or else Restriction_Warnings
(J
)
963 (J
in All_Parameter_Restrictions
964 and then Restrictions
.Value
(J
) > V
(J
)))
966 Restricted_Profile_Result
:= False;
971 return Restricted_Profile_Result
;
974 end Restricted_Profile
;
976 ------------------------
977 -- Restriction_Active --
978 ------------------------
980 function Restriction_Active
(R
: All_Restrictions
) return Boolean is
982 return Restrictions
.Set
(R
) and then not Restriction_Warnings
(R
);
983 end Restriction_Active
;
985 --------------------------------
986 -- Restriction_Check_Required --
987 --------------------------------
989 function Restriction_Check_Required
(R
: All_Restrictions
) return Boolean is
991 return Restrictions
.Set
(R
);
992 end Restriction_Check_Required
;
994 ---------------------
995 -- Restriction_Msg --
996 ---------------------
998 procedure Restriction_Msg
(R
: Restriction_Id
; N
: Node_Id
) is
999 Msg
: String (1 .. 100);
1002 procedure Add_Char
(C
: Character);
1003 -- Append given character to Msg, bumping Len
1005 procedure Add_Str
(S
: String);
1006 -- Append given string to Msg, bumping Len appropriately
1008 procedure Id_Case
(S
: String; Quotes
: Boolean := True);
1009 -- Given a string S, case it according to current identifier casing,
1010 -- except for SPARK_05 (an acronym) which is set all upper case, and
1011 -- store in Error_Msg_String. Then append `~` to the message buffer
1012 -- to output the string unchanged surrounded in quotes. The quotes
1013 -- are suppressed if Quotes = False.
1019 procedure Add_Char
(C
: Character) is
1029 procedure Add_Str
(S
: String) is
1031 Msg
(Len
+ 1 .. Len
+ S
'Length) := S
;
1032 Len
:= Len
+ S
'Length;
1039 procedure Id_Case
(S
: String; Quotes
: Boolean := True) is
1041 Name_Buffer
(1 .. S
'Last) := S
;
1042 Name_Len
:= S
'Length;
1044 if R
= SPARK_05
then
1047 Set_Casing
(Identifier_Casing
(Get_Source_File_Index
(Sloc
(N
))));
1050 Error_Msg_Strlen
:= Name_Len
;
1051 Error_Msg_String
(1 .. Name_Len
) := Name_Buffer
(1 .. Name_Len
);
1060 -- Start of processing for Restriction_Msg
1063 -- Set warning message if warning
1065 if Restriction_Warnings
(R
) then
1068 -- If real violation (not warning), then mark it as non-serious unless
1069 -- it is a violation of No_Finalization in which case we leave it as a
1070 -- serious message, since otherwise we get crashes during attempts to
1071 -- expand stuff that is not properly formed due to assumptions made
1072 -- about no finalization being present.
1074 elsif R
/= No_Finalization
then
1078 Error_Msg_Sloc
:= Restrictions_Loc
(R
);
1080 -- Set main message, adding implicit if no source location
1082 if Error_Msg_Sloc
> No_Location
1083 or else Error_Msg_Sloc
= System_Location
1085 Add_Str
("violation of restriction ");
1087 Add_Str
("violation of implicit restriction ");
1088 Error_Msg_Sloc
:= No_Location
;
1091 -- Case of parameterized restriction
1093 if R
in All_Parameter_Restrictions
then
1095 Id_Case
(Restriction_Id
'Image (R
), Quotes
=> False);
1097 Error_Msg_Uint_1
:= UI_From_Int
(Int
(Restrictions
.Value
(R
)));
1099 -- Case of boolean restriction
1102 Id_Case
(Restriction_Id
'Image (R
));
1105 -- Case of no secondary profile continuation message
1107 if Restriction_Profile_Name
(R
) = No_Profile
then
1108 if Error_Msg_Sloc
/= No_Location
then
1113 Error_Msg_N
(Msg
(1 .. Len
), N
);
1115 -- Case of secondary profile continuation message present
1119 Error_Msg_N
(Msg
(1 .. Len
), N
);
1124 -- Set as warning if warning case
1126 if Restriction_Warnings
(R
) then
1132 Add_Str
("from profile ");
1133 Id_Case
(Profile_Name
'Image (Restriction_Profile_Name
(R
)));
1135 -- Add location if we have one
1137 if Error_Msg_Sloc
/= No_Location
then
1141 -- Output unconditional message and we are done
1144 Error_Msg_N
(Msg
(1 .. Len
), N
);
1146 end Restriction_Msg
;
1152 function Same_Unit
(U1
, U2
: Node_Id
) return Boolean is
1154 if Nkind
(U1
) = N_Identifier
and then Nkind
(U2
) = N_Identifier
then
1155 return Chars
(U1
) = Chars
(U2
);
1157 elsif Nkind_In
(U1
, N_Selected_Component
, N_Expanded_Name
)
1159 Nkind_In
(U2
, N_Selected_Component
, N_Expanded_Name
)
1161 return Same_Unit
(Prefix
(U1
), Prefix
(U2
))
1163 Same_Unit
(Selector_Name
(U1
), Selector_Name
(U2
));
1169 --------------------------------------------
1170 -- Save_Config_Cunit_Boolean_Restrictions --
1171 --------------------------------------------
1173 procedure Save_Config_Cunit_Boolean_Restrictions
is
1175 Config_Cunit_Boolean_Restrictions
:= Cunit_Boolean_Restrictions_Save
;
1176 end Save_Config_Cunit_Boolean_Restrictions
;
1178 ------------------------------
1179 -- Set_Hidden_Part_In_SPARK --
1180 ------------------------------
1182 procedure Set_Hidden_Part_In_SPARK
(Loc1
, Loc2
: Source_Ptr
) is
1184 SPARK_Hides
.Increment_Last
;
1185 SPARK_Hides
.Table
(SPARK_Hides
.Last
).Start
:= Loc1
;
1186 SPARK_Hides
.Table
(SPARK_Hides
.Last
).Stop
:= Loc2
;
1187 end Set_Hidden_Part_In_SPARK
;
1189 ------------------------------
1190 -- Set_Profile_Restrictions --
1191 ------------------------------
1193 procedure Set_Profile_Restrictions
1198 R
: Restriction_Flags
renames Profile_Info
(P
).Set
;
1199 V
: Restriction_Values
renames Profile_Info
(P
).Value
;
1202 for J
in R
'Range loop
1205 Already_Restricted
: constant Boolean := Restriction_Active
(J
);
1208 -- Set the restriction
1210 if J
in All_Boolean_Restrictions
then
1211 Set_Restriction
(J
, N
);
1213 Set_Restriction
(J
, N
, V
(J
));
1216 -- Record that this came from a Profile[_Warnings] restriction
1218 Restriction_Profile_Name
(J
) := P
;
1220 -- Set warning flag, except that we do not set the warning
1221 -- flag if the restriction was already active and this is
1222 -- the warning case. That avoids a warning overriding a real
1223 -- restriction, which should never happen.
1225 if not (Warn
and Already_Restricted
) then
1226 Restriction_Warnings
(J
) := Warn
;
1231 end Set_Profile_Restrictions
;
1233 ---------------------
1234 -- Set_Restriction --
1235 ---------------------
1237 -- Case of Boolean restriction
1239 procedure Set_Restriction
1240 (R
: All_Boolean_Restrictions
;
1244 Restrictions
.Set
(R
) := True;
1246 if Restricted_Profile_Cached
and Restricted_Profile_Result
then
1249 Restricted_Profile_Cached
:= False;
1252 -- Set location, but preserve location of system restriction for nice
1253 -- error msg with run time name.
1255 if Restrictions_Loc
(R
) /= System_Location
then
1256 Restrictions_Loc
(R
) := Sloc
(N
);
1259 -- Note restriction came from restriction pragma, not profile
1261 Restriction_Profile_Name
(R
) := No_Profile
;
1263 -- Record the restriction if we are in the main unit, or in the extended
1264 -- main unit. The reason that we test separately for Main_Unit is that
1265 -- gnat.adc is processed with Current_Sem_Unit = Main_Unit, but nodes in
1266 -- gnat.adc do not appear to be in the extended main source unit (they
1267 -- probably should do ???)
1269 if Current_Sem_Unit
= Main_Unit
1270 or else In_Extended_Main_Source_Unit
(N
)
1272 if not Restriction_Warnings
(R
) then
1273 Main_Restrictions
.Set
(R
) := True;
1276 end Set_Restriction
;
1278 -- Case of parameter restriction
1280 procedure Set_Restriction
1281 (R
: All_Parameter_Restrictions
;
1286 if Restricted_Profile_Cached
and Restricted_Profile_Result
then
1289 Restricted_Profile_Cached
:= False;
1292 if Restrictions
.Set
(R
) then
1293 if V
< Restrictions
.Value
(R
) then
1294 Restrictions
.Value
(R
) := V
;
1295 Restrictions_Loc
(R
) := Sloc
(N
);
1299 Restrictions
.Set
(R
) := True;
1300 Restrictions
.Value
(R
) := V
;
1301 Restrictions_Loc
(R
) := Sloc
(N
);
1304 -- Record the restriction if we are in the main unit, or in the extended
1305 -- main unit. The reason that we test separately for Main_Unit is that
1306 -- gnat.adc is processed with Current_Sem_Unit = Main_Unit, but nodes in
1307 -- gnat.adc do not appear to be the extended main source unit (they
1308 -- probably should do ???)
1310 if Current_Sem_Unit
= Main_Unit
1311 or else In_Extended_Main_Source_Unit
(N
)
1313 if Main_Restrictions
.Set
(R
) then
1314 if V
< Main_Restrictions
.Value
(R
) then
1315 Main_Restrictions
.Value
(R
) := V
;
1318 elsif not Restriction_Warnings
(R
) then
1319 Main_Restrictions
.Set
(R
) := True;
1320 Main_Restrictions
.Value
(R
) := V
;
1324 -- Note restriction came from restriction pragma, not profile
1326 Restriction_Profile_Name
(R
) := No_Profile
;
1327 end Set_Restriction
;
1329 -----------------------------------
1330 -- Set_Restriction_No_Dependence --
1331 -----------------------------------
1333 procedure Set_Restriction_No_Dependence
1336 Profile
: Profile_Name
:= No_Profile
)
1339 -- Loop to check for duplicate entry
1341 for J
in No_Dependences
.First
.. No_Dependences
.Last
loop
1343 -- Case of entry already in table
1345 if Same_Unit
(Unit
, No_Dependences
.Table
(J
).Unit
) then
1347 -- Error has precedence over warning
1350 No_Dependences
.Table
(J
).Warn
:= False;
1357 -- Entry is not currently in table
1359 No_Dependences
.Append
((Unit
, Warn
, Profile
));
1360 end Set_Restriction_No_Dependence
;
1362 ------------------------------------------------
1363 -- Set_Restriction_No_Specification_Of_Aspect --
1364 ------------------------------------------------
1366 procedure Set_Restriction_No_Specification_Of_Aspect
1370 A_Id
: constant Aspect_Id_Exclude_No_Aspect
:= Get_Aspect_Id
(Chars
(N
));
1373 No_Specification_Of_Aspects
(A_Id
) := Sloc
(N
);
1375 if Warning
= False then
1376 No_Specification_Of_Aspect_Warning
(A_Id
) := False;
1379 No_Specification_Of_Aspect_Set
:= True;
1380 end Set_Restriction_No_Specification_Of_Aspect
;
1382 -----------------------------------------
1383 -- Set_Restriction_No_Use_Of_Attribute --
1384 -----------------------------------------
1386 procedure Set_Restriction_No_Use_Of_Attribute
1390 A_Id
: constant Attribute_Id
:= Get_Attribute_Id
(Chars
(N
));
1393 No_Use_Of_Attribute_Set
:= True;
1394 No_Use_Of_Attribute
(A_Id
) := Sloc
(N
);
1396 if Warning
= False then
1397 No_Use_Of_Attribute_Warning
(A_Id
) := False;
1399 end Set_Restriction_No_Use_Of_Attribute
;
1401 --------------------------------------
1402 -- Set_Restriction_No_Use_Of_Pragma --
1403 --------------------------------------
1405 procedure Set_Restriction_No_Use_Of_Pragma
1409 A_Id
: constant Pragma_Id
:= Get_Pragma_Id
(Chars
(N
));
1412 No_Use_Of_Pragma_Set
:= True;
1413 No_Use_Of_Pragma
(A_Id
) := Sloc
(N
);
1415 if Warning
= False then
1416 No_Use_Of_Pragma_Warning
(A_Id
) := False;
1418 end Set_Restriction_No_Use_Of_Pragma
;
1420 -----------------------------
1421 -- Check_SPARK_Restriction --
1422 -----------------------------
1424 procedure Check_SPARK_Restriction
1427 Force
: Boolean := False)
1429 Msg_Issued
: Boolean;
1430 Save_Error_Msg_Sloc
: Source_Ptr
;
1431 Onode
: constant Node_Id
:= Original_Node
(N
);
1434 -- Output message if Force set
1438 -- Or if this node comes from source
1440 or else Comes_From_Source
(N
)
1442 -- Or if this is a range node which rewrites a range attribute and
1443 -- the range attribute comes from source.
1445 or else (Nkind
(N
) = N_Range
1446 and then Nkind
(Onode
) = N_Attribute_Reference
1447 and then Attribute_Name
(Onode
) = Name_Range
1448 and then Comes_From_Source
(Onode
))
1450 -- Or this is an expression that does not come from source, which is
1451 -- a rewriting of an expression that does come from source.
1453 or else (Nkind
(N
) in N_Subexpr
and then Comes_From_Source
(Onode
))
1455 if Restriction_Check_Required
(SPARK_05
)
1456 and then Is_In_Hidden_Part_In_SPARK
(Sloc
(N
))
1461 -- Since the call to Restriction_Msg from Check_Restriction may set
1462 -- Error_Msg_Sloc to the location of the pragma restriction, save and
1463 -- restore the previous value of the global variable around the call.
1465 Save_Error_Msg_Sloc
:= Error_Msg_Sloc
;
1466 Check_Restriction
(Msg_Issued
, SPARK_05
, First_Node
(N
));
1467 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
1470 Error_Msg_F
("\\| " & Msg
, N
);
1473 end Check_SPARK_Restriction
;
1475 procedure Check_SPARK_Restriction
(Msg1
, Msg2
: String; N
: Node_Id
) is
1476 Msg_Issued
: Boolean;
1477 Save_Error_Msg_Sloc
: Source_Ptr
;
1480 pragma Assert
(Msg2
'Length /= 0 and then Msg2
(Msg2
'First) = '\');
1482 if Comes_From_Source
(Original_Node
(N
)) then
1483 if Restriction_Check_Required
(SPARK_05
)
1484 and then Is_In_Hidden_Part_In_SPARK
(Sloc
(N
))
1489 -- Since the call to Restriction_Msg from Check_Restriction may set
1490 -- Error_Msg_Sloc to the location of the pragma restriction, save and
1491 -- restore the previous value of the global variable around the call.
1493 Save_Error_Msg_Sloc
:= Error_Msg_Sloc
;
1494 Check_Restriction
(Msg_Issued
, SPARK_05
, First_Node
(N
));
1495 Error_Msg_Sloc
:= Save_Error_Msg_Sloc
;
1498 Error_Msg_F
("\\| " & Msg1
, N
);
1499 Error_Msg_F
(Msg2
, N
);
1502 end Check_SPARK_Restriction
;
1504 ----------------------------------
1505 -- Suppress_Restriction_Message --
1506 ----------------------------------
1508 function Suppress_Restriction_Message
(N
: Node_Id
) return Boolean is
1510 -- We only output messages for the extended main source unit
1512 if In_Extended_Main_Source_Unit
(N
) then
1515 -- If loaded by rtsfind, then suppress message
1517 elsif Sloc
(N
) <= No_Location
then
1520 -- Otherwise suppress message if internal file
1523 return Is_Internal_File_Name
(Unit_File_Name
(Get_Source_Unit
(N
)));
1525 end Suppress_Restriction_Message
;
1527 ---------------------
1528 -- Tasking_Allowed --
1529 ---------------------
1531 function Tasking_Allowed
return Boolean is
1533 return not Restrictions
.Set
(No_Tasking
)
1534 and then (not Restrictions
.Set
(Max_Tasks
)
1535 or else Restrictions
.Value
(Max_Tasks
) > 0);
1536 end Tasking_Allowed
;