[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / JitListener / multiple.ll
blob15b81ea558151cdd2bff073ab0a6a0fc12ee72e9
1 ; Verify the behavior of the IntelJITEventListener.
2 ; RUN: llvm-jitlistener %s | FileCheck %s
4 ; This test was created using the following file:
6 ;  1: int foo(int a) {
7 ;  2:   return a;
8 ;  3: }
9 ;  4:
10 ;  5: int bar(int a) {
11 ;  6:   if (a == 0) {
12 ;  7:     return 0;
13 ;  8:   }
14 ;  9:   return 100/a;
15 ; 10: }
16 ; 11: 
17 ; 12: int fubar(int a) {
18 ; 13:   switch (a) {
19 ; 14:     case 0:
20 ; 15:       return 10;
21 ; 16:     case 1:
22 ; 17:       return 20;
23 ; 18:     default:
24 ; 19:       return 30;
25 ; 20:   }
26 ; 21: }
29 ; CHECK: Method load [1]: foo, Size = {{[0-9]+}}
30 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[1,2]}}
31 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[1,2]}}
33 ; CHECK: Method load [2]: bar, Size = {{[0-9]+}}
34 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[5,6,7,9]}}
35 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[5,6,7,9]}}
36 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[5,6,7,9]}}
37 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[5,6,7,9]}}
39 ; CHECK: Method load [3]: fubar, Size = {{[0-9]+}}
40 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[12,13,15,17,19]}}
41 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[12,13,15,17,19]}}
42 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[12,13,15,17,19]}}
43 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[12,13,15,17,19]}}
44 ; CHECK:   Line info @ {{[0-9]+}}: multiple.c, line {{[12,13,15,17,19]}}
46 ; CHECK: Method unload [1]
47 ; CHECK: Method unload [2]
48 ; CHECK: Method unload [3]
50 ; ModuleID = 'multiple.c'
52 ; Function Attrs: nounwind uwtable
53 define i32 @foo(i32 %a) #0 !dbg !4 {
54 entry:
55   %a.addr = alloca i32, align 4
56   store i32 %a, i32* %a.addr, align 4
57   call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !15, metadata !16), !dbg !17
58   %0 = load i32, i32* %a.addr, align 4, !dbg !18
59   ret i32 %0, !dbg !19
62 ; Function Attrs: nounwind readnone
63 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
65 ; Function Attrs: nounwind uwtable
66 define i32 @bar(i32 %a) #0 !dbg !9 {
67 entry:
68   %retval = alloca i32, align 4
69   %a.addr = alloca i32, align 4
70   store i32 %a, i32* %a.addr, align 4
71   call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !20, metadata !16), !dbg !21
72   %0 = load i32, i32* %a.addr, align 4, !dbg !22
73   %cmp = icmp eq i32 %0, 0, !dbg !22
74   br i1 %cmp, label %if.then, label %if.end, !dbg !24
76 if.then:                                          ; preds = %entry
77   store i32 0, i32* %retval, !dbg !25
78   br label %return, !dbg !25
80 if.end:                                           ; preds = %entry
81   %1 = load i32, i32* %a.addr, align 4, !dbg !27
82   %div = sdiv i32 100, %1, !dbg !28
83   store i32 %div, i32* %retval, !dbg !29
84   br label %return, !dbg !29
86 return:                                           ; preds = %if.end, %if.then
87   %2 = load i32, i32* %retval, !dbg !30
88   ret i32 %2, !dbg !30
91 ; Function Attrs: nounwind uwtable
92 define i32 @fubar(i32 %a) #0 !dbg !10 {
93 entry:
94   %retval = alloca i32, align 4
95   %a.addr = alloca i32, align 4
96   store i32 %a, i32* %a.addr, align 4
97   call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !31, metadata !16), !dbg !32
98   %0 = load i32, i32* %a.addr, align 4, !dbg !33
99   switch i32 %0, label %sw.default [
100     i32 0, label %sw.bb
101     i32 1, label %sw.bb1
102   ], !dbg !34
104 sw.bb:                                            ; preds = %entry
105   store i32 10, i32* %retval, !dbg !35
106   br label %return, !dbg !35
108 sw.bb1:                                           ; preds = %entry
109   store i32 20, i32* %retval, !dbg !37
110   br label %return, !dbg !37
112 sw.default:                                       ; preds = %entry
113   store i32 30, i32* %retval, !dbg !38
114   br label %return, !dbg !38
116 return:                                           ; preds = %sw.default, %sw.bb1, %sw.bb
117   %1 = load i32, i32* %retval, !dbg !39
118   ret i32 %1, !dbg !39
121 attributes #0 = { nounwind uwtable "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
122 attributes #1 = { nounwind readnone }
124 !llvm.dbg.cu = !{!0}
125 !llvm.module.flags = !{!11, !12, !13}
126 !llvm.ident = !{!14}
128 !0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.6.0 (trunk)", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
129 !1 = !DIFile(filename: "multiple.c", directory: "F:\5Cusers\5Cakaylor\5Cllvm-s\5Cllvm\5Ctest\5CJitListener")
130 !2 = !{}
131 !4 = distinct !DISubprogram(name: "foo", line: 1, isLocal: false, isDefinition: true, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 1, file: !1, scope: !5, type: !6, retainedNodes: !2)
132 !5 = !DIFile(filename: "multiple.c", directory: "F:CusersCakaylorCllvm-sCllvmCtestCJitListener")
133 !6 = !DISubroutineType(types: !7)
134 !7 = !{!8, !8}
135 !8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
136 !9 = distinct !DISubprogram(name: "bar", line: 5, isLocal: false, isDefinition: true, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 5, file: !1, scope: !5, type: !6, retainedNodes: !2)
137 !10 = distinct !DISubprogram(name: "fubar", line: 12, isLocal: false, isDefinition: true, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 12, file: !1, scope: !5, type: !6, retainedNodes: !2)
138 !11 = !{i32 2, !"Dwarf Version", i32 4}
139 !12 = !{i32 2, !"Debug Info Version", i32 3}
140 !13 = !{i32 1, !"PIC Level", i32 2}
141 !14 = !{!"clang version 3.6.0 (trunk)"}
142 !15 = !DILocalVariable(name: "a", line: 1, arg: 1, scope: !4, file: !5, type: !8)
143 !16 = !DIExpression()
144 !17 = !DILocation(line: 1, column: 13, scope: !4)
145 !18 = !DILocation(line: 2, column: 10, scope: !4)
146 !19 = !DILocation(line: 2, column: 3, scope: !4)
147 !20 = !DILocalVariable(name: "a", line: 5, arg: 1, scope: !9, file: !5, type: !8)
148 !21 = !DILocation(line: 5, column: 13, scope: !9)
149 !22 = !DILocation(line: 6, column: 7, scope: !23)
150 !23 = distinct !DILexicalBlock(line: 6, column: 7, file: !1, scope: !9)
151 !24 = !DILocation(line: 6, column: 7, scope: !9)
152 !25 = !DILocation(line: 7, column: 5, scope: !26)
153 !26 = distinct !DILexicalBlock(line: 6, column: 15, file: !1, scope: !23)
154 !27 = !DILocation(line: 9, column: 14, scope: !9)
155 !28 = !DILocation(line: 9, column: 10, scope: !9)
156 !29 = !DILocation(line: 9, column: 3, scope: !9)
157 !30 = !DILocation(line: 10, column: 1, scope: !9)
158 !31 = !DILocalVariable(name: "a", line: 12, arg: 1, scope: !10, file: !5, type: !8)
159 !32 = !DILocation(line: 12, column: 15, scope: !10)
160 !33 = !DILocation(line: 13, column: 11, scope: !10)
161 !34 = !DILocation(line: 13, column: 3, scope: !10)
162 !35 = !DILocation(line: 15, column: 7, scope: !36)
163 !36 = distinct !DILexicalBlock(line: 13, column: 14, file: !1, scope: !10)
164 !37 = !DILocation(line: 17, column: 7, scope: !36)
165 !38 = !DILocation(line: 19, column: 7, scope: !36)
166 !39 = !DILocation(line: 21, column: 1, scope: !10)