mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-11 20:50:02 +00:00
[COFF] Consider the ImageBase when reporting section addresses
This lets us reenable the lld test disabled in r243758. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243761 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
26e09e2da5
commit
0229c3b7ad
@ -177,7 +177,7 @@ ErrorOr<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const {
|
||||
if (PE32Header)
|
||||
Result += PE32Header->ImageBase;
|
||||
else if (PE32PlusHeader)
|
||||
Result += PE32Header->ImageBase;
|
||||
Result += PE32PlusHeader->ImageBase;
|
||||
|
||||
return Result;
|
||||
}
|
||||
@ -274,7 +274,15 @@ std::error_code COFFObjectFile::getSectionName(DataRefImpl Ref,
|
||||
|
||||
uint64_t COFFObjectFile::getSectionAddress(DataRefImpl Ref) const {
|
||||
const coff_section *Sec = toSec(Ref);
|
||||
return Sec->VirtualAddress;
|
||||
uint64_t Result = Sec->VirtualAddress;
|
||||
|
||||
// The section VirtualAddress does not include ImageBase, and we want to
|
||||
// return virtual addresses.
|
||||
if (PE32Header)
|
||||
Result += PE32Header->ImageBase;
|
||||
else if (PE32PlusHeader)
|
||||
Result += PE32PlusHeader->ImageBase;
|
||||
return Result;
|
||||
}
|
||||
|
||||
uint64_t COFFObjectFile::getSectionSize(DataRefImpl Ref) const {
|
||||
|
Loading…
Reference in New Issue
Block a user