mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
IR: Give 'DI' prefix to debug info metadata
Finish off PR23080 by renaming the debug info IR constructs from `MD*` to `DI*`. The last of the `DIDescriptor` classes were deleted in r235356, and the last of the related typedefs removed in r235413, so this has all baked for about a week. Note: If you have out-of-tree code (like a frontend), I recommend that you get everything compiling and tests passing with the *previous* commit before updating to this one. It'll be easier to keep track of what code is using the `DIDescriptor` hierarchy and what you've already updated, and I think you're extremely unlikely to insert bugs. YMMV of course. Back to *this* commit: I did this using the rename-md-di-nodes.sh upgrade script I've attached to PR23080 (both code and testcases) and filtered through clang-format-diff.py. I edited the tests for test/Assembler/invalid-generic-debug-node-*.ll by hand since the columns were off-by-three. It should work on your out-of-tree testcases (and code, if you've followed the advice in the previous paragraph). Some of the tests are in badly named files now (e.g., test/Assembler/invalid-mdcompositetype-missing-tag.ll should be 'dicompositetype'); I'll come back and move the files in a follow-up commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236120 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -5,8 +5,8 @@ target triple = "x86_64-apple-darwin10.0.0"
|
||||
|
||||
define void @foo(double* nocapture %a) nounwind ssp {
|
||||
entry:
|
||||
tail call void @llvm.dbg.value(metadata double* %a, i64 0, metadata !5, metadata !MDExpression()), !dbg !8
|
||||
tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !10, metadata !MDExpression()), !dbg !14
|
||||
tail call void @llvm.dbg.value(metadata double* %a, i64 0, metadata !5, metadata !DIExpression()), !dbg !8
|
||||
tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !10, metadata !DIExpression()), !dbg !14
|
||||
br label %for.body
|
||||
|
||||
for.body: ; preds = %entry, %for.body
|
||||
@@ -19,7 +19,7 @@ for.body: ; preds = %entry, %for.body
|
||||
br i1 %exitcond, label %for.body, label %for.end, !dbg !14
|
||||
|
||||
for.end: ; preds = %for.body
|
||||
tail call void @llvm.dbg.value(metadata !{null}, i64 0, metadata !10, metadata !MDExpression()), !dbg !16
|
||||
tail call void @llvm.dbg.value(metadata !{null}, i64 0, metadata !10, metadata !DIExpression()), !dbg !16
|
||||
ret void, !dbg !17
|
||||
}
|
||||
|
||||
@@ -30,23 +30,23 @@ declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnon
|
||||
!llvm.module.flags = !{!19}
|
||||
!llvm.dbg.sp = !{!0}
|
||||
|
||||
!0 = !MDSubprogram(name: "foo", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, file: !18, scope: !1, type: !3, function: void (double*)* @foo)
|
||||
!1 = !MDFile(filename: "li.c", directory: "/private/tmp")
|
||||
!2 = !MDCompileUnit(language: DW_LANG_C99, producer: "clang version 2.9 (trunk 127165:127174)", isOptimized: true, emissionKind: 0, file: !18, enums: !9, retainedTypes: !9)
|
||||
!3 = !MDSubroutineType(types: !4)
|
||||
!0 = !DISubprogram(name: "foo", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, file: !18, scope: !1, type: !3, function: void (double*)* @foo)
|
||||
!1 = !DIFile(filename: "li.c", directory: "/private/tmp")
|
||||
!2 = !DICompileUnit(language: DW_LANG_C99, producer: "clang version 2.9 (trunk 127165:127174)", isOptimized: true, emissionKind: 0, file: !18, enums: !9, retainedTypes: !9)
|
||||
!3 = !DISubroutineType(types: !4)
|
||||
!4 = !{null}
|
||||
!5 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 2, arg: 1, scope: !0, file: !1, type: !6)
|
||||
!6 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, scope: !2, baseType: !7)
|
||||
!7 = !MDBasicType(tag: DW_TAG_base_type, name: "double", size: 64, align: 64, encoding: DW_ATE_float)
|
||||
!8 = !MDLocation(line: 2, column: 18, scope: !0)
|
||||
!5 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 2, arg: 1, scope: !0, file: !1, type: !6)
|
||||
!6 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, scope: !2, baseType: !7)
|
||||
!7 = !DIBasicType(tag: DW_TAG_base_type, name: "double", size: 64, align: 64, encoding: DW_ATE_float)
|
||||
!8 = !DILocation(line: 2, column: 18, scope: !0)
|
||||
!9 = !{}
|
||||
!10 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 3, scope: !11, file: !1, type: !13)
|
||||
!11 = distinct !MDLexicalBlock(line: 3, column: 3, file: !18, scope: !12)
|
||||
!12 = distinct !MDLexicalBlock(line: 2, column: 21, file: !18, scope: !0)
|
||||
!13 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
||||
!14 = !MDLocation(line: 3, column: 3, scope: !12)
|
||||
!15 = !MDLocation(line: 4, column: 5, scope: !11)
|
||||
!16 = !MDLocation(line: 3, column: 29, scope: !11)
|
||||
!17 = !MDLocation(line: 5, column: 1, scope: !12)
|
||||
!18 = !MDFile(filename: "li.c", directory: "/private/tmp")
|
||||
!10 = !DILocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 3, scope: !11, file: !1, type: !13)
|
||||
!11 = distinct !DILexicalBlock(line: 3, column: 3, file: !18, scope: !12)
|
||||
!12 = distinct !DILexicalBlock(line: 2, column: 21, file: !18, scope: !0)
|
||||
!13 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
||||
!14 = !DILocation(line: 3, column: 3, scope: !12)
|
||||
!15 = !DILocation(line: 4, column: 5, scope: !11)
|
||||
!16 = !DILocation(line: 3, column: 29, scope: !11)
|
||||
!17 = !DILocation(line: 5, column: 1, scope: !12)
|
||||
!18 = !DIFile(filename: "li.c", directory: "/private/tmp")
|
||||
!19 = !{i32 1, !"Debug Info Version", i32 3}
|
||||
|
||||
Reference in New Issue
Block a user