mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
9c5542c040
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
71 lines
3.7 KiB
LLVM
71 lines
3.7 KiB
LLVM
; RUN: %llc_dwarf -O0 < %s | grep AT_decl_file | grep 2
|
|
; Here _ZN1S3fooEv is defined in header file identified as AT_decl_file no. 2 in debug info.
|
|
%struct.S = type <{ i8 }>
|
|
|
|
define i32 @_Z3barv() nounwind ssp {
|
|
entry:
|
|
%retval = alloca i32 ; <i32*> [#uses=2]
|
|
%0 = alloca i32 ; <i32*> [#uses=2]
|
|
%s1 = alloca %struct.S ; <%struct.S*> [#uses=1]
|
|
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
|
|
call void @llvm.dbg.declare(metadata %struct.S* %s1, metadata !0, metadata !{!"0x102"}), !dbg !16
|
|
%1 = call i32 @_ZN1S3fooEv(%struct.S* %s1) nounwind, !dbg !17 ; <i32> [#uses=1]
|
|
store i32 %1, i32* %0, align 4, !dbg !17
|
|
%2 = load i32* %0, align 4, !dbg !17 ; <i32> [#uses=1]
|
|
store i32 %2, i32* %retval, align 4, !dbg !17
|
|
br label %return, !dbg !17
|
|
|
|
return: ; preds = %entry
|
|
%retval1 = load i32* %retval, !dbg !17 ; <i32> [#uses=1]
|
|
ret i32 %retval1, !dbg !16
|
|
}
|
|
|
|
define linkonce_odr i32 @_ZN1S3fooEv(%struct.S* %this) nounwind ssp align 2 {
|
|
entry:
|
|
%this_addr = alloca %struct.S* ; <%struct.S**> [#uses=1]
|
|
%retval = alloca i32 ; <i32*> [#uses=1]
|
|
%"alloca point" = bitcast i32 0 to i32 ; <i32> [#uses=0]
|
|
call void @llvm.dbg.declare(metadata %struct.S** %this_addr, metadata !18, metadata !{!"0x102"}), !dbg !21
|
|
store %struct.S* %this, %struct.S** %this_addr
|
|
br label %return, !dbg !21
|
|
|
|
return: ; preds = %entry
|
|
%retval1 = load i32* %retval, !dbg !21 ; <i32> [#uses=1]
|
|
ret i32 %retval1, !dbg !22
|
|
}
|
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
|
|
|
|
!llvm.dbg.cu = !{!5}
|
|
!llvm.module.flags = !{!28}
|
|
|
|
!0 = !{!"0x100\00s1\003\000", !1, !4, !9} ; [ DW_TAG_auto_variable ]
|
|
!1 = !{!"0xb\003\000\000", !25, !2} ; [ DW_TAG_lexical_block ]
|
|
!2 = !{!"0xb\003\000\000", !25, !3} ; [ DW_TAG_lexical_block ]
|
|
!3 = !{!"0x2e\00bar\00bar\00_Z3barv\003\000\001\000\006\000\000\003", !25, !4, !6, null, i32 ()* @_Z3barv, null, null, null} ; [ DW_TAG_subprogram ]
|
|
!4 = !{!"0x29", !25} ; [ DW_TAG_file_type ]
|
|
!5 = !{!"0x11\004\004.2.1 (Based on Apple Inc. build 5658) (LLVM build)\000\00\000\00\000", !25, !27, !27, !24, null, null} ; [ DW_TAG_compile_unit ]
|
|
!6 = !{!"0x15\00\000\000\000\000\000\000", !25, !4, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
|
!7 = !{!8}
|
|
!8 = !{!"0x24\00int\000\0032\0032\000\000\005", !25, !4} ; [ DW_TAG_base_type ]
|
|
!9 = !{!"0x13\00S\002\008\008\000\000\000", !26, !4, null, !11, null, null, null} ; [ DW_TAG_structure_type ] [S] [line 2, size 8, align 8, offset 0] [def] [from ]
|
|
!10 = !{!"0x29", !26} ; [ DW_TAG_file_type ]
|
|
!11 = !{!12}
|
|
!12 = !{!"0x2e\00foo\00foo\00_ZN1S3fooEv\003\000\001\000\006\000\000\003", !26, !9, !13, null, i32 (%struct.S*)* @_ZN1S3fooEv, null, null, null} ; [ DW_TAG_subprogram ]
|
|
!13 = !{!"0x15\00\000\000\000\000\000\000", !25, null, null, !14, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
|
!14 = !{!8, !15}
|
|
!15 = !{!"0xf\00\000\0064\0064\000\0064", !25, !4, !9} ; [ DW_TAG_pointer_type ]
|
|
!16 = !{i32 3, i32 0, !1, null}
|
|
!17 = !{i32 3, i32 0, !3, null}
|
|
!18 = !{!"0x101\00this\003\000", !12, !10, !19} ; [ DW_TAG_arg_variable ]
|
|
!19 = !{!"0x26\00\000\0064\0064\000\0064", !25, !4, !20} ; [ DW_TAG_const_type ]
|
|
!20 = !{!"0xf\00\000\0064\0064\000\000", !25, !4, !9} ; [ DW_TAG_pointer_type ]
|
|
!21 = !{i32 3, i32 0, !12, null}
|
|
!22 = !{i32 3, i32 0, !23, null}
|
|
!23 = !{!"0xb\003\000\000", !26, !12} ; [ DW_TAG_lexical_block ]
|
|
!24 = !{!3, !12}
|
|
!25 = !{!"one.cc", !"/tmp/"}
|
|
!26 = !{!"one.h", !"/tmp/"}
|
|
!27 = !{i32 0}
|
|
!28 = !{i32 1, !"Debug Info Version", i32 2}
|