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.
28 lines
1015 B
Objective-C
28 lines
1015 B
Objective-C
// RUN: %clang_cc1 -DSTRET -triple x86_64-pc-linux-gnu -fobjc-runtime=objfw -emit-llvm -o - %s | FileCheck -check-prefix=HASSTRET %s
|
|
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fobjc-runtime=gcc -emit-llvm -o - %s | FileCheck -check-prefix=NOSTRET %s
|
|
|
|
// Test stret lookup
|
|
|
|
struct test {
|
|
char test[1024];
|
|
};
|
|
@interface Test0
|
|
+ (struct test)test;
|
|
@end
|
|
void test0(void) {
|
|
struct test t;
|
|
#if (defined(STRET) && defined(__OBJFW_RUNTIME_ABI__)) || \
|
|
(!defined(STRET) && !defined(__OBJFW_RUNTIME_ABI__))
|
|
t = [Test0 test];
|
|
#endif
|
|
(void)t;
|
|
}
|
|
|
|
// HASSTRET-LABEL: define{{.*}} void @test0()
|
|
// HASSTRET: [[T0:%.*]] = call ptr @objc_msg_lookup_stret(ptr @_OBJC_CLASS_Test0,
|
|
// HASSTRET-NEXT: call void [[T0]](ptr dead_on_unwind writable sret(%struct.test) {{.*}}, ptr noundef @_OBJC_CLASS_Test0,
|
|
|
|
// NOSTRET-LABEL: define{{.*}} void @test0()
|
|
// NOSTRET: [[T0:%.*]] = call ptr @objc_msg_lookup(ptr
|
|
// NOSTRET-NEXT: call void [[T0]](ptr dead_on_unwind writable sret(%struct.test) {{.*}}, ptr {{.*}}, ptr noundef
|