6.3.1 Conformance Rules
When
subprogram profiles are given in more than one place, they are required
to conform in one of four ways: type conformance, mode conformance, subtype
conformance, or full conformance.
Static Semantics
As
explained in
B.1, “
Interfacing
Pragmas”, a
convention can be specified for an entity.
Unless this International Standard states otherwise, the default convention
of an entity is Ada. For a callable entity or access-to-subprogram type,
the convention is called the
calling convention. The following
conventions are defined by the language:
The default
calling convention for any subprogram not listed below is
Ada.
A
pragma Convention,
Import, or Export may be used to override the default calling convention
(see
B.1).
The
Intrinsic calling convention represents subprograms that are “built
in” to the compiler. The default calling convention is Intrinsic
for the following:
an enumeration literal;
a "/=" operator declared
implicitly due to the declaration of "=" (see
6.6);
any other implicitly declared subprogram
unless it is a dispatching operation of a tagged type;
an inherited subprogram of a generic
formal tagged type with unknown discriminants;
an attribute that is a subprogram;
any prefixed view of a subprogram
(see
4.1.3).
The Access attribute is not allowed for
Intrinsic subprograms.
The default
calling convention is
protected for a protected subprogram, and
for an access-to-subprogram type with the reserved word
protected
in its definition.
The default
calling convention is
entry for an entry.
The calling convention for an anonymous access-to-subprogram
parameter or anonymous access-to-subprogram result is protected
if the reserved word protected appears in its definition and otherwise
is the convention of the subprogram that contains the parameter.
If not specified above as Intrinsic, the calling
convention for any inherited or overriding dispatching operation of a
tagged type is that of the corresponding subprogram of the parent type.
The default calling convention for a new dispatching operation of a tagged
type is the convention of the type.
Of these four conventions, only Ada and Intrinsic
are allowed as a
convention_identifier
in a
pragma
Convention, Import, or Export.
Two profiles
are
type conformant if they have the same number of parameters,
and both have a result if either does, and corresponding parameter and
result types are the same, or, for access parameters or access results,
corresponding designated types are the same, or corresponding designated
profiles are type conformant.
Two profiles
are
mode conformant if they are type-conformant, and corresponding
parameters have identical modes, and, for access parameters or access
result types, the designated subtypes statically match, or the designated
profiles are subtype conformant.
Two profiles
are
subtype conformant if they are mode-conformant, corresponding
subtypes of the profile statically match, and the associated calling
conventions are the same. The profile of a generic formal subprogram
is not subtype-conformant with any other profile.
Two profiles
are
fully conformant if they are subtype-conformant, and corresponding
parameters have the same names and have
default_expressions
that are fully conformant with one another.
Two
expressions are
fully conformant if, after replacing each use
of an operator with the equivalent
function_call:
each constituent construct of one corresponds to
an instance of the same syntactic category in the other, except that
an expanded name may correspond to a
direct_name
(or
character_literal)
or to a different expanded name in the other; and
each
primary
that is a literal in one has the same value as the corresponding literal
in the other.
Two
known_discriminant_parts
are
fully conformant if they have the same number of discriminants,
and discriminants in the same positions have the same names, statically
matching subtypes, and
default_expressions
that are fully conformant with one another.
The
prefixed view profile
of a subprogram is the profile obtained by omitting the first parameter
of that subprogram. There is no prefixed view profile for a parameterless
subprogram. For the purposes of defining subtype and mode conformance,
the convention of a prefixed view profile is considered to match that
of either an entry or a protected operation.
Implementation Permissions
An implementation may declare an operator declared
in a language-defined library unit to be intrinsic.