aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Object/ObjectFile.h
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2012-09-21 07:08:08 +0000
committerAlexey Samsonov <samsonov@google.com>2012-09-21 07:08:08 +0000
commit01fa41a106ed0ff86c3b9ffe0843679211bf487c (patch)
tree5156f0942f736a79dfdf9e5cf642e2168b0d1278 /include/llvm/Object/ObjectFile.h
parentf17422181fed6c5c73a27622be012c44f93cde4e (diff)
downloadexternal_llvm-01fa41a106ed0ff86c3b9ffe0843679211bf487c.zip
external_llvm-01fa41a106ed0ff86c3b9ffe0843679211bf487c.tar.gz
external_llvm-01fa41a106ed0ff86c3b9ffe0843679211bf487c.tar.bz2
Fix SymbolRef::getAddress implementation for ELF. The 'value' field in symbol table entry should be treated differently for relocatable and relocated files. This patch fixes symbol addresses printed by llvm-nm for executables and shared objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164365 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/ObjectFile.h')
-rw-r--r--include/llvm/Object/ObjectFile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Object/ObjectFile.h b/include/llvm/Object/ObjectFile.h
index da4cef2..1709974 100644
--- a/include/llvm/Object/ObjectFile.h
+++ b/include/llvm/Object/ObjectFile.h
@@ -212,6 +212,8 @@ public:
error_code getNext(SymbolRef &Result) const;
error_code getName(StringRef &Result) const;
+ /// Returns the symbol virtual address (i.e. address at which it will be
+ /// mapped).
error_code getAddress(uint64_t &Result) const;
error_code getFileOffset(uint64_t &Result) const;
error_code getSize(uint64_t &Result) const;