1. f590be8 A baton isn't needed to dispatch input. by Filipe Cabecinhas · 12 years ago
  2. ec2d127 Add FILE* typemaps for SBDebugger.GetInputFileHandle() and friends. by Filipe Cabecinhas · 12 years ago
  3. 8165d43 Merge python-GIL bracnh (by filcab) back into trunk! by Johnny Chen · 12 years ago
  4. f3ec461 rdar://problem/11457143 [ER] need "watchpoint command ..." by Johnny Chen · 12 years ago
  5. 4582fea On Mac OS X, lldb will now build c++11 and use by Sean Callanan · 12 years ago
  6. 4761ca3 Made lldb.swig include <string>, which it requires. by Sean Callanan · 12 years ago
  7. f6132ef <rdar://problem/11275622> by Greg Clayton · 12 years ago
  8. 5d90ade Added an lldb_private & equivalent SB API to send an AsyncInterrupt to the event loop. by Jim Ingham · 12 years ago
  9. 4ff1741 Integrated a fix to LLVM's disassembler that by Sean Callanan · 12 years ago
  10. 01ee952 Added a fix to LLVM that corrects PC-relative by Sean Callanan · 12 years ago
  11. 3a458eb Add "vAttachOrWait" to debugserver, so you can implement "attach to the process if it exists OR wait for it" without race conditions. Use that in lldb. by Jim Ingham · 12 years ago
  12. efbdd22 Add accessors on process to get & set the selected thread by IndexID (useful since that's the one that "thread list" shows and it won't get reused even if the underlying system thread ID gets reused. by Jim Ingham · 12 years ago
  13. e9fcfd9 Updated LLVM and added a fix to LLDB which allows by Sean Callanan · 12 years ago
  14. 2a94be1 Added documentation for many of our python properties and also made the property help show up by declaring the properties correctly. We previosly declared properties into a local "x" variable, what I didn't realize is that the help will use this as the property name for the help output. by Greg Clayton · 12 years ago
  15. 5c5a38e Added the ability to read the dSYM plist file with source remappings even when DebugSymbols isn't used to find the dSYM. We now parse the plist as XML in the MacOSX symbol vendor. by Greg Clayton · 12 years ago
  16. 698e94a Modify the ranges_access() helper function to be able to lookup the address range in a block given an address. Since blocks can have multiple discontiguous ranges, it helps to be able to get the current address range for the current block in a frame. This can be used in code like: by Greg Clayton · 12 years ago
  17. ad50280 Fixed the get_process_thread_list function to correctly return a list of all threads in a process. by Greg Clayton · 12 years ago
  18. 839de39 Make a way to set the result status for Python defined commands, and don't overwrite the status of the result if by Jim Ingham · 12 years ago
  19. da26bd2 Make raw & parsed commands subclasses of CommandObject rather than having the raw version implement an by Jim Ingham · 12 years ago
  20. 3f88349 rdar://problem/11584012 by Johnny Chen · 12 years ago
  21. 40a2043 For dump_register_value() sub-routine, issue a return after an error condition occurs. by Johnny Chen · 12 years ago
  22. f4ec2ea Fix the comments about LLDB_DISABLE_PYTHON in the python swig shell scripts to be more clear. by Jim Ingham · 12 years ago
  23. 4ff16d7 Fix missing Resources/Python directory for macosx build. by Johnny Chen · 12 years ago
  24. b7e62f8 Change the "Debug" build to use the current MacOSX SDK. Fix the swig builder to have an explicit by Jim Ingham · 12 years ago
  25. 191343e Add SBProcess::GetNumSupportedHardwareWatchpoints() API and export it through the Python scripting bridge. by Johnny Chen · 12 years ago
  26. 6070eeb Integrated a fix for an ARM disassembler crash by Sean Callanan · 12 years ago
  27. b1a7143 Integrated a check into Clang that make sure that by Sean Callanan · 12 years ago
  28. 45bc395 Updated LLVM to take a disassembler fix that causes by Sean Callanan · 12 years ago
  29. 930f10a I have updated Clang to include support for Objective-C by Sean Callanan · 12 years ago
  30. 5df5dda Disassemble the signal number and also the mach exceptions when dumping stop reply packets. by Greg Clayton · 12 years ago
  31. f2d3e8d Updated LLVM to fix a problem where the Thumb by Sean Callanan · 12 years ago
  32. a80d1e8 Add GetID to the .i file. by Jim Ingham · 12 years ago
  33. d82bc6d Found one more place where the OkayToDiscard needs to be consulted. by Jim Ingham · 12 years ago
  34. 3cae38b Make every Python API __len__() method return a PyIntObject. by Filipe Cabecinhas · 12 years ago
  35. 01584eb Fix SBProcess::ReadMemory's typemap to handle PyLongObjects. by Filipe Cabecinhas · 12 years ago
  36. 37a07e9 Updated LLVM/Clang to force the record layout engine by Sean Callanan · 12 years ago
  37. f92ddcc Print out a notification when the process of a target other than the currently selected target stops. by Jim Ingham · 12 years ago
  38. 651cbe2 <rdar://problem/11239650> Fixing a bug where the SetValueFromCString() method failed to operate on dynamic values. The fix consists in making the set operation fall through to the parent. We only actually allow this if the dynamic value is at a 0-offset from the parent, or the new value is 0. Other scenarios would need agreement on the actual meaning of the set operation (do we keep offsetting? do we just assume the user knows what they are doing?) so we prevent them, and let the expression parser deal with the complexity by Enrico Granata · 12 years ago
  39. b170aee <rdar://problem/11358639> by Greg Clayton · 12 years ago
  40. a63c538 Updated LLVM to take a fix for disassembly of Thumb branch operands. by Sean Callanan · 12 years ago
  41. 5c33a42 Updated LLVM to fix bad disassembly of operands by Sean Callanan · 12 years ago
  42. 302100f Patched our local Clang to fix a crash when parsing by Sean Callanan · 12 years ago
  43. 1dae6f3 Remove the "-x" from the finish-swig-Python-LLDB.sh shell options so it doesn't print out all of the commands when executing the shell script. by Greg Clayton · 12 years ago
  44. a5c2ce0 Returning data formatters to their previous working condition - Plus fixing an issue that was preventing Python oneliners from executing by Enrico Granata · 12 years ago
  45. 6f2f0ab Now that we have an LLDB package, make the "lldb.macosx.crashlog" module work with all of the new module paths. by Greg Clayton · 12 years ago
  46. 65e3dcb Ensure that lldb/runtime is not a dead point in the Python package hierarchy - This is a first preliminary step in fixing data formatters after Greg's changes to the Python resources on-disk layout by Enrico Granata · 12 years ago
  47. 4e651b1 Maked LLDB into a package so we can import things without poluting the global namespace. by Greg Clayton · 12 years ago
  48. f0bc815 Added the ability to specify the symbol file for a module when adding it to a target. by Greg Clayton · 12 years ago
  49. 7e4690c Updated LLVM to take a variety of ARM by Sean Callanan · 12 years ago
  50. 04003a1 Updated LLVM to take a variety of fixes to disassembler problems: by Sean Callanan · 12 years ago
  51. b7f08ea Updated llvm.zip to include a fix for a leak in the MC disassembler. by Sean Callanan · 12 years ago
  52. 7fb1430 Expose GetAddressClass() from both the SBAddress and SBInstruction so clients can tell the difference between ARM/Thumb opcodes when disassembling ARM. by Greg Clayton · 12 years ago
  53. b2e2c38 Fixed a crash in Clang when a superclass of an by Sean Callanan · 12 years ago
  54. d41abdc Added a property to get the dynamic type which uses the most permissive way to get a dynamic type. by Greg Clayton · 12 years ago
  55. 3be42fb Export the ability to see if a symbol is externally visible and also if the symbol was synthetically added to the symbol table (the symbol was not part of the symbol table itself but came from another section). by Greg Clayton · 12 years ago
  56. daaa9d1 Building llvm for multiple arches could cause problems by Jason Molenda · 12 years ago
  57. e43333a Updated LLVM to take a comprehensive fix to the by Sean Callanan · 12 years ago
  58. 7e20226 Part 1 of a series of fixes meant to improve reliability and increase ease of bug fixing for data formatter issues. by Enrico Granata · 12 years ago
  59. 2fccde4 Updated LLVM and LLDB to fix compilation errors by Sean Callanan · 12 years ago
  60. 6781217 adding a summary for Objective-C type 'Class' by Enrico Granata · 12 years ago
  61. dba1de8 Synthetic values are now automatically enabled and active by default. SBValue is set up to always wrap a synthetic value when one is available. by Enrico Granata · 12 years ago
  62. 77867c6 <rdar://problem/11022964> by Sean Callanan · 12 years ago
  63. d44c9d3 Adding a new API call IsTypeComplete() to SBType. This call is meant to check if the type has been previously completed or not (which is mostly interesting from a performance point of view) by Enrico Granata · 12 years ago
  64. b208860 Integrated LLVM revision 153218, which fixes a by Sean Callanan · 12 years ago
  65. ea58028 Added a local patch to reflect an LLVM fix for by Sean Callanan · 12 years ago
  66. cf09f88 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern by Enrico Granata · 12 years ago
  67. 4c128d5 Updated LLVM/Clang to take a patch that fixes some by Sean Callanan · 12 years ago
  68. 1dbf2a8 Export the APIs submitted by Dawn to the Python bindings. Add a simple test case for the SBModule.compile_unit_iter() API. by Johnny Chen · 12 years ago
  69. 7e5bfda Integrated two high-value Clang fixes: by Sean Callanan · 12 years ago
  70. 66205ce Added formatters for libc++ (http://libcxx.llvm.org): by Enrico Granata · 12 years ago
  71. 6e12c7a Updated the revision of LLVM/Clang used by LLDB. by Sean Callanan · 12 years ago
  72. a989307 Added the ability to disassembly "count" instructions given a SBAddress. by Greg Clayton · 12 years ago
  73. 4722b10 Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints. by Jim Ingham · 12 years ago
  74. fd96c04 Copying a new file required for the updated formatters to work into LLDB.framework by Enrico Granata · 12 years ago
  75. 0164b75 rdar://problem/10976649 by Johnny Chen · 12 years ago
  76. de3b25b added a new formatter for CF(Mutable)BitVector by Enrico Granata · 12 years ago
  77. 86fcb16 (a) adding formatters for: by Enrico Granata · 12 years ago
  78. 83410e5 (a) adding an introspection formatter for NS(Mutable)IndexSet by Enrico Granata · 12 years ago
  79. 142f94c Updated LLVM to take a new MC JIT that supports by Sean Callanan · 12 years ago
  80. 1328b14 This commit: by Enrico Granata · 12 years ago
  81. 80efa5e Added some missing accessors to the SBAttachInfo for user and group ID by Greg Clayton · 12 years ago
  82. 98ca1e6 Fixed the launching code when using the new SBLaunchInfo. by Greg Clayton · 12 years ago
  83. 0a8dcac Added the new way we will eventually do all attaches and launches. First clients by Greg Clayton · 13 years ago
  84. aa12be4 Updated LLVM to take some fixes that make the Intel disassembler usable. by Sean Callanan · 13 years ago
  85. 8f84cfb This patch provides a set of formatters for most of the commonly used Cocoa classes. by Enrico Granata · 13 years ago
  86. 6ebf9da typemaps to allow Python to invoke the new SBModule::GetVersion() API. Memory management is taken care of automatically so that Python users can simply say my_list = my_module.GetVersion() and receive a new list with the version numbers, if any, inside. by Enrico Granata · 13 years ago
  87. 49f4bf2 Added the ability to get a ObjectFile versions from the ObjectFile by Greg Clayton · 13 years ago
  88. c48ca82 Patch Enrico's changes from r150558 on 2012-02-14 to build even if Python by Jason Molenda · 13 years ago
  89. 6c530f2 Add a logging mode that takes a callback and flush'es to that callback. by Jim Ingham · 13 years ago
  90. d760907c Adding formatters for several useful Objective-C/Cocoa data types. The new categories are not enabled at startup, but can be manually activated if desired. by Enrico Granata · 13 years ago
  91. 5a15e69 Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set. by Jim Ingham · 13 years ago
  92. 16376ed <rdar://problem/10062621> by Enrico Granata · 13 years ago
  93. 39a3034 Brought LLVM/Clang up to top of tree. The only by Sean Callanan · 13 years ago
  94. 28e2386 Send Breakpoint Changed events for all the relevant changes to breakpoints. by Jim Ingham · 13 years ago
  95. 7dd5c51 Removed all of the "#ifndef SWIG" from the SB header files since we are using by Greg Clayton · 13 years ago
  96. b5a8f14 <rdar://problem/10560053> by Greg Clayton · 13 years ago
  97. 8f2e392 I have brought LLDB up-to-date with top of tree by Sean Callanan · 13 years ago
  98. 39f54ea Allow a SBAddress to be created from a SBSection and an offset. by Greg Clayton · 13 years ago
  99. 0a19a1b Convert all python objects in our API to use overload the __str__ method by Greg Clayton · 13 years ago
  100. d62b9c1 Expose more convenience functionality in the python classes. by Greg Clayton · 13 years ago