Re: [Lldb-commits] [PATCH] D17450: Add support for handling absolute symbols in ELF

2016-02-25 Thread Tamas Berghammer via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL261859: Add support for handling absolute symbols in ELF (authored by tberghammer). Changed prior to commit: http://reviews.llvm.org/D17450?vs=48947&id=49036#toc Repository: rL LLVM http://reviews.l

Re: [Lldb-commits] [PATCH] D17450: Add support for handling absolute symbols in ELF

2016-02-24 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. In http://reviews.llvm.org/D17450#357477, @clayborg wrote: > We should probably make it such that if a section has the type > eSectionTypeAbsoluteAddress that we do the right thing inside the following > functions: > Section::GetLoadBaseAddress(...); > Section::Sl

Re: [Lldb-commits] [PATCH] D17450: Add support for handling absolute symbols in ELF

2016-02-24 Thread Tamas Berghammer via lldb-commits
tberghammer updated this revision to Diff 48947. tberghammer marked an inline comment as done. http://reviews.llvm.org/D17450 Files: include/lldb/lldb-enumerations.h source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp source/Plugins/ObjectFile/Mac

Re: [Lldb-commits] [PATCH] D17450: Add support for handling absolute symbols in ELF

2016-02-19 Thread Greg Clayton via lldb-commits
clayborg requested changes to this revision. clayborg added a comment. This revision now requires changes to proceed. We should probably make it such that if a section has the type eSectionTypeAbsoluteAddress that we do the right thing inside the following functions: Section::GetLoadBaseAddress

[Lldb-commits] [PATCH] D17450: Add support for handling absolute symbols in ELF

2016-02-19 Thread Tamas Berghammer via lldb-commits
tberghammer created this revision. tberghammer added reviewers: ovyalov, clayborg. tberghammer added a subscriber: lldb-commits. Add support for handling absolute symbols in ELF Most address represented in lldb as section plus offset and handling of absolute addresses is problematic in several lo