2015-02-13 02:10:38 +01:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
|
|
; RUN: verify-uselistorder %s
|
|
|
|
|
2016-12-25 11:12:09 +01:00
|
|
|
; CHECK: !named = !{!0, !0, !1, !2, !3, !4, !5, !6, !7, !8, !8, !9, !10, !11, !12, !13, !14, !15, !16, !17, !18, !19, !20, !21, !22, !23, !24, !25, !26, !27, !27, !28, !29, !30, !31, !32, !33, !33}
|
|
|
|
!named = !{!0, !1, !2, !3, !4, !5, !6, !7, !8, !9, !10, !11, !12, !13, !14, !15, !16, !17, !18, !19, !20, !21, !22, !23, !24, !25, !26, !27, !28, !29, !30, !31, !32, !33, !34, !35, !36, !37}
|
2015-02-13 02:10:38 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK: !0 = !DISubrange(count: 3)
|
|
|
|
; CHECK-NEXT: !1 = !DISubrange(count: 3, lowerBound: 4)
|
|
|
|
; CHECK-NEXT: !2 = !DISubrange(count: 3, lowerBound: -5)
|
|
|
|
!0 = !DISubrange(count: 3)
|
|
|
|
!1 = !DISubrange(count: 3, lowerBound: 0)
|
2015-02-13 02:10:38 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
!2 = !DISubrange(count: 3, lowerBound: 4)
|
|
|
|
!3 = !DISubrange(count: 3, lowerBound: -5)
|
2015-02-13 02:14:11 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !3 = !DIEnumerator(name: "seven", value: 7)
|
|
|
|
; CHECK-NEXT: !4 = !DIEnumerator(name: "negeight", value: -8)
|
|
|
|
; CHECK-NEXT: !5 = !DIEnumerator(name: "", value: 0)
|
|
|
|
!4 = !DIEnumerator(name: "seven", value: 7)
|
|
|
|
!5 = !DIEnumerator(name: "negeight", value: -8)
|
|
|
|
!6 = !DIEnumerator(name: "", value: 0)
|
2015-02-13 02:14:58 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !6 = !DIBasicType(name: "name", size: 1, align: 2, encoding: DW_ATE_unsigned_char)
|
|
|
|
; CHECK-NEXT: !7 = !DIBasicType(tag: DW_TAG_unspecified_type, name: "decltype(nullptr)")
|
|
|
|
; CHECK-NEXT: !8 = !DIBasicType()
|
|
|
|
!7 = !DIBasicType(tag: DW_TAG_base_type, name: "name", size: 1, align: 2, encoding: DW_ATE_unsigned_char)
|
|
|
|
!8 = !DIBasicType(tag: DW_TAG_unspecified_type, name: "decltype(nullptr)")
|
|
|
|
!9 = !DIBasicType()
|
|
|
|
!10 = !DIBasicType(tag: DW_TAG_base_type, name: "", size: 0, align: 0, encoding: 0)
|
2015-02-13 02:19:14 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !9 = !DITemplateTypeParameter(type: !6)
|
|
|
|
; CHECK-NEXT: !10 = !DIFile(filename: "path/to/file", 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
|
|
|
; CHECK-NEXT: !11 = distinct !{}
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !12 = !DIFile(filename: "", directory: "")
|
|
|
|
!11 = !DITemplateTypeParameter(type: !7)
|
|
|
|
!12 = !DIFile(filename: "path/to/file", 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
|
|
|
!13 = distinct !{}
|
2015-04-29 18:38:44 +02:00
|
|
|
!14 = !DIFile(filename: "", directory: "")
|
2015-02-13 02:20:38 +01:00
|
|
|
|
2017-03-09 00:55:44 +01:00
|
|
|
; CHECK-NEXT: !13 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !6, size: 32, align: 32, dwarfAddressSpace: 1)
|
|
|
|
!15 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !7, size: 32, align: 32, dwarfAddressSpace: 1)
|
2015-02-13 02:20:38 +01:00
|
|
|
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !14 = !DICompositeType(tag: DW_TAG_structure_type, name: "MyType", file: !10, line: 2, size: 32, align: 32, identifier: "MangledMyType")
|
|
|
|
; CHECK-NEXT: !15 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Base", scope: !14, file: !10, line: 3, size: 128, align: 32, offset: 64, flags: DIFlagPublic, elements: !16, runtimeLang: DW_LANG_C_plus_plus_11, vtableHolder: !15, templateParams: !18, identifier: "MangledBase")
|
2015-02-13 02:20:38 +01:00
|
|
|
; CHECK-NEXT: !16 = !{!17}
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !17 = !DIDerivedType(tag: DW_TAG_member, name: "field", scope: !15, file: !10, line: 4, baseType: !6, size: 32, align: 32, offset: 32, flags: DIFlagPublic)
|
2015-04-06 19:04:58 +02:00
|
|
|
; CHECK-NEXT: !18 = !{!9}
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !19 = !DICompositeType(tag: DW_TAG_structure_type, name: "Derived", scope: !14, file: !10, line: 3, baseType: !15, size: 128, align: 32, offset: 64, flags: DIFlagPublic, elements: !20, runtimeLang: DW_LANG_C_plus_plus_11, vtableHolder: !15, templateParams: !18, identifier: "MangledBase")
|
2015-02-13 02:20:38 +01:00
|
|
|
; CHECK-NEXT: !20 = !{!21}
|
2015-04-29 18:38:44 +02:00
|
|
|
; CHECK-NEXT: !21 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !19, baseType: !15)
|
|
|
|
; CHECK-NEXT: !22 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !6, size: 32, align: 32, extraData: !15)
|
|
|
|
; CHECK-NEXT: !23 = !DICompositeType(tag: DW_TAG_structure_type)
|
|
|
|
; CHECK-NEXT: !24 = !DICompositeType(tag: DW_TAG_structure_type, runtimeLang: DW_LANG_Cobol85)
|
|
|
|
!16 = !DICompositeType(tag: DW_TAG_structure_type, name: "MyType", file: !12, line: 2, size: 32, align: 32, identifier: "MangledMyType")
|
|
|
|
!17 = !DICompositeType(tag: DW_TAG_structure_type, name: "Base", scope: !16, file: !12, line: 3, size: 128, align: 32, offset: 64, flags: DIFlagPublic, elements: !18, runtimeLang: DW_LANG_C_plus_plus_11, vtableHolder: !17, templateParams: !20, identifier: "MangledBase")
|
2015-02-13 02:20:38 +01:00
|
|
|
!18 = !{!19}
|
2015-04-29 18:38:44 +02:00
|
|
|
!19 = !DIDerivedType(tag: DW_TAG_member, name: "field", scope: !17, file: !12, line: 4, baseType: !7, size: 32, align: 32, offset: 32, flags: DIFlagPublic)
|
2015-04-06 19:04:58 +02:00
|
|
|
!20 = !{!11}
|
2015-04-29 18:38:44 +02:00
|
|
|
!21 = !DICompositeType(tag: DW_TAG_structure_type, name: "Derived", scope: !16, file: !12, line: 3, baseType: !17, size: 128, align: 32, offset: 64, flags: DIFlagPublic, elements: !22, runtimeLang: DW_LANG_C_plus_plus_11, vtableHolder: !17, templateParams: !20, identifier: "MangledBase")
|
2015-02-13 02:20:38 +01:00
|
|
|
!22 = !{!23}
|
2015-04-29 18:38:44 +02:00
|
|
|
!23 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !21, baseType: !17)
|
|
|
|
!24 = !DIDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: !7, size: 32, align: 32, extraData: !17)
|
|
|
|
!25 = !DICompositeType(tag: DW_TAG_structure_type)
|
|
|
|
!26 = !DICompositeType(tag: DW_TAG_structure_type, runtimeLang: 6)
|
2015-02-13 02:22:59 +01:00
|
|
|
|
2015-12-10 13:56:35 +01:00
|
|
|
; CHECK-NEXT: !25 = !{!6, !6}
|
|
|
|
; CHECK-NEXT: !26 = !DISubroutineType(flags: DIFlagPublic | DIFlagStaticMember, types: !25)
|
|
|
|
; CHECK-NEXT: !27 = !DISubroutineType(types: !25)
|
2015-02-13 02:22:59 +01:00
|
|
|
!27 = !{!7, !7}
|
2015-04-29 18:38:44 +02:00
|
|
|
!28 = !DISubroutineType(flags: DIFlagPublic | DIFlagStaticMember, types: !27)
|
|
|
|
!29 = !DISubroutineType(flags: 0, types: !27)
|
|
|
|
!30 = !DISubroutineType(types: !27)
|
2015-12-10 13:56:35 +01:00
|
|
|
|
|
|
|
; CHECK-NEXT: !28 = !DIMacro(type: DW_MACINFO_define, line: 9, name: "Name", value: "Value")
|
|
|
|
; CHECK-NEXT: !29 = distinct !{!28}
|
|
|
|
; CHECK-NEXT: !30 = !DIMacroFile(line: 9, file: !12, nodes: !29)
|
|
|
|
; CHECK-NEXT: !31 = !DIMacroFile(line: 11, file: !12)
|
|
|
|
!31 = !DIMacro(type: DW_MACINFO_define, line: 9, name: "Name", value: "Value")
|
|
|
|
!32 = distinct !{!31}
|
|
|
|
!33 = !DIMacroFile(line: 9, file: !14, nodes: !32)
|
|
|
|
!34 = !DIMacroFile(type: DW_MACINFO_start_file, line: 11, file: !14)
|
2016-12-25 11:12:09 +01:00
|
|
|
|
|
|
|
; CHECK-NEXT: !32 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_MD5, checksum: "000102030405060708090a0b0c0d0e0f")
|
|
|
|
; CHECK-NEXT: !33 = !DIFile(filename: "file", directory: "dir")
|
|
|
|
!35 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_MD5, checksum: "000102030405060708090a0b0c0d0e0f")
|
|
|
|
!36 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_None)
|
2017-03-09 00:55:44 +01:00
|
|
|
!37 = !DIFile(filename: "file", directory: "dir", checksumkind: CSK_None, checksum: "")
|