1*9880d681SAndroid Build Coastguard Worker; RUN: llc -debug -mtriple x86_64-apple-darwin < %s -o /dev/null 2>&1 | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker; REQUIRES: asserts 3*9880d681SAndroid Build Coastguard Worker; Check that llc -debug actually prints variables and locations, rather than 4*9880d681SAndroid Build Coastguard Worker; crashing. 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Worker; CHECK: DBG_VALUE 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Worker; Generated using `clang -g -O2 -S -emit-llvm -g` on the following source: 9*9880d681SAndroid Build Coastguard Worker; 10*9880d681SAndroid Build Coastguard Worker; static int foo(int x) { return x; } 11*9880d681SAndroid Build Coastguard Worker; int bar(int x) { return foo(x); } 12*9880d681SAndroid Build Coastguard Worker 13*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" 14*9880d681SAndroid Build Coastguard Workertarget triple = "x86_64-apple-macosx10.10.0" 15*9880d681SAndroid Build Coastguard Worker 16*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readnone ssp uwtable 17*9880d681SAndroid Build Coastguard Workerdefine i32 @bar(i32 %x) #0 !dbg !4 { 18*9880d681SAndroid Build Coastguard Workerentry: 19*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i32 %x, i64 0, metadata !9, metadata !17), !dbg !18 20*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i32 %x, i64 0, metadata !19, metadata !17), !dbg !21 21*9880d681SAndroid Build Coastguard Worker ret i32 %x, !dbg !22 22*9880d681SAndroid Build Coastguard Worker} 23*9880d681SAndroid Build Coastguard Worker 24*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readnone 25*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1 26*9880d681SAndroid Build Coastguard Worker 27*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind readnone ssp uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="core2" "unsafe-fp-math"="false" "use-soft-float"="false" } 28*9880d681SAndroid Build Coastguard Workerattributes #1 = { nounwind readnone } 29*9880d681SAndroid Build Coastguard Worker 30*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0} 31*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!13, !14, !15} 32*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!16} 33*9880d681SAndroid Build Coastguard Worker 34*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.7.0 (trunk 233919) (llvm/trunk 233920)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !2, globals: !2, imports: !2) 35*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "t.c", directory: "/Users/dexonsmith/data/llvm/debug-info/test/DebugInfo/X86") 36*9880d681SAndroid Build Coastguard Worker!2 = !{} 37*9880d681SAndroid Build Coastguard Worker!4 = distinct !DISubprogram(name: "bar", scope: !1, file: !1, line: 2, type: !5, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !8) 38*9880d681SAndroid Build Coastguard Worker!5 = !DISubroutineType(types: !6) 39*9880d681SAndroid Build Coastguard Worker!6 = !{!7, !7} 40*9880d681SAndroid Build Coastguard Worker!7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 41*9880d681SAndroid Build Coastguard Worker!8 = !{!9} 42*9880d681SAndroid Build Coastguard Worker!9 = !DILocalVariable(name: "x", arg: 1, scope: !4, file: !1, line: 2, type: !7) 43*9880d681SAndroid Build Coastguard Worker!10 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !5, isLocal: true, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !11) 44*9880d681SAndroid Build Coastguard Worker!11 = !{!12} 45*9880d681SAndroid Build Coastguard Worker!12 = !DILocalVariable(name: "x", arg: 1, scope: !10, file: !1, line: 1, type: !7) 46*9880d681SAndroid Build Coastguard Worker!13 = !{i32 2, !"Dwarf Version", i32 2} 47*9880d681SAndroid Build Coastguard Worker!14 = !{i32 2, !"Debug Info Version", i32 3} 48*9880d681SAndroid Build Coastguard Worker!15 = !{i32 1, !"PIC Level", i32 2} 49*9880d681SAndroid Build Coastguard Worker!16 = !{!"clang version 3.7.0 (trunk 233919) (llvm/trunk 233920)"} 50*9880d681SAndroid Build Coastguard Worker!17 = !DIExpression() 51*9880d681SAndroid Build Coastguard Worker!18 = !DILocation(line: 2, column: 13, scope: !4) 52*9880d681SAndroid Build Coastguard Worker!19 = !DILocalVariable(name: "x", arg: 1, scope: !10, file: !1, line: 1, type: !7) 53*9880d681SAndroid Build Coastguard Worker!20 = distinct !DILocation(line: 2, column: 25, scope: !4) 54*9880d681SAndroid Build Coastguard Worker!21 = !DILocation(line: 1, column: 20, scope: !10, inlinedAt: !20) 55*9880d681SAndroid Build Coastguard Worker!22 = !DILocation(line: 2, column: 18, scope: !4) 56