Open
Description
I tried this code:
#[inline(never)]
#[no_mangle]
const fn deep(n: usize) {
match n {
0 => (),
_ => deep(n - 1),
}
}
#[inline(always)]
const fn inf() -> ! {
inf()
}
fn main() {
deep(usize::MAX);
println!("✅");
inf();
}
I expected to see this happen: prints "✅"
fast and successfully, then hangs in an infinite loop.
Instead, this happened: prints "✅"
fast and panics with stderr
:
Compiling playground v0.0.1 (/playground)
Finished `release` profile [optimized] target(s) in 0.38s
Running `target/release/playground`
thread 'main' has overflowed its stack
fatal runtime error: stack overflow
It seems commenting-out the attributes is no-op here.
Meta
rustc --version --verbose
:
1.80.0-nightly
(2024-05-28 da159eb331b27df52818)
Backtrace
<no diff>
Apologies in advance, if this issue is a dupe. I tried my best to find similar ones
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
workingjubilee commentedon May 29, 2024
This seems to be a duplicate of #102952 and many others like that one.
Rudxain commentedon May 29, 2024
Weirdly enough, I tried this with #112788
It still overflows the stack! Even though the (unofficial) docs claim it must not.
I've been reading about the RFC, and it seems the syntax is the only thing that got implemented
workingjubilee commentedon May 29, 2024
interesting.
bjorn3 commentedon May 29, 2024
The llvm ir correctly contains
workingjubilee commentedon May 29, 2024
weird.
dianqk commentedon May 29, 2024
In my view, the code behavior initially mentioned in the issue is reasonable. I want to know why you expect it won't overflow the stack,
inline(always)
doesn't guarantee that inline will definitely occur.bjorn3 commentedon May 29, 2024
The behavior in #125698 (comment) is definitively wrong. It uses
become
which should force a tail call, yet doesn't get tail called.the8472 commentedon May 29, 2024
The tail call feature (#112788) is still in progress, e.g. #113128 has not been merged yet.
Rudxain commentedon May 29, 2024
What I actually find surprising is that the compiler was eager to obliterate
deep(usize::MAX)
as if it was never there, butinf()
didn't getthe samesimilar treatment.I know, I just wanted to "add emphasis" (I'm unsure if this is the correct terminology?)
WaffleLapkin commentedon May 29, 2024
Also note that #113128 by itself won't implement the feature correctly either, since it does not include llvm lowering.
dianqk commentedon May 31, 2024
Although both will result in a stack overflow at runtime,
deep
is a non-infinite recursive function without side effects, which the compiler can completely eliminate.I think maybe your meaning is similar.
inline(always)
means to inline whenever possible.inline
should adjust the threshold for the inlining cost.Rudxain commentedon May 31, 2024
Correct! It makes sense. But (I may be getting into philosophical territory here) an OOM panic could be considered a side-effect, at least from the POV of a system (doesn't apply to
no_std
lib crates).From the POV of a Rust program, OOM panics can't exist (in the same way
!
is a "never type") so Rust as a lang is allowed to "ignore" them. Butrustc
should know that a call-stack cannot have the same size as the entire address-space of any target-triple (except Harvard machines), otherwise the program itself cannot fit in memory, so an OOM panic should happen anyways.Thanks for explaining! I just had some problems communicating my thoughts. My intention was to add "emphasis" both for humans and
rustc
, if that makes sense 😅workingjubilee commentedon Jun 1, 2024
That's not really true at all. We have a defined set of behaviors in response to out-of-memory errors. The language has semantics for allocations, and it has a semantic for failing to allocate (some of the APIs represent this as returning nullptr, some of them as Result). You are referring to the behavior of very specific datatypes which effectively
.unwrap()
those Results. No one says "unwrap()
can't exist". Instead, things that don't exist in Rust include the set of, e.g.isize::MAX
bytes&mut T
to the sameT
Rudxain commentedon Jun 1, 2024
Indeed, I've just read about
try_reserve
, and this crate which hastry_push
(I wish that was instd
)I should've said something along the lines of "unreachable code", since a guaranteed panic is equivalent to
FnOnce() -> !
. Thanks for the correction 👍programmerjake commentedon Jun 13, 2024
tail
means it may or may not become a tail call; to require LLVM to generate a tail call, you need to usemusttail call ...
instead