2015-02-13 09:26:47 +08:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
|
|
; RUN: verify-uselistorder %s
|
|
|
|
|
|
|
|
declare void @_Z3foov()
|
|
|
|
|
|
|
|
; CHECK: !named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9}
|
|
|
|
!named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9}
|
|
|
|
|
|
|
|
!0 = distinct !{}
|
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
|
|
|
!1 = distinct !{}
|
2015-02-13 09:26:47 +08:00
|
|
|
!2 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
|
|
|
|
!3 = distinct !{}
|
|
|
|
!4 = distinct !{}
|
|
|
|
!5 = distinct !{}
|
|
|
|
!6 = distinct !{}
|
|
|
|
!7 = distinct !{}
|
|
|
|
|
2015-03-01 07:21:38 +08:00
|
|
|
; CHECK: !8 = !MDSubprogram(name: "foo", linkageName: "_Zfoov", scope: !0, file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, scopeLine: 8, containingType: !4, virtuality: DW_VIRTUALITY_pure_virtual, virtualIndex: 10, flags: DIFlagPrototyped, isOptimized: true, function: void ()* @_Z3foov, templateParams: !5, declaration: !6, variables: !7)
|
|
|
|
!8 = !MDSubprogram(name: "foo", linkageName: "_Zfoov", scope: !0,
|
2015-02-13 09:26:47 +08:00
|
|
|
file: !2, line: 7, type: !3, isLocal: true,
|
|
|
|
isDefinition: false, scopeLine: 8, containingType: !4,
|
2015-02-13 09:28:16 +08:00
|
|
|
virtuality: DW_VIRTUALITY_pure_virtual, virtualIndex: 10,
|
2015-02-21 09:02:18 +08:00
|
|
|
flags: DIFlagPrototyped, isOptimized: true, function: void ()* @_Z3foov,
|
2015-02-13 09:26:47 +08:00
|
|
|
templateParams: !5, declaration: !6, variables: !7)
|
|
|
|
|
2015-03-01 07:21:38 +08:00
|
|
|
; CHECK: !9 = !MDSubprogram(name: "bar", scope: null, isLocal: false, isDefinition: true, isOptimized: false)
|
2015-02-13 09:26:47 +08:00
|
|
|
!9 = !MDSubprogram(name: "bar")
|
|
|
|
|