2015-02-13 09:25:10 +08:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
|
|
; RUN: verify-uselistorder %s
|
|
|
|
|
2016-03-29 05:06:26 +08:00
|
|
|
; Force a specific numbering.
|
2015-12-10 20:56:35 +08:00
|
|
|
; CHECK: !named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9}
|
|
|
|
!named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9}
|
2016-04-01 07:56:58 +08:00
|
|
|
; CHECK: !llvm.dbg.cu = !{!8, !9, !10}
|
|
|
|
!llvm.dbg.cu = !{!8, !9, !10}
|
2015-02-13 09:25:10 +08:00
|
|
|
|
IR: Change MDFile to directly store the filename/directory
In the old (well, current) schema, there are two types of file
references: untagged and tagged (the latter references the former).
!0 = !{!"filename", !"/directory"}
!1 = !{!"0x29", !1} ; DW_TAG_file_type [filename] [/directory]
The interface to `DIBuilder` universally takes the tagged version,
described by `DIFile`. However, most `file:` references actually use
the untagged version directly.
In the new hierarchy, I'm merging this into a single node: `MDFile`.
Originally I'd planned to keep the old schema unchanged until after I
moved the new hierarchy into place.
However, it turns out to be trivial to make `MDFile` match both nodes at
the same time.
- Anyone referencing !1 does so through `DIFile`, whose implementation
I need to gut anyway (as I do the rest of the `DIDescriptor`s).
- Anyone referencing !0 just references an `MDNode`, and expects a
node with two `MDString` operands.
This commit achieves that, and updates all the testcases for the parts
of the new hierarchy that used the two-node schema (I've replaced the
untagged nodes with `distinct !{}` to make the diff clear (otherwise the
metadata all gets renumbered); it might be worthwhile to come back and
delete those nodes and renumber the world, not sure).
llvm-svn: 230057
2015-02-21 04:35:17 +08:00
|
|
|
!0 = distinct !{}
|
2015-04-30 00:38:44 +08:00
|
|
|
!1 = !DIFile(filename: "path/to/file", directory: "/path/to/dir")
|
2015-02-13 09:25:10 +08:00
|
|
|
!2 = distinct !{}
|
|
|
|
!3 = distinct !{}
|
|
|
|
!4 = distinct !{}
|
|
|
|
!5 = distinct !{}
|
|
|
|
!6 = distinct !{}
|
2015-12-10 20:56:35 +08:00
|
|
|
!7 = distinct !{}
|
2015-02-13 09:25:10 +08:00
|
|
|
|
2016-04-15 23:57:41 +08:00
|
|
|
; CHECK: !8 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: true, flags: "-O2", runtimeVersion: 2, splitDebugFilename: "abc.debug", emissionKind: FullDebug, enums: !2, retainedTypes: !3, globals: !5, imports: !6, macros: !7, dwoId: 42)
|
2015-12-10 20:56:35 +08:00
|
|
|
!8 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang",
|
2015-08-04 01:26:41 +08:00
|
|
|
isOptimized: true, flags: "-O2", runtimeVersion: 2,
|
2016-04-01 07:56:58 +08:00
|
|
|
splitDebugFilename: "abc.debug",
|
|
|
|
emissionKind: FullDebug,
|
2016-04-15 23:57:41 +08:00
|
|
|
enums: !2, retainedTypes: !3,
|
2015-12-10 20:56:35 +08:00
|
|
|
globals: !5, imports: !6, macros: !7, dwoId: 42)
|
2015-02-13 09:25:10 +08:00
|
|
|
|
2016-04-01 07:56:58 +08:00
|
|
|
; CHECK: !9 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug)
|
2015-12-10 20:56:35 +08:00
|
|
|
!9 = distinct !DICompileUnit(language: 12, file: !1, producer: "",
|
2015-08-04 01:26:41 +08:00
|
|
|
isOptimized: false, flags: "", runtimeVersion: 0,
|
2016-04-01 07:56:58 +08:00
|
|
|
splitDebugFilename: "", emissionKind: NoDebug)
|
|
|
|
|
|
|
|
; CHECK: !10 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: true, flags: "-O2", runtimeVersion: 2, splitDebugFilename: "abc.debug", emissionKind: LineTablesOnly)
|
|
|
|
!10 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang",
|
|
|
|
isOptimized: true, flags: "-O2", runtimeVersion: 2,
|
|
|
|
splitDebugFilename: "abc.debug",
|
|
|
|
emissionKind: LineTablesOnly)
|
|
|
|
|
|
|
|
!llvm.module.flags = !{!11}
|
|
|
|
!11 = !{i32 2, !"Debug Info Version", i32 3}
|