Adrian Prantl | 7bc1b28 | 2017-09-11 22:59:45 +0000 | [diff] [blame] | 1 | ; RUN: llc -mtriple=x86_64-linux-gnu -fast-isel=false -filetype=obj < %s -o - | llvm-dwarfdump -debug-info - | FileCheck %s |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 2 | ; RUN: llc -mtriple=x86_64-linux-gnu -fast-isel=false -filetype=asm < %s -o - | FileCheck --check-prefix=ASM %s |
| 3 | |
| 4 | ; Generated from: |
| 5 | ; clang-tot -c -S -emit-llvm -g inline-seldag-test.c |
| 6 | ; inline int __attribute__((always_inline)) f(int y) { |
| 7 | ; return y ? 4 : 7; |
| 8 | ; } |
| 9 | ; void func() { |
| 10 | ; volatile int x; |
| 11 | ; x = f(x); |
| 12 | ; } |
| 13 | |
David Blaikie | 3c2fff3 | 2014-05-27 18:37:48 +0000 | [diff] [blame] | 14 | ; CHECK: DW_TAG_inlined_subroutine |
Frederic Riss | d1cfc3c | 2014-10-06 03:36:31 +0000 | [diff] [blame] | 15 | ; CHECK-NEXT: DW_AT_abstract_origin {{.*}} "f" |
David Blaikie | 3c2fff3 | 2014-05-27 18:37:48 +0000 | [diff] [blame] | 16 | |
David Blaikie | 9027aba | 2014-04-14 22:23:06 +0000 | [diff] [blame] | 17 | |
| 18 | ; Make sure the condition test is attributed to the inline function, not the |
| 19 | ; location of the test's operands within the caller. |
| 20 | |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 21 | ; ASM: # inline-seldag-test.c:2:0 |
| 22 | ; ASM-NOT: .loc |
| 23 | ; ASM: testl |
| 24 | |
| 25 | ; Function Attrs: nounwind uwtable |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 26 | define void @func() #0 !dbg !4 { |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 27 | entry: |
| 28 | %y.addr.i = alloca i32, align 4 |
| 29 | %x = alloca i32, align 4 |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 30 | call void @llvm.dbg.declare(metadata i32* %x, metadata !15, metadata !DIExpression()), !dbg !17 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 31 | %0 = load volatile i32, i32* %x, align 4, !dbg !18 |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 32 | store i32 %0, i32* %y.addr.i, align 4 |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 33 | call void @llvm.dbg.declare(metadata i32* %y.addr.i, metadata !19, metadata !DIExpression()), !dbg !20 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 34 | %1 = load i32, i32* %y.addr.i, align 4, !dbg !21 |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 35 | %tobool.i = icmp ne i32 %1, 0, !dbg !21 |
| 36 | %cond.i = select i1 %tobool.i, i32 4, i32 7, !dbg !21 |
| 37 | store volatile i32 %cond.i, i32* %x, align 4, !dbg !18 |
| 38 | ret void, !dbg !22 |
| 39 | } |
| 40 | |
| 41 | ; Function Attrs: nounwind readnone |
Adrian Prantl | 87b7eb9 | 2014-10-01 18:55:02 +0000 | [diff] [blame] | 42 | declare void @llvm.dbg.declare(metadata, metadata, metadata) #1 |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 43 | |
Fangrui Song | 502a77f | 2019-12-24 15:52:21 -0800 | [diff] [blame] | 44 | 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" } |
David Blaikie | 269e0fb | 2014-04-13 06:39:55 +0000 | [diff] [blame] | 45 | attributes #1 = { nounwind readnone } |
| 46 | |
| 47 | !llvm.dbg.cu = !{!0} |
| 48 | !llvm.module.flags = !{!12, !13} |
| 49 | !llvm.ident = !{!14} |
| 50 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 51 | !0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 52 | !1 = !DIFile(filename: "inline-seldag-test.c", directory: "/tmp/dbginfo") |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 53 | !2 = !{} |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame] | 54 | !4 = distinct !DISubprogram(name: "func", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, unit: !0, scopeLine: 4, file: !1, scope: !5, type: !6, retainedNodes: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 55 | !5 = !DIFile(filename: "inline-seldag-test.c", directory: "/tmp/dbginfo") |
| 56 | !6 = !DISubroutineType(types: !7) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 57 | !7 = !{null} |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame] | 58 | !8 = distinct !DISubprogram(name: "f", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 1, file: !1, scope: !5, type: !9, retainedNodes: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 59 | !9 = !DISubroutineType(types: !10) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 60 | !10 = !{!11, !11} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 61 | !11 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 62 | !12 = !{i32 2, !"Dwarf Version", i32 4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 63 | !13 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 64 | !14 = !{!"clang version 3.5.0 "} |
Duncan P. N. Exon Smith | ed013cd | 2015-07-31 18:58:39 +0000 | [diff] [blame] | 65 | !15 = !DILocalVariable(name: "x", line: 5, scope: !4, file: !5, type: !16) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 66 | !16 = !DIDerivedType(tag: DW_TAG_volatile_type, baseType: !11) |
| 67 | !17 = !DILocation(line: 5, scope: !4) |
| 68 | !18 = !DILocation(line: 6, column: 7, scope: !4) |
Duncan P. N. Exon Smith | ed013cd | 2015-07-31 18:58:39 +0000 | [diff] [blame] | 69 | !19 = !DILocalVariable(name: "y", line: 1, arg: 1, scope: !8, file: !5, type: !11) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 70 | !20 = !DILocation(line: 1, scope: !8, inlinedAt: !18) |
| 71 | !21 = !DILocation(line: 2, scope: !8, inlinedAt: !18) |
| 72 | !22 = !DILocation(line: 7, scope: !4) |