Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Glossary unspecified/implementation-defined behavior #201

Open
gnzlbg opened this issue Sep 11, 2019 · 10 comments
Open

Glossary unspecified/implementation-defined behavior #201

gnzlbg opened this issue Sep 11, 2019 · 10 comments
Labels
A-abstract-machine Topic: concerning the abstract machine in general (as opposed to any specific part of it) C-terminology Category: Discussing terminology -- which term to use, how to define it, adding it to the glossary Triaged Visited during a backlog bonanza meeting

Comments

@gnzlbg
Copy link
Contributor

gnzlbg commented Sep 11, 2019

We should probably document these terms in the glossary somewhere.

  • defined behavior:
    • implementation-independent behavior (or some other name, like maybe well-defined behavior?): the behavior is well-defined and implementation-independent.
    • Implementation-defined: the implementation must say what the behavior is
      • typically target dependent things
    • unspecified: the implementation doesn't have to say what the behavior is
      • isn't necessarily deterministic, or should it be?
@gnzlbg
Copy link
Contributor Author

gnzlbg commented Sep 11, 2019

Adapting the C++ standard, it could look like this:

  • implementation-defined behavior: behavior for a well-formed program that depends on the implementation and that each implementation documents

    • note: the reference often delineates the range of possible behaviors.
  • unspecified behavior: behavior for a well-formed program that depends on the implementation

    • note: implementations are not required to document the behavior.
    • note: the reference often delineates the range of possible behaviors.
  • implementation-independent behavior: behavior for a well-formed program that does not depend on the implementation

    • note: the language reference explicitly documents the behavior.

These refer to well-formed programs. We might want to define that term as well:

  • well-formed program: A Rust program constructed from Rust syntax and grammar rules that is well-typed.

    • note: in practice, a program that compiles successfully
    • note: well-formed programs might have implementation-defined, unspecified, or undefined behavior.
  • ill-formed program: A Rust program that is not well-formed.

@gnzlbg gnzlbg changed the title Glossary unspecified/implementation-defined/undefined behavior Glossary unspecified/implementation-defined behavior Sep 11, 2019
@vakaras
Copy link

vakaras commented Sep 15, 2019

implementation-independent behavior: behavior for a well-formed program that depends on the implementation

This sounds strange to me. Shouldn't it be “that does not depend on concrete implementation”?

@Lokathor
Copy link
Contributor

Yeah that should probably say "that does not depend on" instead of "that depends on"

@gnzlbg
Copy link
Contributor Author

gnzlbg commented Sep 16, 2019

Thanks, fixed.

@RalfJung
Copy link
Member

I would prefer if we could make those definitions directly refer to behavior of the Rust Abstract Machine. That machine is the "core artifact" defined by the spec, after all.

For example, implementation-defined behavior would be aspects of the Rust Abstract Machine that are left open by the standard, but have to be specified precisely by an implementation. You say "the reference often delineates the range of possible behaviors", but isn't that "always"? Because without bounding the range of possible behavior, implementations could say "this is UB", and that does not seem very helpful?

Also, I think this should touch on the matter of stability. Like, I assume unspecified behavior is allowed to change from version to version of an implementation, but changing implementation-defined behavior is a breaking change?

That doesn't really apply to he "well-formed" part -- TBH that's nitpicking I care little about, other than one question: you are still implicitly using the term "a Rust program" without defining it. If you go down this route, please go all the way. ;)

@RalfJung RalfJung added C-terminology Category: Discussing terminology -- which term to use, how to define it, adding it to the glossary A-abstract-machine Topic: concerning the abstract machine in general (as opposed to any specific part of it) labels Sep 18, 2019
@gnzlbg
Copy link
Contributor Author

gnzlbg commented Sep 18, 2019 via email

@RalfJung
Copy link
Member

I think we should always delineate the behavior, at least to say that it
cannot be defined to be undefined

Note that behavior could then still be "it resets the state of the Rust Abstract Machine to be empty". So, it seems we need a more specific parameterization, that well depend on the individual case.

In the context of what I discussed with @rkruppe in the other thread, it seems like we might also have "unspecified behavior" where we can't really say what happens though, such as messing with page tables. Not sure where to fit that in. Some of this related to whether it is even possible to think in terms of the Rust Abstract Machine -- which leads us into a cycle, because it is the Rust Abstract Machine that defines whether it is even possible to think in terms of hardware or page tables...

@Centril
Copy link
Contributor

Centril commented Sep 19, 2019

  • unspecified: the implementation doesn't have to say what the behavior is

The main purpose of unspec as I see it is to facilitate future language design by giving it options to work with. As such, what I really want from unspec is:

unspecified: The implementation may not guarantee what the behavior is.

(...other than to document it for internal purposes.)

@gnzlbg
Copy link
Contributor Author

gnzlbg commented Sep 19, 2019

@RalfJung agreed. FWIW I think it would be ok to start with a loose definitions of these terms, and making them precise over time. Initially it would be enough for me if the definitions were not contradictory. E.g. if we define undefined behavior as "behavior for which the abstract machine provides no guarantees", then the "unspecified behavior" definition proposed by @Centril might be undefined behavior. We don't want, e.g., the optimizer reasoning that if your program exhibits unspecified behavior that state is unreachable (as opposed to UB, where that would be fine).

@saethlin
Copy link
Member

saethlin commented Aug 29, 2023

A PR to define these terms (unspecified vs implementation-defined) would be very welcome.

@saethlin saethlin added the Triaged Visited during a backlog bonanza meeting label Aug 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-abstract-machine Topic: concerning the abstract machine in general (as opposed to any specific part of it) C-terminology Category: Discussing terminology -- which term to use, how to define it, adding it to the glossary Triaged Visited during a backlog bonanza meeting
Projects
None yet
Development

No branches or pull requests

6 participants