1. 7c55515 Rename unwind_diagnose.py to diagnose_unwind.py. Change by Jason Molenda · 11 years ago
  2. 2014fa9 Forgot to include the diagnose_unwind.py script in the initialization of by Jason Molenda · 11 years ago
  3. 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
  4. 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
  5. 2c35472 Adding new Python API function to check for stopped threads. by Andrew Kaylor · 11 years ago
  6. b104986 Remove the useless SRCROOT declaration from the call of build-swig-wrapper-classes.sh & finish-swig-wrapper-classes.sh by Sylvestre Ledru · 11 years ago
  7. 847a0ad Make sure we expose SetData() through the Python interface. by Sean Callanan · 11 years ago
  8. f3105b5 Fixed SBValueList to have a __str__ function like all other SB classes. Previously this was done as __repr__. by Greg Clayton · 11 years ago
  9. 12fbcf5 <rdar://problem/13563628> by Enrico Granata · 11 years ago
  10. 59b96d5 Modified patch from Prabhat Verma to enable loading core files through the SBTarget API. by Greg Clayton · 11 years ago
  11. ad6cddf <rdar://problem/13434476> by Enrico Granata · 11 years ago
  12. f734066 - Masking out SBCommandReturnObject::Printf() from the Python layer because SWIG and varargs do not get along well. by Enrico Granata · 11 years ago
  13. 3ceae46 <rdar://problem/13312903> by Enrico Granata · 11 years ago
  14. cba09f6 This checkin removes the last Cocoa formatters that were implemented in Python and reimplements them in C++. The Python Cocoa formatters are not shipped as part of LLDB anymore, but still exist in the source repository for user reference. Python formatters still exist for STL classes and users can still define their own Python formatters by Enrico Granata · 11 years ago
  15. fe6dc6e <rdar://problem/13421412> by Greg Clayton · 11 years ago
  16. 6778c99 Updated Apple LLDB version to lldb-300.99.0. Also by Sean Callanan · 11 years ago
  17. 2a22964 Added new properties to lldb.SBModule classes: by Greg Clayton · 11 years ago
  18. 5978746 Stop the "module" property from throwing an exception when the module name was not found in the target module list. by Greg Clayton · 11 years ago
  19. 3b75ec0 Clean up LLDB CMake build output by Daniel Malea · 11 years ago
  20. 7d40838 Convert from the C-based LLVM Disassembler shim to the full MC Disassembler API's. by Jim Ingham · 11 years ago
  21. 137c4d7 Finish up CMake support for LLDB (tested on Linux) by Daniel Malea · 11 years ago
  22. 06925c9 <rdar://problem/13281528> by Greg Clayton · 11 years ago
  23. 7a87d52 Fix document typos, indentation in python code, and API examples. by Daniel Malea · 11 years ago
  24. 89e248f Reworked the way Process::RunThreadPlan and the ThreadPlanCallFunction interoperate to fix problems where by Jim Ingham · 11 years ago
  25. ad72e52 Allow the target to give out the size of the red zone for given ABIs. by Greg Clayton · 12 years ago
  26. 6b07628 Fixed register dumping for contained-regs. by Greg Clayton · 12 years ago
  27. 59d9f11 Use printf instead of echo -n (the latter won't work on OS X's /bin/sh) by Filipe Cabecinhas · 12 years ago
  28. 36da2aa <rdar://problem/13069948> by Greg Clayton · 12 years ago
  29. 52ebc0a <rdar://problem/13010007> by Greg Clayton · 12 years ago
  30. f1f2a15 Disassemble the vAttach packet. by Greg Clayton · 12 years ago
  31. ec1e823 Remove std::string input arguments and replace with "const char *". by Greg Clayton · 12 years ago
  32. 392bd8d <rdar://problem/13021266> by Enrico Granata · 12 years ago
  33. 6474274 <rdar://problem/13009943> by Greg Clayton · 12 years ago
  34. ee33e96 SDKROOT should only be unset/cleared for ARM builds. The first fix by Bob Wilson removed it for ARM for both configure and make, but only unset it for desktop configure, not for the make. My next fix unset/cleared it all the time. This fix only unset/clears it for ARM builds. by Greg Clayton · 12 years ago
  35. 9a44729 Fix clang builds that were broken due to SDKROOT changes of you have an internal OS build. by Greg Clayton · 12 years ago
  36. b794020 Separated the "expr --unwind-on-error" behavior into two parts, actual errors (i.e. crashes) which continue to be by Jim Ingham · 12 years ago
  37. 9b21d73 Fix cross-compiling problems in build-llvm.pl script. <rdar://problem/12986905> by Bob Wilson · 12 years ago
  38. bec2ac8 Fix typo in function name and one more whitespace tweak. by Bob Wilson · 12 years ago
  39. a53ac6d Fix whitespace. by Bob Wilson · 12 years ago
  40. 0e3b98e Add an SBProcess API to get the current StopID, either considering or ignoring stops caused by expression by Jim Ingham · 12 years ago
  41. 19b6467 <rdar://problem/12928282> by Greg Clayton · 12 years ago
  42. 9c970a3 Adding events when watchpoints are set or changed. by Jim Ingham · 12 years ago
  43. f2ca573 Fixed a few bugs in the "step in" thread plan logic. by Jim Ingham · 12 years ago
  44. 33060ad Make sure that the lldb globals: by Greg Clayton · 12 years ago
  45. 18e0830 Added GetCanonicalType() to SBType: by Greg Clayton · 12 years ago
  46. 0b93a75 <rdar://problem/12749733> by Greg Clayton · 12 years ago
  47. 0bce9a2 <rdar://problem/12649160> by Greg Clayton · 12 years ago
  48. b3dafc6 <rdar://problem/12750060> by Greg Clayton · 12 years ago
  49. 37459fc Match extern "C" in declaration and definition (swig template) by Daniel Malea · 12 years ago
  50. 0194553 Linux buildbot fix: detect swig tool from PATH in shell script (before searching hardcoded directories) by Daniel Malea · 12 years ago
  51. fb9cee6 <rdar://problem/12720514> Sub-TLF: Provide service to profile the inferior by Han Ming Ong · 12 years ago
  52. f2b0fef Makefile patches from Charles Davis and Daniel Malea (+ one or two tweaks). by Filipe Cabecinhas · 12 years ago
  53. 9927057 Added the ability to get function return and argument types to SBType(): by Greg Clayton · 12 years ago
  54. 82913de Ensuring that the swig typemaps for SBData set the size to 0 along with the pointer to NULL by Enrico Granata · 12 years ago
  55. fee26ee Add API to get the process plugin name & short name. by Jim Ingham · 12 years ago
  56. 800332c <rdar://problem/12523238> Commit 1 of 3 by Enrico Granata · 12 years ago
  57. 54037b1 <rdar://problem/12493007> by Greg Clayton · 12 years ago
  58. 3d656c7 <rdar://problem/12437442> by Enrico Granata · 12 years ago
  59. 75a443b API cleanup. by Greg Clayton · 12 years ago
  60. 47beabb Add the ability to set timeout & "run all threads" options both from the "expr" command and from by Jim Ingham · 12 years ago
  61. b8fda50 Removing the two extra GetXSize(bool) calls since we do not desire to support them long-term by Enrico Granata · 12 years ago
  62. c2bc794 <rdar://problem/12446320> Fixing an issue with our Driver where setting an immediate output would not cause suppression of the final printout. This allows effective output redirection for Python commands by Enrico Granata · 12 years ago
  63. 949b717 <rdar://problem/12490588> by Greg Clayton · 12 years ago
  64. 82560f2 <rdar://problem/12490558> by Greg Clayton · 12 years ago
  65. 4930614 <rdar://problem/12462744> Implement a new SBDeclaration class to wrap an lldb_private::Declaration - make a GetDeclaration() API on SBValue to return a declaration. This will only work for vroot variables as they are they only objects for which we currently provide a valid Declaration by Enrico Granata · 12 years ago
  66. 94a5d0d Change the Thread constructor over to take a Process& rather than a ProcessSP. We can't create Threads with a NULL ProcessSP, so it makes no sense to use the SP. by Jim Ingham · 12 years ago
  67. f817d45 Fix a build warning and a dangerous possible crasher. by Greg Clayton · 12 years ago
  68. 2cb0203 <rdar://problem/12200505> Fixing a logical error in SBProcess, where the get_process_thread_list function was creating invalid threads_access instances, and hence failing to correctly fill in the list by Enrico Granata · 12 years ago
  69. 8b902e2 Silly me! There was a closing ) missing from one of the lines - and Python complained about syntax errors on the next line. It being a Friday afternoon made the rest by Enrico Granata · 12 years ago
  70. c060828 Retrying to apply Vishal's patch - hopefully this time it won't break Jason's build by Enrico Granata · 12 years ago
  71. f3f10a3 Revert Vishal's patch that Enrico commited, at least for the weekend. With it applied, by Jason Molenda · 12 years ago
  72. 44c83e1 patch from Vishal Patel to improve our lldb.value wrapper by Enrico Granata · 12 years ago
  73. 1a65bfc <rdar://problem/12442990> Fix the implementation of lldb.value.__eq__ by Enrico Granata · 12 years ago
  74. 2753a02 Add one-shot breakpoints (-o option to "break set") and a tbreak alias for our gdb friends. by Jim Ingham · 12 years ago
  75. edc4132 <rdar://problem/12099999> renaming SBStream::Printf to Print in the scripting world in order to avoid supporting varargs through SWIG by Enrico Granata · 12 years ago
  76. 0d182c0 Removed a directive to delete the test subdirectories by Sean Callanan · 12 years ago
  77. 6d10188 Implementing plugins that provide commands. by Enrico Granata · 12 years ago
  78. e2801e1 Patch from Dan Malea to get the Bourne shells scripts to run cleanly on Ubuntu. by Jason Molenda · 12 years ago
  79. 3fcc297 Add an API to figure out whether a breakpoint is internal or not. by Jim Ingham · 12 years ago
  80. 54e5805 Added a new Xcode build configuration, DebugClang, by Sean Callanan · 12 years ago
  81. 06dc17f Brought LLDB top-of-tree into sync with LLVM/Clang by Sean Callanan · 12 years ago
  82. 56de6d1 Fix some type-related swig bugs on FreeBSD on x86_64 (and maybe other OS/arch). by Filipe Cabecinhas · 12 years ago
  83. 4bb4f30 Fixed some problems with SWIG bindings. by Filipe Cabecinhas · 12 years ago
  84. f59388a Make the unwinding of the stack part of "thread return" work, and add the thread return command. by Jim Ingham · 12 years ago
  85. 0ca065d Patches to make our llvm revision more C++11 friendly. by Filipe Cabecinhas · 12 years ago
  86. a17a81a Start at getting "thread return" working. Doesn't work yet. by Jim Ingham · 12 years ago
  87. be7c20a Patch for clang to include the UTF conversion routines that LLDB needs by Enrico Granata · 12 years ago
  88. 72935d3 Added the ability to verify the LLDB API on MacOSX using a script. Usage is: by Greg Clayton · 12 years ago
  89. 8001716 Simplify the typecheck code. by Filipe Cabecinhas · 12 years ago
  90. e25c631 Fixing a potential control may reach end of non-void function issue by Enrico Granata · 12 years ago
  91. 43898d7 Added SBDebugger's log callbacks to Python-land by Filipe Cabecinhas · 12 years ago
  92. cec963a Fixing a bunch of issues with the OS plugin code by Enrico Granata · 12 years ago
  93. 155ee91 Adding bindings to the Script Interpreter for some basic Python OS plugin functionality (still WIP) by Enrico Granata · 12 years ago
  94. 85fbe9d Fixed a Linux building bug pointed out by Daniel Malea. by Filipe Cabecinhas · 12 years ago
  95. 55ea73d Added a typemap and wrappers for SBInputReader callbacks by Filipe Cabecinhas · 12 years ago
  96. 16742a6 Fix a crash (_wrap_SBDebugger_SetInputFileHandle -> PyString_AsString) running the test suite. by Johnny Chen · 12 years ago
  97. f590be8 A baton isn't needed to dispatch input. by Filipe Cabecinhas · 12 years ago
  98. ec2d127 Add FILE* typemaps for SBDebugger.GetInputFileHandle() and friends. by Filipe Cabecinhas · 12 years ago
  99. 8165d43 Merge python-GIL bracnh (by filcab) back into trunk! by Johnny Chen · 12 years ago
  100. f3ec461 rdar://problem/11457143 [ER] need "watchpoint command ..." by Johnny Chen · 12 years ago