blob: 96493bfe3613221d93dc17a8b534f7e350848c0c [file] [log] [blame]
Paul Robinsonf0674352014-03-31 22:29:15 +00001// RUN: %clang_cc1 -emit-llvm < %s > %t
2// RUN: FileCheck %s --check-prefix=PRESENT < %t
3// RUN: FileCheck %s --check-prefix=ABSENT < %t
Paul Robinson4ece6822014-11-24 20:51:42 +00004// RUN: %clang_cc1 -emit-llvm -Os < %s > %t
5// RUN: FileCheck %s --check-prefix=PRESENT < %t
6// RUN: FileCheck %s --check-prefix=OPTSIZE < %t
Paul Robinson08556952014-12-11 20:14:04 +00007// RUN: %clang_cc1 -emit-llvm -Oz < %s > %t
8// RUN: FileCheck %s --check-prefix=PRESENT < %t
9// RUN: FileCheck %s --check-prefix=MINSIZE < %t
Paul Robinsonf0674352014-03-31 22:29:15 +000010
11__attribute__((always_inline))
12int test2() { return 0; }
Paul Robinson4ece6822014-11-24 20:51:42 +000013// OPTSIZE: @test2{{.*}}[[ATTR2:#[0-9]+]]
Paul Robinson08556952014-12-11 20:14:04 +000014// MINSIZE: @test2{{.*}}[[ATTR2:#[0-9]+]]
Paul Robinsonf0674352014-03-31 22:29:15 +000015
Paul Robinsonaae2fba2014-12-10 23:34:36 +000016__attribute__((optnone))
Paul Robinsonf0674352014-03-31 22:29:15 +000017int test3() { return 0; }
18// PRESENT-DAG: @test3{{.*}}[[ATTR3:#[0-9]+]]
19
20__attribute__((optnone)) __attribute__((cold))
21int test4() { return test2(); }
22// PRESENT-DAG: @test4{{.*}}[[ATTR4:#[0-9]+]]
23// Also check that test2 is inlined into test4 (always_inline still works).
Nico Rieck4da7deb2014-05-23 19:07:25 +000024// PRESENT-NOT: call i32 @test2
Paul Robinsonf0674352014-03-31 22:29:15 +000025
26// Check for both noinline and optnone on each optnone function.
27// PRESENT-DAG: attributes [[ATTR3]] = { {{.*}}noinline{{.*}}optnone{{.*}} }
28// PRESENT-DAG: attributes [[ATTR4]] = { {{.*}}noinline{{.*}}optnone{{.*}} }
29
30// Check that no 'optsize' or 'minsize' attributes appear.
31// ABSENT-NOT: optsize
32// ABSENT-NOT: minsize
Paul Robinson4ece6822014-11-24 20:51:42 +000033
34// With -Os, check that 'optsize' appears only on test2.
35// OPTSIZE-NOT: optsize
36// OPTSIZE: attributes [[ATTR2]] = { {{.*}}optsize{{.*}} }
37// OPTSIZE-NOT: optsize
Paul Robinson08556952014-12-11 20:14:04 +000038
39// With -Oz, check that 'minsize' appears only on test2.
40// MINSIZE-NOT: minsize
41// MINSIZE: attributes [[ATTR2]] = { {{.*}}minsize{{.*}} }
42// MINSIZE-NOT: minsize