summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBAddress.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix indentations.Caroline Tice2010-09-201-2/+2
| | | | llvm-svn: 114326
* Add GetDescription() and __repr__ () methods to most API classes, to allowCaroline Tice2010-09-201-0/+22
| | | | | | | "print" from inside Python to print out the objects in a more useful manner. llvm-svn: 114321
* Moved the section load list up into the target so we can use the targetGreg Clayton2010-09-141-2/+2
| | | | | | to symbolicate things without the need for a valid process subclass. llvm-svn: 113895
* Added some missing API for address resolving within a module, and lookingGreg Clayton2010-09-101-0/+20
| | | | | | | | | | up a seciton offset address (SBAddress) within a module that returns a symbol context (SBSymbolContext). Also added a SBSymbolContextList in preparation for adding find/lookup APIs that can return multiple results. Added a lookup example code that shows how to do address lookups. llvm-svn: 113599
* Very large changes that were needed in order to allow multiple connectionsGreg Clayton2010-06-231-21/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to the debugger from GUI windows. Previously there was one global debugger instance that could be accessed that had its own command interpreter and current state (current target/process/thread/frame). When a GUI debugger was attached, if it opened more than one window that each had a console window, there were issues where the last one to setup the global debugger object won and got control of the debugger. To avoid this we now create instances of the lldb_private::Debugger that each has its own state: - target list for targets the debugger instance owns - current process/thread/frame - its own command interpreter - its own input, output and error file handles to avoid conflicts - its own input reader stack So now clients should call: SBDebugger::Initialize(); // (static function) SBDebugger debugger (SBDebugger::Create()); // Use which ever file handles you wish debugger.SetErrorFileHandle (stderr, false); debugger.SetOutputFileHandle (stdout, false); debugger.SetInputFileHandle (stdin, true); // main loop SBDebugger::Terminate(); // (static function) SBDebugger::Initialize() and SBDebugger::Terminate() are ref counted to ensure nothing gets destroyed too early when multiple clients might be attached. Cleaned up the command interpreter and the CommandObject and all subclasses to take more appropriate arguments. llvm-svn: 106615
* Initial checkin of lldb code from internal Apple repo.Chris Lattner2010-06-081-0/+118
llvm-svn: 105619
OpenPOWER on IntegriCloud