brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.3 KiB · 874a01e Raw
73 lines · plain
1; RUN: llc -mtriple=x86_64-linux-gnu -fast-isel=false -filetype=obj < %s -o - | llvm-dwarfdump -debug-info - | FileCheck %s2; RUN: llc -mtriple=x86_64-linux-gnu -fast-isel=false -filetype=asm < %s -o - | FileCheck --check-prefix=ASM %s3 4; Generated from:5; clang-tot -c -S -emit-llvm -g inline-seldag-test.c6; 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 14; CHECK: DW_TAG_inlined_subroutine15; CHECK-NEXT: DW_AT_abstract_origin {{.*}} "f"16 17 18; Make sure the condition test is attributed to the inline function, not the19; location of the test's operands within the caller.20 21; ASM: # inline-seldag-test.c:4:022; ASM: .loc 1 2 0 # inline-seldag-test.c:2 @[ inline-seldag-test.c:6:7 ]23; ASM: testl24 25; Function Attrs: nounwind uwtable26define void @func() #0 !dbg !4 {27entry:28  %y.addr.i = alloca i32, align 429  %x = alloca i32, align 430  call void @llvm.dbg.declare(metadata ptr %x, metadata !15, metadata !DIExpression()), !dbg !1731  %0 = load volatile i32, ptr %x, align 4, !dbg !1832  store i32 %0, ptr %y.addr.i, align 433  call void @llvm.dbg.declare(metadata ptr %y.addr.i, metadata !19, metadata !DIExpression()), !dbg !2034  %1 = load i32, ptr %y.addr.i, align 4, !dbg !2135  %tobool.i = icmp ne i32 %1, 0, !dbg !2136  %cond.i = select i1 %tobool.i, i32 4, i32 7, !dbg !2137  store volatile i32 %cond.i, ptr %x, align 4, !dbg !1838  ret void, !dbg !2239}40 41; Function Attrs: nounwind readnone42declare void @llvm.dbg.declare(metadata, metadata, metadata) #143 44attributes #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" "use-soft-float"="false" }45attributes #1 = { nounwind readnone }46 47!llvm.dbg.cu = !{!0}48!llvm.module.flags = !{!12, !13}49!llvm.ident = !{!14}50 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)52!1 = !DIFile(filename: "inline-seldag-test.c", directory: "/tmp/dbginfo")53!2 = !{}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)55!5 = !DIFile(filename: "inline-seldag-test.c", directory: "/tmp/dbginfo")56!6 = !DISubroutineType(types: !7)57!7 = !{null}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)59!9 = !DISubroutineType(types: !10)60!10 = !{!11, !11}61!11 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)62!12 = !{i32 2, !"Dwarf Version", i32 4}63!13 = !{i32 1, !"Debug Info Version", i32 3}64!14 = !{!"clang version 3.5.0 "}65!15 = !DILocalVariable(name: "x", line: 5, scope: !4, file: !5, type: !16)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)69!19 = !DILocalVariable(name: "y", line: 1, arg: 1, scope: !8, file: !5, type: !11)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)73