blob: 639b68df1df1fbc964176bb576c589c452b43945 [file] [log] [blame]
Mehdi Amini2d28f7a2016-04-16 06:56:44 +00001; RUN: opt -name-anon-functions -module-summary < %s | llvm-bcanalyzer -dump | FileCheck %s -check-prefix=BC
Teresa Johnson26ab5772016-03-15 00:04:37 +00002; Check for summary block/records.
Teresa Johnson403a7872015-10-04 14:33:43 +00003
Teresa Johnson26ab5772016-03-15 00:04:37 +00004; Check the value ids in the summary entries against the
Teresa Johnsona9a63072016-02-01 23:26:30 +00005; same in the ValueSumbolTable, to ensure the ordering is stable.
Teresa Johnson5e22e442016-02-06 16:07:35 +00006; Also check the linkage field on the summary entries.
Teresa Johnson76a1c1d2016-03-11 18:52:24 +00007; BC: <GLOBALVAL_SUMMARY_BLOCK
8; BC-NEXT: <PERMODULE {{.*}} op0=1 op1=0
9; BC-NEXT: <PERMODULE {{.*}} op0=2 op1=0
Mehdi Amini2d28f7a2016-04-16 06:56:44 +000010; BC-NEXT: <PERMODULE {{.*}} op0=3 op1=3
11; BC-NEXT: <ALIAS {{.*}} op0=4 op1=0 op2=3
Mehdi Aminib5b28932016-04-13 17:20:07 +000012; BC-NEXT: </GLOBALVAL_SUMMARY_BLOCK
Teresa Johnsona9a63072016-02-01 23:26:30 +000013; BC-NEXT: <VALUE_SYMTAB
Mehdi Amini2d28f7a2016-04-16 06:56:44 +000014; BC-NEXT: <FNENTRY {{.*}} op0=3 {{.*}}> record string = 'anon.
Mehdi Aminib5b28932016-04-13 17:20:07 +000015; BC-NEXT: <FNENTRY {{.*}} op0=1 {{.*}}> record string = 'foo'
Teresa Johnsona9a63072016-02-01 23:26:30 +000016; BC-NEXT: <FNENTRY {{.*}} op0=2 {{.*}}> record string = 'bar'
17; BC-NEXT: <FNENTRY {{.*}} op0=4 {{.*}}> record string = 'f'
Teresa Johnson403a7872015-10-04 14:33:43 +000018
Mehdi Amini2d28f7a2016-04-16 06:56:44 +000019; RUN: opt -name-anon-functions -module-summary < %s | llvm-dis | FileCheck %s
Teresa Johnson403a7872015-10-04 14:33:43 +000020; Check that this round-trips correctly.
21
22; ModuleID = '<stdin>'
23target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
24target triple = "x86_64-unknown-linux-gnu"
25
26; CHECK: define i32 @foo()
27
28; Function Attrs: nounwind uwtable
29define i32 @foo() #0 {
30entry:
31 ret i32 1
32}
33
34; CHECK: define i32 @bar(i32 %x)
35
36; Function Attrs: nounwind uwtable
37define i32 @bar(i32 %x) #0 {
38entry:
39 ret i32 %x
40}
41
Teresa Johnson2d5487c2016-04-11 13:58:45 +000042; FIXME: Anonymous function and alias not currently in summary until
43; follow on fixes to rename anonymous functions and emit alias summary
44; entries are committed.
Teresa Johnson403a7872015-10-04 14:33:43 +000045; Check an anonymous function as well, since in that case only the alias
46; ends up in the value symbol table and having a summary.
47@f = alias void (), void ()* @0 ; <void ()*> [#uses=0]
48@h = external global void ()* ; <void ()*> [#uses=0]
49
50define internal void @0() nounwind {
51entry:
52 store void()* @0, void()** @h
53 br label %return
54
55return: ; preds = %entry
56 ret void
57}