mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +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
59 lines
2.5 KiB
LLVM
59 lines
2.5 KiB
LLVM
; RUN: llc -generate-arange-section < %s | FileCheck %s
|
|
|
|
; First CU
|
|
; CHECK: .long 44 # Length of ARange Set
|
|
; CHECK-NEXT: .short 2 # DWARF Arange version number
|
|
; CHECK-NEXT: .long .L.debug_info_begin0 # Offset Into Debug Info Section
|
|
; CHECK-NEXT: .byte 8 # Address Size (in bytes)
|
|
; CHECK-NEXT: .byte 0 # Segment Size (in bytes)
|
|
; CHECK-NEXT: .zero 4,255
|
|
; CHECK-NEXT: .quad kittens
|
|
; CHECK-NEXT: .quad rainbows-kittens
|
|
; CHECK-NEXT: .quad 0 # ARange terminator
|
|
; CHECK-NEXT: .quad 0
|
|
|
|
; Second CU
|
|
; CHECK-NEXT: .long 44 # Length of ARange Set
|
|
; CHECK-NEXT: .short 2 # DWARF Arange version number
|
|
; CHECK-NEXT: .long .L.debug_info_begin1 # Offset Into Debug Info Section
|
|
; CHECK-NEXT: .byte 8 # Address Size (in bytes)
|
|
; CHECK-NEXT: .byte 0 # Segment Size (in bytes)
|
|
; CHECK-NEXT: .zero 4,255
|
|
; CHECK-NEXT: .quad rainbows
|
|
; CHECK-NEXT: .quad .Ldebug_end0-rainbows
|
|
; CHECK-NEXT: .quad 0 # ARange terminator
|
|
; CHECK-NEXT: .quad 0
|
|
|
|
|
|
; Generated from: clang -c -g -emit-llvm
|
|
; llvm-link test1.bc test2.bc -o test.bc
|
|
; test1.c: int kittens = 4;
|
|
; test2.c: int rainbows = 5;
|
|
|
|
|
|
|
|
|
|
; ModuleID = 'test.bc'
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
@kittens = global i32 4, align 4
|
|
@rainbows = global i32 5, align 4
|
|
|
|
!llvm.dbg.cu = !{!0, !7}
|
|
!llvm.module.flags = !{!12, !13}
|
|
|
|
!0 = !{!"0x11\0012\00clang version 3.4 \000\00\000\00\000", !1, !2, !2, !2, !3, !2} ; [ DW_TAG_compile_unit ] [/home/kayamon/test1.c] [DW_LANG_C99]
|
|
!1 = !{!"test1.c", !"/home/kayamon"}
|
|
!2 = !{}
|
|
!3 = !{!4}
|
|
!4 = !{!"0x34\00kittens\00kittens\00\001\000\001", null, !5, !6, i32* @kittens, null} ; [ DW_TAG_variable ] [kittens] [line 1] [def]
|
|
!5 = !{!"0x29", !1} ; [ DW_TAG_file_type ] [/home/kayamon/test1.c]
|
|
!6 = !{!"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]
|
|
!7 = !{!"0x11\0012\00clang version 3.4 \000\00\000\00\000", !8, !2, !2, !2, !9, !2} ; [ DW_TAG_compile_unit ] [/home/kayamon/test2.c] [DW_LANG_C99]
|
|
!8 = !{!"test2.c", !"/home/kayamon"}
|
|
!9 = !{!10}
|
|
!10 = !{!"0x34\00rainbows\00rainbows\00\001\000\001", null, !11, !6, i32* @rainbows, null} ; [ DW_TAG_variable ] [rainbows] [line 1] [def]
|
|
!11 = !{!"0x29", !8} ; [ DW_TAG_file_type ] [/home/kayamon/test2.c]
|
|
!12 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!13 = !{i32 1, !"Debug Info Version", i32 2}
|