IR: Move MDLocation into place
[oota-llvm.git] / test / DebugInfo / X86 / dbg-const.ll
1 ; RUN: llc < %s - | FileCheck %s
2 ;
3 ; FIXME: A potentially more interesting test case would be:
4 ; %call = @bar()
5 ; dbg.value j=0
6 ; %call2 = @bar()
7 ; dbg.value j=%call
8 ;
9 ; We cannot current handle the above sequence because codegenprepare
10 ; hoists the second dbg.value above %call2, which then appears to
11 ; conflict with j=0. It does this because SelectionDAG cannot handle
12 ; global debug values.
13
14 target triple = "x86_64-apple-darwin10.0.0"
15
16 ;CHECK:        ## DW_OP_consts
17 ;CHECK-NEXT:  .byte     42
18 define i32 @foobar() nounwind readonly noinline ssp {
19 entry:
20   tail call void @llvm.dbg.value(metadata i32 42, i64 0, metadata !6, metadata !{!"0x102"}), !dbg !9
21   %call = tail call i32 @bar(), !dbg !11
22   tail call void @llvm.dbg.value(metadata i32 %call, i64 0, metadata !6, metadata !{!"0x102"}), !dbg !11
23   %call2 = tail call i32 @bar(), !dbg !11
24   %add = add nsw i32 %call2, %call, !dbg !12
25   ret i32 %add, !dbg !10
26 }
27
28 declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone
29 declare i32 @bar() nounwind readnone
30
31 !llvm.dbg.cu = !{!2}
32 !llvm.module.flags = !{!17}
33
34 !0 = !{!"0x2e\00foobar\00foobar\00foobar\0012\000\001\000\006\000\001\000", !15, !1, !3, null, i32 ()* @foobar, null, null, !14} ; [ DW_TAG_subprogram ]
35 !1 = !{!"0x29", !15} ; [ DW_TAG_file_type ]
36 !2 = !{!"0x11\0012\00clang version 2.9 (trunk 114183)\001\00\000\00\001", !15, !16, !16, !13, null,  null} ; [ DW_TAG_compile_unit ]
37 !3 = !{!"0x15\00\000\000\000\000\000\000", !15, !1, null, !4, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
38 !4 = !{!5}
39 !5 = !{!"0x24\00int\000\0032\0032\000\000\005", !15, !1} ; [ DW_TAG_base_type ]
40 !6 = !{!"0x100\00j\0015\000", !7, !1, !5} ; [ DW_TAG_auto_variable ]
41 !7 = !{!"0xb\0012\0052\000", !15, !0} ; [ DW_TAG_lexical_block ]
42 !8 = !{i32 42}
43 !9 = !MDLocation(line: 15, column: 12, scope: !7)
44 !10 = !MDLocation(line: 23, column: 3, scope: !7)
45 !11 = !MDLocation(line: 17, column: 3, scope: !7)
46 !12 = !MDLocation(line: 18, column: 3, scope: !7)
47 !13 = !{!0}
48 !14 = !{!6}
49 !15 = !{!"mu.c", !"/private/tmp"}
50 !16 = !{i32 0}
51 !17 = !{i32 1, !"Debug Info Version", i32 2}