1. a63c538 Updated LLVM to take a fix for disassembly of Thumb branch operands. by Sean Callanan · 12 years ago
  2. 5c33a42 Updated LLVM to fix bad disassembly of operands by Sean Callanan · 12 years ago
  3. 302100f Patched our local Clang to fix a crash when parsing by Sean Callanan · 12 years ago
  4. 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
  5. 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
  6. 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
  7. 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
  8. 4e651b1 Maked LLDB into a package so we can import things without poluting the global namespace. by Greg Clayton · 12 years ago
  9. f0bc815 Added the ability to specify the symbol file for a module when adding it to a target. by Greg Clayton · 12 years ago
  10. 7e4690c Updated LLVM to take a variety of ARM by Sean Callanan · 12 years ago
  11. 04003a1 Updated LLVM to take a variety of fixes to disassembler problems: by Sean Callanan · 12 years ago
  12. b7f08ea Updated llvm.zip to include a fix for a leak in the MC disassembler. by Sean Callanan · 12 years ago
  13. 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
  14. b2e2c38 Fixed a crash in Clang when a superclass of an by Sean Callanan · 12 years ago
  15. 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
  16. 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
  17. daaa9d1 Building llvm for multiple arches could cause problems by Jason Molenda · 12 years ago
  18. e43333a Updated LLVM to take a comprehensive fix to the by Sean Callanan · 12 years ago
  19. 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
  20. 2fccde4 Updated LLVM and LLDB to fix compilation errors by Sean Callanan · 12 years ago
  21. 6781217 adding a summary for Objective-C type 'Class' by Enrico Granata · 12 years ago
  22. 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
  23. 77867c6 <rdar://problem/11022964> by Sean Callanan · 12 years ago
  24. 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
  25. b208860 Integrated LLVM revision 153218, which fixes a by Sean Callanan · 12 years ago
  26. ea58028 Added a local patch to reflect an LLVM fix for by Sean Callanan · 12 years ago
  27. cf09f88 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern by Enrico Granata · 12 years ago
  28. 4c128d5 Updated LLVM/Clang to take a patch that fixes some by Sean Callanan · 12 years ago
  29. 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
  30. 7e5bfda Integrated two high-value Clang fixes: by Sean Callanan · 12 years ago
  31. 66205ce Added formatters for libc++ (http://libcxx.llvm.org): by Enrico Granata · 12 years ago
  32. 6e12c7a Updated the revision of LLVM/Clang used by LLDB. by Sean Callanan · 12 years ago
  33. a989307 Added the ability to disassembly "count" instructions given a SBAddress. by Greg Clayton · 12 years ago
  34. 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
  35. fd96c04 Copying a new file required for the updated formatters to work into LLDB.framework by Enrico Granata · 12 years ago
  36. 0164b75 rdar://problem/10976649 by Johnny Chen · 12 years ago
  37. de3b25b added a new formatter for CF(Mutable)BitVector by Enrico Granata · 12 years ago
  38. 86fcb16 (a) adding formatters for: by Enrico Granata · 12 years ago
  39. 83410e5 (a) adding an introspection formatter for NS(Mutable)IndexSet by Enrico Granata · 12 years ago
  40. 142f94c Updated LLVM to take a new MC JIT that supports by Sean Callanan · 12 years ago
  41. 1328b14 This commit: by Enrico Granata · 12 years ago
  42. 80efa5e Added some missing accessors to the SBAttachInfo for user and group ID by Greg Clayton · 12 years ago
  43. 98ca1e6 Fixed the launching code when using the new SBLaunchInfo. by Greg Clayton · 12 years ago
  44. 0a8dcac Added the new way we will eventually do all attaches and launches. First clients by Greg Clayton · 12 years ago
  45. aa12be4 Updated LLVM to take some fixes that make the Intel disassembler usable. by Sean Callanan · 12 years ago
  46. 8f84cfb This patch provides a set of formatters for most of the commonly used Cocoa classes. by Enrico Granata · 12 years ago
  47. 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 · 12 years ago
  48. 49f4bf2 Added the ability to get a ObjectFile versions from the ObjectFile by Greg Clayton · 12 years ago
  49. c48ca82 Patch Enrico's changes from r150558 on 2012-02-14 to build even if Python by Jason Molenda · 12 years ago
  50. 6c530f2 Add a logging mode that takes a callback and flush'es to that callback. by Jim Ingham · 12 years ago
  51. 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 · 12 years ago
  52. 5a15e69 Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set. by Jim Ingham · 12 years ago
  53. 16376ed <rdar://problem/10062621> by Enrico Granata · 12 years ago
  54. 39a3034 Brought LLVM/Clang up to top of tree. The only by Sean Callanan · 12 years ago
  55. 28e2386 Send Breakpoint Changed events for all the relevant changes to breakpoints. by Jim Ingham · 12 years ago
  56. 7dd5c51 Removed all of the "#ifndef SWIG" from the SB header files since we are using by Greg Clayton · 12 years ago
  57. b5a8f14 <rdar://problem/10560053> by Greg Clayton · 12 years ago
  58. 8f2e392 I have brought LLDB up-to-date with top of tree by Sean Callanan · 13 years ago
  59. 39f54ea Allow a SBAddress to be created from a SBSection and an offset. by Greg Clayton · 13 years ago
  60. 0a19a1b Convert all python objects in our API to use overload the __str__ method by Greg Clayton · 13 years ago
  61. d62b9c1 Expose more convenience functionality in the python classes. by Greg Clayton · 13 years ago
  62. 4e6640e Fixed casting in the lldb::SBValue::Cast(SBType) function. by Greg Clayton · 13 years ago
  63. b6a5ba6 Cleaned up the documentation strings for many helper objects and added by Greg Clayton · 13 years ago
  64. 3eeaf6e Added support to SBType for getting template arguments from a SBType: by Greg Clayton · 13 years ago
  65. b62d4c6 ensure that changes to the typemaps are properly detected and cause SWIG to rebuild LLDBWrapPython.cpp by Enrico Granata · 13 years ago
  66. 1ea5802 When outputting hex values use unsigned integer values so we don't get by Greg Clayton · 13 years ago
  67. b302dff Added many more python convenience accessors: by Greg Clayton · 13 years ago
  68. 394da8e Added a new convenience property on lldb.SBThread names "frames" which always returns a complete list of all lldb.SBFrame objects: by Greg Clayton · 13 years ago
  69. 9b8ff51 Added a new class to the lldb python module: by Greg Clayton · 13 years ago
  70. 86ad476 Added fuzz testing for when we call API calls with an invalid object. by Greg Clayton · 13 years ago
  71. b8dc733 This commit provides a new default summary for Objective-C boolean variables, which shows YES or NO instead of the character value. A new category named objc is added to contain this summary provider. Any future Objective-C related formatters would probably fit here by Enrico Granata · 13 years ago
  72. 90c5214 Removed the "lldb-forward-rtti.h" header file as it was designed to contain by Greg Clayton · 13 years ago
  73. 9b4197b Removed an incorrectly added property from SBTarget.i by Greg Clayton · 13 years ago
  74. 1b92520 Added the ability to get the target triple, byte order and address byte size by Greg Clayton · 13 years ago
  75. 177bc68 <rdar://problem/10750012> by Greg Clayton · 13 years ago
  76. 4272164 If timestamps are enabled when logging GDB remote packets ("log enable -T -f /tmp/packets.log gdb-remote logs") then get the amount of time spent executing each packet and summarize at the end of a dump. Sample timing output looks like: by Greg Clayton · 13 years ago
  77. 5f4a538 Handle 's' packets correctly when disassembling GDB packet output. by Greg Clayton · 13 years ago
  78. adc6c38 Integrated a patch for the MCJIT that inhibits a memory leak. by Sean Callanan · 13 years ago
  79. a6b7e32 Patch from Enrico Granata that moves SBData related functions into the SBData by Greg Clayton · 13 years ago
  80. 9f074f0 http://llvm.org/bugs/show_bug.cgi?id=11619 by Johnny Chen · 13 years ago
  81. aa9d267 Fixed a problem in our local Clang's method for by Sean Callanan · 13 years ago
  82. 2f28ece <rdar://problem/10507811> by Greg Clayton · 13 years ago
  83. 2757c34 Cleaned up the usage to show the BuildAndIntegration configuration. by Greg Clayton · 13 years ago
  84. daa6efe The "desired result type" code in the expression by Sean Callanan · 13 years ago
  85. 506cba9 Tightened Clang against a bug in which RecordDecls by Sean Callanan · 13 years ago
  86. e0bd571 Add needed Clear methods. <rdar://problem/10596340> by Jim Ingham · 13 years ago
  87. 65f4fb0 Fix Python docstring for SBThread.GetStopDescription(). by Johnny Chen · 13 years ago
  88. bcbefa8 Fixed code rot pointed out by Jim. by Johnny Chen · 13 years ago
  89. 93a82e3 Added a version of the LLVM/Clang checkout and by Sean Callanan · 13 years ago
  90. 1586d97 Add the ability to capture the return value in a thread's stop info, and print it by Jim Ingham · 13 years ago
  91. ef1fd12 I have added a new patch to LLVM that makes the by Sean Callanan · 13 years ago
  92. 0539a80 Updated Clang to take an enhancement to the way by Sean Callanan · 13 years ago
  93. 0841386 Add fuzz calls for newly added SBProcess methods. Fix a typo in the audodoc of SBProcess.ReadCStringFromMemory(). by Johnny Chen · 13 years ago
  94. c548687 <rdar://problem/10584789> by Greg Clayton · 13 years ago
  95. 4a2e337 Expose new read memory fucntion through python in SBProcess: by Greg Clayton · 13 years ago
  96. ef1f690 I have added a function to SBTarget that allows by Sean Callanan · 13 years ago
  97. a0d06cd Add more robustness - use PyString_CheckExact(pvalue) to check whether pvalue is a Python string before by Johnny Chen · 13 years ago
  98. 2fcf412 http://llvm.org/bugs/show_bug.cgi?id=11569 by Johnny Chen · 13 years ago
  99. 1b42575 Add SBValue::GetDynamicValue and SBValue::GetStaticValue API's. by Jim Ingham · 13 years ago
  100. 0523083 Picked up a new revision of Clang to pull in Objective-C by Sean Callanan · 13 years ago