2013-07-24 09:26:37 +08:00
; RUN: llc < %s
2010-04-16 04:28:39 +08:00
; PR6847
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:64:64-v128:128:128-a0:0:64-n32"
target triple = "armv4t-apple-darwin10"
2010-06-17 23:18:27 +08:00
define hidden i32 @__addvsi3 ( i32 %a , i32 %b ) nounwind {
2010-04-16 04:28:39 +08:00
entry:
2017-07-29 04:21:02 +08:00
tail call void @llvm.dbg.value ( metadata i32 %b , metadata !0 , metadata !DIExpression ( ) ) , !dbg !DILocation ( scope: !1 )
2010-04-16 04:28:39 +08:00
%0 = add nsw i32 %b , %a , !dbg !9 ; <i32> [#uses=1]
ret i32 %0 , !dbg !11
}
2017-07-29 04:21:02 +08:00
declare void @llvm.dbg.value ( metadata , metadata , metadata ) nounwind readnone
2010-04-16 04:28:39 +08:00
2013-07-27 09:26:08 +08:00
!llvm.dbg.cu = ! { !3 }
2013-11-23 05:49:45 +08:00
!llvm.module.flags = ! { !15 }
2015-08-01 02:58:39 +08:00
!0 = !DILocalVariable ( name: "b" , line: 93 , arg: 2 , scope: !1 , file: !2 , type: !6 )
2016-04-15 23:57:41 +08:00
!1 = distinct !DISubprogram ( name: "__addvsi3" , linkageName: "__addvsi3" , line: 94 , isLocal: false , isDefinition: true , virtualIndex: 6 , isOptimized: false , unit: !3 , file: !12 , scope: null , type: !4 )
2015-04-30 00:38:44 +08:00
!2 = !DIFile ( filename: "libgcc2.c" , directory: "/Users/bwilson/local/nightly/test-2010-04-14/build/llvmgcc.roots/llvmgcc~obj/src/gcc" )
!12 = !DIFile ( filename: "libgcc2.c" , directory: "/Users/bwilson/local/nightly/test-2010-04-14/build/llvmgcc.roots/llvmgcc~obj/src/gcc" )
2016-04-15 23:57:41 +08:00
!3 = distinct !DICompileUnit ( language: D W _ L A N G _ C 89 , producer: "4.2.1 (Based on Apple Inc. build 5658) (LLVM build 00)" , isOptimized: true , emissionKind: F u l l D e b u g , file: !12 , enums: !13 , retainedTypes: !13 )
2015-04-30 00:38:44 +08:00
!4 = !DISubroutineType ( types: !5 )
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.
llvm-svn: 224257
2014-12-16 03:07:53 +08:00
!5 = ! { !6 , !6 , !6 }
2015-04-30 00:38:44 +08:00
!6 = !DIDerivedType ( tag: D W _ T A G _ t y p e d e f , name: "SItype" , line: 152 , file: !12 , baseType: !8 )
!7 = !DIFile ( filename: "libgcc2.h" , directory: "/Users/bwilson/local/nightly/test-2010-04-14/build/llvmgcc.roots/llvmgcc~obj/src/gcc" )
!8 = !DIBasicType ( 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 )
!9 = !DILocation ( line: 95 , scope: !10 )
!10 = distinct !DILexicalBlock ( line: 94 , column: 0 , file: !12 , scope: !1 )
!11 = !DILocation ( line: 100 , scope: !10 )
2015-03-28 04:46:33 +08:00
!13 = ! { }
2015-03-04 01:24:31 +08:00
!15 = ! { i32 1 , !"Debug Info Version" , i32 3 }