llvm-project/lldb/scripts/Python/interface
Greg Clayton 00e6fbfee9 Make the SBAddress class easier to use when using the public
API. 

SBTarget changes include changing:

bool
SBTarget::ResolveLoadAddress (lldb::addr_t vm_addr, 
                              lldb::SBAddress& addr);

to be:

lldb::SBAddress
SBTarget::ResolveLoadAddress (lldb::addr_t vm_addr);

SBAddress can how contruct itself using a load address and a target 
which can be used to resolve the address:

SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target);

This will actually just call the new SetLoadAddress accessor:

void
SetLoadAddress (lldb::addr_t load_addr, 
                lldb::SBTarget &target);

This function will always succeed in making a SBAddress object
that can be used in API calls (even if "target" isn't valid).
If "target" is valid and there are sections currently loaded,
then it will resolve the address to a section offset address if
it can. Else an address with a NULL section and an offset that is
the "load_addr" that was passed in. We do this because a load address
might be from the heap or stack.

llvm-svn: 135770
2011-07-22 16:46:35 +00:00
..
SBAddress.i Make the SBAddress class easier to use when using the public 2011-07-22 16:46:35 +00:00
SBBlock.i Add SWIG Python interface files for SBAddress, SBBlock, SBBreakpoint, and SBBreakpointLocation. 2011-07-18 21:30:21 +00:00
SBBreakpoint.i Add SWIG Python interface files for SBLineEntry, SBListener, and SBModule. 2011-07-18 23:11:07 +00:00
SBBreakpointLocation.i Add SWIG Python interface files for SBAddress, SBBlock, SBBreakpoint, and SBBreakpointLocation. 2011-07-18 21:30:21 +00:00
SBBroadcaster.i Add docstring for SBBroadcaster class. 2011-07-20 22:29:58 +00:00
SBCommandInterpreter.i Add docstring for SBCommandInterpreter class. 2011-07-20 22:50:58 +00:00
SBCommandReturnObject.i Add docstring for SBCommandReturnObject class. 2011-07-21 00:32:12 +00:00
SBCommunication.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBCompileUnit.i Add SWIG Python interface files for SBDebugger, SBCompileUnit, and SBEvent. 2011-07-18 22:11:53 +00:00
SBDebugger.i Add SWIG Python interface files for SBDebugger, SBCompileUnit, and SBEvent. 2011-07-18 22:11:53 +00:00
SBError.i Add some docstrings for SBError class. 2011-07-20 00:23:11 +00:00
SBEvent.i Add SWIG Python interface files for SBDebugger, SBCompileUnit, and SBEvent. 2011-07-18 22:11:53 +00:00
SBFileSpec.i Add some docstrings for SBFileSpec class. 2011-07-20 01:06:37 +00:00
SBFrame.i Add SWIG interface files for SBSymbol, SBSymbolContext, and SBSymbolContextList. 2011-07-19 01:07:06 +00:00
SBFunction.i Missed the interface file for SBFunction in the previous checkin. 2011-07-18 22:15:37 +00:00
SBHostOS.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBInputReader.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBInstruction.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBInstructionList.i Change docstring wording: from 'method' to 'function'. 2011-07-21 00:50:54 +00:00
SBLineEntry.i Add SWIG Python interface files for SBLineEntry, SBListener, and SBModule. 2011-07-18 23:11:07 +00:00
SBListener.i Add SWIG Python interface files for SBLineEntry, SBListener, and SBModule. 2011-07-18 23:11:07 +00:00
SBModule.i Add SWIG Python interface files for SBLineEntry, SBListener, and SBModule. 2011-07-18 23:11:07 +00:00
SBProcess.i Add SWIG Python interface files for SBProcess, SBThread, and SBFrame. 2011-07-18 20:13:38 +00:00
SBSourceManager.i Add some docstrings for SBSourceManager class. 2011-07-19 23:35:10 +00:00
SBStream.i Add some docstrings for SBStream class. 2011-07-19 23:24:36 +00:00
SBStringList.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBSymbol.i Add SWIG interface files for SBSymbol, SBSymbolContext, and SBSymbolContextList. 2011-07-19 01:07:06 +00:00
SBSymbolContext.i Add SWIG interface files for SBSymbol, SBSymbolContext, and SBSymbolContextList. 2011-07-19 01:07:06 +00:00
SBSymbolContextList.i Add SWIG interface files for SBSymbol, SBSymbolContext, and SBSymbolContextList. 2011-07-19 01:07:06 +00:00
SBTarget.i Make the SBAddress class easier to use when using the public 2011-07-22 16:46:35 +00:00
SBThread.i Add SWIG Python interface files for SBProcess, SBThread, and SBFrame. 2011-07-18 20:13:38 +00:00
SBType.i Move the rest of the SB headers to interface files. 2011-07-19 22:41:47 +00:00
SBValue.i Add SWIG Python interface files for SBProcess, SBThread, and SBFrame. 2011-07-18 20:13:38 +00:00
SBValueList.i Add SWIG Python interface files for SBProcess, SBThread, and SBFrame. 2011-07-18 20:13:38 +00:00