1. 4e75e35 Reinstating r181091 and r181106 with fix for Linux regressions. by Andrew Kaylor · 11 years ago
  2. 95bea1d Temporarily reverting r181091 and r181106 due to the vast test breakage on the Linux buildbots by Ashok Thirumurthi · 11 years ago
  3. 8f0f475 <rdar://problem/11669154> by Enrico Granata · 11 years ago
  4. 7bee8ab After recent OperatingsSystem plug-in changes, the lldb_private::Process and lldb_private::Thread subclasses were changed and the API was not respected properly. by Greg Clayton · 11 years ago
  5. 08f60c8 fix a couple of clang static analyzer warnings. by Jason Molenda · 11 years ago
  6. 42b336c Remove the UUID::GetAsCString() method which required a buffer to save the by Jason Molenda · 11 years ago
  7. ff1bbd7 Fix logic error in ProcessInfo::SetArg0 by Andrew Kaylor · 11 years ago
  8. 0765e32 <rdar://problem/11742979> by Enrico Granata · 11 years ago
  9. 2e126c5 Add missing include to LLDB.h -- SBStream by Daniel Malea · 11 years ago
  10. 2cfedf5 We aren't ready for the assertions to be enabled on the ReadWriteLock classes yet. by Greg Clayton · 11 years ago
  11. 761afb8 Recommitting r180831 with trivial fix - remember to return errors if you compute. by Jim Ingham · 11 years ago
  12. a46013b <rdar://problem/13700260> <rdar://problem/13723772> by Greg Clayton · 11 years ago
  13. 0b78f43 Revert 180829 as it causes hangs in TestTypeCompletion.py on 2 Linux buildbots: by Daniel Malea · 11 years ago
  14. 411ab47 Reverting 180831 as it crashes TestDefaultConstructorForAPIObjects.py by Daniel Malea · 11 years ago
  15. b4e08ab Added an option to "process detach" to keep the process stopped, if the process plugin (or in the by Jim Ingham · 11 years ago
  16. 8b73c97 Make "process handle -n true -s false" actually notifies of the signal. by Jim Ingham · 11 years ago
  17. 10dc2a1 <rdar://problem/13695846> by Enrico Granata · 11 years ago
  18. 8a1e654 lldb_private::StopInfo now holds onto a ThreadWP (a std::weak_ptr<lldb_private::Thread>) in case the thread goes away while the stop info still exists. by Greg Clayton · 11 years ago
  19. 97a19b2 Cleanup logging to use the new "std::string FileSpec::GetPath()" function. Also added a similar function for modules: by Greg Clayton · 11 years ago
  20. 30518e0 Don't return a reference to a local variable, and removed a redundant API. by Greg Clayton · 11 years ago
  21. bf1fa97 Add a few new methods to FileSpec to make it a little easier to work by Jason Molenda · 11 years ago
  22. cdc3ea5 Performance optimizations to ClangUserExpression, by Sean Callanan · 11 years ago
  23. 5c2cd1f <rdar://problem/12529989> by Enrico Granata · 11 years ago
  24. 23df42a Fixing a typo in the SBThread::Suspend documentation by Andrew Kaylor · 11 years ago
  25. 39ebb98 Make a synthetic children provider for the ObjC Class type by Enrico Granata · 11 years ago
  26. 36b877d Added the ability to extract a ModuleSpecList (a new class) from an ObjectFile. This is designed to be used when you have an object file that contains one or more architectures (MacOSX universal (fat) files) and/or one or more objects (BSD archive (.a files)). by Greg Clayton · 11 years ago
  27. 323c037 <rdar://problem/13209140> by Enrico Granata · 11 years ago
  28. d9661be Changes to the ObjC runtime by Enrico Granata · 11 years ago
  29. 79e7ad8 Fixed a problem where the expression parser would by Sean Callanan · 11 years ago
  30. f40162d Remove duplicate define by Sylvestre Ledru · 11 years ago
  31. bf26ea6 Daniel Malea reported seeing warnings for the use of anonymous namespaces in our public API. by Enrico Granata · 11 years ago
  32. ac630b8 Fix lock hierarchy violation in Listener/Broadcaster by Daniel Malea · 11 years ago
  33. ba6b37d Fix data race in Address class by wrapping m_offset in std::atomic by Daniel Malea · 11 years ago
  34. 5042acf <rdar://problem/13697881> by Greg Clayton · 11 years ago
  35. dbeac80 Be sure to include initializer_list when needed. by Greg Clayton · 11 years ago
  36. d387b46 Fixed some linux buildbot warnings. by Greg Clayton · 11 years ago
  37. 06761aa Simplified the management of the data buffer for by Sean Callanan · 11 years ago
  38. 347d722 Provided a variant of ReadCStringFromMemory that supports null terminators of any character width. by Ashok Thirumurthi · 11 years ago
  39. 2ce786d Removed 2800+ lines of code that no longer do anything by Sean Callanan · 11 years ago
  40. 28195f9 Optimized the way breakpoint conditions are evaluated. by Sean Callanan · 11 years ago
  41. 73cb33a Made IRMemoryMap::FindSpace a little cleverer, by Sean Callanan · 11 years ago
  42. 102b2c2 After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11. by Greg Clayton · 11 years ago
  43. 0f0551e This commit changes the way LLDB executes user expressions. by Sean Callanan · 11 years ago
  44. da0e332 Try to unbreak the lldb-x86_64-linux buildbot after recent std::auto_ptr/std::unique_ptr changes. by Greg Clayton · 11 years ago
  45. 0b10ef6 Missed some cases when switching over to using our STD_UNIQUE_PTR macros. by Greg Clayton · 11 years ago
  46. 81a96aa Since we use C++11, we should switch over to using std::unique_ptr when C++11 is being used. To do this, we follow what we have done for shared pointers and we define a STD_UNIQUE_PTR macro that can be used and it will "do the right thing". Due to some API differences in std::unique_ptr and due to the fact that we need to be able to compile without C++11, we can't use move semantics so some code needed to change so that it can compile with either C++. by Greg Clayton · 11 years ago
  47. 061ca65 Re-enable m_private_run_lock changes from 179329, but only for Apple hosted builds so it doesn't break the buildbots. We will try and work the issues out in the Apple build before enabling this feature for everyone. by Greg Clayton · 11 years ago
  48. 6b47bca Revert of r179378 and r179329, which introduce a private thread lock around thread enumeration, by Ashok Thirumurthi · 11 years ago
  49. 81f4b89 Remove duplicate "friend" declaration. by Andy Gibbs · 11 years ago
  50. 7df01f9 Add missing include by Daniel Malea · 11 years ago
  51. 3a201e4 Added a new API to the IRInterpreter (the old API by Sean Callanan · 11 years ago
  52. 44199f1 Made the IRInterpreter's methods static, since by Sean Callanan · 11 years ago
  53. e804caf Made the IRInterpreter be able to operate without by Sean Callanan · 11 years ago
  54. 13615cf Updated the IRInterpreter to work with an by Sean Callanan · 11 years ago
  55. 86d6ac2 Modified the IRInterpreter to take an IRMemoryMap. by Sean Callanan · 11 years ago
  56. a6686e3 Flipped the big switch: LLDB now uses the new by Sean Callanan · 11 years ago
  57. 2c35472 Adding new Python API function to check for stopped threads. by Andrew Kaylor · 11 years ago
  58. 76f9879 Added logging to each entity in the Materializer by Sean Callanan · 11 years ago
  59. cecfa8f Removed a duplicate copy of the contents of by Sean Callanan · 11 years ago
  60. faafd19 Audited the existing Materializer code to ensure by Sean Callanan · 11 years ago
  61. f58438f Fixed issues with the way ELF symbols are parsed: by Greg Clayton · 11 years ago
  62. e287e90 Now that ValueObjects permit writing, made the by Sean Callanan · 11 years ago
  63. 5ae1418 I don't know how I managed to build with that missing semicolon. by Sean Callanan · 11 years ago
  64. ab8e00e Added a SetData() method to ValueObject. This by Sean Callanan · 11 years ago
  65. 934d616 Implemented materialization and dematerialization by Sean Callanan · 11 years ago
  66. 9acf369 <rdar://problem/13491977> by Greg Clayton · 11 years ago
  67. f4b5948 Replicated the materialization logic for persistent by Sean Callanan · 11 years ago
  68. cc810f0 Fixed a bug where a few class forward declarations by Sean Callanan · 11 years ago
  69. 3b83055 <rdar://problem/13623698> by Enrico Granata · 11 years ago
  70. 0e7cff4 <rdar://problem/13370286> by Greg Clayton · 11 years ago
  71. 1949951 Use std::unique_ptr instead of std::auto_ptr. by Greg Clayton · 11 years ago
  72. ce66f96 Hand over the job of laying out the argument structure by Sean Callanan · 11 years ago
  73. 3525576 Static variables inside classes were not being added to the RecordDecl, now they are. This gets us closer to being able to display static variables in classes. by Greg Clayton · 11 years ago
  74. 3b16eb9 Added a Materializer class that contains by Sean Callanan · 11 years ago
  75. adf9e3d When ObjectFileMachO::ParseSections() notices that it has a truncated file, zero out the by Jason Molenda · 11 years ago
  76. f95fc9e Added support "__attribute__((__vector_size__(B)))" and "__attribute__((ext_vector_type(N)))". by Greg Clayton · 11 years ago
  77. 12fbcf5 <rdar://problem/13563628> by Enrico Granata · 11 years ago
  78. bbebdbe Add support for Platform plugins to have settings. by Jason Molenda · 11 years ago
  79. 9e6f6a6 Factored out memory access into the target process by Sean Callanan · 11 years ago
  80. c123883 Ah, forgot to include the header file and project file changes in r178827. by Jason Molenda · 11 years ago
  81. 3f2f741 <rdar://problem/13457391> by Greg Clayton · 11 years ago
  82. 00af72e <rdar://problem/13384801> by Greg Clayton · 11 years ago
  83. 296b06d <rdar://problem/13506727> by Greg Clayton · 11 years ago
  84. 33d1098 <rdar://problem/13563403> by Enrico Granata · 11 years ago
  85. 1d4812c Allow partial matching for alias commands as well as regular commands. by Jim Ingham · 11 years ago
  86. d11d312 Fixed the way ClangASTImporter deports types from by Sean Callanan · 11 years ago
  87. f3c65b8 <rdar://problem/12022060> by Greg Clayton · 11 years ago
  88. e33bb5b Rationalize how we do Halt-ing before Destroy and Detach. by Jim Ingham · 11 years ago
  89. d4f95f3 <rdar://problem/11730263> by Greg Clayton · 11 years ago
  90. 226484d Be sure to take the mutex when the destructor is called in case other threads are using these lists and those other threads have the mutex locked. by Greg Clayton · 11 years ago
  91. 23ed3ad The other half of the checkin to produce better error messages when the ThreadPlanCallFunction isn't valid. by Jim Ingham · 11 years ago
  92. 952e9dc <rdar://problem/13521159> by Greg Clayton · 11 years ago
  93. 1414aba Implementing the notion of externally-acquirable ScriptInterpreter lock by Enrico Granata · 11 years ago
  94. 017c16a Don't use a "uintptr_t" for the metadata key, use a "void *". This removes all of the casts that were being used and cleans the code up a bit. Also added the ability to dump the metadata. by Greg Clayton · 11 years ago
  95. 133214f Add a way to dump a ClangASTType to stdout for debugging purposes. by Greg Clayton · 11 years ago
  96. 23fde4e Data formatters cleanup: by Enrico Granata · 11 years ago
  97. c3f5cd8 Our commands that end up displaying a ValueObject as part of their workflow use OptionGroupValueObjectDisplay as their currency for deciding the final representation by Enrico Granata · 11 years ago
  98. 59b96d5 Modified patch from Prabhat Verma to enable loading core files through the SBTarget API. by Greg Clayton · 11 years ago
  99. 2d63ae1 Add a Reserve method to RangeVector and RangeDataVector. Have the by Jason Molenda · 11 years ago
  100. 40960a7 Modified the way we report fields of records. by Sean Callanan · 11 years ago