-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Description
Bugzilla Link | 45261 |
Resolution | FIXED |
Resolved on | Apr 13, 2020 13:39 |
Version | 9.0 |
OS | Linux |
Blocks | #44654 |
Attachments | IR of the function with the bug |
CC | @jdm,@MatzeB,@qcolombet,@rnk,@tstellar |
Fixed by commit(s) | e5bf503 47e68d8 |
Extended Description
Upstream bug: rust-lang/rust#70148
rustc has a -Zprofile option which uses the "insert-gcov-profiling" LLVM pass to insert profiling instrumentation to a program.
This pass generates the following IR for landing pads:
catch.i: ; preds = %.noexc
%120 = phi i64* [ getelementptr inbounds ([24 x i64], [24 x i64]* @__llvm_gcov_ctr.27, i64 0, i64 11), %.noexc ]
%121 = landingpad { i8*, i32 }
catch i8* null
%122 = load i64, i64* %120
%123 = add i64 %122, 1
store i64 %123, i64* %120
Which is then lowered (with llc -O0) to this:
.LBB0_14: # %catch.i
movq 160(%rsp), %rcx # 8-byte Reload
movl $1, %esi
.Ltmp2:
movabsq $__llvm_gcov_ctr.27, %rdi
addq $120, %rdi
movq (%rcx), %r8
addq $1, %r8
movq %r8, (%rcx)
The unwinding data points to .Ltmp2 as the landing pad address, and .LBB0_14 is unreachable. This results in %rcx being left uninitialized in the landing pad.