1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-optzns -Os -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-optzns -Os -std=c99 -o - %s | FileCheck %s
3 // CHECK: define signext i8 @f0(i32 %x) [[NUW:#[0-9]+]]
4 // CHECK: define zeroext i8 @f1(i32 %x) [[NUW]]
5 // CHECK: define void @f2(i8 signext %x) [[NUW]]
6 // CHECK: define void @f3(i8 zeroext %x) [[NUW]]
7 // CHECK: define signext i16 @f4(i32 %x) [[NUW]]
8 // CHECK: define zeroext i16 @f5(i32 %x) [[NUW]]
9 // CHECK: define void @f6(i16 signext %x) [[NUW]]
10 // CHECK: define void @f7(i16 zeroext %x) [[NUW]]
11
f0(int x)12 signed char f0(int x) { return x; }
13
f1(int x)14 unsigned char f1(int x) { return x; }
15
f2(signed char x)16 void f2(signed char x) { }
17
f3(unsigned char x)18 void f3(unsigned char x) { }
19
f4(int x)20 signed short f4(int x) { return x; }
21
f5(int x)22 unsigned short f5(int x) { return x; }
23
f6(signed short x)24 void f6(signed short x) { }
25
f7(unsigned short x)26 void f7(unsigned short x) { }
27
28 // CHECK-LABEL: define void @f8()
29 // CHECK: [[AI:#[0-9]+]]
30 // CHECK: {
f8(void)31 void __attribute__((always_inline)) f8(void) { }
32
33 // CHECK: call void @f9_t()
34 // CHECK: [[NR:#[0-9]+]]
35 // CHECK: }
36 void __attribute__((noreturn)) f9_t(void);
f9(void)37 void f9(void) { f9_t(); }
38
39 // CHECK: call void @f9a()
40 // CHECK: [[NR]]
41 // CHECK: }
42 _Noreturn void f9a(void);
f9b(void)43 void f9b(void) { f9a(); }
44
45 // FIXME: We should be setting nounwind on calls.
46 // CHECK: call i32 @f10_t()
47 // CHECK: [[NUW_RN:#[0-9]+]]
48 // CHECK: {
49 int __attribute__((const)) f10_t(void);
f10(void)50 int f10(void) { return f10_t(); }
f11(void)51 int f11(void) {
52 exit:
53 return f10_t();
54 }
f12(int arg)55 int f12(int arg) {
56 return arg ? 0 : f10_t();
57 }
58
59 // CHECK: define void @f13() [[NUW_OS_RN:#[0-9]+]]
60 void f13(void) __attribute__((pure)) __attribute__((const));
f13(void)61 void f13(void){}
62
63
64 // <rdar://problem/7102668> [irgen] clang isn't setting the optsize bit on functions
65 // CHECK-LABEL: define void @f15
66 // CHECK: [[NUW]]
67 // CHECK: {
f15(void)68 void f15(void) {
69 }
70
71 // PR5254
72 // CHECK-LABEL: define void @f16
73 // CHECK: [[ALIGN:#[0-9]+]]
74 // CHECK: {
f16(void)75 void __attribute__((force_align_arg_pointer)) f16(void) {
76 }
77
78 // PR11038
79 // CHECK-LABEL: define void @f18()
80 // CHECK: [[RT:#[0-9]+]]
81 // CHECK: {
82 // CHECK: call void @f17()
83 // CHECK: [[RT_CALL:#[0-9]+]]
84 // CHECK: ret void
85 __attribute__ ((returns_twice)) void f17(void);
f18(void)86 __attribute__ ((returns_twice)) void f18(void) {
87 f17();
88 }
89
90 // CHECK-LABEL: define void @f19()
91 // CHECK: {
92 // CHECK: call i32 @setjmp(i32* null)
93 // CHECK: [[RT_CALL]]
94 // CHECK: ret void
95 typedef int jmp_buf[((9 * 2) + 3 + 16)];
96 int setjmp(jmp_buf);
f19(void)97 void f19(void) {
98 setjmp(0);
99 }
100
101 // CHECK-LABEL: define void @f20()
102 // CHECK: {
103 // CHECK: call i32 @_setjmp(i32* null)
104 // CHECK: [[RT_CALL]]
105 // CHECK: ret void
106 int _setjmp(jmp_buf);
f20(void)107 void f20(void) {
108 _setjmp(0);
109 }
110
111 // CHECK: attributes [[NUW]] = { nounwind optsize{{.*}} }
112 // CHECK: attributes [[AI]] = { alwaysinline nounwind optsize{{.*}} }
113 // CHECK: attributes [[NUW_OS_RN]] = { nounwind optsize readnone{{.*}} }
114 // CHECK: attributes [[ALIGN]] = { nounwind optsize alignstack=16{{.*}} }
115 // CHECK: attributes [[RT]] = { nounwind optsize returns_twice{{.*}} }
116 // CHECK: attributes [[NR]] = { noreturn optsize }
117 // CHECK: attributes [[NUW_RN]] = { nounwind optsize readnone }
118 // CHECK: attributes [[RT_CALL]] = { optsize returns_twice }
119