On 04/17/2015 09:01 AM, Peter Sewell wrote:
On 17 April 2015 at 15:19, <paul_kon...@dell.com> wrote:
On Apr 17, 2015, at 9:14 AM, Peter Sewell <peter.sew...@cl.cam.ac.uk> wrote:
Dear gcc list,
we are trying to clarify what behaviour of C implementations is
actually relied upon in modern practice, and what behaviour is
guaranteed by current mainstream implementations (these are quite
different from the ISO standards, and may differ in different
contexts).
I’m not sure what you mean by “guaranteed”.
I suspect what the GCC team will say is guaranteed is “what the standard says”.
If that's really true, that will be interesting, but there may be
areas where (a) current implementation behaviour is stronger than what
the ISO standards require, and (b) important code relies on that
behaviour to such an extent that it becomes pragmatically infeasible
to change it. Such cases are part of what we're trying to discover
here. There are also cases where the ISO standards are unclear or
internally inconsistent.
Implementations can and often do provide stronger guarantees than
the standards require. When the do, they must be documented in order
to be safely relied on. This is termed as implementation-defined
behavior in standards.
Standards may be unclear to casual readers but they must be consistent
and unambiguous. When they're not it's a defect that should be raised
against them.
If by “guaranteed” you mean the behavior that happens to be implemented in a
particular version of the compiler, that may well be different, as you said.
But it’s also not particularly meaningful, because it is subject to change at
any time subject to the constraints of the standard, and is likely to be
different among different versions, and for that matter among different target
architectures and of course optimization settings.
Some amount of variation has to be allowed, of course - in fact, what
we'd like to clarify is really the envelope of allowable variation,
and that will have to be parametric on at least some optimisation
settings.
All the questions in the survey that can be are answered are
answered without unambiguity in the C standard (either as well-
defined behavior - 4, 5, 11, 12, 15, unspecified - 1, 13, or
undefined - 2, 3, 7, 8, 9, 10, 14). There are no optimization
options that affect the answers.
Martin
paul