1. f960048 Can't just call "rand" to get a random port, 'cause then you'll get the same sequence in two lldb's. This makes running lldb on lldb not work very well. by Jim Ingham · 13 years ago
  2. d05b490 by Caroline Tice · 13 years ago
  3. 89c6d58 by Caroline Tice · 13 years ago
  4. 9aaceb1 Add the ability to invoke lldb's disassemble command on the symbols digested from by Johnny Chen · 13 years ago
  5. 2efc7c6 Doc string change. by Johnny Chen · 13 years ago
  6. afd1904 Add an initial version of lldb-disasm.py script whose purpose is to iterate through by Johnny Chen · 13 years ago
  7. bb48f0b Fix single quote characters throughout the ARM emulation stuff. by Caroline Tice · 13 years ago
  8. 17842ec Add a missing include required on Linux by Stephen Wilson · 13 years ago
  9. 889fbd0 Added the ability to get the min and max instruction byte size for by Greg Clayton · 13 years ago
  10. e6c6f49 Updated LLDB to use a recent LLVM/Clang, pulling by Sean Callanan · 13 years ago
  11. f4aad90 linux: minor updates to account for recent namespace changes by Stephen Wilson · 13 years ago
  12. 3967cef Add PlatformGDBServer and ProcessGDBRemote to the build system. by Stephen Wilson · 13 years ago
  13. ba083b2 Add a missing include required on Linux by Stephen Wilson · 13 years ago
  14. bbedb7b Revert the scheme. by Jim Ingham · 13 years ago
  15. 50daf77 Simple fixes for the gdb remote process plugin on Linux. by Stephen Wilson · 13 years ago
  16. 149731c Cleaned up the Disassembler code a bit more. You can now request a disassembler by Greg Clayton · 13 years ago
  17. 7bc3908 Made the lldb_private::Opcode struct into a real boy... I mean class. by Greg Clayton · 13 years ago
  18. b344843 Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 13 years ago
  19. 3d79d34 by Caroline Tice · 13 years ago
  20. baf1f64 by Caroline Tice · 13 years ago
  21. 15f2d43 Switch the "print" alias to "expression --". by Jim Ingham · 13 years ago
  22. 58e26e0 Did a lot more work on abtracting and organizing the platforms. by Greg Clayton · 13 years ago
  23. b577284 Add missing cases to switch statements & remove 'default'. by Caroline Tice · 13 years ago
  24. 6460790 Silence clang warnings. by Johnny Chen · 13 years ago
  25. 0bfa859 Turns out that the test failure wrt: by Johnny Chen · 13 years ago
  26. d1fbbb4 linux: simple support for process input and output by Stephen Wilson · 13 years ago
  27. 47f0785 Eliminate a pile of "type qualifiers ignored on function return type" warnings. by Stephen Wilson · 13 years ago
  28. 17ddd25 Update autogen'd LLDB_vers.c. by Stephen Wilson · 13 years ago
  29. 4b274e8 Add a missing include needed on Linux and remove a trailing comma. by Stephen Wilson · 13 years ago
  30. 76fd5dd linux: add Host/linux subdirectory by Stephen Wilson · 13 years ago
  31. 1201317 Checked in a modified test script to go with rdar://problem/9173060: by Johnny Chen · 13 years ago
  32. 3600d49 linux: PlatformLinux improvements by Stephen Wilson · 13 years ago
  33. 87d939a Fix test suite failures by modifying the script for testing abbreviations. by Johnny Chen · 13 years ago
  34. 562ed0e Fix compile warnings wrt LLDBWrapPython.cpp. by Johnny Chen · 13 years ago
  35. cb8977d Added new platform commands: by Greg Clayton · 13 years ago
  36. 41d8a5c Added Mac OS X build instructions and included the Linux build instructions by Greg Clayton · 13 years ago
  37. e221288 by Caroline Tice · 13 years ago
  38. 4d3a89e Added AVX support to the Intel portion of debugserver. AVX by Sean Callanan · 13 years ago
  39. 61d043b Split the GDBRemoteCommunication class into three classes: by Greg Clayton · 13 years ago
  40. e56493f Add "up" and "down" aliases. by Jim Ingham · 13 years ago
  41. 7a4c8ea Clean up a few places where SetOptionValue was using the global optarg, rather than the option_arg value that was passed in. by Jim Ingham · 13 years ago
  42. aa3e3e1 Add the ability to disassemble "n" instructions from the current PC, or the first "n" instructions in a function. by Jim Ingham · 13 years ago
  43. c54840c Tidy up the stop hook printing when only one thread matches, and there is only one hook. by Jim Ingham · 13 years ago
  44. b622560 Added missing files. by Greg Clayton · 13 years ago
  45. e86cbb9 Abtracted the innards of lldb-core away from the SB interface. There was some by Greg Clayton · 13 years ago
  46. c4a2344 Add options to allow for specifying an option string when spawning gdb and for executing by Johnny Chen · 13 years ago
  47. 1cd3c80 Fix a typo in the message string. by Johnny Chen · 13 years ago
  48. a733c04 Added real user/group id, effective user/group id, and parent by Greg Clayton · 13 years ago
  49. 091e0fa Move the building of llvm/clang and the swig wrappers into the lldb-core target. by Greg Clayton · 13 years ago
  50. ce16665 Fixed a warning with gcc 4.2 when the Xcode project falls back to the by Greg Clayton · 13 years ago
  51. 4fdf760 Split all of the core of LLDB.framework/lldb.so into a by Greg Clayton · 13 years ago
  52. ce1eefd Modify disasm.py to better deal with the objc method name which has ':' in them. by Johnny Chen · 13 years ago
  53. b1888f2 Added more platform support. There are now some new commands: by Greg Clayton · 13 years ago
  54. 10ff991 Add cases to test that two template instantiations of std::vector<long> and std::vector<short> by Johnny Chen · 13 years ago
  55. 3e40797 by Caroline Tice · 13 years ago
  56. 70c5562 Relax the constraint on the types of ValueObjects that we'll by default try the by Jim Ingham · 13 years ago
  57. 8d681f5 by Caroline Tice · 13 years ago
  58. e258440 Fix a problem where we were looking up the class pointer in the {class/sel -> implementation} cache for a objc_msgSendSuper call - where we should have looked up the class's super-class. by Jim Ingham · 13 years ago
  59. 53bfd06 Get ObjC stepping working again when the process is not the default host architecture. by Jim Ingham · 13 years ago
  60. 0251bc7 Tidy up the input file given to 'llvm-mc -disassemble' and also append the gdb by Johnny Chen · 13 years ago
  61. 9c407f5 Add a Python script to take an executable, run gdb to disassemble a function, by Johnny Chen · 13 years ago
  62. d793146 As a simple measure, output the lldb version and the svn info for by Johnny Chen · 13 years ago
  63. 8ce836d by Caroline Tice · 13 years ago
  64. 2b03ed8 by Caroline Tice · 13 years ago
  65. 1d080bd Updated LLVM/Clang to the latest release, to pick up AVX disassembly support. by Sean Callanan · 13 years ago
  66. 04fdd67 Now that we have the debug map issues fixed, change the Xcode project to by Greg Clayton · 13 years ago
  67. f1b73af Added a fix that should help incorrect type uniquing. There was an issue by Greg Clayton · 13 years ago
  68. 06cfe2e Make the first vector of "long" instead of "int" so we can tell the difference by Greg Clayton · 13 years ago
  69. 13acfc9 Added a test case for unique types. In the test case there are two std::vector by Greg Clayton · 13 years ago
  70. dd506e1 Added a fix to not re-use object files when doing DWARF with debug map. by Greg Clayton · 13 years ago
  71. 279584c Updated to LLVM/Clang revision 127600. by Sean Callanan · 13 years ago
  72. 52ce561 Fix makefile builds when llvm is configured with -enable-shared. by Stephen Wilson · 13 years ago
  73. f6aaf7d Turn labels into actual switch cases. by Benjamin Kramer · 13 years ago
  74. 015eb23 Add a missing include. by Stephen Wilson · 13 years ago
  75. 7304147 Add a test directory stop-hook to test the newly added "target stop-hook" command. by Johnny Chen · 13 years ago
  76. 8a3c043 Add pexpect-2.4 (a pure Python module for controlling and automating other programs) to the test directory. by Johnny Chen · 13 years ago
  77. 4f52c40 Discover the 'lldb' executable in the setUp() hook of the base test class. by Johnny Chen · 13 years ago
  78. 26901c8 Add a mechanism to discover the full path of the 'lldb' program into the test driver. by Johnny Chen · 13 years ago
  79. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 13 years ago
  80. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 13 years ago
  81. 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 13 years ago
  82. 8053904 Declare some const functions as const. by Jim Ingham · 13 years ago
  83. a526823 Fix a typo in a comment. by Jim Ingham · 13 years ago
  84. 8d237a2 Add test cases to exercise the SBThread.GetProcess() API. We launch the process using the by Johnny Chen · 13 years ago
  85. 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 13 years ago
  86. ce207c1 by Caroline Tice · 13 years ago
  87. 4a384a9 Add a test case test_run_to_address() to exercise the SBThread.RunToAddress(lldb::addr_t addr) API. by Johnny Chen · 13 years ago
  88. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 13 years ago
  89. 650fef9 Add test cases to TestThreadAPI.py to exercise SBThread.StepOver() by stopping at a breakpoint, by Johnny Chen · 13 years ago
  90. 912675f by Caroline Tice · 13 years ago
  91. 2a45681 by Caroline Tice · 13 years ago
  92. d09dcac Test cleanup. Check for the full caller symbol of malloc -- b(int). by Johnny Chen · 13 years ago
  93. ef6635b Add Makefile support for the Platform plugins. by Stephen Wilson · 13 years ago
  94. c97bfdb Centralize the GDB remote timeout value into the GDBRemoteCommunication as a by Greg Clayton · 13 years ago
  95. 69af39d Add test cases for Python SBThread.StepOut() API by stepping out of a malloc call where the call site is at function b(). by Johnny Chen · 13 years ago
  96. d151c8a Fixed a bug where the disassembly syntax specified for the by Sean Callanan · 13 years ago
  97. e59b869 There's no sense checking for < 0 with a return type of size_t: by Johnny Chen · 13 years ago
  98. 88e7859 Add an expectedFailure decorator to the test_connect_remote() test case. by Johnny Chen · 13 years ago
  99. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 13 years ago
  100. 791af3b Fix ObjectFileElf::GetEntryPointAddress() by Stephen Wilson · 13 years ago