-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Using the iterator inside the for loop causes UB #16011
Comments
cc @pcwalton |
@blake2-ppc This looks like a regression in the borrow checker. You're not supposed to be able to mutably borrow You can confirm this is a regression by testing your program in the playpen, but compiling it with the 0.11 snapshot, where it gets flagged as incorrect (reason: double mutable borrow). |
It doesn't have to borrow it as |
Interestingly enough, trying to reduce the IR by isolating the Yes, it does seem an optimized On a second thought, there are no such intrinsics without optimizations so they must've been added by inlining or other LLVM passes. I'll leave this to the experts. |
Looks like a mis-optimization. ; ModuleID = '<stdin>'
target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
define void @test(i1 %c) {
entry-block:
%x = alloca i8
br label %loop_in
loop_in: ; preds = %loop_out, %loop_body, %entry-block
call void @llvm.lifetime.start(i64 8, i8* %x)
br label %loop_body
loop_body: ; preds = %loop_in
br i1 %c, label %loop_in, label %loop_out
loop_out: ; preds = %loop_body
call void @llvm.lifetime.end(i64 8, i8* %x)
br label %loop_in
out: ; No predecessors!
ret void
}
; Function Attrs: nounwind
declare void @llvm.lifetime.start(i64, i8* nocapture) unnamed_addr #0
; Function Attrs: nounwind
declare void @llvm.lifetime.end(i64, i8* nocapture) unnamed_addr #0
attributes #0 = { nounwind } Looks like this after SimplifyCFG: ; ModuleID = 'test.no-opt.bc'
target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
define void @test(i1 %c) {
entry-block:
%x = alloca i8
br label %loop_body
loop_body: ; preds = %loop_body, %entry-block
call void @llvm.lifetime.start(i64 8, i8* %x)
br label %loop_body
}
; Function Attrs: nounwind
declare void @llvm.lifetime.start(i64, i8* nocapture) unnamed_addr #0
; Function Attrs: nounwind
declare void @llvm.lifetime.end(i64, i8* nocapture) unnamed_addr #0
attributes #0 = { nounwind } |
The above on its own isn't enough. In addition to that the loop rotate pass moves the lifetime start from the start of the loop to the end, and that kills it. |
Fix submitted upstream at http://reviews.llvm.org/D4699 |
… intrinsics Fixes rust-lang#15972 and rust-lang#16011.
… intrinsics Fixes rust-lang#15972 and rust-lang#16011.
Fixed by #16080. |
Simplifying the code of methods: `nth`, `fold`, `rposition`, and iterators: `Filter`, `FilterMap`, `SkipWhile`. ``` before test iter::bench_multiple_take ... bench: 15 ns/iter (+/- 0) test iter::bench_rposition ... bench: 349 ns/iter (+/- 94) test iter::bench_skip_while ... bench: 158 ns/iter (+/- 6) after test iter::bench_multiple_take ... bench: 15 ns/iter (+/- 0) test iter::bench_rposition ... bench: 314 ns/iter (+/- 2) test iter::bench_skip_while ... bench: 107 ns/iter (+/- 0) ``` @koalazen has the code for `Skip`. Once #16011 is fixed, `min_max` could use a for loop.
…ild-on-save, r=Veykril feat: add proc-macro rebuild on save option Related: rust-lang#15033 I need some advice on how to test it.
Experimenting with using the iterator inside the loop (awsome feature), found weird bug
Using rustc 0.12.0-pre (66a0b52 2014-07-25 20:36:10 +0000)
Actual Output:
Expected Output:
Bug needs optimization level 2 or higher -- so it is probably undefined behavior-related.
The actual condition doesn't matter, I just picked one that would never be true.
The text was updated successfully, but these errors were encountered: