xref: /aosp_15_r20/external/llvm/test/DebugInfo/X86/dbg-const.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s - | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker;
3*9880d681SAndroid Build Coastguard Worker; FIXME: A potentially more interesting test case would be:
4*9880d681SAndroid Build Coastguard Worker; %call = @bar()
5*9880d681SAndroid Build Coastguard Worker; dbg.value j=0
6*9880d681SAndroid Build Coastguard Worker; %call2 = @bar()
7*9880d681SAndroid Build Coastguard Worker; dbg.value j=%call
8*9880d681SAndroid Build Coastguard Worker;
9*9880d681SAndroid Build Coastguard Worker; We cannot current handle the above sequence because codegenprepare
10*9880d681SAndroid Build Coastguard Worker; hoists the second dbg.value above %call2, which then appears to
11*9880d681SAndroid Build Coastguard Worker; conflict with j=0. It does this because SelectionDAG cannot handle
12*9880d681SAndroid Build Coastguard Worker; global debug values.
13*9880d681SAndroid Build Coastguard Worker
14*9880d681SAndroid Build Coastguard Workertarget triple = "x86_64-apple-darwin10.0.0"
15*9880d681SAndroid Build Coastguard Worker
16*9880d681SAndroid Build Coastguard Worker;CHECK:        ## DW_OP_consts
17*9880d681SAndroid Build Coastguard Worker;CHECK-NEXT:  .byte	42
18*9880d681SAndroid Build Coastguard Workerdefine i32 @foobar() nounwind readonly noinline ssp !dbg !0 {
19*9880d681SAndroid Build Coastguard Workerentry:
20*9880d681SAndroid Build Coastguard Worker  tail call void @llvm.dbg.value(metadata i32 42, i64 0, metadata !6, metadata !DIExpression()), !dbg !9
21*9880d681SAndroid Build Coastguard Worker  %call = tail call i32 @bar(), !dbg !11
22*9880d681SAndroid Build Coastguard Worker  tail call void @llvm.dbg.value(metadata i32 %call, i64 0, metadata !6, metadata !DIExpression()), !dbg !11
23*9880d681SAndroid Build Coastguard Worker  %call2 = tail call i32 @bar(), !dbg !11
24*9880d681SAndroid Build Coastguard Worker  %add = add nsw i32 %call2, %call, !dbg !12
25*9880d681SAndroid Build Coastguard Worker  ret i32 %add, !dbg !10
26*9880d681SAndroid Build Coastguard Worker}
27*9880d681SAndroid Build Coastguard Worker
28*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone
29*9880d681SAndroid Build Coastguard Workerdeclare i32 @bar() nounwind readnone
30*9880d681SAndroid Build Coastguard Worker
31*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!2}
32*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!17}
33*9880d681SAndroid Build Coastguard Worker
34*9880d681SAndroid Build Coastguard Worker!0 = distinct !DISubprogram(name: "foobar", linkageName: "foobar", line: 12, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: true, unit: !2, file: !15, scope: !1, type: !3, variables: !14)
35*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "mu.c", directory: "/private/tmp")
36*9880d681SAndroid Build Coastguard Worker!2 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 2.9 (trunk 114183)", isOptimized: true, emissionKind: FullDebug, file: !15, enums: !16, retainedTypes: !16, imports:  null)
37*9880d681SAndroid Build Coastguard Worker!3 = !DISubroutineType(types: !4)
38*9880d681SAndroid Build Coastguard Worker!4 = !{!5}
39*9880d681SAndroid Build Coastguard Worker!5 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
40*9880d681SAndroid Build Coastguard Worker!6 = !DILocalVariable(name: "j", line: 15, scope: !7, file: !1, type: !5)
41*9880d681SAndroid Build Coastguard Worker!7 = distinct !DILexicalBlock(line: 12, column: 52, file: !15, scope: !0)
42*9880d681SAndroid Build Coastguard Worker!8 = !{i32 42}
43*9880d681SAndroid Build Coastguard Worker!9 = !DILocation(line: 15, column: 12, scope: !7)
44*9880d681SAndroid Build Coastguard Worker!10 = !DILocation(line: 23, column: 3, scope: !7)
45*9880d681SAndroid Build Coastguard Worker!11 = !DILocation(line: 17, column: 3, scope: !7)
46*9880d681SAndroid Build Coastguard Worker!12 = !DILocation(line: 18, column: 3, scope: !7)
47*9880d681SAndroid Build Coastguard Worker!14 = !{!6}
48*9880d681SAndroid Build Coastguard Worker!15 = !DIFile(filename: "mu.c", directory: "/private/tmp")
49*9880d681SAndroid Build Coastguard Worker!16 = !{}
50*9880d681SAndroid Build Coastguard Worker!17 = !{i32 1, !"Debug Info Version", i32 3}
51