1. 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
  2. 2642585 Fixed an issue that happens in LLDB versions after SBFrame switched to using a lldb::ExecutionContextRefSP where we might segfault due to using a shared pointer with NULL in it. The SBFrame object should always have a valid lldb::ExecutionContextRefSP in it. The SBFrame::Clear() method was doing the wrong thing and is now fixed. by Greg Clayton · 12 years ago
  3. 5056169 Cleaned up code that was getting SBData for an SBInstruction. by Greg Clayton · 12 years ago
  4. 516f084 No functionality changes, mostly cleanup. by Greg Clayton · 12 years ago
  5. 860b9ea <rdar://problem/11202426> by Greg Clayton · 12 years ago
  6. 9f95fb6 In a prior commit, I changed the parameters around on a ModuleList::FindTypes where the old parameters that existing clients were using would have been compatible, so I renamed ModuleList::FindTypes to ModuleList::FindTypes2. Then I made fixes and verified I updated and fixed all client code, but I forgot to rename the function back to ModuleList::FindTypes(). I am doing that now and also cleaning up the C++ dynamic type code a bit. by Greg Clayton · 12 years ago
  7. 9f3c98e Added logging when API calls try to do something that shouldn't be done when the process is stopped by having logging calls that end with "error: process is running". by Greg Clayton · 12 years ago
  8. a894fe7 Added a new Host class: ReadWriteLock by Greg Clayton · 12 years ago
  9. 69c540d Change SBAddress back to using a std::auto_ptr to a lldb_private::Address as the lldb_private::Address has a weak pointer to the section which has a weak pointer back to the module, so it is safe to have just a lldb_private::Address object now. by Greg Clayton · 12 years ago
  10. a9fe7e7 Return 0 for the size_t return type. by Bill Wendling · 12 years ago
  11. 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
  12. 2a508dd Removed unused variable. by Greg Clayton · 12 years ago
  13. 9af596d Fixed some space formatting. by Greg Clayton · 12 years ago
  14. 9ab696e lldb_private::Section objects have a boolean flag that can be set that by Greg Clayton · 12 years ago
  15. 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
  16. dc0a38c <rdar://problem/11113279> by Greg Clayton · 12 years ago
  17. 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
  18. f5dc0fc SBTypeCategory::GetName returns const char* so return by Jason Molenda · 12 years ago
  19. b1db658 Platforms can now auto-select themselves if you specify a full target triple when doing a "target create" command. by Greg Clayton · 12 years ago
  20. b451f5f Patch from dawn@burble.org: by Johnny Chen · 12 years ago
  21. 598df88 <rdar://problem/10434005> by Greg Clayton · 12 years ago
  22. 66c2e19 Moved inline functions into SBTarget.cpp and made destructors for SBLaunchInfo and SBAttachInfo to avoid link warnings. by Greg Clayton · 12 years ago
  23. 0c31d3d <rdar://problem/10997402> by Greg Clayton · 12 years ago
  24. 400105d Using the new ScriptInterpreterObject in the implementation of synthetic children to enhance type safety by Enrico Granata · 12 years ago
  25. a989307 Added the ability to disassembly "count" instructions given a SBAddress. by Greg Clayton · 12 years ago
  26. 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
  27. 0164b75 rdar://problem/10976649 by Johnny Chen · 12 years ago
  28. c86723f <rdar://problem/10967188> by Han Ming Ong · 12 years ago
  29. 94b4e9a <rdar://10949461> by Han Ming Ong · 12 years ago
  30. f125250 <rdar://problem/10605072> by Greg Clayton · 12 years ago
  31. 1328b14 This commit: by Enrico Granata · 12 years ago
  32. 435c5ef <rdar://10950312> by Han Ming Ong · 12 years ago
  33. 444fe99 Made a ModuleSpec class in Module.h which can specify a module using one or by Greg Clayton · 12 years ago
  34. d1040dd <rdar://problem/3535148> by Han Ming Ong · 12 years ago
  35. 80efa5e Added some missing accessors to the SBAttachInfo for user and group ID by Greg Clayton · 12 years ago
  36. 98ca1e6 Fixed the launching code when using the new SBLaunchInfo. by Greg Clayton · 12 years ago
  37. 0a8dcac Added the new way we will eventually do all attaches and launches. First clients by Greg Clayton · 12 years ago
  38. 3508c38 <rdar://problem/10103468> by Greg Clayton · 12 years ago
  39. d846521 Make Debugger::SetLoggingCallback public, and expose it through the SB API. Sometimes it is not by Jim Ingham · 12 years ago
  40. 49f4bf2 Added the ability to get a ObjectFile versions from the ObjectFile by Greg Clayton · 12 years ago
  41. c48ca82 Patch Enrico's changes from r150558 on 2012-02-14 to build even if Python by Jason Molenda · 12 years ago
  42. 6c530f2 Add a logging mode that takes a callback and flush'es to that callback. by Jim Ingham · 12 years ago
  43. f4124de Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr by Greg Clayton · 12 years ago
  44. 289afcb The second part in thread hardening the internals of LLDB where we make by Greg Clayton · 12 years ago
  45. b4d7fc0 This checking is part one of trying to add some threading safety to our by Greg Clayton · 12 years ago
  46. 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
  47. 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
  48. 16376ed <rdar://problem/10062621> by Enrico Granata · 12 years ago
  49. 9ce9538 Full core file support has been added for mach-o core files. by Greg Clayton · 12 years ago
  50. 302d78c Extended function lookup to allow the user to by Sean Callanan · 12 years ago
  51. 46c9a35 First pass at mach-o core file support is in. It currently works for x86_64 by Greg Clayton · 12 years ago
  52. 28e2386 Send Breakpoint Changed events for all the relevant changes to breakpoints. by Jim Ingham · 12 years ago
  53. 7dd5c51 Removed all of the "#ifndef SWIG" from the SB header files since we are using by Greg Clayton · 12 years ago
  54. b5a8f14 <rdar://problem/10560053> by Greg Clayton · 12 years ago
  55. 39f54ea Allow a SBAddress to be created from a SBSection and an offset. by Greg Clayton · 12 years ago
  56. 0a19a1b Convert all python objects in our API to use overload the __str__ method by Greg Clayton · 12 years ago
  57. d62b9c1 Expose more convenience functionality in the python classes. by Greg Clayton · 12 years ago
  58. 4e6640e Fixed casting in the lldb::SBValue::Cast(SBType) function. by Greg Clayton · 12 years ago
  59. 3eeaf6e Added support to SBType for getting template arguments from a SBType: by Greg Clayton · 12 years ago
  60. 86ad476 Added fuzz testing for when we call API calls with an invalid object. by Greg Clayton · 12 years ago
  61. 4eb01a7 <rdar://problem/10776614> by Greg Clayton · 12 years ago
  62. 0416bdf lldb::SBTarget and lldb::SBProcess are now thread hardened. They both still by Greg Clayton · 12 years ago
  63. 334d33a SBFrame is now threadsafe using some extra tricks. One issue is that stack by Greg Clayton · 12 years ago
  64. 90c5214 Removed the "lldb-forward-rtti.h" header file as it was designed to contain by Greg Clayton · 12 years ago
  65. 13d24fb Switching back to using std::tr1::shared_ptr. We originally switched away by Greg Clayton · 12 years ago
  66. 1b92520 Added the ability to get the target triple, byte order and address byte size by Greg Clayton · 12 years ago
  67. 177bc68 <rdar://problem/10750012> by Greg Clayton · 13 years ago
  68. a6b7e32 Patch from Enrico Granata that moves SBData related functions into the SBData by Greg Clayton · 13 years ago
  69. 9f074f0 http://llvm.org/bugs/show_bug.cgi?id=11619 by Johnny Chen · 13 years ago
  70. a4b43ab rdar://problem/10216227 by Johnny Chen · 13 years ago
  71. daa6efe The "desired result type" code in the expression by Sean Callanan · 13 years ago
  72. 9fd2e38 Work in progress for: by Johnny Chen · 13 years ago
  73. 5a4bbce Work in progress for: by Johnny Chen · 13 years ago
  74. 71eae57 Remove dead code found. by Johnny Chen · 13 years ago
  75. 4278bbe Work in progress for: by Johnny Chen · 13 years ago
  76. dccbc4b Minor format update (no semantic change). by Johnny Chen · 13 years ago
  77. bab8cc9 Work in progress for: by Johnny Chen · 13 years ago
  78. e0bd571 Add needed Clear methods. <rdar://problem/10596340> by Jim Ingham · 13 years ago
  79. 87b8c4c Work in progress for: by Johnny Chen · 13 years ago
  80. bcbefa8 Fixed code rot pointed out by Jim. by Johnny Chen · 13 years ago
  81. 1586d97 Add the ability to capture the return value in a thread's stop info, and print it by Jim Ingham · 13 years ago
  82. c548687 <rdar://problem/10584789> by Greg Clayton · 13 years ago
  83. 4a2e337 Expose new read memory fucntion through python in SBProcess: by Greg Clayton · 13 years ago
  84. 943485c http://llvm.org/bugs/show_bug.cgi?id=11579 by Johnny Chen · 13 years ago
  85. ef1f690 I have added a function to SBTarget that allows by Sean Callanan · 13 years ago
  86. cd186e5 http://llvm.org/bugs/show_bug.cgi?id=11560 lldb::SBTarget::FindFirstType crashes when passed None by Johnny Chen · 13 years ago
  87. 1b42575 Add SBValue::GetDynamicValue and SBValue::GetStaticValue API's. by Jim Ingham · 13 years ago
  88. 3cbf848 Sanity check the inputs to SBCommandInterpreter::HandleCompletion by Jim Ingham · 13 years ago
  89. bae39c5 Fixed some extra warnings that show up with the new clang. by Greg Clayton · 13 years ago
  90. d5b0b44 After moving lldb::pid_t to 64 bits, keep a deprecated version around for by Greg Clayton · 13 years ago
  91. d9919d3 Process IDs (lldb::pid_t) and thread IDs (lldb::tid_t) are now 64 bit. This by Greg Clayton · 13 years ago
  92. 1d1f39e <rdar://problem/10429064> by Greg Clayton · 13 years ago
  93. 2020608 Fixed an issue with the pthread_setspecific() where we weren't NULL-ing out by Greg Clayton · 13 years ago
  94. 527154d Added a new class to Process.h: ProcessAttachInfo. This class contains enough by Greg Clayton · 13 years ago
  95. 96154be <rdar://problem/10126482> by Greg Clayton · 13 years ago
  96. 2d9adb7 Added the ability to run a process in a shell on MacOSX currently when using by Greg Clayton · 13 years ago
  97. 6e56157 <rdar://problem/9334299> by Greg Clayton · 13 years ago
  98. 668a6c7 Made the Host::SetCrashDescription(const char *) function copy the incoming by Greg Clayton · 13 years ago
  99. 3e4238d Fixed the Xcode project building of LLVM to be a bit more user friendly: by Greg Clayton · 13 years ago
  100. 36bc5ea Modified all Process::Launch() calls to use a ProcessLaunchInfo structure by Greg Clayton · 13 years ago