mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

This fixes the https://bugs.llvm.org/show_bug.cgi?id=41355. Previously with -r we printed relocation section name instead of the target section name. It was like this: "RELOCATION RECORDS FOR [.rel.text]" Now it is: "RELOCATION RECORDS FOR [.text]" Also when relocation target section has more than one relocation section, we did not combine the output. Now we do. Differential revision: https://reviews.llvm.org/D61312 llvm-svn: 360143
66 lines
2.3 KiB
ArmAsm
66 lines
2.3 KiB
ArmAsm
// RUN: llvm-mc < %s -triple=armv7-linux-gnueabi -filetype=obj -o %t -g -fdebug-compilation-dir=/tmp -dwarf-version 2 2>&1 | FileCheck -check-prefix MESSAGES %s
|
|
// RUN: llvm-dwarfdump -a %t | FileCheck -check-prefix DWARF %s
|
|
// RUN: llvm-objdump -r %t | FileCheck -check-prefix RELOC %s
|
|
|
|
.section .text, "ax"
|
|
a:
|
|
mov r0, r0
|
|
|
|
.section foo, "ax"
|
|
b:
|
|
mov r1, r1
|
|
|
|
// MESSAGES: warning: DWARF2 only supports one section per compilation unit
|
|
|
|
// DWARF: .debug_abbrev contents:
|
|
// DWARF: Abbrev table for offset: 0x00000000
|
|
// DWARF: [1] DW_TAG_compile_unit DW_CHILDREN_yes
|
|
// DWARF: DW_AT_stmt_list DW_FORM_data4
|
|
// DWARF: DW_AT_low_pc DW_FORM_addr
|
|
// DWARF: DW_AT_high_pc DW_FORM_addr
|
|
// DWARF: DW_AT_name DW_FORM_string
|
|
// DWARF: DW_AT_comp_dir DW_FORM_string
|
|
// DWARF: DW_AT_producer DW_FORM_string
|
|
// DWARF: DW_AT_language DW_FORM_data2
|
|
|
|
// DWARF: .debug_info contents:
|
|
// DWARF: DW_TAG_compile_unit
|
|
// DWARF-NOT: DW_TAG_
|
|
// DWARF: DW_AT_low_pc {{.*}}(0x0000000000000000)
|
|
// DWARF: DW_AT_high_pc {{.*}}(0x0000000000000004)
|
|
|
|
// DWARF: DW_TAG_label
|
|
// DWARF-NEXT: DW_AT_name {{.*}}("a")
|
|
|
|
|
|
// DWARF: .debug_aranges contents:
|
|
// DWARF-NEXT: Address Range Header: length = 0x00000024, version = 0x0002, cu_offset = 0x00000000, addr_size = 0x04, seg_size = 0x00
|
|
// DWARF-NEXT: [0x00000000, 0x00000004)
|
|
// DWARF-NEXT: [0x00000000, 0x00000004)
|
|
|
|
// DWARF: .debug_line contents:
|
|
// DWARF: 0x0000000000000000 7 0 1 0 0 is_stmt
|
|
// DWARF-NEXT: 0x0000000000000004 7 0 1 0 0 is_stmt end_sequence
|
|
// DWARF: 0x0000000000000000 11 0 1 0 0 is_stmt
|
|
// DWARF-NEXT: 0x0000000000000004 11 0 1 0 0 is_stmt end_sequence
|
|
|
|
|
|
// DWARF-NOT: .debug_ranges contents:
|
|
// DWARF-NOT: .debug_pubnames contents:
|
|
|
|
|
|
// RELOC: RELOCATION RECORDS FOR [.debug_info]:
|
|
// RELOC-NEXT: 00000006 R_ARM_ABS32 .debug_abbrev
|
|
// RELOC-NEXT: 0000000c R_ARM_ABS32 .debug_line
|
|
// RELOC-NEXT: R_ARM_ABS32 .text
|
|
// RELOC-NEXT: R_ARM_ABS32 .text
|
|
// RELOC-NEXT: R_ARM_ABS32 .text
|
|
// RELOC-NEXT: R_ARM_ABS32 foo
|
|
|
|
// RELOC-NOT: RELOCATION RECORDS FOR [.debug_ranges]:
|
|
|
|
// RELOC: RELOCATION RECORDS FOR [.debug_aranges]:
|
|
// RELOC-NEXT: 00000006 R_ARM_ABS32 .debug_info
|
|
// RELOC-NEXT: 00000010 R_ARM_ABS32 .text
|
|
// RELOC-NEXT: 00000018 R_ARM_ABS32 foo
|