| Commit message (Expand) | Author | Age | Files | Lines |
* | Added the ability to specify dumping options (show types, show location, | Greg Clayton | 2011-04-28 | 15 | -328/+292 |
* | Added a new OptionValue subclass for lldb::Format: OptionValueFormat. Added | Greg Clayton | 2011-04-27 | 21 | -251/+1431 |
* | Add a utility function smart_iter() which has knowledge of the getsize and th... | Johnny Chen | 2011-04-27 | 2 | -2/+81 |
* | Use new string formatting operations in assert messages to simplify things. | Johnny Chen | 2011-04-27 | 1 | -2/+2 |
* | Add another test case for lldb_iter(), this time using SBTarget to get at its... | Johnny Chen | 2011-04-27 | 2 | -8/+43 |
* | Removing Greg's working directory & startup arguments from the shared lldb-to... | Jim Ingham | 2011-04-27 | 1 | -10/+5 |
* | Change the rest of lldbutil.py's function names to all lower case formats to ... | Johnny Chen | 2011-04-27 | 13 | -32/+32 |
* | Add a test case for lldbutil.lldb_iter() which returns an iterator object | Johnny Chen | 2011-04-26 | 1 | -0/+64 |
* | Got the EmulateInstruction CFI code a lot closer to producing CFI data. | Greg Clayton | 2011-04-26 | 15 | -917/+1119 |
* | Docstring. | Johnny Chen | 2011-04-26 | 1 | -2/+2 |
* | Docstring. | Johnny Chen | 2011-04-26 | 1 | -2/+2 |
* | Update comment. | Johnny Chen | 2011-04-26 | 1 | -3/+3 |
* | Docstring changees. | Johnny Chen | 2011-04-26 | 2 | -2/+8 |
* | Simplify the parsing of ARCH and Compiler specs. | Johnny Chen | 2011-04-26 | 1 | -10/+2 |
* | Modify EmulateInstructionARM::SetArchitecture() to treat "arm" and "thumb" as... | Johnny Chen | 2011-04-26 | 1 | -0/+2 |
* | Changed the emulate instruction function to take emulate options which | Greg Clayton | 2011-04-26 | 31 | -414/+944 |
* | For lldbutil.py, Change a bunch of function names to all lower case formats t... | Johnny Chen | 2011-04-25 | 9 | -57/+56 |
* | Add 'lldb_private' namespace where necessary to prevent ambiguity and | Caroline Tice | 2011-04-25 | 1 | -3/+3 |
* | Move two functions around. | Johnny Chen | 2011-04-25 | 1 | -40/+36 |
* | Renamed UnwindAssemblyProfiler to UnwindAssembly along with its source files. | Greg Clayton | 2011-04-25 | 16 | -79/+79 |
* | Even more renaming. | Greg Clayton | 2011-04-25 | 4 | -15/+13 |
* | More moving things around for the unwind plan and assembly unwind plug-ins. | Greg Clayton | 2011-04-25 | 10 | -52/+286 |
* | Make SBBreakpointLocation::GetDescription() API to be consistent with SBTarget, | Johnny Chen | 2011-04-25 | 5 | -8/+22 |
* | Put plug-ins into the correct directories as they were incorrectly located | Greg Clayton | 2011-04-25 | 19 | -98/+131 |
* | Fix test failure for '-A i386'. | Johnny Chen | 2011-04-25 | 1 | -1/+1 |
* | Update startstr argument of self.expect() to "a.out`sum(int, int)" to respond... | Johnny Chen | 2011-04-25 | 1 | -1/+1 |
* | Fixed the SymbolContext::DumpStopContext() to correctly indent and dump | Greg Clayton | 2011-04-23 | 24 | -142/+649 |
* | Convert the rest of the test suite to use the lldbutil.get_description() util... | Johnny Chen | 2011-04-23 | 4 | -22/+15 |
* | Add a simple utility function get_description(lldb_obj, option=None) to lldbu... | Johnny Chen | 2011-04-23 | 2 | -7/+26 |
* | Fix up how the ValueObjects manage their life cycle so that you can hand out ... | Jim Ingham | 2011-04-22 | 25 | -210/+528 |
* | Add test cases for the SBTarget.GetDescription() API which takes an extra lld... | Johnny Chen | 2011-04-22 | 1 | -0/+36 |
* | We are only interested in logging the child's output to sys.stdout. | Johnny Chen | 2011-04-22 | 1 | -1/+1 |
* | Fix comment. | Johnny Chen | 2011-04-22 | 1 | -1/+1 |
* | Make test_connect_remote() more robust by waiting on the server ready message | Johnny Chen | 2011-04-22 | 2 | -9/+19 |
* | Reroute the blog link to the LLVM blog site. | Greg Clayton | 2011-04-22 | 2 | -129/+1 |
* | Erase from a string instead of using substr when you don't really need to. | Greg Clayton | 2011-04-22 | 1 | -1/+1 |
* | Fix a typo. | Johnny Chen | 2011-04-22 | 1 | -1/+1 |
* | Remove old emulation test data files. | Caroline Tice | 2011-04-22 | 157 | -20326/+0 |
* | Modify to use the new test files. | Caroline Tice | 2011-04-22 | 1 | -2/+2 |
* | Reformat the emulation test data files. | Caroline Tice | 2011-04-22 | 157 | -0/+17740 |
* | Change code for reading emulation data files to read the new file | Caroline Tice | 2011-04-22 | 9 | -141/+387 |
* | Did some work on the "register read" command to only show the first register | Greg Clayton | 2011-04-22 | 13 | -180/+486 |
* | Make the test case more robust by installing a teardown hook to kill the infe... | Johnny Chen | 2011-04-22 | 1 | -5/+6 |
* | Conditionalize the self.expect("dis -f", ...) test scenario to check on Intel... | Johnny Chen | 2011-04-22 | 1 | -7/+9 |
* | Add a HideStdout() method to our TestBase class and call it from TestAbbrevia... | Johnny Chen | 2011-04-21 | 4 | -13/+34 |
* | Fixed a case where if a function, inlined function, or global with a mangled | Greg Clayton | 2011-04-21 | 1 | -14/+42 |
* | Hopefully fix the last fallout of 'commands' to 'command' change. | Johnny Chen | 2011-04-21 | 1 | -4/+4 |
* | Use self.TraceOn() API. | Johnny Chen | 2011-04-21 | 3 | -4/+14 |
* | Use self.TraceOn() API to decide whether to print debug output. | Johnny Chen | 2011-04-21 | 3 | -16/+11 |
* | More iteration on the new option value stuff. We now define an | Greg Clayton | 2011-04-21 | 2 | -89/+108 |