]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/DebugInfo/X86/formal_parameter.ll
IR: Make metadata typeless in assembly
[opencl/llvm.git] / test / DebugInfo / X86 / formal_parameter.ll
1 ; ModuleID = 'formal_parameter.c'
2 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-apple-macosx10.9.0"
4 ;
5 ; From (clang -g -c -O1):
6 ;
7 ; int lookup(int* map);
8 ; int verify(int val);
9 ; void foo(int map)
10 ; {
11 ;   lookup(&map);
12 ;   if (!verify(map)) {  }
13 ; }
14 ;
15 ; RUN: opt %s -O2 -S -o %t
16 ; RUN: cat %t | FileCheck --check-prefix=LOWERING %s
17 ; RUN: llc -filetype=obj %t -o - | llvm-dwarfdump -debug-dump=info - | FileCheck %s
18 ; Test that we only emit only one DW_AT_formal_parameter "map" for this function.
19 ; rdar://problem/14874886
20 ;
21 ; CHECK: DW_TAG_formal_parameter
22 ; CHECK-NOT: DW_TAG
23 ; CHECK: DW_AT_name {{.*}}map
24 ; CHECK-NOT: DW_AT_name {{.*}}map
26 ; Function Attrs: nounwind ssp uwtable
27 define void @foo(i32 %map) #0 {
28 entry:
29   %map.addr = alloca i32, align 4
30   store i32 %map, i32* %map.addr, align 4, !tbaa !15
31   call void @llvm.dbg.declare(metadata i32* %map.addr, metadata !10, metadata !{!"0x102"}), !dbg !14
32   %call = call i32 (i32*, ...)* bitcast (i32 (...)* @lookup to i32 (i32*, ...)*)(i32* %map.addr) #3, !dbg !19
33   ; Ensure that all dbg intrinsics have the same scope after
34   ; LowerDbgDeclare is finished with them.
35   ;
36   ; LOWERING: call void @llvm.dbg.value{{.*}}, !dbg ![[LOC:.*]]
37   ; LOWERING: call void @llvm.dbg.value{{.*}}, !dbg ![[LOC]]
38   ; LOWERING: call void @llvm.dbg.value{{.*}}, !dbg ![[LOC]]
39 %0 = load i32* %map.addr, align 4, !dbg !20, !tbaa !15
40   %call1 = call i32 (i32, ...)* bitcast (i32 (...)* @verify to i32 (i32, ...)*)(i32 %0) #3, !dbg !20
41   ret void, !dbg !22
42 }
44 ; Function Attrs: nounwind readnone
45 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
47 declare i32 @lookup(...)
49 declare i32 @verify(...)
51 ; Function Attrs: nounwind readnone
52 declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1
54 attributes #0 = { nounwind ssp uwtable }
55 attributes #1 = { nounwind readnone }
56 attributes #3 = { nounwind }
58 !llvm.dbg.cu = !{!0}
59 !llvm.module.flags = !{!11, !12}
60 !llvm.ident = !{!13}
62 !0 = !{!"0x11\0012\00clang version 3.5.0 \001\00\000\00\001", !1, !2, !2, !3, !2, !2} ; [ DW_TAG_compile_unit ] [formal_parameter.c] [DW_LANG_C99]
63 !1 = !{!"formal_parameter.c", !""}
64 !2 = !{}
65 !3 = !{!4}
66 !4 = !{!"0x2e\00foo\00foo\00\001\000\001\000\006\00256\001\002", !1, !5, !6, null, void (i32)* @foo, null, null, !9} ; [ DW_TAG_subprogram ] [line 1] [def] [scope 2] [foo]
67 !5 = !{!"0x29", !1}          ; [ DW_TAG_file_type ] [formal_parameter.c]
68 !6 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
69 !7 = !{null, !8}
70 !8 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
71 !9 = !{!10}
72 !10 = !{!"0x101\00map\0016777217\000", !4, !5, !8} ; [ DW_TAG_arg_variable ] [map] [line 1]
73 !11 = !{i32 2, !"Dwarf Version", i32 2}
74 !12 = !{i32 1, !"Debug Info Version", i32 2}
75 !13 = !{!"clang version 3.5.0 "}
76 !14 = !{i32 1, i32 0, !4, null}
77 !15 = !{!16, !16, i64 0}
78 !16 = !{!"int", !17, i64 0}
79 !17 = !{!"omnipotent char", !18, i64 0}
80 !18 = !{!"Simple C/C++ TBAA"}
81 !19 = !{i32 3, i32 0, !4, null}
82 !20 = !{i32 4, i32 0, !21, null}
83 !21 = !{!"0xb\004\000\000", !1, !4} ; [ DW_TAG_lexical_block ] [formal_parameter.c]
84 !22 = !{i32 5, i32 0, !4, null}