2011-10-31 09:06:02 +08:00
|
|
|
; RUN: llc -enable-dwarf-directory -mtriple x86_64-apple-darwin10.0.0 < %s | FileCheck %s
|
2011-03-25 06:39:09 +08:00
|
|
|
|
2016-03-26 00:49:57 +08:00
|
|
|
; Verify that the file name is relative to the directory.
|
|
|
|
; rdar://problem/8884898
|
2011-11-03 04:55:33 +08:00
|
|
|
; CHECK: file 1 "simple.c"
|
2011-03-25 04:30:50 +08:00
|
|
|
|
|
|
|
declare i32 @printf(i8*, ...) nounwind
|
|
|
|
|
2015-11-06 06:03:56 +08:00
|
|
|
define i32 @main() nounwind !dbg !6 {
|
2016-04-30 09:44:07 +08:00
|
|
|
ret i32 0
|
2011-03-25 04:30:50 +08:00
|
|
|
}
|
|
|
|
|
2013-03-08 08:23:31 +08:00
|
|
|
!llvm.dbg.cu = !{!2}
|
2013-11-23 05:49:45 +08:00
|
|
|
!llvm.module.flags = !{!12}
|
2011-03-25 04:30:50 +08:00
|
|
|
|
2015-04-30 00:38:44 +08:00
|
|
|
!1 = !DIFile(filename: "simple.c", directory: "/Users/manav/one/two")
|
2016-04-15 23:57:41 +08:00
|
|
|
!2 = distinct !DICompileUnit(language: DW_LANG_C89, producer: "LLVM build 00", isOptimized: true, emissionKind: FullDebug, file: !10, enums: !11, retainedTypes: !11)
|
2015-04-30 00:38:44 +08:00
|
|
|
!5 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
2016-04-15 23:57:41 +08:00
|
|
|
!6 = distinct !DISubprogram(name: "main", linkageName: "main", line: 9, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !2, file: !10, scope: !1, type: !7)
|
2015-04-30 00:38:44 +08:00
|
|
|
!7 = !DISubroutineType(types: !8)
|
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
|
|
|
!8 = !{!5}
|
2015-04-30 00:38:44 +08:00
|
|
|
!10 = !DIFile(filename: "simple.c", directory: "/Users/manav/one/two")
|
2015-03-28 04:46:33 +08:00
|
|
|
!11 = !{}
|
2015-03-04 01:24:31 +08:00
|
|
|
!12 = !{i32 1, !"Debug Info Version", i32 3}
|