mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
cf7e846d11
This patch implements PR31013 by introducing a DIGlobalVariableExpression that holds a pair of DIGlobalVariable and DIExpression. Currently, DIGlobalVariables holds a DIExpression. This is not the best way to model this: (1) The DIGlobalVariable should describe the source level variable, not how to get to its location. (2) It makes it unsafe/hard to update the expressions when we call replaceExpression on the DIGLobalVariable. (3) It makes it impossible to represent a global variable that is in more than one location (e.g., a variable with multiple DW_OP_LLVM_fragment-s). We also moved away from attaching the DIExpression to DILocalVariable for the same reasons. This reapplies r289902 with additional testcase upgrades and a change to the Bitcode record for DIGlobalVariable, that makes upgrading the old format unambiguous also for variables without DIExpressions. <rdar://problem/29250149> https://llvm.org/bugs/show_bug.cgi?id=31013 Differential Revision: https://reviews.llvm.org/D26769 llvm-svn: 290153
47 lines
2.9 KiB
LLVM
47 lines
2.9 KiB
LLVM
; RUN: opt -module-summary -o %t-dst.bc %s
|
|
; RUN: opt -module-summary -o %t-src.bc %p/Inputs/crash_debuginfo.ll
|
|
; RUN: llvm-lto -thinlto -o %t-index %t-dst.bc %t-src.bc
|
|
; RUN: opt -function-import -inline -summary-file %t-index.thinlto.bc %t-dst.bc -o %t.out
|
|
; RUN: llvm-nm %t.out | FileCheck %s
|
|
|
|
; Verify that we import bar and inline it. It use to crash importing due to ODR type uniquing
|
|
; CHECK-NOT: bar
|
|
; CHECK: foo
|
|
; CHECK-NOT: bar
|
|
|
|
; ModuleID = 'test/ThinLTO/X86/crash_debuginfo.ll'
|
|
source_filename = "test/ThinLTO/X86/crash_debuginfo.ll"
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.7.0"
|
|
|
|
%some_type = type { i32 }
|
|
|
|
define void @foo(i32 %arg) {
|
|
call void @bar(i32 %arg), !dbg !7
|
|
unreachable
|
|
}
|
|
|
|
declare void @bar(i32)
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!6}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "Apple LLVM version 8.0.0 (clang-800.0.24.1)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, globals: !2)
|
|
!1 = !DIFile(filename: "1.cpp", directory: "/another_dir")
|
|
!2 = !{!3}
|
|
!3 = !DIGlobalVariableExpression(var: !DIGlobalVariable(name: "_", linkageName: "some_global", scope: null, file: !1, line: 20, type: !4, isLocal: true, isDefinition: true))
|
|
!4 = distinct !DICompositeType(tag: DW_TAG_class_type, name: "slice_nil", file: !1, line: 13, size: 64, align: 64, elements: !5, identifier: "_ZTSN5boost6python3api9slice_nilE")
|
|
!5 = !{}
|
|
!6 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!7 = distinct !DILocation(line: 728, column: 71, scope: !8, inlinedAt: !15)
|
|
!8 = distinct !DISubprogram(name: "baz", linkageName: "baz", scope: !9, file: !1, line: 726, type: !10, isLocal: false, isDefinition: true, scopeLine: 727, flags: DIFlagPrototyped, isOptimized: true, unit: !0, declaration: !11, variables: !12)
|
|
!9 = distinct !DICompositeType(tag: DW_TAG_class_type, name: "some_other_class", file: !1, line: 197, size: 192, align: 64, elements: !5, templateParams: !5, identifier: "some_other_class")
|
|
!10 = !DISubroutineType(types: !5)
|
|
!11 = !DISubprogram(name: "baz", linkageName: "baz", scope: !9, file: !1, line: 726, type: !10, isLocal: false, isDefinition: false, scopeLine: 726, flags: DIFlagPrototyped, isOptimized: true)
|
|
!12 = !{!13}
|
|
!13 = !DILocalVariable(name: "caster", scope: !8, file: !1, line: 728, type: !14)
|
|
!14 = distinct !DICompositeType(tag: DW_TAG_union_type, scope: !8, file: !1, line: 728, size: 64, align: 64, elements: !5, identifier: "someclass")
|
|
!15 = distinct !DILocation(line: 87, column: 9, scope: !16)
|
|
!16 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: !9, line: 73, type: !10, isLocal: false, isDefinition: true, scopeLine: 74, flags: DIFlagPrototyped, isOptimized: true, unit: !0, declaration: !17, variables: !5)
|
|
!17 = !DISubprogram(name: "foo", linkageName: "foo", scope: !9, file: !1, line: 83, type: !10, isLocal: false, isDefinition: false, scopeLine: 83, flags: DIFlagPrototyped, isOptimized: true)
|