mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 05:56:07 +00:00

Set the writable and dead_on_unwind attributes for sret arguments. These indicate that the argument points to writable memory (and it's legal to introduce spurious writes to it on entry to the function) and that the argument memory will not be used if the call unwinds. This enables additional MemCpyOpt/DSE/LICM optimizations.
31 lines
1.0 KiB
Objective-C
31 lines
1.0 KiB
Objective-C
// RUN: %clang_cc1 -fblocks -triple arm64-apple-darwin %s -emit-llvm -o - | FileCheck %s
|
|
|
|
struct stret { int x[100]; };
|
|
struct stret one = {{1}};
|
|
|
|
@interface Test @end
|
|
|
|
@implementation Test
|
|
+(struct stret) method { return one; }
|
|
@end
|
|
|
|
int main(int argc, const char **argv)
|
|
{
|
|
struct stret s;
|
|
s = [(id)(argc&~255) method];
|
|
// CHECK: call void @objc_msgSend(ptr dead_on_unwind writable sret(%struct.stret) align 4 [[T0:%[^,]+]]
|
|
// CHECK: call void @llvm.memset.p0.i64(ptr align 4 [[T0]], i8 0, i64 400, i1 false)
|
|
|
|
s = [Test method];
|
|
// CHECK: call void @objc_msgSend(ptr dead_on_unwind writable sret(%struct.stret) align 4 [[T1:%[^,]+]]
|
|
// CHECK-NOT: call void @llvm.memset.p0.i64(
|
|
|
|
[(id)(argc&~255) method];
|
|
// CHECK: call void @objc_msgSend(ptr dead_on_unwind writable sret(%struct.stret) align 4 [[T1:%[^,]+]]
|
|
// CHECK-NOT: call void @llvm.memset.p0.i64(
|
|
|
|
[Test method];
|
|
// CHECK: call void @objc_msgSend(ptr dead_on_unwind writable sret(%struct.stret) align 4 [[T1:%[^,]+]]
|
|
// CHECK-NOT: call void @llvm.memset.p0.i64(
|
|
}
|