
lifetime.start and lifetime.end are primarily intended for use on allocas, to enable stack coloring and other liveness optimizations. This is necessary because all (static) allocas are hoisted into the entry block, so lifetime markers are the only way to convey the actual lifetimes. However, lifetime.start and lifetime.end are currently *allowed* to be used on non-alloca pointers. We don't actually do this in practice, but just the mere fact that this is possible breaks the core purpose of the lifetime markers, which is stack coloring of allocas. Stack coloring can only work correctly if all lifetime markers for an alloca are analyzable. * If a lifetime marker may operate on multiple allocas via a select/phi, we don't know which lifetime actually starts/ends and handle it incorrectly (https://github.com/llvm/llvm-project/issues/104776). * Stack coloring operates on the assumption that all lifetime markers are visible, and not, for example, hidden behind a function call or escaped pointer. It's not possible to change this, as part of the purpose of lifetime markers is that they work even in the presence of escaped pointers, where simple use analysis is insufficient. I don't think there is any way to have coherent semantics for lifetime markers on allocas, while also permitting them on arbitrary pointer values. This PR restricts lifetimes to operate on allocas only. As a followup, I will also drop the size argument, which is superfluous if we always operate on an alloca. (This change also renders various code handling lifetime markers on non-alloca dead. I plan to clean up that kind of code after dropping the size argument as well.) In practice, I've only found a few places that currently produce lifetimes on non-allocas: * CoroEarly replaces the promise alloca with the result of an intrinsic, which will later be replaced back with an alloca. I think this is the only place where there is some legitimate loss of functionality, but I don't think this is particularly important (I don't think we'd expect the promise in a coroutine to admit useful lifetime optimization.) * SafeStack moves unsafe allocas onto a separate frame. We can safely drop lifetimes here, as SafeStack performs its own stack coloring. * Similar for AddressSanitizer, it also moves allocas into separate memory. * LSR sometimes replaces the lifetime argument with a GEP chain of the alloca (where the offsets ultimately cancel out). This is just unnecessary. (Fixed separately in https://github.com/llvm/llvm-project/pull/149492.) * InferAddrSpaces sometimes makes lifetimes operate on an addrspacecast of an alloca. I don't think this is necessary.
64 lines
1.8 KiB
LLVM
64 lines
1.8 KiB
LLVM
; RUN: opt -S -passes=partial-inliner -skip-partial-inlining-cost-analysis < %s | FileCheck %s
|
|
; RUN: opt -S -passes=partial-inliner -skip-partial-inlining-cost-analysis < %s | FileCheck %s
|
|
|
|
%class.A = type { i8 }
|
|
|
|
@cond = local_unnamed_addr global i32 0, align 4
|
|
|
|
; Function Attrs: uwtable
|
|
define void @_Z3foov() local_unnamed_addr {
|
|
bb:
|
|
%tmp = alloca %class.A, align 1
|
|
call void @llvm.lifetime.start.p0(i64 1, ptr nonnull %tmp)
|
|
%tmp2 = load i32, ptr @cond, align 4, !tbaa !2
|
|
%tmp3 = icmp eq i32 %tmp2, 0
|
|
br i1 %tmp3, label %bb4, label %bb5
|
|
|
|
bb4: ; preds = %bb
|
|
call void @_ZN1A7memfuncEv(ptr nonnull %tmp)
|
|
br label %bb5
|
|
|
|
bb5: ; preds = %bb4, %bb
|
|
call void @llvm.lifetime.end.p0(i64 1, ptr nonnull %tmp)
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: argmemonly nounwind
|
|
declare void @llvm.lifetime.start.p0(i64, ptr nocapture)
|
|
|
|
declare void @_ZN1A7memfuncEv(ptr) local_unnamed_addr
|
|
|
|
; Function Attrs: argmemonly nounwind
|
|
declare void @llvm.lifetime.end.p0(i64, ptr nocapture)
|
|
|
|
; Function Attrs: uwtable
|
|
define void @_Z3goov() local_unnamed_addr {
|
|
; CHECK-LABEL: @_Z3goov()
|
|
bb:
|
|
; CHECK: bb:
|
|
; CHECK-NOT: alloca
|
|
; CHECK-NOT: llvm.lifetime
|
|
; CHECK: br i1
|
|
; CHECK: codeRepl.i:
|
|
; CHECK: call void @_Z3foov.1.
|
|
tail call void @_Z3foov()
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: define internal void @_Z3foov.1.
|
|
; CHECK: newFuncRoot:
|
|
; CHECK-NEXT: %tmp = alloca %class.A
|
|
; CHECK-NEXT: call void @llvm.lifetime.start.p0
|
|
; CHECK: call void @llvm.lifetime.end.p0
|
|
; CHECK-NEXT: br label %bb5.exitStub
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!llvm.ident = !{!1}
|
|
|
|
!0 = !{i32 1, !"wchar_size", i32 4}
|
|
!1 = !{!"clang version 5.0.0 (trunk 304489)"}
|
|
!2 = !{!3, !3, i64 0}
|
|
!3 = !{!"int", !4, i64 0}
|
|
!4 = !{!"omnipotent char", !5, i64 0}
|
|
!5 = !{!"Simple C++ TBAA"}
|