mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
fb3abba237
Currently each Function points to a DISubprogram and DISubprogram has a scope field. For member functions the scope is a DICompositeType. DIScopes point to the DICompileUnit to facilitate type uniquing. Distinct DISubprograms (with isDefinition: true) are not part of the type hierarchy and cannot be uniqued. This change removes the subprograms list from DICompileUnit and instead adds a pointer to the owning compile unit to distinct DISubprograms. This would make it easy for ThinLTO to strip unneeded DISubprograms and their transitively referenced debug info. Motivation ---------- Materializing DISubprograms is currently the most expensive operation when doing a ThinLTO build of clang. We want the DISubprogram to be stored in a separate Bitcode block (or the same block as the function body) so we can avoid having to expensively deserialize all DISubprograms together with the global metadata. If a function has been inlined into another subprogram we need to store a reference the block containing the inlined subprogram. Attached to https://llvm.org/bugs/show_bug.cgi?id=27284 is a python script that updates LLVM IR testcases to the new format. http://reviews.llvm.org/D19034 <rdar://problem/25256815> llvm-svn: 266446
77 lines
3.3 KiB
LLVM
77 lines
3.3 KiB
LLVM
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-linux-gnu < %s | FileCheck %s
|
|
; RUN: llc -filetype=obj -O0 %s -mtriple=x86_64-linux-gnu -o %t
|
|
; RUN: llvm-dwarfdump %t | FileCheck %s -check-prefix=CHECK-DWARF
|
|
|
|
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-apple-darwin < %s | FileCheck --check-prefix=DARWIN-ASM %s
|
|
; RUN: llc -filetype=obj %s -mtriple=x86_64-apple-darwin -o %t2
|
|
; RUN: llvm-dwarfdump %t2 | FileCheck %s -check-prefix=DARWIN-DWARF
|
|
|
|
; Testing case generated from:
|
|
; clang++ tu1.cpp tu2.cpp -g -emit-llvm -c
|
|
; llvm-link tu1.bc tu2.bc -o tu12.ll -S
|
|
; cat hdr.h
|
|
; struct foo {
|
|
; };
|
|
; cat tu1.cpp
|
|
; #include "hdr.h"
|
|
; foo f;
|
|
; cat tu2.cpp
|
|
; #include "hdr.h"
|
|
; foo g;
|
|
|
|
; Make sure we use relocation for ref_addr on non-darwin platforms.
|
|
; CHECK: DW_TAG_compile_unit
|
|
; CHECK: DW_TAG_variable
|
|
; CHECK: .long [[TYPE:.*]] # DW_AT_type
|
|
; CHECK: DW_TAG_structure_type
|
|
; CHECK: cu_begin1
|
|
; CHECK: DW_TAG_compile_unit
|
|
; CHECK-NOT: DW_TAG_structure_type
|
|
; This variable's type is in the 1st CU.
|
|
; CHECK: DW_TAG_variable
|
|
; Make sure this is relocatable.
|
|
; CHECK: .quad .Lsection_info+[[TYPE]] # DW_AT_type
|
|
; CHECK-NOT: DW_TAG_structure_type
|
|
; CHECK: .section
|
|
|
|
; test that we don't create useless labels
|
|
; DARWIN-ASM: .long [[TYPE:.*]] ## DW_AT_type
|
|
; DARWIN-ASM: .quad [[TYPE]] ## DW_AT_type
|
|
|
|
; CHECK-DWARF: DW_TAG_compile_unit
|
|
; CHECK-DWARF: 0x[[ADDR:.*]]: DW_TAG_structure_type
|
|
; CHECK-DWARF: DW_TAG_compile_unit
|
|
; CHECK-DWARF: DW_TAG_variable
|
|
; CHECK-DWARF: DW_AT_type [DW_FORM_ref_addr] {{.*}}[[ADDR]])
|
|
|
|
; DARWIN-DWARF: DW_TAG_compile_unit
|
|
; DARWIN-DWARF: 0x[[ADDR:.*]]: DW_TAG_structure_type
|
|
; DARWIN-DWARF: DW_TAG_compile_unit
|
|
; DARWIN-DWARF: DW_TAG_variable
|
|
; DARWIN-DWARF: DW_AT_type [DW_FORM_ref_addr] {{.*}}[[ADDR]])
|
|
|
|
%struct.foo = type { i8 }
|
|
|
|
@f = global %struct.foo zeroinitializer, align 1
|
|
@g = global %struct.foo zeroinitializer, align 1
|
|
|
|
!llvm.dbg.cu = !{!0, !9}
|
|
!llvm.module.flags = !{!14, !15}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.4 (trunk 191799)", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !3, globals: !6, imports: !2)
|
|
!1 = !DIFile(filename: "tu1.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!2 = !{}
|
|
!3 = !{!4}
|
|
!4 = !DICompositeType(tag: DW_TAG_structure_type, name: "foo", line: 1, size: 8, align: 8, file: !5, elements: !2, identifier: "_ZTS3foo")
|
|
!5 = !DIFile(filename: "./hdr.h", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!6 = !{!7}
|
|
!7 = !DIGlobalVariable(name: "f", line: 2, isLocal: false, isDefinition: true, scope: null, file: !8, type: !4, variable: %struct.foo* @f)
|
|
!8 = !DIFile(filename: "tu1.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!9 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.4 (trunk 191799)", isOptimized: false, emissionKind: FullDebug, file: !10, enums: !2, retainedTypes: !3, globals: !11, imports: !2)
|
|
!10 = !DIFile(filename: "tu2.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!11 = !{!12}
|
|
!12 = !DIGlobalVariable(name: "g", line: 2, isLocal: false, isDefinition: true, scope: null, file: !13, type: !4, variable: %struct.foo* @g)
|
|
!13 = !DIFile(filename: "tu2.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!14 = !{i32 2, !"Dwarf Version", i32 2}
|
|
!15 = !{i32 1, !"Debug Info Version", i32 3}
|