1. 8f3be7a [FileSystem] Move path resolution logic out of FileSpec by Jonas Devlieghere · 7 years ago
  2. 117b1fa Don't type-erase the FunctionNameType or TypeClass enums. by Zachary Turner · 7 years ago
  3. 991e445 Don't type-erase the SymbolContextItem enumeration. by Zachary Turner · 7 years ago
  4. e174746 [SBAPI/Target] Expose SetStatistics(bool enable)/GetStatistics(). by Davide Italiano · 7 years ago
  5. 3815e70 Add a "scripted" breakpoint type to lldb. by Jim Ingham · 7 years ago
  6. 431b158 Support setting a breakpoint by FileSpec+Line+Column in the SBAPI. by Adrian Prantl · 7 years ago
  7. 3e7b9db Add new API to SBTarget class by Alexander Polyakov · 7 years ago
  8. da0c081 Add new API to SBTarget and SBModule classes. by Alexander Polyakov · 7 years ago
  9. a174bcb Remove UUID::SetFromCString by Pavel Labath · 7 years ago
  10. 937348c [FileSpec] Make style argument mandatory for SetFile. NFC by Jonas Devlieghere · 7 years ago
  11. e1bb517 Add a new SBTarget::LoadCore() overload which surfaces errors if the load fails by Leonard Mosescu · 7 years ago
  12. 34cda14 Remove append parameter to FindGlobalVariables by Pavel Labath · 7 years ago
  13. 2ad4821 Normalize some lldb #include statements. by James Y Knight · 7 years ago
  14. 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
  15. 145d95c Move Args.cpp from Interpreter to Utility by Pavel Labath · 7 years ago
  16. 4a6a2b1 [Commands] Expose statistics through the SBAPI. by Davide Italiano · 7 years ago
  17. 62930e5 Add Utility/Environment class for handling... environments by Pavel Labath · 8 years ago
  18. 5f19b90 Move ArchSpec to the Utility module by Pavel Labath · 8 years ago
  19. 7263f1b Invert ArchSpec<->Platform dependency by Pavel Labath · 8 years ago
  20. e9632eb Wire up the breakpoint name help string. by Jim Ingham · 8 years ago
  21. b842f2e Make breakpoint names real entities. by Jim Ingham · 8 years ago
  22. 04f3910 Fix GreenDragon bots by Chris Bieneman · 8 years ago
  23. 43294c9 Change the ABI class to have a weak pointer to its Process; by Jason Molenda · 8 years ago
  24. 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
  25. 5713a05 Move FileSpec from Host -> Utility. by Zachary Turner · 9 years ago
  26. 6f9e690 Move Log from Core -> Utility. by Zachary Turner · 9 years ago
  27. 6ac8403 Switch SBBreakpoint to storing a weak_ptr of the internal breakpoint object by Pavel Labath · 9 years ago
  28. bf9a773 Move classes from Core -> Utility. by Zachary Turner · 9 years ago
  29. 8f7db52 Fix incorrectly named variables. by Jim Ingham · 9 years ago
  30. 237c3ed Adopt PrettyStackTrace in LLDB by Sean Callanan · 9 years ago
  31. 3165945 Convert Platform, Process, and Connection functions to StringRef. by Zachary Turner · 9 years ago
  32. c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
  33. 2d3628e Add the ability to append breakpoints to the save file. by Jim Ingham · 9 years ago
  34. 3acdf38 Add the ability to deserialize only breakpoints matching a given name. by Jim Ingham · 9 years ago
  35. 95eae42 Make lldb::Regex use StringRef. by Zachary Turner · 9 years ago
  36. ff9a91e Adds tests for breakpoint names, and a FindBreakpointsByName. by Jim Ingham · 9 years ago
  37. 92d1960 Add some more tests for breakpoint serialization. by Jim Ingham · 9 years ago
  38. 01f1666 Add SB API's for writing breakpoints to & creating the from a file. by Jim Ingham · 9 years ago
  39. b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
  40. bb19a13 second pass over removal of Mutex and Condition by Saleem Abdulrasool · 9 years ago
  41. 2920b36 Make sure we notify that the section module was loaded when SBTarget::SetSectionLoadAddress() is called. Also make sure that the section module is unloaded when SBTarget::ClearSectionLoadAddress() or SBTarget::ClearModuleLoadAddress() is called. by Greg Clayton · 9 years ago
  42. 76bb8d6 Add the ability to limit "source regexp" breakpoints to a particular function by Jim Ingham · 9 years ago
  43. 6010f97 Source: fix another -Wunused-variable warning by Saleem Abdulrasool · 9 years ago
  44. 2411167 Add an "offset" option to "break set -n" and "break set -f -l". by Jim Ingham · 10 years ago
  45. 583bbb1 Change over the broadcaster/listener process to hold shared or weak pointers by Jim Ingham · 10 years ago
  46. ae088e5 Now that SymbolFileDWARF supports having types in completely separate .pcm file with "-fmodules -gmodules", each SymbolFileDWARF can reference module DWARF info by looking in other DWARF files. Then if you have 1000 .o files that each reference one or more .pcm files in their debug info, a simple Module::FindTypes(...) call can end up searching the same .pcm file over and over and over. Now all internal FindTypes methods in classes (ModuleList, Module, SymbolFile) now take an extra argument: by Greg Clayton · 10 years ago
  47. d2474ff Log error message in SBTarget::Launch by Pavel Labath · 10 years ago
  48. 055a08a Add the ability (through the SB API & command line) to specify an address by Jim Ingham · 10 years ago
  49. 0fcdac3 Make the language specifier to "break set" actually filter the names by their language. So for by Jim Ingham · 10 years ago
  50. 0e0984e Move things from the LanguageRuntime that obviously belong in the new Language plugin instead. by Jim Ingham · 10 years ago
  51. a1e5dc8 ClangASTType is now CompilerType. by Greg Clayton · 10 years ago
  52. 23b1dec Add support for specifying a language to use when parsing breakpoints. by Dawn Perchik · 10 years ago
  53. 763b2b2 Add a version of SBTarget::EvaluateExpression that doesn't require by Jim Ingham · 10 years ago
  54. d3173f3 Refactor many file functions to use FileSpec over strings. by Chaoren Lin · 10 years ago
  55. 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
  56. 055ad9b Add --move-to-nearest-code / target.move-to-nearest-code options (attempt 2) by Ilia K · 10 years ago
  57. a66c695 Reverting r237460 to fix test failures introduced on OSX & Linux by Vince Harron · 10 years ago
  58. d9f1a78 Add --move-to-nearest-code / target.move-to-nearest-code options by Ilia K · 10 years ago
  59. eb2c19a Add =shlibs-added/=shlibs-removed notifications (MI) by Ilia K · 11 years ago
  60. b10e003 Add a required #include by Enrico Granata · 11 years ago
  61. a78bd7f Don't #include FormatManager.h from Debugger.h by Zachary Turner · 11 years ago
  62. 32abc6e Reduce header footprint of Target.h by Zachary Turner · 11 years ago
  63. 71d08b3 Extract SBAttachInfo into own set of files - SBAttachInfo.h, SBAttachInfo.cpp and SBAttachInfo.i. by Oleksiy Vyalov · 11 years ago
  64. 8f37ca5 Add -exec-arguments command by Ilia K · 11 years ago
  65. e732052 Add an -A option to "break set -p" to search all files for matches. Also add the version of by Jim Ingham · 11 years ago
  66. 3738614 Extract attach core logic from SBTarget::Attach* methods into unified SBTarget::AttachToProcess and make it work with platform for remote attach purposes. by Oleksiy Vyalov · 11 years ago
  67. 1ef7b2c Extend SBPlatform with capability to launch/terminate a process remotely. Integrate this change into test framework in order to spawn processes on a remote target. by Oleksiy Vyalov · 11 years ago
  68. 6fd3f34 Make SBTarget::Launch() respect the stop_at_entry argument. by Zachary Turner · 11 years ago
  69. 972be53 Provide CreateValueFromData,Expression at the SBTarget level as well as the SBValue level; and also make all the implenentations agree on using the matching ValueObject::Create instead of doing code copypastas by Enrico Granata · 11 years ago
  70. 9998acd This is the meat of the code to add Clang modules by Sean Callanan · 11 years ago
  71. 8012cad Fixed more fallout from running the test suite remotely on iOS devices. by Greg Clayton · 11 years ago
  72. 8691dc5 Fixed SBTarget::ReadMemory() to work correctly and the TestTargetAPI.py test case that was reading target memory in TargetAPITestCase.test_read_memory_with_dsym and TargetAPITestCase.test_read_memory_with_dwarf. by Greg Clayton · 11 years ago
  73. c928de3 Added functions to the C++ API, for the benefit of non-8-bit byte architectures. by Matthew Gardiner · 11 years ago
  74. dc6224e Make the "synchronous" mode actually work without race conditions. by Greg Clayton · 11 years ago
  75. 10687b0 Remove LLDB_DEFAULT_SHELL #define, and determine this at runtime. by Zachary Turner · 11 years ago
  76. 0fd6fd4 Adds two new functions to SBTarget FindGlobalVariables and FindGlobalFunctions that lets you search by name, by regular expression and by starts with. by Carlo Kok · 11 years ago
  77. 4041116 Fix some warnings in the Windows build. by Zachary Turner · 11 years ago
  78. 106d028 Added an option to turn OFF the "detach on error" behavior that was added by Jim Ingham · 11 years ago
  79. 3924d75 Remove unused variables by Saleem Abdulrasool · 11 years ago
  80. 3e32ad6 Allow clients to control the exact path that is used to launch processes by adding new calls to SBLaunchInfo. by Greg Clayton · 11 years ago
  81. 8646d3c Rename eExecution*** to eExpression*** to be consistent with the result type. by Jim Ingham · 11 years ago
  82. 1624a2d Make the Expression Execution result enum available to the SB API layer. by Jim Ingham · 11 years ago
  83. 324a103 sweep up -Wformat warnings from gcc by Saleem Abdulrasool · 11 years ago
  84. a332978 lldb arm64 import. by Jason Molenda · 12 years ago
  85. 751caf6 Modified ObjectFile::SetLoadAddress() to now be: by Greg Clayton · 12 years ago
  86. b09c538 Centralized the launching of a process into Target::Launch() by Greg Clayton · 12 years ago
  87. d5944cd For logical backtrace work, lldb needs to track Module unloads etc & symoblicate an address based on a point in time by Greg Clayton · 12 years ago
  88. fbb7634 Expose SBPlatform through the public API. by Greg Clayton · 12 years ago
  89. b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
  90. f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
  91. dc4db5a <rdar://problem/15144376> by Enrico Granata · 12 years ago
  92. eb023e7 <rdar://problem/13635174> by Greg Clayton · 12 years ago
  93. 347c2aa <rdar://problem/14028923> by Enrico Granata · 12 years ago
  94. b019cd9 When target module add/SBTarget::AddModule()'ing, if an architecture isn't specifically by Jason Molenda · 12 years ago
  95. 57ee306 Huge change to clean up types. by Greg Clayton · 12 years ago
  96. 226cce2 Added a way to extract the module specifications from a file. A module specification is information that is required to describe a module (executable, shared library, object file, ect). This information includes host path, platform path (remote path), symbol file path, UUID, object name (for objects in .a files for example you could have an object name of "foo.o"), and target triple. Module specification can be used to create a module, or used to add a module to a target. A list of module specifications can be used to enumerate objects in container objects (like universal mach files and BSD archive files). by Greg Clayton · 12 years ago
  97. c646231 We were getting an assert because somebody was making a watchpoint that was by Jim Ingham · 12 years ago
  98. d659dc1 Avoid hang in attach-by-name test case by Daniel Malea · 12 years ago
  99. 3faf47c <rdar://problem/11730263> by Greg Clayton · 13 years ago
  100. 5160ce5 <rdar://problem/13521159> by Greg Clayton · 13 years ago