2010-12-02 23:29:58 +00:00
; RUN: llc -O0 -mtriple=x86_64-apple-darwin10 < %s - | FileCheck %s
2010-09-16 20:57:49 +00:00
; Radar 8286101
2014-02-11 21:46:46 +00:00
; CHECK: .file {{[0-9]+}} "<stdin>"
2010-09-16 20:57:49 +00:00
define i32 @foo ( ) nounwind ssp {
entry:
ret i32 42 , !dbg !8
}
define i32 @bar ( ) nounwind ssp {
entry:
ret i32 21 , !dbg !10
}
2013-03-08 00:23:31 +00:00
!llvm.dbg.cu = ! { !2 }
2013-11-22 21:49:45 +00:00
!llvm.module.flags = ! { !17 }
2010-09-16 20:57:49 +00:00
2015-03-03 17:24:31 +00:00
!0 = !MDSubprogram ( name: "foo" , linkageName: "foo" , line: 53 , isLocal: false , isDefinition: true , virtualIndex: 6 , isOptimized: false , file: !14 , scope: !1 , type: !3 , function: i32 ( ) * @foo )
!1 = !MDFile ( filename: "" , directory: "/private/tmp" )
!2 = !MDCompileUnit ( language: D W _ L A N G _ C 99 , producer: "clang version 2.9 (trunk 114084)" , isOptimized: false , emissionKind: 0 , file: !15 , enums: !16 , retainedTypes: !16 , subprograms: !13 )
!3 = !MDSubroutineType ( types: !4 )
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224257 91177308-0d34-0410-b5e6-96231b3b80d8
2014-12-15 19:07:53 +00:00
!4 = ! { !5 }
2015-03-03 17:24:31 +00:00
!5 = !MDBasicType ( tag: D W _ T A G _ b a s e _ type , name: "int" , size: 32 , align: 32 , encoding: D W _ A T E _ s i g n e d )
!6 = !MDSubprogram ( name: "bar" , linkageName: "bar" , line: 4 , isLocal: false , isDefinition: true , virtualIndex: 6 , isOptimized: false , file: !15 , scope: !7 , type: !3 , function: i32 ( ) * @bar )
!7 = !MDFile ( filename: "bug.c" , directory: "/private/tmp" )
2015-01-14 22:27:36 +00:00
!8 = !MDLocation ( line: 53 , column: 13 , scope: !9 )
2015-03-03 17:24:31 +00:00
!9 = distinct !MDLexicalBlock ( line: 53 , column: 11 , file: !14 , scope: !0 )
2015-01-14 22:27:36 +00:00
!10 = !MDLocation ( line: 4 , column: 13 , scope: !11 )
2015-03-03 17:24:31 +00:00
!11 = distinct !MDLexicalBlock ( line: 4 , column: 13 , file: !15 , scope: !12 )
!12 = distinct !MDLexicalBlock ( line: 4 , column: 11 , file: !15 , scope: !6 )
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224257 91177308-0d34-0410-b5e6-96231b3b80d8
2014-12-15 19:07:53 +00:00
!13 = ! { !0 , !6 }
2015-03-03 17:24:31 +00:00
!14 = !MDFile ( filename: "" , directory: "/private/tmp" )
!15 = !MDFile ( filename: "bug.c" , directory: "/private/tmp" )
2015-03-27 20:46:33 +00:00
!16 = ! { }
2015-03-03 17:24:31 +00:00
!17 = ! { i32 1 , !"Debug Info Version" , i32 3 }