diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-02 21:26:06 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2017-02-02 21:26:06 +0000 |
| commit | 13a79bbfe583e1d8cc85d241b580907260065eb8 (patch) | |
| tree | 538d692317f9990cae5ae6bb23bc23fd3c5803ef /llvm/test/DebugInfo | |
| parent | bb8dcc6aec4071c114ed4205f01c9163dbd1bf00 (diff) | |
| download | bcm5719-llvm-13a79bbfe583e1d8cc85d241b580907260065eb8.tar.gz bcm5719-llvm-13a79bbfe583e1d8cc85d241b580907260065eb8.zip | |
Change how we handle section symbols on ELF.
On ELF every section can have a corresponding section symbol. When in
an assembly file we have
.quad .text
the '.text' refers to that symbol.
The way we used to handle them is to leave .text an undefined symbol
until the very end when the object writer would map them to the
actual section symbol.
The problem with that is that anything before the end would see an
undefined symbol. This could result in bad diagnostics
(test/MC/AArch64/label-arithmetic-diags-elf.s), or incorrect results
when using the asm streamer (est/MC/Mips/expansion-jal-sym-pic.s).
Fixing this will also allow using the section symbol earlier for
setting sh_link of SHF_METADATA sections.
This patch includes a few hacks to avoid changing our behaviour when
handling conflicts between section symbols and other symbols. I
reported pr31850 to track that.
llvm-svn: 293936
Diffstat (limited to 'llvm/test/DebugInfo')
| -rw-r--r-- | llvm/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll | 2 | ||||
| -rw-r--r-- | llvm/test/DebugInfo/Generic/array.ll | 2 | ||||
| -rw-r--r-- | llvm/test/DebugInfo/Mips/InlinedFnLocalVar.ll | 2 | ||||
| -rw-r--r-- | llvm/test/DebugInfo/PowerPC/tls-fission.ll | 3 | ||||
| -rw-r--r-- | llvm/test/DebugInfo/X86/ref_addr_relocation.ll | 2 | ||||
| -rw-r--r-- | llvm/test/DebugInfo/X86/tls.ll | 1 |
6 files changed, 5 insertions, 7 deletions
diff --git a/llvm/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll b/llvm/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll index 31d3487db7a..11c78ef0351 100644 --- a/llvm/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll +++ b/llvm/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll @@ -1,7 +1,7 @@ ; RUN: %llc_dwarf -O2 %s -o - | FileCheck %s ; Check struct X for dead variable xyz from inlined function foo. -; CHECK: section_info +; CHECK: .section .debug_info,"",@progbits ; CHECK: DW_TAG_structure_type ; CHECK-NEXT: DW_AT_name diff --git a/llvm/test/DebugInfo/Generic/array.ll b/llvm/test/DebugInfo/Generic/array.ll index 7b4ff7cb805..ed858ee6197 100644 --- a/llvm/test/DebugInfo/Generic/array.ll +++ b/llvm/test/DebugInfo/Generic/array.ll @@ -25,7 +25,7 @@ declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone !7 = distinct !DILexicalBlock(line: 3, column: 12, file: !14, scope: !0) !8 = !DICompositeType(tag: DW_TAG_array_type, align: 32, file: !14, scope: !2, baseType: !5, elements: !9) !9 = !{!10} -;CHECK: section_info: +;CHECK: .section .debug_info,"",@progbits ;CHECK: DW_TAG_subrange_type ;CHECK-NEXT: DW_AT_type ;CHECK-NOT: DW_AT_lower_bound diff --git a/llvm/test/DebugInfo/Mips/InlinedFnLocalVar.ll b/llvm/test/DebugInfo/Mips/InlinedFnLocalVar.ll index 51b319c3a5b..3ffc6451d8f 100644 --- a/llvm/test/DebugInfo/Mips/InlinedFnLocalVar.ll +++ b/llvm/test/DebugInfo/Mips/InlinedFnLocalVar.ll @@ -1,7 +1,7 @@ ; RUN: llc -mtriple mips-linux-gnu -O2 %s -o - | FileCheck %s ; Check struct X for dead variable xyz from inlined function foo. -; CHECK: section_info +; CHECK: .section .debug_info,"",@progbits ; CHECK: DW_TAG_structure_type ; CHECK-NEXT: info_string diff --git a/llvm/test/DebugInfo/PowerPC/tls-fission.ll b/llvm/test/DebugInfo/PowerPC/tls-fission.ll index 358fd5b32c4..f456cbcb714 100644 --- a/llvm/test/DebugInfo/PowerPC/tls-fission.ll +++ b/llvm/test/DebugInfo/PowerPC/tls-fission.ll @@ -13,8 +13,7 @@ ; DW_OP_GNU_push_tls_address ; CHECK-NEXT: .byte 224 ; check that the expected TLS address description is the first thing in the debug_addr section -; CHECK: debug_addr -; CHECK-NEXT: .Laddr_sec: +; CHECK: .section .debug_addr,"",@progbits ; CHECK-NEXT: .quad tls@DTPREL+32768 source_filename = "test/DebugInfo/PowerPC/tls-fission.ll" diff --git a/llvm/test/DebugInfo/X86/ref_addr_relocation.ll b/llvm/test/DebugInfo/X86/ref_addr_relocation.ll index 58fc236e6bb..373ccfd2dea 100644 --- a/llvm/test/DebugInfo/X86/ref_addr_relocation.ll +++ b/llvm/test/DebugInfo/X86/ref_addr_relocation.ll @@ -46,7 +46,7 @@ ; 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 .Lsection_info+[[TYPE]] # DW_AT_type +; 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 diff --git a/llvm/test/DebugInfo/X86/tls.ll b/llvm/test/DebugInfo/X86/tls.ll index 19570d0e0c0..b6ea213dd74 100644 --- a/llvm/test/DebugInfo/X86/tls.ll +++ b/llvm/test/DebugInfo/X86/tls.ll @@ -78,7 +78,6 @@ ; check that the expected TLS address description is the first thing in the debug_addr section ; FISSION: .section .debug_addr -; FISSION: addr_sec: ; FISSION-NEXT: .quad tls@DTPOFF ; FISSION-NEXT: .quad glbl ; FISSION-NOT: .quad glbl |

