[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / function-attributes.c
blobbb8670a8530e092e2c31ccf736b148f598e11332
1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -std=c99 -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-passes -Os -std=c99 -o - %s | FileCheck %s
4 // CHECK: define{{.*}} signext i8 @f0(i32 noundef %x) [[NUW:#[0-9]+]]
5 // CHECK: define{{.*}} zeroext i8 @f1(i32 noundef %x) [[NUW]]
6 // CHECK: define{{.*}} void @f2(i8 noundef signext %x) [[NUW]]
7 // CHECK: define{{.*}} void @f3(i8 noundef zeroext %x) [[NUW]]
8 // CHECK: define{{.*}} signext i16 @f4(i32 noundef %x) [[NUW]]
9 // CHECK: define{{.*}} zeroext i16 @f5(i32 noundef %x) [[NUW]]
10 // CHECK: define{{.*}} void @f6(i16 noundef signext %x) [[NUW]]
11 // CHECK: define{{.*}} void @f7(i16 noundef zeroext %x) [[NUW]]
13 signed char f0(int x) { return x; }
15 unsigned char f1(int x) { return x; }
17 void f2(signed char x) { }
19 void f3(unsigned char x) { }
21 signed short f4(int x) { return x; }
23 unsigned short f5(int x) { return x; }
25 void f6(signed short x) { }
27 void f7(unsigned short x) { }
29 // CHECK-LABEL: define{{.*}} void @f8()
30 // CHECK: [[AI:#[0-9]+]]
31 // CHECK: {
32 void __attribute__((always_inline)) f8(void) { }
34 // CHECK: call void @f9_t()
35 // CHECK: [[NR:#[0-9]+]]
36 // CHECK: }
37 void __attribute__((noreturn)) f9_t(void);
38 void f9(void) { f9_t(); }
40 // CHECK: call void @f9a()
41 // CHECK: [[NR]]
42 // CHECK: }
43 _Noreturn void f9a(void);
44 void f9b(void) { f9a(); }
46 // FIXME: We should be setting nounwind on calls.
47 // CHECK: call i32 @f10_t()
48 // CHECK: [[NUW_RN:#[0-9]+]]
49 // CHECK: {
50 int __attribute__((const)) f10_t(void);
51 int f10(void) { return f10_t(); }
52 int f11(void) {
53 exit:
54 return f10_t();
56 int f12(int arg) {
57 return arg ? 0 : f10_t();
60 // CHECK: define{{.*}} i32 @f13() [[NUW_OS_RN:#[0-9]+]]
61 int f13(void) __attribute__((const));
62 int f13(void){ return 0; }
65 // [irgen] clang isn't setting the optsize bit on functions
66 // CHECK-LABEL: define{{.*}} void @f15
67 // CHECK: [[NUW]]
68 // CHECK: {
69 void f15(void) {
72 // PR5254
73 // CHECK-LABEL: define{{.*}} void @f16
74 // CHECK: [[SR:#[0-9]+]]
75 // CHECK: {
76 void __attribute__((force_align_arg_pointer)) f16(void) {
79 // PR11038
80 // CHECK-LABEL: define{{.*}} void @f18()
81 // CHECK: [[RT:#[0-9]+]]
82 // CHECK: {
83 // CHECK: call void @f17()
84 // CHECK: [[RT_CALL:#[0-9]+]]
85 // CHECK: ret void
86 __attribute__ ((returns_twice)) void f17(void);
87 __attribute__ ((returns_twice)) void f18(void) {
88 f17();
91 // CHECK-LABEL: define{{.*}} void @f19()
92 // CHECK: {
93 // CHECK: call i32 @setjmp(ptr noundef null)
94 // CHECK: [[RT_CALL]]
95 // CHECK: ret void
96 typedef int jmp_buf[((9 * 2) + 3 + 16)];
97 int setjmp(jmp_buf);
98 void f19(void) {
99 setjmp(0);
102 // CHECK-LABEL: define{{.*}} void @f20()
103 // CHECK: {
104 // CHECK: call i32 @_setjmp(ptr noundef null)
105 // CHECK: [[RT_CALL]]
106 // CHECK: ret void
107 int _setjmp(jmp_buf);
108 void f20(void) {
109 _setjmp(0);
112 // CHECK: attributes [[NUW]] = { nounwind optsize{{.*}} }
113 // CHECK: attributes [[AI]] = { alwaysinline nounwind optsize{{.*}} }
114 // CHECK: attributes [[NUW_OS_RN]] = { nounwind optsize willreturn memory(none){{.*}} }
115 // CHECK: attributes [[SR]] = { nounwind optsize{{.*}} "stackrealign"{{.*}} }
116 // CHECK: attributes [[RT]] = { nounwind optsize returns_twice{{.*}} }
117 // CHECK: attributes [[NR]] = { noreturn optsize }
118 // CHECK: attributes [[NUW_RN]] = { nounwind optsize willreturn memory(none) }
119 // CHECK: attributes [[RT_CALL]] = { optsize returns_twice }