[intro.compliance] (original) (raw)

4 General principles [intro]

4.1 Implementation compliance [intro.compliance]

4.1.1 General [intro.compliance.general]

The set ofdiagnosable rulesconsists of all syntactic and semantic rules in this document except for those rules containing an explicit notation that “no diagnostic is required” or which are described as resulting in “undefined behavior”.

Although this document states only requirements on C++ implementations, those requirements are often easier to understand if they are phrased as requirements on programs, parts of programs, or execution of programs.

Such requirements have the following meaning:

[Note 1:

During template argument deduction and substitution, certain constructs that in other contexts require a diagnostic are treated differently; see [temp.deduct].

— _end note_]

Furthermore, a conforming implementation shall not accept

For classes and class templates, the library Clauses specify partial definitions.

Private members are not specified, but each implementation shall supply them to complete the definitions according to the description in the library Clauses.

For functions, function templates, objects, and values, the library Clauses specify declarations.

Implementations shall supply definitions consistent with the descriptions in the library Clauses.

A C++ translation unit ([lex.phases]) obtains access to the names defined in the library by including the appropriate standard library header or importing the appropriate standard library named header unit ([using.headers]).

The templates, classes, functions, and objects in the library have external linkage.

The implementation provides definitions for standard library entities, as necessary, while combining translation units to form a complete C++ program ([lex.phases]).

An implementation is either ahosted implementation or afreestanding implementation.

A freestanding implementation is one in which execution may take place without the benefit of an operating system.

A hosted implementation supports all the facilities described in this document, while a freestanding implementation supports the entire C++ language described in [lex] through [cpp] and the subset of the library facilities described in [compliance].

It isimplementation-defined whether the implementation is ahardened implementation.

If it is a hardened implementation, violating a hardened precondition results in a contract violation ([structure.specifications]).

An implementation is encouraged to document its limitations in the size or complexity of the programs it can successfully process, if possible and where known.

[implimits] lists some quantities that can be subject to limitations and a potential minimum supported value for each quantity.

A conforming implementation may have extensions (including additional library functions), provided they do not alter the behavior of any well-formed program.

Implementations are required to diagnose programs that use such extensions that are ill-formed according to this document.

Having done so, however, they can compile and execute such programs.

Each implementation shall include documentation that identifies all conditionally-supported constructsthat it does not support and defines all locale-specific characteristics.4

4.1.2 Abstract machine [intro.abstract]

The semantic descriptions in this document define a parameterized nondeterministic abstract machine.

This document places no requirement on the structure of conforming implementations.

In particular, they need not copy or emulate the structure of the abstract machine.

Rather, conforming implementations are required to emulate (only) the observable behavior of the abstract machine as explained below.5

Certain aspects and operations of the abstract machine are described in this document as implementation-defined behavior (for example,sizeof(int)).

These constitute the parameters of the abstract machine.

Each implementation shall include documentation describing its characteristics and behavior in these respects.6

Such documentation shall define the instance of the abstract machine that corresponds to that implementation (referred to as the “corresponding instance” below).

Certain other aspects and operations of the abstract machine are described in this document as unspecified behavior (for example, order of evaluation of arguments in a function call ([expr.call])).

Where possible, this document defines a set of allowable behaviors.

These define the nondeterministic aspects of the abstract machine.

An instance of the abstract machine can thus have more than one possible execution for a given program and a given input.

Certain other operations are described in this document as undefined behavior (for example, the effect of attempting to modify a const object).

Certain events in the execution of a program are termed observable checkpoints.

[Note 1:

A call to std​::​observable ([utility.undefined]) is an observable checkpoint, as are certain parts of the evaluation of contract assertions ([basic.contract]).

— _end note_]

The defined prefix of an execution comprises the operations Ofor which for every undefined operation Uthere is an observable checkpoint Csuch that O happens before C andC happens before U.

[Note 2:

The undefined behavior that arises from a data race ([intro.races]) occurs on all participating threads.

— _end note_]

A conforming implementation executing a well-formed program shall produce the observable behavior of the defined prefix of one of the possible executions of the corresponding instance of the abstract machine with the same program and the same input.

If the selected execution contains an undefined operation, the implementation executing that program with that input may produce arbitrary additional observable behavior afterwards.

If the execution contains an operation specified as having erroneous behavior, the implementation is permitted to issue a diagnostic and is permitted to terminate the execution at an unspecified time after that operation.

Recommended practice: An implementation should issue a diagnostic when such an operation is executed.

[Note 3:

An implementation can issue a diagnostic if it can determine that erroneous behavior is reachable under an implementation-specific set of assumptions about the program behavior, which can result in false positives.

— _end note_]

The following specify theobservable behaviorof the program:

[Note 5:

More stringent correspondences between abstract and actual semantics can be defined by each implementation.

— _end note_]