2013-04-12 12:06:46 +08:00
|
|
|
// RUN: llvm-mc -g -triple i686-pc-linux-gnu %s -filetype=obj -o - | llvm-readobj -r | FileCheck %s
|
2014-04-01 15:35:52 +08:00
|
|
|
// RUN: llvm-mc -g -triple i686-pc-linux-gnu %s -filetype=asm -o - | FileCheck --check-prefix=ASM %s
|
2012-02-29 05:13:05 +08:00
|
|
|
|
|
|
|
|
2012-11-14 17:55:38 +08:00
|
|
|
// Test that on ELF:
|
|
|
|
// 1. the debug info has a relocation to debug_abbrev and one to to debug_line.
|
|
|
|
// 2. the debug_aranges has relocations to text and debug_line.
|
2012-02-29 05:13:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
.text
|
|
|
|
.globl foo
|
|
|
|
.type foo, @function
|
|
|
|
.align 4
|
|
|
|
foo:
|
|
|
|
ret
|
|
|
|
.size foo, .-foo
|
|
|
|
|
2013-04-12 12:06:46 +08:00
|
|
|
// CHECK: Relocations [
|
2013-05-30 11:05:14 +08:00
|
|
|
// CHECK: Section ({{[^ ]+}}) .rel.debug_info {
|
2013-04-12 12:06:46 +08:00
|
|
|
// CHECK-NEXT: 0x6 R_386_32 .debug_abbrev 0x0
|
|
|
|
// CHECK-NEXT: 0xC R_386_32 .debug_line 0x0
|
|
|
|
// CHECK: }
|
2013-05-30 11:05:14 +08:00
|
|
|
// CHECK-NEXT: Section ({{[^ ]+}}) .rel.debug_aranges {
|
2013-04-12 12:06:46 +08:00
|
|
|
// CHECK-NEXT: 0x6 R_386_32 .debug_info 0x0
|
|
|
|
// CHECK-NEXT: 0x10 R_386_32 .text 0x0
|
|
|
|
// CHECK-NEXT: }
|
2014-04-01 15:35:52 +08:00
|
|
|
// CHECK: ]
|
|
|
|
|
|
|
|
// First instance of the section is just to give it a label for debug_aranges to refer to
|
|
|
|
// ASM: .section .debug_info
|
|
|
|
|
|
|
|
// ASM: .section .debug_abbrev
|
|
|
|
// ASM-NEXT: [[ABBREV_LABEL:.Ltmp[0-9]+]]
|
|
|
|
|
|
|
|
// Second instance of the section has the CU
|
|
|
|
// ASM: .section .debug_info
|
|
|
|
// Dwarf version
|
|
|
|
// ASM: .short 2
|
|
|
|
// ASM-NEXT: .long [[ABBREV_LABEL]]
|
|
|
|
// First .byte 1 is the abbreviation number for the compile_unit abbrev
|
|
|
|
// ASM: .byte 1
|
2014-04-01 16:07:52 +08:00
|
|
|
// ASM-NEXT: .long [[LINE_LABEL:.L[a-z0-9]+]]
|
2014-04-01 15:35:52 +08:00
|
|
|
|
|
|
|
// ASM: .section .debug_line
|
|
|
|
// ASM-NEXT: [[LINE_LABEL]]
|
|
|
|
|