mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
e29c01f126
This fixes a bug in the line info handling in the dwarf code, based on a problem I when implementing RelocVisitor support for MachO. Since addr+size will give the first address past the end of the function, we need to back up one line table entry. Fix this by looking up the end_addr-1, which is the last address in the range. Note that this also removes a duplicate output from the llvm-rtdyld line table dump. The relevant line is the end_sequence one in the line table and has an offset of the first address part the end of the range and hence should not be included. Also factor out the common functionality into a separate function. This comes up on MachO much more than on ELF, since MachO doesn't store the symbol size separately, hence making said situation always occur. Differential Revision: http://reviews.llvm.org/D9925 llvm-svn: 238699
44 lines
2.1 KiB
Plaintext
44 lines
2.1 KiB
Plaintext
# Check that relocations get applied
|
|
RUN: llvm-dwarfdump %p/Inputs/test-simple-macho.o | FileCheck %s
|
|
RUN: llvm-dwarfdump %p/Inputs/test-multiple-macho.o | FileCheck %s
|
|
RUN: llvm-rtdyld -printline %p/Inputs/test-multiple-macho.o | FileCheck %s
|
|
RUN: llvm-rtdyld -printobjline %p/Inputs/test-multiple-macho.o | FileCheck %s
|
|
|
|
CHECK-NOT: error: failed to compute relocation: X86_64_RELOC_UNSIGNED
|
|
|
|
# Check that relocations get applied correctly
|
|
RUN: llvm-rtdyld -printobjline %p/Inputs/test-simple-macho.o \
|
|
RUN: | FileCheck %s -check-prefix TEST_SIMPLE
|
|
RUN: llvm-rtdyld -printline %p/Inputs/test-simple-macho.o \
|
|
RUN: | FileCheck %s -check-prefix TEST_SIMPLE
|
|
RUN: llvm-rtdyld -printobjline %p/Inputs/test-multiple-macho.o \
|
|
RUN: | FileCheck %s -check-prefix TEST_MULTIPLE
|
|
RUN: llvm-rtdyld -printline %p/Inputs/test-multiple-macho.o \
|
|
RUN: | FileCheck %s -check-prefix TEST_MULTIPLE
|
|
|
|
TEST_SIMPLE: Function: _foo, Size = 11
|
|
TEST_SIMPLE-NEXT: Line info @ 0: simple.c, line:1
|
|
TEST_SIMPLE-NEXT: Line info @ 7: simple.c, line:2
|
|
TEST_SIMPLE-NOT: Line info @ 11: simple.c, line:2
|
|
|
|
TEST_MULTIPLE: Function: _bar, Size = 48
|
|
TEST_MULTIPLE-NEXT: Line info @ 0: multiple.c, line:5
|
|
TEST_MULTIPLE-NEXT: Line info @ 7: multiple.c, line:6
|
|
TEST_MULTIPLE-NEXT: Line info @ 16: multiple.c, line:9
|
|
TEST_MULTIPLE-NEXT: Line info @ 21: multiple.c, line:9
|
|
TEST_MULTIPLE-NEXT: Line info @ 26: multiple.c, line:7
|
|
TEST_MULTIPLE-NEXT: Line info @ 33: multiple.c, line:10
|
|
TEST_MULTIPLE-NOT: Line info @ 48: multiple.c, line:12
|
|
TEST_MULTIPLE-NEXT: Function: _foo, Size = 16
|
|
TEST_MULTIPLE-NEXT: Line info @ 0: multiple.c, line:1
|
|
TEST_MULTIPLE-NEXT: Line info @ 7: multiple.c, line:2
|
|
TEST_MULTIPLE-NOT: Line info @ 16: multiple.c, line:5
|
|
TEST_MULTIPLE-NEXT: Function: _fubar, Size = 46
|
|
TEST_MULTIPLE-NEXT: Line info @ 0: multiple.c, line:12
|
|
TEST_MULTIPLE-NEXT: Line info @ 7: multiple.c, line:13
|
|
TEST_MULTIPLE-NEXT: Line info @ 12: multiple.c, line:17
|
|
TEST_MULTIPLE-NEXT: Line info @ 25: multiple.c, line:15
|
|
TEST_MULTIPLE-NEXT: Line info @ 34: multiple.c, line:19
|
|
TEST_MULTIPLE-NEXT: Line info @ 41: multiple.c, line:21
|
|
TEST_MULTIPLE-NOT: Line info @ 46: multiple.c, line:21
|