1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
|
.. _GNAT_Language_Extensions:
************************
GNAT language extensions
************************
The GNAT compiler implements a certain number of language extensions on top of
the latest Ada standard, implementing its own extended superset of Ada.
There are two sets of language extensions:
* The first is the curated set. The features in that set are features that we
consider being worthy additions to the Ada language, and that we want to make
available to users early on.
* The second is the experimental set. It includes the first, but also
experimental features, which are considered experimental because
they're still in an early prototyping phase.
These features might be removed or heavily modified at any time.
How to activate the extended GNAT Ada superset
==============================================
There are two ways to activate the extended GNAT Ada superset:
* The :ref:`Pragma Extensions_Allowed<Pragma_Extensions_Allowed>`. To activate
the curated set of extensions, you should use
.. code-block:: ada
pragma Extensions_Allowed (On)
As a configuration pragma, you can either put it at the beginning of a source
file, or in a ``.adc`` file corresponding to your project.
* The ``-gnatX`` command-line option will
activate the curated subset of extensions.
.. attention:: You can activate the experimental set of extensions
in addition by using either
the ``-gnatX0`` command-line option, or the pragma ``Extensions_Allowed`` with
``All_Extensions`` as an argument. However, it is not recommended you use
this subset for serious projects; it is only meant as a technology preview
for use in playground experiments.
.. _Curated_Language_Extensions:
Curated Extensions
==================
Features activated via ``-gnatX`` or
``pragma Extensions_Allowed (On)``.
Local Declarations Without Block
--------------------------------
A ``basic_declarative_item`` may appear at the place of any statement. This
avoids the heavy syntax of block_statements just to declare something locally.
The only valid kinds of declarations for now are ``object_declaration``,
``object_renaming_declaration``, ``use_package_clause``, and
``use_type_clause``.
For example:
.. code-block:: ada
if X > 5 then
X := X + 1;
Squared : constant Integer := X**2;
X := X + Squared;
end if;
It is generally a good practice to declare local variables (or constants) with as
short a lifetime as possible. However, introducing a declare block to accomplish
this is a relatively heavy syntactic load along with a traditional extra level
of indentation. The alternative syntax supported here allows declarations
in any statement sequence.
The lifetime of such local declarations is until the end of
the enclosing construct. The same enclosing construct cannot contain several
declarations of the same defining name; however, overriding symbols from higher-level
scopes works similarly to the explicit ``declare`` block.
If the enclosing construct allows an exception handler (such as an accept
statement, begin-except-end block or a subprogram body), declarations that
appear at the place of a statement are *not* visible within the handler. Only
declarations that precede the beginning of the construct with an exception
handler would be visible in this handler.
.. attention::
Here are a couple of examples illustrating the scoping rules described above.
1. Those declarations are not visible from the potential exception handler:
.. code-block:: ada
begin
A : Integer
...
exception
when others =>
Put_Line (A'Image) -- ILLEGAL
end;
2. The following is legal
.. code-block:: ada
declare
A : Integer := 10;
begin
A : Integer := 12;
end;
because it is roughly expanded into
.. code-block:: ada
declare
A : Integer := 10;
begin
declare
A : Integer := 12;
begin
...
end;
end;
And as such the second ``A`` declaration is hiding the first one.
Deep delta Aggregates
---------------------
Ada 2022's delta aggregates are extended to allow deep updates.
A delta aggregate may be used to specify new values for subcomponents of the
copied base value, instead of only new values for direct components of the
copied base value. This allows a more compact expression of updated values with
a single delta aggregate, instead of multiple nested delta aggregates.
The syntax of delta aggregates in the extended version is the following:
Syntax
^^^^^^
.. code::
delta_aggregate ::= record_delta_aggregate | array_delta_aggregate
record_delta_aggregate ::=
( base_expression with delta record_subcomponent_association_list )
record_subcomponent_association_list ::=
record_subcomponent_association {, record_subcomponent_association}
record_subcomponent_association ::=
record_subcomponent_choice_list => expression
record_subcomponent_choice_list ::=
record_subcomponent_choice {'|' record_subcomponent_choice}
record_subcomponent_choice ::=
component_selector_name
| record_subcomponent_choice (expression)
| record_subcomponent_choice . component_selector_name
array_delta_aggregate ::=
( base_expression with delta array_component_association_list )
| '[' base_expression with delta array_component_association_list ']'
| ( base_expression with delta array_subcomponent_association_list )
| '[' base_expression with delta array_subcomponent_association_list ']'
array_subcomponent_association_list ::=
array_subcomponent_association {, array_subcomponent_association}
array_subcomponent_association ::=
array_subcomponent_choice_list => expression
array_subcomponent_choice_list ::=
array_subcomponent_choice {'|' array_subcomponent_choice}
array_subcomponent_choice ::=
( expression )
| array_subcomponent_choice (expression)
| array_subcomponent_choice . component_selector_name
Legality Rules
^^^^^^^^^^^^^^
1. For an ``array_delta_aggregate``, the discrete_choice shall not be **others**.
2. For an ``array_delta_aggregate``, the dimensionality of the type of the
``delta_aggregate`` shall be 1.
3. For an ``array_delta_aggregate``, the ``base_expression`` and each
expression in every ``array_component_association`` or
``array_subcomponent_association`` shall be of a nonlimited type.
4. For a ``record_delta_aggregate``, no ``record_subcomponent_choices`` that
consists of only ``component_selector_names`` shall be the same or a prefix
of another record_subcomponent_choice.
5. For an ``array_subcomponent_choice`` or a ``record_subcomponent_choice`` the
``component_selector_name`` shall not be a subcomponent that depends on
discriminants of an unconstrained record subtype with defaulted
discriminants unless its prefix consists of only
``component_selector_names``.
[Rationale: As a result of this rule, accessing the subcomponent can only
lead to a discriminant check failure if the subcomponent was not present in
the object denoted by the base_expression, prior to any update.]
Dynamic Semantics
^^^^^^^^^^^^^^^^^
The evaluation of a ``delta_aggregate`` begins with the evaluation of the
``base_expression`` of the delta_aggregate; then that value is used to create
and initialize the anonymous object of the aggregate. The bounds of the
anonymous object of an ``array_delta_aggregate`` and the discriminants (if any)
of the anonymous object of a ``record_delta_aggregate`` are those of the
``base_expression``.
If a ``record_delta_aggregate`` is of a specific tagged type, its tag is that
of the specific type; if it is of a class-wide type, its tag is that of the
base_expression.
For a ``delta_aggregate``, for each ``discrete_choice`` or each subcomponent
associated with a ``record_subcomponent_associated``,
``array_component_association`` or ``array_subcomponent_association`` (in the
order given in the enclosing ``discrete_choice_list`` or
``subcomponent_association_list``, respectively):
- if the associated subcomponent belongs to a variant, a check is made that the
values of the governing discriminants are such that the anonymous object has
this component. The exception ``Constraint_Error`` is raised if this check fails.
- if the associated subcomponent is a subcomponent of an array, then for each
represented index value (in ascending order, if the ``discrete_choice``
represents a range):
* the index value is converted to the index type of the array type.
* a check is made that the index value belongs to the index range of the
corresponding array part of the anonymous object; ``Constraint_Error`` is
raised if this check fails.
* the expression of the ``record_subcomponent_association``,
``array_component_association`` or ``array_subcomponent_association`` is
evaluated, converted to the nominal subtype of the associated subcomponent,
and assigned to the corresponding subcomponent of the anonymous object.
Examples
^^^^^^^^
.. code-block:: ada
:linenos:
declare
type Point is record
X, Y : Integer;
end record;
type Segment is array (1 .. 2) of Point;
type Triangle is array (1 .. 3) of Segment;
S : Segment := (1 .. 2 => (0, 0));
T : Triangle := (1 .. 3 => (1 .. 2 => (0, 0)));
begin
S := (S with delta (1).X | (2).Y => 12, (1).Y => 15);
pragma Assert (S (1).X = 12);
pragma Assert (S (2).Y = 12);
pragma Assert (S (1).Y = 15);
T := (T with delta (2)(1).Y => 18);
pragma Assert (T (2)(1).Y = 18);
end;
Fixed lower bounds for array types and subtypes
-----------------------------------------------
Unconstrained array types and subtypes can be specified with a lower bound that
is fixed to a certain value, by writing an index range that uses the syntax
``<lower-bound-expression> .. <>``. This guarantees that all objects of the
type or subtype will have the specified lower bound.
For example, a matrix type with fixed lower bounds of zero for each dimension
can be declared by the following:
.. code-block:: ada
type Matrix is
array (Natural range 0 .. <>, Natural range 0 .. <>) of Integer;
Objects of type ``Matrix`` declared with an index constraint must have index
ranges starting at zero:
.. code-block:: ada
M1 : Matrix (0 .. 9, 0 .. 19);
M2 : Matrix (2 .. 11, 3 .. 22); -- Warning about bounds; will raise CE
Similarly, a subtype of ``String`` can be declared that specifies the lower
bound of objects of that subtype to be ``1``:
.. code-block:: ada
subtype String_1 is String (1 .. <>);
If a string slice is passed to a formal of subtype ``String_1`` in a call to a
subprogram ``S``, the slice's bounds will "slide" so that the lower bound is
``1``.
Within ``S``, the lower bound of the formal is known to be ``1``, so, unlike a
normal unconstrained ``String`` formal, there is no need to worry about
accounting for other possible lower-bound values. Sliding of bounds also occurs
in other contexts, such as for object declarations with an unconstrained
subtype with fixed lower bound, as well as in subtype conversions.
Use of this feature increases safety by simplifying code, and can also improve
the efficiency of indexing operations, since the compiler statically knows the
lower bound of unconstrained array formals when the formal's subtype has index
ranges with static fixed lower bounds.
Prefixed-view notation for calls to primitive subprograms of untagged types
---------------------------------------------------------------------------
When operating on an untagged type, if it has any primitive operations, and the
first parameter of an operation is of the type (or is an access parameter with
an anonymous type that designates the type), you may invoke these operations
using an ``object.op(...)`` notation, where the parameter that would normally be
the first parameter is brought out front, and the remaining parameters (if any)
appear within parentheses after the name of the primitive operation.
This same notation is already available for tagged types. This extension allows
for untagged types. It is allowed for all primitive operations of the type
independent of whether they were originally declared in a package spec,
or were inherited and/or overridden as part of a derived type
declaration occurring anywhere, so long as the first parameter is of the type,
or an access parameter designating the type.
For example:
.. code-block:: ada
generic
type Elem_Type is private;
package Vectors is
type Vector is private;
procedure Add_Element (V : in out Vector; Elem : Elem_Type);
function Nth_Element (V : Vector; N : Positive) return Elem_Type;
function Length (V : Vector) return Natural;
private
function Capacity (V : Vector) return Natural;
-- Return number of elements that may be added without causing
-- any new allocation of space
type Vector is ...
with Type_Invariant => Vector.Length <= Vector.Capacity;
...
end Vectors;
package Int_Vecs is new Vectors(Integer);
V : Int_Vecs.Vector;
...
V.Add_Element(42);
V.Add_Element(-33);
pragma Assert (V.Length = 2);
pragma Assert (V.Nth_Element(1) = 42);
Expression defaults for generic formal functions
------------------------------------------------
The declaration of a generic formal function is allowed to specify
an expression as a default, using the syntax of an expression function.
Here is an example of this feature:
.. code-block:: ada
generic
type T is private;
with function Copy (Item : T) return T is (Item); -- Defaults to Item
package Stacks is
type Stack is limited private;
procedure Push (S : in out Stack; X : T); -- Calls Copy on X
function Pop (S : in out Stack) return T; -- Calls Copy to return item
private
-- ...
end Stacks;
If Stacks is instantiated with an explicit actual for Copy,
then that will be called when Copy is called in the generic body.
If the default is used (i.e. there is no actual corresponding to Copy),
then calls to Copy in the instance will simply return Item.
String interpolation
--------------------
The syntax for string literals is extended to support string interpolation.
An interpolated string literal starts with ``f``, immediately before
the first double-quote character.
Within an interpolated string literal, an arbitrary expression, when
enclosed in ``{ ... }``, is expanded at run time into the result of calling
``'Image`` on the result of evaluating the expression enclosed by the brace
characters, unless it is already a string or a single character.
Here is an example of this feature where the expressions ``Name`` and ``X + Y``
will be evaluated and included in the string.
.. code-block:: ada
procedure Test_Interpolation is
X : Integer := 12;
Y : Integer := 15;
Name : String := "Leo";
begin
Put_Line (f"The name is {Name} and the sum is {X + Y}.");
end Test_Interpolation;
This will print:
.. code-block:: ada
The name is Leo and the sum is 27.
In addition, an escape character (``\``) is provided for inserting certain
standard control characters (such as ``\t`` for tabulation or ``\n`` for
newline) or to escape characters with special significance to the
interpolated string syntax, namely ``"``, ``{``, ``}``,and ``\`` itself.
================= =================
escaped_character meaning
----------------- -----------------
``\a`` ALERT
``\b`` BACKSPACE
``\f`` FORM FEED
``\n`` LINE FEED
``\r`` CARRIAGE RETURN
``\t`` CHARACTER TABULATION
``\v`` LINE TABULATION
``\0`` NUL
----------------- -----------------
``\\`` ``\``
``\"`` ``"``
``\{`` ``{``
``\}`` ``}``
================= =================
Note that, unlike normal string literals, doubled double-quote characters have no
special significance. So to include a double-quote or a brace character
in an interpolated string, they must be preceded by a ``\``.
Multiple interpolated strings are concatenated.
For example:
.. code-block:: ada
Put_Line
(f"X = {X} and Y = {Y} and X+Y = {X+Y};\n" &
f" a double quote is \" and" &
f" an open brace is \{");
This will print:
.. code-block:: ada
X = 12 and Y = 15 and X+Y = 27
a double quote is " and an open brace is {
Constrained attribute for generic objects
-----------------------------------------
The ``Constrained`` attribute is permitted for objects of generic types. The
result indicates whether the corresponding actual is constrained.
``Static`` aspect on intrinsic functions
----------------------------------------
The Ada 202x ``Static`` aspect can be specified on Intrinsic imported functions
and the compiler will evaluate some of these intrinsics statically, in
particular the ``Shift_Left`` and ``Shift_Right`` intrinsics.
First Controlling Parameter
---------------------------
A new pragma/aspect, ``First_Controlling_Parameter``, is introduced for tagged
types, altering the semantics of primitive/controlling parameters. When a
tagged type is marked with this aspect, only subprograms where the first
parameter is of that type will be considered dispatching primitives. This
pragma/aspect applies to the entire hierarchy, starting from the specified
type, without affecting inherited primitives.
Here is an example of this feature:
.. code-block:: ada
package Example is
type Root is tagged private;
procedure P (V : Integer; V2 : Root);
-- Primitive
type Child is tagged private
with First_Controlling_Parameter;
private
type Root is tagged null record;
type Child is new Root with null record;
overriding
procedure P (V : Integer; V2 : Child);
-- Primitive
procedure P2 (V : Integer; V2 : Child);
-- NOT Primitive
function F return Child; -- NOT Primitive
function F2 (V : Child) return Child;
-- Primitive, but only controlling on the first parameter
end Example;
Note that ``function F2 (V : Child) return Child;`` differs from ``F2 (V : Child)
return Child'Class;`` in that the return type is a specific, definite type. This
is also distinct from the legacy semantics, where further derivations with
added fields would require overriding the function.
The option ``-gnatw_j``, that you can pass to the compiler directly, enables
warnings related to this new language feature. For instance, compiling the
example above without this switch produces no warnings, but compiling it with
``-gnatw_j`` generates the following warning on the declaration of procedure P2:
.. code-block:: ada
warning: not a dispatching primitive of tagged type "Child"
warning: disallowed by First_Controlling_Parameter on "Child"
For generic formal tagged types, you can specify whether the type has the
First_Controlling_Parameter aspect enabled:
.. code-block:: ada
generic
type T is tagged private with First_Controlling_Parameter;
package T is
type U is new T with null record;
function Foo return U; -- Not a primitive
end T;
For tagged partial views, the value of the aspect must be consistent between
the partial and full views:
.. code-block:: ada
package R is
type T is tagged private;
...
private
type T is tagged null record with First_Controlling_Parameter; -- ILLEGAL
end R;
Restricting the position of controlling parameter offers several advantages:
* Simplification of the dispatching rules improves readability of Ada programs.
One doesn't need to analyze all subprogram parameters to understand if the given
subprogram is a primitive of a certain tagged type.
* A programmer is free to use any type, including class-wide types, on other
parameters of a subprogram, without the need to consider possible effects of
overriding a primitive or creating new one.
* The result of a function is never a controlling result.
.. _Experimental_Language_Extensions:
Experimental Language Extensions
================================
Features activated via ``-gnatX0`` or
``pragma Extensions_Allowed (All_Extensions)``.
Conditional when constructs
---------------------------
This feature extends the use of ``when`` as a way to condition a control-flow
related statement, to all control-flow related statements.
To do a conditional return in a procedure the following syntax should be used:
.. code-block:: ada
procedure P (Condition : Boolean) is
begin
return when Condition;
end P;
This will return from the procedure if ``Condition`` is true.
When being used in a function the conditional part comes after the return value:
.. code-block:: ada
function Is_Null (I : Integer) return Boolean is
begin
return True when I = 0;
return False;
end;
In a similar way to the ``exit when`` a ``goto ... when`` can be employed:
.. code-block:: ada
procedure Low_Level_Optimized is
Flags : Bitmapping;
begin
Do_1 (Flags);
goto Cleanup when Flags (1);
Do_2 (Flags);
goto Cleanup when Flags (32);
-- ...
<<Cleanup>>
-- ...
end;
.. code-block
To use a conditional raise construct:
.. code-block:: ada
procedure Foo is
begin
raise Error when Imported_C_Func /= 0;
end;
An exception message can also be added:
.. code-block:: ada
procedure Foo is
begin
raise Error with "Unix Error"
when Imported_C_Func /= 0;
end;
Storage Model
-------------
This extends Storage Pools into a more efficient model allowing higher performance,
easier integration with low footprint embedded run-times and copying data between
different pools of memory. The latter is especially useful when working with distributed
memory models, in particular to support interactions with GPU.
Aspect Storage_Model_Type
^^^^^^^^^^^^^^^^^^^^^^^^^^
A Storage model is a type with a specified ``Storage_Model_Type``
aspect, e.g.:
.. code-block:: Ada
type A_Model is null record
with Storage_Model_Type (...);
Storage_Model_Type itself accepts six parameters:
- Address_Type, the type of the address managed by this model. This has to be
a scalar type or derived from System.Address.
- Allocate, a procedure used for allocating memory in this model
- Deallocate, a procedure used for deallocating memory in this model
- Copy_To, a procedure used to copy memory from native memory to this model
- Copy_From, a procedure used to copy memory from this model to native memory
- Storage_Size, a function returning the amount of memory left
- Null_Address, a value for the null address value
By default, Address_Type is System.Address, and the five subprograms
perform native operations (e.g. the allocator is the native ``new`` allocator).
Users can decide to specify one or more of these. When an Address_Type is
specified to be other than System.Address, all of the subprograms have
to be specified.
The prototypes of these procedures are as follows:
.. code-block:: Ada
procedure Allocate
(Model : in out A_Model;
Storage_Address : out Address_Type;
Size : Storage_Count;
Alignment : Storage_Count);
procedure Deallocate
(Model : in out A_Model;
Storage_Address : out Address_Type;
Size : Storage_Count;
Alignment : Storage_Count);
procedure Copy_To
(Model : in out A_Model;
Target : Address_Type;
Source : System.Address;
Size : Storage_Count);
procedure Copy_From
(Model : in out A_Model;
Target : System.Address;
Source : Address_Type;
Size : Storage_Count);
function Storage_Size
(Pool : A_Model)
return Storage_Count;
Here's an example of how this could be instantiated in the context of CUDA:
.. code-block:: Ada
package CUDA_Memory is
type CUDA_Storage_Model is null record
with Storage_Model_Type => (
Address_Type => CUDA_Address,
Allocate => CUDA_Allocate,
Deallocate => CUDA_Deallocate,
Copy_To => CUDA_Copy_To,
Copy_From => CUDA_Copy_From,
Storage_Size => CUDA_Storage_Size,
Null_Address => CUDA_Null_Address
);
type CUDA_Address is new System.Address;
-- We're assuming for now same address size on host and device
procedure CUDA_Allocate
(Model : in out CUDA_Storage_Model;
Storage_Address : out CUDA_Address;
Size : Storage_Count;
Alignment : Storage_Count);
procedure CUDA_Deallocate
(Model : in out CUDA_Storage_Model;
Storage_Address : out CUDA_Address;
Size : Storage_Count;
Alignment : Storage_Count);
procedure CUDA_Copy_To
(Model : in out CUDA_Storage_Model;
Target : CUDA_Address;
Source : System.Address;
Size : Storage_Count);
procedure CUDA_Copy_From
(Model : in out CUDA_Storage_Model;
Target : System.Address;
Source : CUDA_Address;
Size : Storage_Count);
function CUDA_Storage_Size
(Pool : CUDA_Storage_Model)
return Storage_Count return Storage_Count'Last;
CUDA_Null_Address : constant CUDA_Address :=
CUDA_Address (System.Null_Address);
CUDA_Memory : CUDA_Storage_Model;
end CUDA_Memory;
Aspect Designated_Storage_Model
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
A new aspect, Designated_Storage_Model, allows to specify the memory model
for the objects pointed by an access type. Under this aspect, allocations
and deallocations will come from the specified memory model instead
of the standard ones. In addition, if write operations are needed for
initialization, or if there is a copy of the target object from and to a
standard memory area, the Copy_To and Copy_From functions will be called.
It allows to encompass the capabilities of storage pools, e.g.:
.. code-block:: Ada
procedure Main is
type Integer_Array is array (Integer range <>) of Integer;
type Host_Array_Access is access all Integer_Array;
type Device_Array_Access is access Integer_Array
with Designated_Storage_Model => CUDA_Memory;
procedure Free is new Unchecked_Deallocation
(Host_Array_Type, Host_Array_Access);
procedure Free is new Unchecked_Deallocation
(Device_Array_Type, Device_Array_Access);
Host_Array : Host_Array_Access := new Integer_Array (1 .. 10);
Device_Array : Device_Array_Access := new Host_Array (1 .. 10);
-- Calls CUDA_Storage_Model.Allocate to allocate the fat pointers and
-- the bounds, then CUDA_Storage_Model.Copy_In to copy the values of the
-- boundaries.
begin
Host_Array.all := (others => 0);
Device_Array.all := Host_Array.all;
-- Calls CUDA_Storage_Model.Copy_To to write to the device array from the
-- native memory.
Host_Array.all := Device_Array.all;
-- Calls CUDA_Storage_Model.Copy_From to read from the device array and
-- write to native memory.
Free (Host_Array);
Free (Device_Array);
-- Calls CUDA_Storage_Model.Deallocate;
end;
Taking ``'Address`` of an object with a specific memory model returns an object of
the type of the address for that memory category, which may be different from
System.Address.
When copying is performed between two specific memory models, the native memory
is used as a temporary between the two. E.g.:
.. code-block:: Ada
type Foo_I is access Integer with Designated_Storage_Model => Foo;
type Bar_I is access Integer with Designated_Storage_Model => Bar;
X : Foo_I := new Integer;
Y : Bar_I := new Integer;
begin
X.all := Y.all;
conceptually becomes:
.. code-block:: Ada
X : Foo_I := new Integer;
T : Integer;
Y : Bar_I := new Integer;
begin
T := Y.all;
X.all := T;
Legacy Storage Pools
^^^^^^^^^^^^^^^^^^^^^
Legacy Storage Pools are now replaced by a Storage_Model_Type.
They are implemented as follows:
.. code-block:: Ada
type Root_Storage_Pool is abstract
new Ada.Finalization.Limited_Controlled with private
with Storage_Model_Type => (
Allocate => Allocate,
Deallocate => Deallocate,
Storage_Size => Storage_Size
);
pragma Preelaborable_Initialization (Root_Storage_Pool);
procedure Allocate
(Pool : in out Root_Storage_Pool;
Storage_Address : out System.Address;
Size_In_Storage_Elements : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count)
is abstract;
procedure Deallocate
(Pool : in out Root_Storage_Pool;
Storage_Address : System.Address;
Size_In_Storage_Elements : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count)
is abstract;
function Storage_Size
(Pool : Root_Storage_Pool)
return System.Storage_Elements.Storage_Count
is abstract;
The legacy notation:
.. code-block:: Ada
type My_Pools is new Root_Storage_Pool with record [...]
My_Pool_Instance : Storage_Model_Pool.Storage_Model :=
My_Pools'(others => <>);
type Acc is access Integer_Array with Storage_Pool => My_Pool;
can still be accepted as a shortcut for the new syntax.
Attribute Super
---------------
.. index:: Super
The ``Super`` attribute can be applied to objects of tagged types in order
to obtain a view conversion to the most immediate specific parent type.
It cannot be applied to objects of types without any ancestors.
.. code-block:: ada
type T1 is tagged null record;
procedure P (V : T1);
type T2 is new T1 with null record;
type T3 is new T2 with null record;
procedure P (V : T3);
procedure Call (
V1 : T1'Class;
V2 : T2'Class;
V3 : T3'Class) is
begin
V1'Super.P; -- Illegal call as T1 doesn't have any ancestors
V2'Super.P; -- Equivalent to "T1 (V).P;", a non-dispatching call
-- to T1's primitive procedure P.
V3'Super.P; -- Equivalent to "T2 (V).P;"; Since T2 doesn't
-- override P, a non-dispatching call to T1.P is
-- executed.
end;
Simpler Accessibility Model
---------------------------
The goal of this feature is to simplify the accessibility rules by removing
dynamic accessibility checks that are often difficult to understand and debug.
The new rules eliminate the need for runtime accessibility checks by imposing
more conservative legality rules when enabled via a new restriction (see RM 13.12),
No_Dynamic_Accessibility_Checks, which prevents dangling reference problems
at compile time.
This restriction has no effect on the user-visible behavior of a program when executed;
the only effect of this restriction is to enable additional compile-time checks
(described below) which ensure statically that Ada's dynamic accessibility checks
will not fail.
The feature can be activated with ``pragma Restrictions (No_Dynamic_Accessibility_Checks);``.
As a result, additional compile-time checks are performed; these checks pertain to
stand-alone objects, subprogram parameters, and function results as described below.
All of the refined rules are compatible with the [use of anonymous access types in SPARK]
(http://docs.adacore.com/spark2014-docs/html/lrm/declarations-and-types.html#access-types).
Stand-alone objects
^^^^^^^^^^^^^^^^^^^^
.. code-block:: ada
Var : access T := ...
Var_To_Cst : access constant T := ...
Cst : constant access T := ...
Cst_To_Cst : constant access constant T := ...
In this section, we will refer to a stand-alone object of an anonymous access
type as an SO.
When the restriction is in effect, the "statically deeper" relationship
(see RM 3.10.2(4)) does apply to the type of a SO (contrary to RM 3.10.2(19.2))
and, for the purposes of compile-time checks, the accessibility level of the
type of a SO is the accessibility level of that SO.
This supports many common use-cases without the employment of ``Unchecked_Access``
while still removing the need for dynamic checks.
This statically disallows cases that would otherwise require a dynamic accessibility
check, such as
.. code-block:: ada
type Ref is access all Integer;
Ptr : Ref;
Good : aliased Integer;
procedure Proc is
Bad : aliased Integer;
Stand_Alone : access Integer;
begin
if <some condition> then
Stand_Alone := Good'Access;
else
Stand_Alone := Bad'Access;
end if;
Ptr := Ref (Stand_Alone);
end Proc;
If a No_Dynamic_Accessibility_Checks restriction is in effect, then the otherwise-legal
type conversion (the right-hand side of the assignment to Ptr) becomes a violation
of the RM 4.6 rule "The accessibility level of the operand type shall not be
statically deeper than that of the target type ...".
Subprogram parameters
^^^^^^^^^^^^^^^^^^^^^^
.. code-block:: ada
procedure P (V : access T; X : access constant T);
In most cases (the exceptions are described below), a No_Dynamic_Accessibility_Checks
restriction means that the "statically deeper" relationship does apply to the anonymous
type of an access parameter specifying an access-to-object type (contrary to RM 3.10.2(19.1))
and, for purposes of compile-time "statically deeper" checks, the accessibility level
of the type of such a parameter is the accessibility level of the parameter.
This change (at least as described so far) doesn't affect the caller's side, but on the
callee's side it means that object designated by a non-null parameter of an anonymous
access type is treated as having the same accessibility level as a local object declared
immediately within the called subprogram.
With the restriction in effect, the otherwise-legal type conversion in the following example
becomes illegal:
.. code-block:: ada
type Ref is access all Integer;
Ptr : Ref;
procedure Proc (Param : access Integer) is
begin
Ptr := Ref (Param);
end Proc;
The aforementioned exceptions have to do with return statements from functions that either
return the given parameter (in the case of a function whose result type is an anonymous
access type) or return the given parameter value as an access discriminant of the function
result (or of some discriminated part thereof). More specifically, the "statically deeper"
changes described above do not apply for purposes of checking the "shall not be statically
deeper" rule for access discriminant parts of function results (RM 6.5(5.9)) or in determining
the legality of an (implicit) type conversion from the anonymous access type of a parameter
of a function to an anonymous access result type of that function. In order to prevent these
rule relaxations from introducing the possibility of dynamic accessibility check failures,
compensating compile-time checks are performed at the call site to prevent cases where
including the value of an access parameter as part of a function result could make such
check failures possible (specifically, the discriminant checks of RM 6.5(21) or, in the
case of an anonymous access result type, the RM 4.6(48) check performed when converting
to that result type). These compile-time checks are described in the next section.
From the callee's perspective, the level of anonymous access formal parameters would be
between the level of the subprogram and the level of the subprogram's locals. This has the effect
of formal parameters being treated as local to the callee except in:
* Use as a function result
* Use as a value for an access discriminant in result object
* Use as an assignments between formal parameters
Note that with these more restricted rules we lose track of accessibility levels when assigned to
local objects thus making (in the example below) the assignment to Node2.Link from Temp below
compile-time illegal.
.. code-block:: ada
type Node is record
Data : Integer;
Link : access Node;
end record;
procedure Swap_Links (Node1, Node2 : in out Node) is
Temp : constant access Node := Node1.Link; -- We lose the "association" to Node1
begin
Node1.Link := Node2.Link; -- Allowed
Node2.Link := Temp; -- Not allowed
end;
function Identity (N : access Node) return access Node is
Local : constant access Node := N;
begin
if True then
return N; -- Allowed
else
return Local; -- Not allowed
end if;
end;
Function results
^^^^^^^^^^^^^^^^
.. code-block:: ada
function Get (X : Rec) return access T;
If the result subtype of a function is either an anonymous access (sub)type, a
class-wide (sub)type, an unconstrained subtype with an access discriminant, or
a type with an unconstrained subcomponent subtype that has at least one access
discriminant (this last case is only possible if the access discriminant has a
default value), then we say that the function result type "might require an
anonymous-access-part accessibility check". If a function has an access parameter,
or a parameter whose subtype "might require an anonymous-access-part accessibility
check", then we say that the each such parameter "might be used to pass in an
anonymous-access value". If the first of these conditions holds for the result
subtype of a function and the second condition holds for at least one parameter
that function, then it is possible that a call to that function could return a
result that contains anonymous-access values that were passed in via the parameter.
Given a function call where the result type "might require an anonymous-access-part
accessibility check" and a formal parameter of that function that "might be used to
pass in an anonymous-access value", either the type of that formal parameter is an
anonymous access type or it is not. If it is, and if a No_Dynamic_Access_Checks
restriction is in effect, then the accessibility level of the type of the actual
parameter shall be statically known to not be deeper than that of the master of
the call. If it isn't, then the accessibility level of the actual parameter shall
be statically known to not be deeper than that of the master of the call.
Function result example:
.. code-block:: ada
declare
type T is record
Comp : aliased Integer;
end record;
function Identity (Param : access Integer) return access Integer is
begin
return Param; -- Legal
end;
function Identity_2 (Param : aliased Integer) return access Integer is
begin
return Param'Access; -- Legal
end;
X : access Integer;
begin
X := Identity (X); -- Legal
declare
Y : access Integer;
Z : aliased Integer;
begin
X := Identity (Y); -- Illegal since Y is too deep
X := Identity_2 (Z); -- Illegal since Z is too deep
end;
end;
In order to avoid having to expand the definition of "might be used to pass in an
anonymous-access value" to include any parameter of a tagged type, the
No_Dynamic_Access_Checks restriction also imposes a requirement that a type extension
cannot include the explicit definition of an access discriminant.
Here is an example of one such case of an upward conversion which would lead to a memory leak:
.. code-block:: ada
declare
type T is tagged null record;
type T2 (Disc : access Integer) is new T with null record; -- Must be illegal
function Identity (Param : aliased T'Class) return access Integer is
begin
return T2 (T'Class (Param)).Disc; -- Here P gets effectively returned and set to X
end;
X : access Integer;
begin
declare
P : aliased Integer;
Y : T2 (P'Access);
begin
X := Identity (T'Class (Y)); -- Pass local variable P (via Y's discriminant),
-- leading to a memory leak.
end;
end;
```
Thus we need to make the following illegal to avoid such situations:
```ada
package Pkg1 is
type T1 is tagged null record;
function Func (X1 : T1) return access Integer is (null);
end;
package Pkg2 is
type T2 (Ptr1, Ptr2 : access Integer) is new Pkg1.T1 with null record; -- Illegal
...
end;
In order to prevent upward conversions of anonymous function results (like below), we
also would need to assure that the level of such a result (from the callee's perspective)
is statically deeper:
.. code-block:: ada
declare
type Ref is access all Integer;
Ptr : Ref;
function Foo (Param : access Integer) return access Integer is
begin
return Result : access Integer := Param; do
Ptr := Ref (Result); -- Not allowed
end return;
end;
begin
declare
Local : aliased Integer;
begin
Foo (Local'Access).all := 123;
end;
end;
Case pattern matching
---------------------
The selector for a case statement (but not for a case expression) may
be of a composite type, subject to some restrictions (described below).
Aggregate syntax is used for choices of such a case statement; however,
in cases where a "normal" aggregate would require a discrete value, a
discrete subtype may be used instead; box notation can also be used to
match all values.
Consider this example:
.. code-block:: ada
type Rec is record
F1, F2 : Integer;
end record;
procedure Caser_1 (X : Rec) is
begin
case X is
when (F1 => Positive, F2 => Positive) =>
Do_This;
when (F1 => Natural, F2 => <>) | (F1 => <>, F2 => Natural) =>
Do_That;
when others =>
Do_The_Other_Thing;
end case;
end Caser_1;
If ``Caser_1`` is called and both components of X are positive, then
``Do_This`` will be called; otherwise, if either component is nonnegative
then ``Do_That`` will be called; otherwise, ``Do_The_Other_Thing`` will be
called.
In addition, pattern bindings are supported. This is a mechanism
for binding a name to a component of a matching value for use within
an alternative of a case statement. For a component association
that occurs within a case choice, the expression may be followed by
``is <identifier>``. In the special case of a "box" component association,
the identifier may instead be provided within the box. Either of these
indicates that the given identifier denotes (a constant view of) the matching
subcomponent of the case selector.
.. attention:: Binding is not yet supported for arrays or subcomponents
thereof.
Consider this example (which uses type ``Rec`` from the previous example):
.. code-block:: ada
procedure Caser_2 (X : Rec) is
begin
case X is
when (F1 => Positive is Abc, F2 => Positive) =>
Do_This (Abc)
when (F1 => Natural is N1, F2 => <N2>) |
(F1 => <N2>, F2 => Natural is N1) =>
Do_That (Param_1 => N1, Param_2 => N2);
when others =>
Do_The_Other_Thing;
end case;
end Caser_2;
This example is the same as the previous one with respect to determining
whether ``Do_This``, ``Do_That``, or ``Do_The_Other_Thing`` will be called. But
for this version, ``Do_This`` takes a parameter and ``Do_That`` takes two
parameters. If ``Do_This`` is called, the actual parameter in the call will be
``X.F1``.
If ``Do_That`` is called, the situation is more complex because there are two
choices for that alternative. If ``Do_That`` is called because the first choice
matched (i.e., because ``X.F1`` is nonnegative and either ``X.F1`` or ``X.F2``
is zero or negative), then the actual parameters of the call will be (in order)
``X.F1`` and ``X.F2``. If ``Do_That`` is called because the second choice
matched (and the first one did not), then the actual parameters will be
reversed.
Within the choice list for single alternative, each choice must define the same
set of bindings and the component subtypes for for a given identifier must all
statically match. Currently, the case of a binding for a nondiscrete component
is not implemented.
If the set of values that match the choice(s) of an earlier alternative
overlaps the corresponding set of a later alternative, then the first set shall
be a proper subset of the second (and the later alternative will not be
executed if the earlier alternative "matches"). All possible values of the
composite type shall be covered. The composite type of the selector shall be an
array or record type that is neither limited nor class-wide. Currently, a "when
others =>" case choice is required; it is intended that this requirement will
be relaxed at some point.
If a subcomponent's subtype does not meet certain restrictions, then the only
value that can be specified for that subcomponent in a case choice expression
is a "box" component association (which matches all possible values for the
subcomponent). This restriction applies if:
- the component subtype is not a record, array, or discrete type; or
- the component subtype is subject to a non-static constraint or has a
predicate; or:
- the component type is an enumeration type that is subject to an enumeration
representation clause; or
- the component type is a multidimensional array type or an array type with a
nonstatic index subtype.
Support for casing on arrays (and on records that contain arrays) is
currently subject to some restrictions. Non-positional
array aggregates are not supported as (or within) case choices. Likewise
for array type and subtype names. The current implementation exceeds
compile-time capacity limits in some annoyingly common scenarios; the
message generated in such cases is usually "Capacity exceeded in compiling
case statement with composite selector type".
Mutably Tagged Types with Size'Class Aspect
-------------------------------------------
The ``Size'Class`` aspect can be applied to a tagged type to specify a size
constraint for the type and its descendants. When this aspect is specified
on a tagged type, the class-wide type of that type is considered to be a
"mutably tagged" type - meaning that objects of the class-wide type can have
their tag changed by assignment from objects with a different tag.
Example:
.. code-block:: ada
type Base is tagged null record
with Size'Class => 16 * 8; -- Size in bits (128 bits, or 16 bytes)
type Derived_Type is new Base with record
Data_Field : Integer;
end record; -- ERROR if Derived_Type exceeds 16 bytes
Class-wide types with a specified ``Size'Class`` can be used as the type of
array components, record components, and stand-alone objects.
.. code-block:: ada
Inst : Base'Class;
type Array_of_Base is array (Positive range <>) of Base'Class;
If the ``Size'Class`` aspect is specified for a type ``T``, then every
specific descendant of ``T`` [redundant: (including ``T``)]
- shall have a Size that does not exceed the specified value; and
- shall be undiscriminated; and
- shall have no composite subcomponent whose subtype is subject to a
dynamic constraint; and
- shall have no interface progenitors; and
- shall not have a tagged partial view other than a private extension; and
- shall not have a statically deeper accessibility level than that of ``T``.
In addition to the places where Legality Rules normally apply (see 12.3),
these legality rules apply also in the private part and in the body of an
instance of a generic unit.
For any subtype ``S`` that is a subtype of a descendant of ``T``, ``S'Class'Size`` is
defined to yield the specified value [redundant:, although ``S'Class'Size`` is
not a static expression].
A class-wide descendant of a type with a specified ``Size'Class`` aspect is
defined to be a "mutably tagged" type. Any subtype of a mutably tagged type is,
by definition, a definite subtype (RM 3.3 notwithstanding). Default
initialization of an object of such a definite subtype proceeds as for the
corresponding specific type, except that ``Program_Error`` is raised if the
specific type is abstract. [In particular, the initial tag of the object is
that of the corresponding specific type.]
An object of a tagged type is defined to be "tag-constrained" if it is
- an object whose type is not mutably tagged; or
- a constant object; or
- a view conversion of a tag-constrained object; or
- a formal ``in out`` or ``out`` parameter whose corresponding
actual parameter is tag-constrained.
In the case of an assignment to a tagged variable that
is not tag-constrained, no check is performed that the tag of the value of
the expression is the same as that of the target (RM 5.2 notwithstanding).
Instead, the tag of the target object becomes that of the source object of
the assignment.
An assignment to a composite object similarly copies the tags of any
subcomponents of the source object that have a mutably-tagged type.
The ``Constrained`` attribute is defined for any name denoting an object of a
mutably tagged type (RM 3.7.2 notwithstanding). In this case, the Constrained
attribute yields the value True if the object is tag-constrained and False
otherwise.
Renaming is not allowed (see 8.5.1) for a type conversion having an operand of
a mutably tagged type ``MT`` and a target type ``TT`` such that ``TT'Class``
does not cover ``MT``, nor for any part of such an object, nor for any slice
of such an object. This rule also applies in any context where a name is
required to be one for which "renaming is allowed" (for example, see RM 12.4).
A name denoting a view of a variable of a mutably tagged type shall not
occur as an operative constituent of the prefix of a name denoting a
prefixed view of a callable entity, except as the callee name in a call to
the callable entity.
For a type conversion between two general access types, either both or neither
of the designated types shall be mutably tagged. For an ``Access`` (or
``Unchecked_Access``) attribute reference, the designated type of the type of the
attribute reference and the type of the prefix of the attribute shall either
both or neither be mutably tagged.
The execution of a construct is erroneous if the construct has a constituent
that is a name denoting a subcomponent of a tagged object and the object's
tag is changed by this execution between evaluating the name and the last use
(within this execution) of the subcomponent denoted by the name.
If the type of a formal parameter is a specific tagged type then the execution
of the call is erroneous if the tag of the actual is changed while the formal
parameter exists (that is, before leaving the corresponding callable
construct).
Generalized Finalization
------------------------
The ``Finalizable`` aspect can be applied to any record type, tagged or not,
to specify that it provides the same level of control on the operations of
initialization, finalization, and assignment of objects as the controlled
types (see RM 7.6(2) for a high-level overview). The only restriction is
that the record type must be a root type, in other words not a derived type.
The aspect additionally makes it possible to specify relaxed semantics for
the finalization operations by means of the ``Relaxed_Finalization`` setting.
Here is the archetypal example:
.. code-block:: ada
type T is record
...
end record
with Finalizable => (Initialize => Initialize,
Adjust => Adjust,
Finalize => Finalize,
Relaxed_Finalization => True);
procedure Adjust (Obj : in out T);
procedure Finalize (Obj : in out T);
procedure Initialize (Obj : in out T);
The three procedures have the same profile, with a single ``in out`` parameter,
and also have the same dynamic semantics as for controlled types:
- ``Initialize`` is called when an object of type ``T`` is declared without
initialization expression.
- ``Adjust`` is called after an object of type ``T`` is assigned a new value.
- ``Finalize`` is called when an object of type ``T`` goes out of scope (for
stack-allocated objects) or is deallocated (for heap-allocated objects).
It is also called when the value is replaced by an assignment.
However, when ``Relaxed_Finalization`` is either ``True`` or not explicitly
specified, the following differences are implemented relative to the semantics
of controlled types:
* The compiler has permission to perform no automatic finalization of
heap-allocated objects: ``Finalize`` is only called when such an object
is explicitly deallocated, or when the designated object is assigned a new
value. As a consequence, no runtime support is needed for performing
implicit deallocation. In particular, no per-object header data is needed
for heap-allocated objects.
Heap-allocated objects allocated through a nested access type will therefore
**not** be deallocated either. The result is simply that memory will be leaked
in this case.
* The ``Adjust`` and ``Finalize`` procedures are automatically considered as
having the :ref:`No_Raise_Aspect` specified for them. In particular, the
compiler has permission to enforce none of the guarantees specified by the
RM 7.6.1 (14/1) and subsequent subclauses.
Simple example of ref-counted type:
.. code-block:: ada
type T is record
Value : Integer;
Ref_Count : Natural := 0;
end record;
procedure Inc_Ref (X : in out T);
procedure Dec_Ref (X : in out T);
type T_Access is access all T;
type T_Ref is record
Value : T_Access;
end record
with Finalizable => (Adjust => Adjust,
Finalize => Finalize);
procedure Adjust (Ref : in out T_Ref) is
begin
Inc_Ref (Ref.Value);
end Adjust;
procedure Finalize (Ref : in out T_Ref) is
begin
Def_Ref (Ref.Value);
end Finalize;
Simple file handle that ensures resources are properly released:
.. code-block:: ada
package P is
type File (<>) is limited private;
function Open (Path : String) return File;
procedure Close (F : in out File);
private
type File is limited record
Handle : ...;
end record
with Finalizable (Finalize => Close);
end P;
Finalizable tagged types
^^^^^^^^^^^^^^^^^^^^^^^^
The aspect is inherited by derived types and the primitives may be overridden
by the derivation. The compiler-generated calls to these operations are then
dispatching whenever it makes sense, i.e. when the object in question is of a
class-wide type and the class includes at least one finalizable tagged type.
Composite types
^^^^^^^^^^^^^^^
When a finalizable type is used as a component of a composite type, the latter
becomes finalizable as well. The three primitives are derived automatically
in order to call the primitives of their components. The dynamic semantics is
the same as for controlled components of composite types.
Interoperability with controlled types
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Finalizable types are fully interoperable with controlled types, in particular
it is possible for a finalizable type to have a controlled component and vice
versa, but the stricter dynamic semantics, in other words that of controlled
types, is applied in this case.
.. _No_Raise_Aspect:
No_Raise aspect
----------------
The ``No_Raise`` aspect can be applied to a subprogram to declare that this
subprogram is not expected to raise an exception. Should an exception still
be raised during the execution of the subprogram, it is caught at the end of
this execution and ``Program_Error`` is propagated to the caller.
Inference of Dependent Types in Generic Instantiations
------------------------------------------------------
If a generic formal type T2 depends on another formal type T1,
the actual for T1 can be inferred from the actual for T2.
That is, you can give the actual for T2, and leave out the one
for T1.
For example, ``Ada.Unchecked_Deallocation`` has two generic formals:
.. code-block:: ada
generic
type Object (<>) is limited private;
type Name is access Object;
procedure Ada.Unchecked_Deallocation (X : in out Name);
where ``Name`` depends on ``Object``. With this language extension,
you can leave out the actual for ``Object``, as in:
.. code-block:: ada
type Integer_Access is access all Integer;
procedure Free is new Unchecked_Deallocation (Name => Integer_Access);
The compiler will infer that the actual type for ``Object`` is ``Integer``.
Note that named notation is always required when using inference.
The following inferences are allowed:
- For a formal access type, the designated type can be inferred.
- For a formal array type, the index type(s) and the component
type can be inferred.
- For a formal type with discriminants, the type(s) of the discriminants
can be inferred.
Example for arrays:
.. code-block:: ada
generic
type Element_Type is private;
type Index_Type is (<>);
type Array_Type is array (Index_Type range <>) of Element_Type;
package Array_Operations is
...
end Array_Operations;
...
type Int_Array is array (Positive range <>) of Integer;
package Int_Array_Operations is new Array_Operations (Array_Type => Int_Array);
The index and component types of ``Array_Type`` are inferred from
``Int_Array``, so that the above instantiation is equivalent to
the following standard-Ada instantiation:
.. code-block:: ada
package Int_Array_Operations is new Array_Operations
(Element_Type => Integer,
Index_Type => Positive,
Array_Type => Int_Array);
External_Initialization Aspect
------------------------------
The ``External_Initialization`` aspect provides a feature similar to Rust's ``include_bytes!``
and to C23's ``#embed``. It has the effect of initializing an object with the contents of
a file specified by a file path.
Only string objects and objects of type ``Ada.Streams.Stream_Element_Array`` can be subject
to the ``External_Initialization`` aspect.
Example:
.. code-block:: ada
with Ada.Streams;
package P is
S : constant String with External_Initialization => "foo.txt";
X : constant Ada.Streams.Stream_Element_Array with External_Initialization => "bar.bin";
end P;
``External_Initialization`` aspect accepts the following parameters:
- mandatory ``Path``: the path the compiler uses to access the binary resource.
If ``Path`` is a relative path, it is interpreted relatively to the directory of the file that contains the aspect specification.
.. attention:: The maximum size of loaded files is limited to 2\ :sup:`31` bytes.
Finally construct
-----------------
The ``finally`` keyword makes it possible to have a sequence of statements be executed when
another sequence of statements is completed, whether normally or abnormally.
This feature is similar to the one with the same name in other languages such as Java.
Syntax
^^^^^^
.. code-block:: text
handled_sequence_of_statements ::=
sequence_of_statements
[exception
exception_handler
{exception_handler}]
[finally
sequence_of_statements]
Legality Rules
^^^^^^^^^^^^^^
Return statements in the ``sequence_of_statements`` attached to the finally that would cause control
to be transferred outside the finally part are forbidden.
Goto & exit where the target is outside of the finally's ``sequence_of_statements`` are forbidden
Dynamic Semantics
^^^^^^^^^^^^^^^^^
Statements in the optional ``sequence_of_statements`` contained in the ``finally`` branch will be
executed unconditionally, after the main ``sequence_of_statements`` is executed, and after any
potential ``exception_handler`` is executed.
If an exception is raised in the finally part, it cannot be caught by the ``exception_handler``.
Abort/ATC (asynchronous transfer of control) cannot interrupt a finally block, nor prevent its
execution, that is the finally block must be executed in full even if the containing task is
aborted, or if the control is transferred out of the block.
|