3.10.1 Incomplete Type Declarations
1
There are no particular limitations on the designated
type of an access type. In particular, the type of a component of the
designated type can be another access type, or even the same access type.
This permits mutually dependent and recursive access types. An
incomplete_type_declaration
can be used to introduce a type to be used as a designated type, while
deferring its full definition to a subsequent
full_type_declaration.
Syntax
2/2
Static Semantics
2.1/2
2.2/2
{
AI95-00326-01}
Given an access type A whose designated
type T is an incomplete view, a dereference of a value of type
A also has this incomplete view except when:
2.a/3
Discussion: {
AI05-0208-1}
Whether the designated type is an incomplete view
(and thus whether this set of rules applies) is determined by the view
of the type at the declaration of the access type; it does not change
during the life of the type.
2.3/2
it occurs within the immediate
scope of the completion of T, or
2.4/3
2.5/3
2.6/3
{
AI05-0162-1}
In these cases, the dereference has the full
view of T visible at the point of the dereference.
2.b/2
Discussion:
We need the “in whose visible part” rule so that the
second rule doesn't trigger in the body of a package with a with
of a child unit:
2.c/2
package P is
private
type T;
type PtrT is access T;
end P;
2.d/2
private package P.C is
Ptr : PtrT;
end P.C;
2.e/3
{
AI05-0005-1}
with P.C;
package body P is
-- Ptr.all'Size is not legal here, but we are within it is in the scope
-- of a nonlimited_with_clause for P.
type T is ...
-- Ptr.all'Size is legal here.
end P;
2.7/3
Legality Rules
3/3
3.a
Proof: This is implied by the next AARM-only
rule, plus the rules in
3.11.1, “
Completions
of Declarations” which require a completion to appear later
and immediately within the same declarative region.
3.b
3.c
To be honest: If the implementation supports
it, an
incomplete_type_declaration
can be
imported (using aspect Import, see B.1),
in which case no explicit completion is allowed completed
by a pragma
Import.
4/3
5/2
5.a/2
6/3
6.a
Implementation Note: We now allow
discriminant_constraints
even if the full type is deferred to the package body. However, there
is no particular implementation burden because we have dropped the concept
of the dependent compatibility check. In other words, we have effectively
repealed AI83-00007.
7/2
7.a/2
Reason: {
AI95-00326-01}
This allows, for example, a record to have a component
designating a subprogram that takes that same record type as a parameter.
8/3
8.a/2
8.1/3
8.b/3
Ramification: But
not in the profile for a body or entry.
8.2/3
{
AI05-0213-1}
as a generic actual parameter whose corresponding
generic formal parameter is a formal incomplete type (see 12.5.1).
8.3/2
{
AI95-00326-01}
If such a name
denotes a tagged incomplete view, it may also be used:
8.4/3
9/2
9.a/2
This paragraph
was deleted.Reason: {
AI95-00326-01}
This is to prevent children from imposing requirements
on their ancestor library units for deferred incomplete types.
9.1/3
This
paragraph was deleted. {
AI95-00326-01}
{
AI05-0151-1}
If
such a name
occurs within the declaration list containing the completion of the incomplete
view, it may also be used:
9.2/3
9.b/3
This paragraph
was deleted.Reason: This
allows, for example, a record to have a component designating a subprogram
that takes that same record type as a parameter.
9.3/2
{
AI95-00326-01}
If any of the above uses occurs as part of the
declaration of a primitive subprogram of the incomplete view, and the
declaration occurs immediately within the private part of a package,
then the completion of the incomplete view shall also occur immediately
within the private part; it shall not be deferred to the package body.
9.c/2
Reason: This fixes
a hole in Ada 95 where a dispatching operation with an access parameter
could be declared in a private part and a dispatching call on it could
occur in a child even though there is no visibility on the full type,
requiring access to the controlling tag without access to the representation
of the type.
9.4/2
{
AI95-00326-01}
No other uses of a name
that denotes an incomplete view of a type are allowed.
10/3
{
AI95-00326-01}
{
AI05-0151-1}
A prefix
that denotes an object A dereference (whether
implicit or explicit — see 4.1)
shall not be of an incomplete
view type.
An actual parameter in a call shall not be of an untagged incomplete
view. The result object of a function call shall not be of an incomplete
view. A prefix
shall not denote a subprogram having a formal parameter of an untagged
incomplete view, nor a return type that is an incomplete view.
10.a/2
Reason: We used
to disallow all dereferences of an incomplete type. Now we only disallow
such dereferences when used as a prefix.
Dereferences used in other contexts do not pose a problem since normal
type matching will preclude their use except when the full type is “nearby”
as context (for example, as the expected type).
10.b/2
This also disallows prefixes
that are directly of an incomplete view. For instance, a parameter P
can be declared of a tagged incomplete type, but we don't want to allow
P'Size, P'Alignment, or the like, as representation values
aren't known for an incomplete view.
10.c/2
We say “denotes
an object” so that prefixes that directly name an incomplete view
are not covered; the previous rules cover such cases, and we certainly
don't want to ban Incomp'Class.
10.d/3
{
AI05-0151-1}
As subprogram profiles now may include any kind
of incomplete type, we also disallow passing objects of untagged incomplete
types in subprogram calls (as the parameter passing method is not known
as it is for tagged types) and disallow returning any sort of incomplete
objects (since we don't know how big they are).
Static Semantics
11/2
11.a/2
Dynamic Semantics
12
12.a
Reason: An incomplete type has no real
existence, so it doesn't need to be "created" in the usual
sense we do for other types. It is roughly equivalent to a "forward;"
declaration in Pascal. Private types are different, because they have
a different set of characteristics from their full type.
13
13.1/3
88 {
AI05-0151-1}
A name
that denotes an object of an incomplete view is defined to be of a limited
type. Hence, the target of an assignment statement shall not be of an
incomplete view.
Examples
14
Example of a recursive
type:
15
type Cell; -- incomplete type declaration
type Link is access Cell;
16
type Cell is
record
Value : Integer;
Succ : Link;
Pred : Link;
end record;
17
Head : Link := new Cell'(0, null, null);
Next : Link := Head.Succ;
18
Examples of mutually dependent access types:
19/2
{
AI95-00433-01}
type Person(<>); --
incomplete type declaration
type Car
is tagged;; --
incomplete type declaration
20/2
{
AI95-00433-01}
type Person_Name
is access Person;
type Car_Name
is access all Car
'Class;
21/2
{
AI95-00433-01}
type Car
is tagged
record
Number : Integer;
Owner : Person_Name;
end record;
22
type Person(Sex : Gender) is
record
Name : String(1 .. 20);
Birth : Date;
Age : Integer range 0 .. 130;
Vehicle : Car_Name;
case Sex is
when M => Wife : Person_Name(Sex => F);
when F => Husband : Person_Name(Sex => M);
end case;
end record;
23
My_Car, Your_Car, Next_Car : Car_Name :=
new Car; --
see 4.8
George : Person_Name :=
new Person(M);
...
George.Vehicle := Your_Car;
Extensions to Ada 83
23.a
23.b/1
A
discriminant_constraint
may be applied to an incomplete type, even if
it
its completion is deferred to the package body, because there
is no “dependent compatibility check” required any more.
Of course, the constraint can be specified only if a
known_discriminant_part
was given in the
incomplete_type_declaration.
As mentioned in the previous paragraph, that is no longer required even
when the full type has discriminants.
Wording Changes from Ada 83
23.c
Dereferences producing
incomplete types were not explicitly disallowed in RM83, though AI83-00039
indicated that it was not strictly necessary since troublesome cases
would result in Constraint_Error at run time, since the access value
would necessarily be null. However, this introduces an undesirable implementation
burden, as illustrated by Example 4 of AI83-00039:
23.d
package Pack is
type Pri is private;
private
type Sep;
type Pri is access Sep;
X : Pri;
end Pack;
23.e
package body Pack is -- Could be separately compiled!
type Sep is ...;
X := new Sep;
end Pack;
23.f
pragma Elaborate(Pack);
private package Pack.Child is
I : Integer := X.all'Size; -- Legal, by AI-00039.
end Pack.Child;
23.g
Generating code for the above example could
be a serious implementation burden, since it would require all aliased
objects to store size dope, and for that dope to be in the same format
for all kinds of types (or some other equivalently inefficient implementation).
On the contrary, most implementations allocate dope differently (or not
at all) for different designated subtypes.
Incompatibilities With Ada 95
23.h/2
{
AI95-00326-01}
It is now illegal to use an
incomplete view (type) as the parameter or result of an access-to-subprogram
type unless the incomplete view is completed in the same declaration
list as the use. This was allowed in Ada 95 for incomplete types where
the completion was deferred to the body. By disallowing this rare use
of incomplete views, we can allow the use of incomplete views in many
more places, which is especially valuable for limited views.
23.i/2
{
AI95-00326-01}
It is now illegal to use an incomplete view (type)
in a primitive subprogram of the type unless the incomplete view is completed
in the package specification. This was allowed in Ada 95 for incomplete
types where the completion was deferred to the body (the use would have
to be in an access parameter). This incompatibility was caused by the
fix for the hole noted in Legality Rules above.
Extensions to Ada 95
23.j/2
{
AI95-00326-01}
Tagged incomplete types are
new. They are allowed in parameter declarations as well as the usual
places, as tagged types are always by-reference types (and thus there
can be no code generation issue).
23.k/2
Wording Changes from Ada 95
23.l/2
{
AI95-00326-01}
The description of incomplete types as incomplete
views is new. Ada 95 defined these as separate types, but neglected
to give any rules for matching them with other types. Luckily, implementers
did the right thing anyway. This change also makes it easier to describe
the meaning of a limited view.
Extensions to Ada 2005
23.m/3
{
AI05-0098-1}
Correction: Fixed the
definition so that an anonymous access-to-subprogram type can use an
incomplete view in the same way that a named access-to-subprogram type
can.
23.n/3
{
AI05-0151-1}
Incomplete types now can be used in subprogram
declarations. The type has to be complete before any calls or the body
is declared. This reduces the places where access types are required
for types imported from limited views of packages.
23.o/3
{
AI05-0162-1}
Incomplete types now can be completed by private
types and private extensions. Since this can already happen for limited
views, there is no remaining reason to disallow it for explicitly declared
incomplete types.
Wording Changes from Ada 2005
23.p/3
{
AI05-0208-1}
Correction: Changed the rules of uses of
dereferences of incomplete views such that it does not introduce an unintentional
incompatibility with Ada 83 and Ada 95.
23.q/3
{
AI05-0213-1}
Incomplete types now can be used as actuals to
formal incomplete types (see 12.5.1).
Ada 2005 and 2012 Editions sponsored in part by Ada-Europe