
Let Clang emit `dead_on_return` attribute on pointer arguments that are passed indirectly, namely, large aggregates that the ABI mandates be passed by value; thus, the parameter is destroyed within the callee. Writes to such arguments are not observable by the caller after the callee returns. This should desirably enable further MemCpyOpt/DSE optimizations. Previous discussion: https://discourse.llvm.org/t/rfc-add-dead-on-return-attribute/86871.
30 lines
584 B
C++
30 lines
584 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct Foo {
|
|
Foo();
|
|
Foo(const Foo&);
|
|
};
|
|
|
|
struct Bar {
|
|
Bar();
|
|
operator const Foo&() const;
|
|
};
|
|
|
|
void f(Foo);
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z1g3Foo(ptr dead_on_return noundef %foo)
|
|
void g(Foo foo) {
|
|
// CHECK: call void @_ZN3BarC1Ev
|
|
// CHECK: @_ZNK3BarcvRK3FooEv
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(Bar());
|
|
// CHECK: call void @_ZN3FooC1Ev
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(Foo());
|
|
// CHECK: call void @_ZN3FooC1ERKS_
|
|
// CHECK: call void @_Z1f3Foo
|
|
f(foo);
|
|
// CHECK: ret
|
|
}
|
|
|