1
This clause defines restrictions that can be used with pragma Restrictions (see 13.12); these facilitate the demonstration of program correctness by allowing tailored versions of the run−time system.
2/2
This paragraph was deleted.
3/2
The following restriction_identifiers are language defined:
4
Tasking−related restriction:
There are no declarations of protected types or protected objects.
6
Memory−management related restrictions:
There are no occurrences of an allocator.
Allocators are prohibited in subprograms, generic subprograms, tasks, and entry bodies.
9/2
This paragraph was deleted.
10
Immediate_Reclamation
Except for storage occupied by objects created by allocators and not deallocated via unchecked deallocation, any storage reserved at run time for an object is immediately reclaimed when the object no longer exists.
11
Exception−related restriction:
Raise_statements and exception_handlers are not allowed. No language−defined run−time checks are generated; however, a run−time check performed automatically by the hardware is permitted.
13
Other restrictions:
Uses of predefined floating point types and operations, and declarations of new floating point types, are not allowed.
Uses of predefined fixed point types and operations, and declarations of new fixed point types, are not allowed.
16/2
This paragraph was deleted.
17
No_Access_Subprograms
The declaration of access−to−subprogram types is not allowed.
The Unchecked_Access attribute is not allowed.
Occurrences of T'Class are not allowed, for any (tagged) subtype T.
Semantic dependence on any of the library units Sequential_IO, Direct_IO, Text_IO, Wide_Text_IO, Wide_Wide_Text_IO, or Stream_IO is not allowed.
Delay_Statements and semantic dependence on package Calendar are not allowed.
As part of the execution of a subprogram, the same subprogram is not invoked.
During the execution of a subprogram by a task, no other task invokes the same subprogram.
23.1/2
An implementation of this Annex shall support:
23.2/2
23.3/2
23.4/2
23.5/2
23.6/2
23.7/2
23.8/2
24
If an implementation supports pragma Restrictions for a particular argument, then except for the restrictions No_Unchecked_Deallocation, No_Unchecked_Conversion, No_Access_Subprograms, and No_Unchecked_Access, the associated restriction applies to the run−time system.
25
If a pragma Restrictions(No_Exceptions) is specified, the implementation shall document the effects of all constructs where language−defined checks are still performed automatically (for example, an overflow check performed by the processor).
26
Program execution is erroneous if pragma Restrictions(No_Exceptions) has been specified and the conditions arise under which a generated language−defined run−time check would fail.
27
Program execution is erroneous if pragma Restrictions(No_Recursion) has been specified and a subprogram is invoked as part of its own execution, or if pragma Restrictions(No_Reentrancy) has been specified and during the execution of a subprogram by a task, another task invokes the same subprogram.
NOTES
28/2
10 Uses of restriction_parameter_identifier No_Dependence defined in 13.12.1: No_Dependence => Ada.Unchecked_Deallocation and No_Dependence => Ada.Unchecked_Conversion may be appropriate for high−integrity systems. Other uses of No_Dependence can also be appropriate for high−integrity systems.