Home | History | Annotate | Download | only in CodeGen
      1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -Os -o - %s | FileCheck %s
      2 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -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 
     12 signed char f0(int x) { return x; }
     13 
     14 unsigned char f1(int x) { return x; }
     15 
     16 void f2(signed char x) { }
     17 
     18 void f3(unsigned char x) { }
     19 
     20 signed short f4(int x) { return x; }
     21 
     22 unsigned short f5(int x) { return x; }
     23 
     24 void f6(signed short x) { }
     25 
     26 void f7(unsigned short x) { }
     27 
     28 // CHECK-LABEL: define void @f8()
     29 // CHECK: [[AI:#[0-9]+]]
     30 // CHECK: {
     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);
     37 void f9(void) { f9_t(); }
     38 
     39 // CHECK: call void @f9a()
     40 // CHECK: [[NR]]
     41 // CHECK: }
     42 _Noreturn void f9a(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);
     50 int f10(void) { return f10_t(); }
     51 int f11(void) {
     52  exit:
     53   return f10_t();
     54 }
     55 int f12(int arg) {
     56   return arg ? 0 : f10_t();
     57 }
     58 
     59 // CHECK: define void @f13() [[NUW]]
     60 void f13(void) __attribute__((pure)) __attribute__((const));
     61 void f13(void){}
     62 
     63 
     64 // Ensure that these get inlined: rdar://6853279
     65 // CHECK-LABEL: define void @f14
     66 // CHECK-NOT: @ai_
     67 // CHECK: call void @f14_end
     68 static __inline__ __attribute__((always_inline))
     69 int ai_1() {  return 4; }
     70 
     71 static __inline__ __attribute__((always_inline))
     72 struct {
     73   int a, b, c, d, e;
     74 } ai_2() { while (1) {} }
     75 
     76 void f14(int a) {
     77   extern void f14_end(void);
     78   if (a)
     79     ai_2();
     80   ai_1();
     81   f14_end();
     82 }
     83 
     84 // <rdar://problem/7102668> [irgen] clang isn't setting the optsize bit on functions
     85 // CHECK-LABEL: define void @f15
     86 // CHECK: [[NUW]]
     87 // CHECK: {
     88 void f15(void) {
     89 }
     90 
     91 // PR5254
     92 // CHECK-LABEL: define void @f16
     93 // CHECK: [[ALIGN:#[0-9]+]]
     94 // CHECK: {
     95 void __attribute__((force_align_arg_pointer)) f16(void) {
     96 }
     97 
     98 // PR11038
     99 // CHECK-LABEL: define void @f18()
    100 // CHECK: [[RT:#[0-9]+]]
    101 // CHECK: {
    102 // CHECK: call void @f17()
    103 // CHECK: [[RT_CALL:#[0-9]+]]
    104 // CHECK: ret void
    105 __attribute__ ((returns_twice)) void f17(void);
    106 __attribute__ ((returns_twice)) void f18(void) {
    107         f17();
    108 }
    109 
    110 // CHECK-LABEL: define void @f19()
    111 // CHECK: {
    112 // CHECK: call i32 @setjmp(i32* null)
    113 // CHECK: [[RT_CALL]]
    114 // CHECK: ret void
    115 typedef int jmp_buf[((9 * 2) + 3 + 16)];
    116 int setjmp(jmp_buf);
    117 void f19(void) {
    118   setjmp(0);
    119 }
    120 
    121 // CHECK-LABEL: define void @f20()
    122 // CHECK: {
    123 // CHECK: call i32 @_setjmp(i32* null)
    124 // CHECK: [[RT_CALL]]
    125 // CHECK: ret void
    126 int _setjmp(jmp_buf);
    127 void f20(void) {
    128   _setjmp(0);
    129 }
    130 
    131 // CHECK: attributes [[NUW]] = { nounwind optsize readnone{{.*}} }
    132 // CHECK: attributes [[AI]] = { alwaysinline nounwind optsize readnone{{.*}} }
    133 // CHECK: attributes [[ALIGN]] = { nounwind optsize readnone alignstack=16{{.*}} }
    134 // CHECK: attributes [[RT]] = { nounwind optsize returns_twice{{.*}} }
    135 // CHECK: attributes [[NR]] = { noreturn nounwind optsize }
    136 // CHECK: attributes [[NUW_RN]] = { nounwind optsize readnone }
    137 // CHECK: attributes [[RT_CALL]] = { nounwind optsize returns_twice }
    138