-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Inline const
expressions and patterns
#2920
Changes from 4 commits
d364261
1c6bc1b
40bbfeb
d7f1562
275f29d
2596308
0e86426
b35e559
6372ce9
20d7f70
dff0ecc
ed83797
c89075d
c233d4d
e67c40b
798b26a
1f9d697
e679523
ee9164a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,276 @@ | ||
- Feature Name: `inline_const` | ||
- Start Date: 2020-04-30 | ||
- RFC PR: [rust-lang/rfcs#2920](https://github.com/rust-lang/rfcs/pull/2920) | ||
- Rust Issue: TBD | ||
|
||
# Summary | ||
[summary]: #summary | ||
|
||
Adds a new syntactical element called an "inline `const`", written as | ||
`const { ... }`, which instructs the compiler to execute the contents of the | ||
block at compile-time. An inline `const` can be used as an expression or | ||
anywhere in a pattern where a named `const` would be allowed. | ||
|
||
```rust | ||
use std::net::Ipv6Addr; | ||
|
||
fn mock_ip(use_localhost: bool) -> &'static Ipv6Addr { | ||
if use_localhost { | ||
&Ipv6Addr::LOCALHOST | ||
} else { | ||
const { &Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0) } | ||
} | ||
} | ||
|
||
fn main() { | ||
match *x { | ||
0 ..= const { u32::MAX / 2 } => println!("low"), | ||
const { u32::MAX / 2 + 1 } ..= u32::MAX => println!("high"), | ||
} | ||
} | ||
``` | ||
|
||
# Motivation | ||
[motivation]: #motivation | ||
|
||
Rust has `const` items, which are guaranteed to be initialized at compile-time. | ||
Because of this, they can do things that normal variables cannot. For example, | ||
a reference in a `const` initializer has the `'static` lifetime, and a `const` | ||
can be used as an array initializer even if the type of the array is not | ||
`Copy` (with [RFC 2203]). | ||
|
||
[RFC 2203]: https://github.com/rust-lang/rfcs/pull/2203 | ||
|
||
```rust | ||
fn foo(x: &i32) -> &i32 { | ||
const ZERO: &'static i32 = &0; | ||
if *x < 0 { ZERO } else { x } | ||
} | ||
|
||
|
||
fn foo() -> &u32 { | ||
const RANGE: Range<i32> = 0..5; // `Range` is not `Copy` | ||
let three_ranges = [RANGE; 3]; | ||
} | ||
``` | ||
|
||
Writing out a `const` declaration everytime we need a long-lived reference or | ||
a non-`Copy` array initializer can be annoying. To improve the situation, | ||
[RFC 1414] introduced rvalue static promotion to extend lifetimes, and | ||
[RFC 2203] extended the concept of promotion to array initializers. | ||
As a result, the previous example can be written more concisely. | ||
|
||
[RFC 1414]: https://github.com/rust-lang/rfcs/pull/2203 | ||
|
||
```rust | ||
fn foo(x: &i32) -> &i32 { | ||
if *x < 0 { &0 } else { x } | ||
} | ||
|
||
fn foo() -> &u32 { | ||
let three_ranges = [0..5; 3]; | ||
} | ||
``` | ||
|
||
However, the fact that we are executing the array initializer or expression | ||
after the `&` at compile-time is not obvious to the user. To avoid violating | ||
their assumptions, we are very careful to promote only in cases where the user | ||
cannot possibly tell that their code is not executing at runtime. This means a | ||
[long list of rules][prom-rules] for determining the promotability of expressions, and it | ||
means expressions that call a `const fn` or that result in a type with a `Drop` | ||
impl need to use a named `const` declaration. | ||
|
||
[prom-rules]: https://github.com/rust-lang/const-eval/blob/master/promotion.md#promotability | ||
|
||
# Guide-level explanation | ||
[guide-level-explanation]: #guide-level-explanation | ||
|
||
This proposal is a middle ground, which is less verbose than named constants but | ||
more obvious and expressive than promotion. | ||
|
||
```rust | ||
fn foo(x: &i32) -> &i32 { | ||
if *x < 0 { const { &4i32.pow(4) } } else { x } | ||
} | ||
|
||
fn foo() -> &u32 {0..5 | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
let three_ranges = [const { (0..=5).into_inner() }; 3]; | ||
} | ||
``` | ||
|
||
With this extension to the language, users can ensure that their code executes | ||
at compile-time without needing to declare a separate `const` item that is only | ||
used once. | ||
|
||
## Patterns | ||
|
||
Patterns are another context that require a named `const` when using complex | ||
expressions. Unlike in the expression context, where promotion is sometimes | ||
applicable, there is no other choice here. | ||
|
||
```rust | ||
fn foo(x: i32) { | ||
const CUBE: i32 = 3.pow(3); | ||
match x { | ||
CUBE => println!("three cubed"), | ||
_ => {} | ||
} | ||
} | ||
``` | ||
|
||
If that `const` is only used inside a single pattern, writing the code using an | ||
inline `const` block makes it easier to scan. | ||
|
||
```rust | ||
fn foo(x: i32) { | ||
match x { | ||
const { 3.pow(3) } => println!("three cubed"), | ||
_ => {} | ||
} | ||
} | ||
``` | ||
|
||
# Reference-level explanation | ||
[reference-level-explanation]: #reference-level-explanation | ||
|
||
This RFC extends the [grammar for expressions] to be, | ||
|
||
[grammar for expressions]: https://doc.rust-lang.org/stable/reference/expressions.html#expressions | ||
|
||
> ``` | ||
> ExpressionWithBlock : | ||
> OuterAttribute*† | ||
> ( | ||
> BlockExpression | ||
> | AsyncBlockExpression | ||
> | UnsafeBlockExpression | ||
> | ConstBlockExpression // new | ||
> | LoopExpression | ||
> | IfExpression | ||
> | IfLetExpression | ||
> | MatchExpression | ||
> ) | ||
> | ||
> ConstBlockExpression: `const` BlockExpression // new | ||
> ``` | ||
|
||
This RFC extends the [grammar for patterns] to be, | ||
|
||
[grammar for patterns]: https://doc.rust-lang.org/stable/reference/patterns.html | ||
|
||
> ``` | ||
> Pattern : | ||
> LiteralPattern | ||
> | IdentifierPattern | ||
> | WildcardPattern | ||
> | RangePattern | ||
> | ReferencePattern | ||
> | StructPattern | ||
> | TupleStructPattern | ||
> | TuplePattern | ||
> | GroupedPattern | ||
> | SlicePattern | ||
> | PathPattern | ||
> | MacroInvocation | ||
> | ConstBlockExpression // new | ||
> | ||
> RangePatternBound : | ||
> CHAR_LITERAL | ||
> | BYTE_LITERAL | ||
> | -? INTEGER_LITERAL | ||
> | -? FLOAT_LITERAL | ||
> | PathInExpression | ||
> | QualifiedPathInExpression | ||
> | ConstBlockExpression // new | ||
> ``` | ||
|
||
In both the expression and pattern context, an inline `const` behaves exactly | ||
as if the user had declared a uniquely identified `const` with the block's | ||
contents as its initializer. For example, in expression context, writing | ||
`const { ... }` is equivalent to writing: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is truly an equivalence, then these consts would not be able to access generics of the surrounding function. That's a fine first step, but implicit promotion can access those generics, so it would not be a full replacement. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are there any implementation concerns with accessing generic parameters? I understand that that rules for items prevent it, but it would seem very odd for expressions to be unable to access generic parameters -- by analogy, you can reference generic parameters in an I think this analogy would be reasonable in a guide-level intuition argument, but shouldn't be how it's actually defined. |
||
|
||
```rust | ||
{ const UNIQUE_IDENT: Ty = ...; UNIQUE_IDENT } | ||
``` | ||
|
||
where `Ty` is inferred from the expression inside the braces. | ||
|
||
An inline `const` is eligible for promotion in an implicit context (just like a | ||
named `const`), so the following are all guaranteed to work: | ||
|
||
```rust | ||
let x: &'static i32 = &const { 4i32.pow(4) }; // NOT IDIOMATIC | ||
let x: &'static i32 = const { &4i32.pow(4) }; // IDIOMATIC | ||
|
||
// If RFC 2203 is stabilized | ||
let v = [const { Vec::new() }; 3]; // IDIOMATIC | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
let v = const { [ Vec::new(); 3] }; // NOT IDIOMATIC | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
``` | ||
|
||
Whether to lint against the non idiomatic versions is an open question. | ||
Personally, I would like to lint against `&const {...}` but not `const { [expr; | ||
3] }`. | ||
|
||
Inline `const`s are allowed within `const` and `static` initializers, just as we | ||
currently allow nested `const` declarations. Whether to lint against inline | ||
`const` expressions inside a `const` or `static` is also an open question. | ||
|
||
# Drawbacks | ||
[drawbacks]: #drawbacks | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if this is a drawback or a complication, but I presume this would also work in generic contexts -- so we would be basically introducing generic consts with this RFC. Well, we already have consts in generic contexts with associated consts, but they don't work quite as well as other consts in terms of linting etc -- we have monomorphization-time errors because only then can we actually evaluate the const. The same would likely happen here, right? fn aptr::<T>() -> &'static *mut T {
const { &std::ptr::NonNull::dangling().as_ptr() }
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, this is an excellent point. My initial thought was that we would indeed prevent inline constants from referring to generic parameters, just as constants currently do. If we allow this for inline constants, why not allow it for named constants as well? Are there backwards compatibility concerns? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we accept this RFC without allowing inline constants to refer to in-scope generic parameters, there will be a narrow class of implicitly promotable expressions (e.g. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Exactly, that's why my gut feeling is we should allow generics.
For once, we'd need syntax, which is not the case for inline consts. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we can backwards compatibly allow inline constants to refer to in-scope generic parameters in the future, I would like to separate that feature from the initial implementation. We would need both things before we considered deprecating the promotion of arithmetic expressions, but that doesn't mean they need to be spec'ed/implemented together. |
||
|
||
This excludes other uses of the `const` keyword in expressions and patterns. | ||
I'm not aware of any other proposals that would take advantage of this. | ||
|
||
This would also be the first use of type inference for const initializers. I'm | ||
not aware of any technical issues that would arise from this, but perhaps I'm | ||
overlooking something? | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# Rationale and alternatives | ||
[rationale-and-alternatives]: #rationale-and-alternatives | ||
|
||
The main alternative is the status quo. Maintaining it will likely result in | ||
promotion being used for more contexts. The lang-team decided to [explore this | ||
approach](https://github.com/rust-lang/rust/pull/70042#issuecomment-612221597) | ||
instead. | ||
|
||
It would also possible to separate out the parts of this RFC relating to patterns | ||
so that they can be decided upon seperately. I think they are similar enough | ||
that they are best considered as a unit, however. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that so far we do not do implicit promotion in patterns, I feel it makes sense to go baby steps here and start with inline consts (anonymous consts?) as expressions only to match the existing implicit promotion in expressions -- so IMO they should be made separate feature gates and stabilization considered separately. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For me, the overarching principles of this RFC should be:
These rules of thumb help make this feature easy to reason about. Since you can already use named constants in patterns, I don't see any reason you shouldn't be allowed to use inline ones. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The RFC describes inline consts as sugar for I feel like patterns and expressions are sufficiently different that there is no reason to tie them together like that. For expressions we have concrete cases and this has been floated for years; for patterns this is the first time I see it and frankly I find it syntactically rather awkward. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This is not news to me. The RFC states explicitly that that analogy is only valid in expression context. The real desugaring is less elegant–define a new constant with a unique name in the same scope as the inline The rest is a matter of opinion. I find the consistency argument compelling, and I don't think wanting to match on the result of a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
That is definitely so. :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (From what I can see, the RFC still lists no arguments in favor of separating patterns.) |
||
|
||
# Prior art | ||
[prior-art]: #prior-art | ||
|
||
I'm not aware of equivalents in other languages. | ||
|
||
AFAIK, this was [first proposed] by @scottmcm. | ||
|
||
[first proposed]: https://internals.rust-lang.org/t/quick-thought-const-blocks/7803/9 | ||
|
||
# Unresolved questions | ||
[unresolved-questions]: #unresolved-questions | ||
|
||
## Naming | ||
|
||
I prefer the name inline `const`, since it signals that there is no difference | ||
between a named `const` and an inline one. @scottmcm prefers "`const` block", | ||
which is closer to the syntax and parallels the current terminology of `async` | ||
block and `unsafe` block. It also avoids any accidental conflation with the | ||
`#[inline]` attribute, which is unrelated. | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Lints | ||
|
||
As mentioned in the reference-level specification, we need to decide whether we | ||
want to lint against certain types of inline `const` expressions. | ||
|
||
# Future possibilities | ||
[future-possibilities]: #future-possibilities | ||
|
||
It would be possible to allow the syntax `const expr` for an inline `const` that | ||
consists of a single expression. This is analagous to the single expression | ||
shepmaster marked this conversation as resolved.
Show resolved
Hide resolved
|
||
variant of closures: `|| 42`. This is backwards compatible with the current proposal. | ||
|
||
This could allow us to deprecate the more esoteric classes of promotable | ||
expressions (e.g., `&(u32::MAX + u32::MAX)`) in favor of inline `const` | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
||
expressions. This would have to be done at an edition boundary. We would only | ||
do promotion for aggregates, literals, and combinations thereof, and | ||
`#[rustc_promotable]` would be removed from the standard library. | ||
ecstatic-morse marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add an example of how was it without inline const to let readers understand how it would look like without it. We could also make this block below the below block.