mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-07 12:07:17 +00:00
88e419d66e
Remove 'inlinedAt:' from MDLocalVariable. Besides saving some memory (variables with it seem to be single largest `Metadata` contributer to memory usage right now in -g -flto builds), this stops optimization and backend passes from having to change local variables. The 'inlinedAt:' field was used by the backend in two ways: 1. To tell the backend whether and into what a variable was inlined. 2. To create a unique id for each inlined variable. Instead, rely on the 'inlinedAt:' field of the intrinsic's `!dbg` attachment, and change the DWARF backend to use a typedef called `InlinedVariable` which is `std::pair<MDLocalVariable*, MDLocation*>`. This `DebugLoc` is already passed reliably through the backend (as verified by r234021). This commit removes the check from r234021, but I added a new check (that will survive) in r235048, and changed the `DIBuilder` API in r235041 to require a `!dbg` attachment whose 'scope:` is in the same `MDSubprogram` as the variable's. If this breaks your out-of-tree testcases, perhaps the script I used (mdlocalvariable-drop-inlinedat.sh) will help; I'll attach it to PR22778 in a moment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235050 91177308-0d34-0410-b5e6-96231b3b80d8
57 lines
2.9 KiB
LLVM
57 lines
2.9 KiB
LLVM
; RUN: %llc_dwarf -O0 < %s | FileCheck %s -check-prefix ARGUMENT
|
|
; RUN: %llc_dwarf -O0 < %s | FileCheck %s -check-prefix VARIABLE
|
|
; PR 13202
|
|
|
|
define i32 @main() uwtable {
|
|
entry:
|
|
tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !18, metadata !MDExpression()), !dbg !21
|
|
tail call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !22, metadata !MDExpression()), !dbg !23
|
|
tail call void @smth(i32 0), !dbg !24
|
|
tail call void @smth(i32 0), !dbg !25
|
|
ret i32 0, !dbg !19
|
|
}
|
|
|
|
declare void @smth(i32)
|
|
|
|
declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!27}
|
|
|
|
!0 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.2 (trunk 159419)", isOptimized: true, emissionKind: 0, file: !26, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2)
|
|
!1 = !{i32 0}
|
|
!2 = !{}
|
|
!3 = !{!5, !10}
|
|
!5 = !MDSubprogram(name: "main", line: 10, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 10, file: !26, scope: !6, type: !7, function: i32 ()* @main, variables: !2)
|
|
!6 = !MDFile(filename: "inline-bug.cc", directory: "/tmp/dbginfo/pr13202")
|
|
!7 = !MDSubroutineType(types: !8)
|
|
!8 = !{!9}
|
|
!9 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
|
!10 = !MDSubprogram(name: "f", linkageName: "_ZL1fi", line: 3, isLocal: true, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 3, file: !26, scope: !6, type: !11, variables: !13)
|
|
!11 = !MDSubroutineType(types: !12)
|
|
!12 = !{!9, !9}
|
|
!13 = !{!15, !16}
|
|
!15 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argument", line: 3, arg: 1, scope: !10, file: !6, type: !9)
|
|
|
|
; Two DW_TAG_formal_parameter: one abstract and one inlined.
|
|
; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
|
|
; ARGUMENT: {{.*Abbrev.*DW_TAG_formal_parameter}}
|
|
; ARGUMENT-NOT: {{.*Abbrev.*DW_TAG_formal_parameter}}
|
|
|
|
!16 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "local", line: 4, scope: !10, file: !6, type: !9)
|
|
|
|
; Two DW_TAG_variable: one abstract and one inlined.
|
|
; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
|
|
; VARIABLE: {{.*Abbrev.*DW_TAG_variable}}
|
|
; VARIABLE-NOT: {{.*Abbrev.*DW_TAG_variable}}
|
|
|
|
!18 = !MDLocalVariable(tag: DW_TAG_arg_variable, name: "argument", line: 3, arg: 1, scope: !10, file: !6, type: !9)
|
|
!19 = !MDLocation(line: 11, column: 10, scope: !5)
|
|
!21 = !MDLocation(line: 3, column: 25, scope: !10, inlinedAt: !19)
|
|
!22 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "local", line: 4, scope: !10, file: !6, type: !9)
|
|
!23 = !MDLocation(line: 4, column: 16, scope: !10, inlinedAt: !19)
|
|
!24 = !MDLocation(line: 5, column: 3, scope: !10, inlinedAt: !19)
|
|
!25 = !MDLocation(line: 6, column: 3, scope: !10, inlinedAt: !19)
|
|
!26 = !MDFile(filename: "inline-bug.cc", directory: "/tmp/dbginfo/pr13202")
|
|
!27 = !{i32 1, !"Debug Info Version", i32 3}
|