[COFF] Return symbol VAs instead of RVAs for PE files

This makes llvm-nm consistent with binutils nm on executables and DLLs.
For a vanilla hello world executable, the address of main should include
the default image base of 0x400000.

llvm-svn: 243755
This commit is contained in:
Reid Kleckner
2015-07-31 16:14:22 +00:00
parent bb42b03021
commit 47ea9ece1a
4 changed files with 39 additions and 0 deletions

View File

@@ -171,6 +171,14 @@ ErrorOr<uint64_t> COFFObjectFile::getSymbolAddress(DataRefImpl Ref) const {
if (std::error_code EC = getSection(SectionNumber, Section))
return EC;
Result += Section->VirtualAddress;
// The section VirtualAddress does not include ImageBase, and we want to
// return virtual addresses.
if (PE32Header)
Result += PE32Header->ImageBase;
else if (PE32PlusHeader)
Result += PE32Header->ImageBase;
return Result;
}