2016-10-06 20:30:26 +02:00
|
|
|
; REQUIRES: loadable_module
|
2016-10-25 20:44:13 +02:00
|
|
|
; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes -disable-namedmd-remove -disable-strip-debuginfo -disable-strip-debug-types > /dev/null
|
|
|
|
; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s
|
|
|
|
;
|
|
|
|
; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t-nodebug -bugpoint-crashcalls -silence-passes -disable-namedmd-remove > /dev/null
|
|
|
|
; RUN: llvm-dis %t-nodebug-reduced-simplified.bc -o - | FileCheck %s --check-prefix=NODEBUG
|
|
|
|
;
|
|
|
|
; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t-notype -bugpoint-crashcalls -silence-passes -disable-namedmd-remove -disable-strip-debuginfo > /dev/null
|
|
|
|
; RUN: llvm-dis %t-notype-reduced-simplified.bc -o - | FileCheck %s --check-prefix=NOTYPE
|
|
|
|
;
|
2010-08-24 22:23:51 +02:00
|
|
|
; Bugpoint should keep the call's metadata attached to the call.
|
|
|
|
|
2013-11-23 02:16:29 +01:00
|
|
|
; CHECK: call void @foo(), !dbg ![[LOC:[0-9]+]], !attach ![[CALL:[0-9]+]]
|
2016-10-25 20:44:13 +02:00
|
|
|
; NODEBUG: call void @foo(), !attach ![[CALL:[0-9]+]]
|
|
|
|
; NOTYPE: call void @foo(), !dbg ![[LOC:[0-9]+]], !attach ![[CALL:[0-9]+]]
|
|
|
|
; NODEBUG-NOT: call void @foo(), !attach ![[CALL:[0-9]+]]
|
|
|
|
; NOTYPE-NOT: !DIBasicType
|
|
|
|
; NOTYPE: !DICompileUnit
|
|
|
|
; NOTYPE-NOT: !DIBasicType
|
2016-04-12 01:30:29 +02:00
|
|
|
; CHECK-DAG: ![[LOC]] = !DILocation(line: 104, column: 105, scope: ![[SCOPE:[0-9]+]])
|
|
|
|
; CHECK-DAG: ![[SCOPE]] = distinct !DISubprogram(name: "test",{{.*}}file: ![[FILE:[0-9]+]]
|
|
|
|
; CHECK-DAG: ![[FILE]] = !DIFile(filename: "source.c", directory: "/dir")
|
|
|
|
; CHECK-DAG: ![[CALL]] = !{!"the call to foo"}
|
2010-08-24 22:23:51 +02:00
|
|
|
|
|
|
|
%rust_task = type {}
|
|
|
|
define void @test(i32* %a, i8* %b) {
|
|
|
|
%s = mul i8 22, 9, !attach !0, !dbg !10
|
|
|
|
store i8 %s, i8* %b, !attach !1, !dbg !11
|
|
|
|
call void @foo(), !attach !2, !dbg !12
|
|
|
|
store i32 7, i32* %a, !attach !3, !dbg !13
|
|
|
|
%t = add i32 0, 5, !attach !4, !dbg !14
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @foo()
|
|
|
|
|
2013-11-23 02:16:29 +01:00
|
|
|
!llvm.module.flags = !{!17}
|
2016-04-12 01:30:29 +02:00
|
|
|
!llvm.dbg.cu = !{!8}
|
2013-11-23 02:16:29 +01:00
|
|
|
|
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-15 20:07:53 +01:00
|
|
|
!0 = !{!"boring"}
|
|
|
|
!1 = !{!"uninteresting"}
|
|
|
|
!2 = !{!"the call to foo"}
|
|
|
|
!3 = !{!"noise"}
|
|
|
|
!4 = !{!"filler"}
|
2010-08-24 22:23:51 +02:00
|
|
|
|
2016-04-15 17:57:41 +02:00
|
|
|
!8 = distinct !DICompileUnit(language: DW_LANG_C99, file: !15)
|
2016-10-25 20:44:13 +02:00
|
|
|
!9 = distinct !DISubprogram(name: "test", file: !15, type: !18, unit: !8)
|
2015-04-29 18:38:44 +02:00
|
|
|
!10 = !DILocation(line: 100, column: 101, scope: !9)
|
|
|
|
!11 = !DILocation(line: 102, column: 103, scope: !9)
|
|
|
|
!12 = !DILocation(line: 104, column: 105, scope: !9)
|
|
|
|
!13 = !DILocation(line: 106, column: 107, scope: !9)
|
|
|
|
!14 = !DILocation(line: 108, column: 109, scope: !9)
|
|
|
|
!15 = !DIFile(filename: "source.c", directory: "/dir")
|
2015-03-26 06:03:10 +01:00
|
|
|
!16 = !{}
|
2015-03-03 18:24:31 +01:00
|
|
|
!17 = !{i32 1, !"Debug Info Version", i32 3}
|
2016-10-25 20:44:13 +02:00
|
|
|
!18 = !DISubroutineType(types: !19)
|
|
|
|
!19 = !{!20, !20}
|
|
|
|
!20 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|