2015-02-13 02:35:40 +01:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
|
|
; RUN: verify-uselistorder %s
|
|
|
|
|
|
|
|
@foo = global i32 0
|
|
|
|
|
2018-10-03 20:44:53 +02:00
|
|
|
; CHECK: !named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9, !10, !11, !12}
|
|
|
|
!named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9, !10, !11, !12}
|
2015-02-13 02:35:40 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
!0 = !DIFile(filename: "scope.h", directory: "/path/to/dir")
|
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-20 21:35:17 +01:00
|
|
|
!1 = distinct !{}
|
2015-04-29 18:38:44 +02:00
|
|
|
!2 = !DIFile(filename: "path/to/file", directory: "/path/to/dir")
|
|
|
|
!3 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
2015-02-13 02:35:40 +01:00
|
|
|
!4 = distinct !{}
|
|
|
|
|
2016-10-20 02:13:12 +02:00
|
|
|
; CHECK: !5 = !DIGlobalVariable(name: "foo", linkageName: "foo", scope: !0, file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, align: 32)
|
2015-04-29 18:38:44 +02:00
|
|
|
!5 = !DIGlobalVariable(name: "foo", linkageName: "foo", scope: !0,
|
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-20 21:35:17 +01:00
|
|
|
file: !2, line: 7, type: !3, isLocal: true,
|
2016-10-20 02:13:12 +02:00
|
|
|
isDefinition: false, align: 32)
|
2015-02-13 02:35:40 +01:00
|
|
|
|
2016-12-20 03:09:43 +01:00
|
|
|
!6 = !DICompositeType(tag: DW_TAG_structure_type, name: "Class", size: 8, align: 8)
|
|
|
|
!7 = !DIDerivedType(tag: DW_TAG_member, name: "mem", flags: DIFlagStaticMember, scope: !6, baseType: !3)
|
2015-03-27 18:29:58 +01:00
|
|
|
|
2017-08-16 15:39:07 +02:00
|
|
|
; CHECK: !8 = !DIGlobalVariable(name: "mem", scope: !0, type: !9, isLocal: false, isDefinition: true, declaration: !7)
|
|
|
|
!8 = !DIGlobalVariable(name: "mem", scope: !0, declaration: !7, type: !9)
|
|
|
|
!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
2018-10-03 20:44:53 +02:00
|
|
|
|
|
|
|
; CHECK: !12 = !DIGlobalVariable(name: "bar", linkageName: "bar", scope: !0, file: !2, line: 8, type: !3, isLocal: true, isDefinition: false, templateParams: !11, align: 32)
|
|
|
|
!10 = !DITemplateTypeParameter(name: "Ty", type: !3)
|
|
|
|
!11 = distinct !{!10}
|
|
|
|
!12 = !DIGlobalVariable(name: "bar", linkageName: "bar", scope: !0, file: !2, line: 8, type: !3, isLocal: true, isDefinition: false, templateParams: !11, align: 32)
|