If you are connected to a live process, you just need to look up the
lldb::SBAddress for a load address using the SBTarget
lldb::SBTarget target = ...;
lldb::addr_t load_addr = ...;
lldb::SBAddress addr = target.ResolveLoadAddress (load_addr);
if (addr.GetSection().IsValid())
{
// Load addre
Ok, I am currently in the process of developing Intel Processor trace
support for LLDB , I need the virtual address mappings for the Elf's for
decoding the trace data. I will check if SBSection.GetSectionData will work
or not , Thanks for the info.
On Tue, Mar 8, 2016 at 12:11 PM, Pavel Labath wr
Hi,
could you give us a bit more background about what are you trying to
do? It's hard to answer the question without knowing a bit more...
On 8 March 2016 at 10:42, Ravitheja Addepally via lldb-dev
wrote:
> Hello,
> I wanted to know if there is any existing API or a set of API's that
> co
Hello,
I wanted to know if there is any existing API or a set of API's that
could be used to retrieve the load addresses of the Modules ? secondly Can
we obtain the dumps of the loaded Elf 's like in the remote case
transporting them from the target to the host ?
BR,
A Ravi Theja
__