mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
2780d34fe1
This patch adds printing for DW_AT_type DIEs like it is already the case for DW_AT_specification DIEs. This is a rather naive approach and only a start. We should have pretty printers for different languages. Recommit after being reverted in r315299. Differential revision: https://reviews.llvm.org/D36993 llvm-svn: 315316
94 lines
4.6 KiB
LLVM
94 lines
4.6 KiB
LLVM
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-linux-gnu < %s -dwarf-version 2 | FileCheck -check-prefixes=CHECK,ELF-ASM %s
|
|
; RUN: llc -filetype=obj -O0 %s -mtriple=x86_64-linux-gnu -o %t-2 -dwarf-version 2
|
|
; RUN: llvm-dwarfdump -v %t-2 | FileCheck %s -check-prefix=CHECK-DWARF
|
|
; RUN: llc -filetype=obj -O0 %s -mtriple=x86_64-linux-gnu -o %t-4 -dwarf-version 2
|
|
; RUN: llvm-dwarfdump -v %t-4 | FileCheck %s -check-prefix=CHECK-DWARF
|
|
|
|
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-apple-darwin < %s -dwarf-version 2 | FileCheck -check-prefixes=CHECK,DARWIN-ASM2 %s
|
|
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-apple-darwin < %s -dwarf-version 4 | FileCheck -check-prefixes=CHECK,DARWIN-ASM4 %s
|
|
; RUN: llc -filetype=obj %s -mtriple=x86_64-apple-darwin -o %t2-2 -dwarf-version 2
|
|
; RUN: llvm-dwarfdump -v %t2-2 | FileCheck %s -check-prefix=CHECK-DWARF
|
|
; RUN: llc -filetype=obj %s -mtriple=x86_64-apple-darwin -o %t2-4 -dwarf-version 4
|
|
; RUN: llvm-dwarfdump -v %t2-4 | FileCheck %s -check-prefix=CHECK-DWARF
|
|
|
|
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-pc-win32 < %s -dwarf-version 2 | FileCheck -check-prefixes=CHECK,COFF-ASM %s
|
|
; RUN: llc -filetype=asm -O0 -mtriple=x86_64-pc-win32 < %s -dwarf-version 4 | FileCheck -check-prefixes=CHECK,COFF-ASM %s
|
|
; RUN: llc -filetype=obj -O0 %s -mtriple=x86_64-pc-win32 -o %t3-2 -dwarf-version 2
|
|
; RUN: llvm-dwarfdump -v %t3-2 | FileCheck %s -check-prefix=CHECK-DWARF2
|
|
; RUN: llc -filetype=obj -O0 %s -mtriple=x86_64-pc-win32 -o %t3-4 -dwarf-version 4
|
|
; RUN: llvm-dwarfdump -v %t3-4 | FileCheck %s -check-prefix=CHECK-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
|
|
; ELF-ASM: .long [[TYPE:.*]] # DW_AT_type
|
|
; DARWIN-ASM2: .long [[TYPE:.*]] ## DW_AT_type
|
|
; DARWIN-ASM4: .long [[TYPE:.*]] ## DW_AT_type
|
|
; COFF-ASM: .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.
|
|
; and test that we don't create the labels to emit a correct COFF relocation
|
|
; ELF-ASM: .quad .debug_info+[[TYPE]] # DW_AT_type
|
|
; COFF-ASM: .secrel32 .Lsection_info+[[TYPE]] # DW_AT_type
|
|
; DARWIN-ASM2: .quad [[TYPE]] ## DW_AT_type
|
|
; DARWIN-ASM4: .long [[TYPE]] ## DW_AT_type
|
|
; CHECK-NOT: DW_TAG_structure_type
|
|
; CHECK: .section
|
|
|
|
; 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]]
|
|
|
|
; CHECK-DWARF2: DW_TAG_compile_unit
|
|
; CHECK-DWARF2: DW_TAG_variable
|
|
; CHECK-DWARF2: DW_AT_type [DW_FORM_ref4] {{.*}} => {[[ADDR:.*]]}
|
|
; CHECK-DWARF2: [[ADDR]]: DW_TAG_structure_type
|
|
|
|
source_filename = "test/DebugInfo/X86/ref_addr_relocation.ll"
|
|
|
|
%struct.foo = type { i8 }
|
|
|
|
@f = global %struct.foo zeroinitializer, align 1, !dbg !0
|
|
@g = global %struct.foo zeroinitializer, align 1, !dbg !6
|
|
|
|
!llvm.dbg.cu = !{!9, !12}
|
|
!llvm.module.flags = !{!14, !15}
|
|
|
|
!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
|
|
!1 = !DIGlobalVariable(name: "f", scope: null, file: !2, line: 2, type: !3, isLocal: false, isDefinition: true)
|
|
!2 = !DIFile(filename: "tu1.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!3 = !DICompositeType(tag: DW_TAG_structure_type, name: "foo", file: !4, line: 1, size: 8, align: 8, elements: !5, identifier: "_ZTS3foo")
|
|
!4 = !DIFile(filename: "./hdr.h", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!5 = !{}
|
|
!6 = !DIGlobalVariableExpression(var: !7, expr: !DIExpression())
|
|
!7 = !DIGlobalVariable(name: "g", scope: null, file: !8, line: 2, type: !3, isLocal: false, isDefinition: true)
|
|
!8 = !DIFile(filename: "tu2.cpp", directory: "/Users/manmanren/test-Nov/type_unique_air/ref_addr")
|
|
!9 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !2, producer: "clang version 3.4 (trunk 191799)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !5, retainedTypes: !10, globals: !11, imports: !5)
|
|
!10 = !{!3}
|
|
!11 = !{!0}
|
|
!12 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !8, producer: "clang version 3.4 (trunk 191799)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !5, retainedTypes: !10, globals: !13, imports: !5)
|
|
!13 = !{!6}
|
|
!14 = !{i32 2, !"Dwarf Version", i32 2}
|
|
!15 = !{i32 1, !"Debug Info Version", i32 3}
|
|
|