Skip to content

Commit 90e9d92

Browse files
committed
Auto merge of #40908 - dotdash:pers_lt, r=arielb1
Emit proper lifetime start intrinsics for personality slots We currently only emit a single call to the lifetime start intrinsic for the personality slot alloca. This happens because we create that call at the time that we create the alloca, instead of creating it each time we start using it. Because LLVM usually removes the alloca before the lifetime intrinsics are even considered, this didn't cause any problems yet, but we should fix this anyway.
2 parents 5e122f5 + 0ba7da3 commit 90e9d92

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

src/librustc_trans/mir/block.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,6 @@ impl<'a, 'tcx> MirContext<'a, 'tcx> {
762762
let llretty = Type::struct_(ccx, &[Type::i8p(ccx), Type::i32(ccx)], false);
763763
let slot = bcx.alloca(llretty, "personalityslot");
764764
self.llpersonalityslot = Some(slot);
765-
Lifetime::Start.call(bcx, slot);
766765
slot
767766
}
768767
}
@@ -794,6 +793,7 @@ impl<'a, 'tcx> MirContext<'a, 'tcx> {
794793
let llretval = bcx.landing_pad(llretty, llpersonality, 1, self.llfn);
795794
bcx.set_cleanup(llretval);
796795
let slot = self.get_personality_slot(&bcx);
796+
Lifetime::Start.call(&bcx, slot);
797797
bcx.store(llretval, slot, None);
798798
bcx.br(target_bb);
799799
bcx.llbb()
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// ignore-msvc
12+
13+
// compile-flags: -O -C no-prepopulate-passes
14+
15+
#![crate_type="lib"]
16+
17+
struct S;
18+
19+
impl Drop for S {
20+
fn drop(&mut self) {
21+
}
22+
}
23+
24+
fn might_unwind() {
25+
}
26+
27+
// CHECK-LABEL: @test
28+
#[no_mangle]
29+
pub fn test() {
30+
let _s = S;
31+
// Check that the personality slot alloca gets a lifetime start in each cleanup block, not just
32+
// in the first one.
33+
// CHECK-LABEL: cleanup:
34+
// CHECK: bitcast{{.*}}personalityslot
35+
// CHECK-NEXT: call void @llvm.lifetime.start
36+
// CHECK-LABEL: cleanup1:
37+
// CHECK: bitcast{{.*}}personalityslot
38+
// CHECK-NEXT: call void @llvm.lifetime.start
39+
might_unwind();
40+
might_unwind();
41+
}

0 commit comments

Comments
 (0)