1. 6884bdd Option processing fix: should match '-F' exactly, instead. by Johnny Chen · 12 years ago
  2. 1b8de0a Make redo.py more error-proof by Filipe Cabecinhas · 12 years ago
  3. 18ae2b1 Remove the string pool from the global destructor chain so it doesn't get yanked out from under us prematurely on exit. by Jim Ingham · 12 years ago
  4. f92ddcc Print out a notification when the process of a target other than the currently selected target stops. by Jim Ingham · 12 years ago
  5. 07baf83 <rdar://problem/11338654> Fixing a bug where having a summary for a bitfield without a format specified would in certain cases crash LLDB - This has also led to refactoring the by-type accessors for the data formatter subsystem. These now belong in our internal layer, and are just invoked by the public API stratum by Enrico Granata · 12 years ago
  6. da23dff <rdar://problem/11400476> by Han Ming Ong · 12 years ago
  7. 79a5926 <rdar://problem/11408853> by Han Ming Ong · 12 years ago
  8. 651cbe2 <rdar://problem/11239650> Fixing a bug where the SetValueFromCString() method failed to operate on dynamic values. The fix consists in making the set operation fall through to the parent. We only actually allow this if the dynamic value is at a 0-offset from the parent, or the new value is 0. Other scenarios would need agreement on the actual meaning of the set operation (do we keep offsetting? do we just assume the user knows what they are doing?) so we prevent them, and let the expression parser deal with the complexity by Enrico Granata · 12 years ago
  9. 4c87ebf Fixing some indentation. by Jim Ingham · 12 years ago
  10. 7402d3b A simple implementation of a summary and synthetic children providers for LLDB-specific shared pointers - This could be generalized to work with C++11 shared pointers with relative ease by Enrico Granata · 12 years ago
  11. d9488c8 Removing spurious friend declaration by Enrico Granata · 12 years ago
  12. 4758a3c First part of a fix to make GetNonSyntheticValue() work correctly by Enrico Granata · 12 years ago
  13. 5f2b926 <rdar://problem/10605072> by Greg Clayton · 12 years ago
  14. 1ccfba6 bump TOT version number to lldb-146 to match the checkin on the branch. by Jason Molenda · 12 years ago
  15. b170aee <rdar://problem/11358639> by Greg Clayton · 12 years ago
  16. 8d03c6f Add clarification comments. by Johnny Chen · 12 years ago
  17. a63c538 Updated LLVM to take a fix for disassembly of Thumb branch operands. by Sean Callanan · 12 years ago
  18. 6f4a115 Updated to a more meaningful macro name. by Johnny Chen · 12 years ago
  19. 6092371 Fix the problem that 'help breakpoint set' is printing a lot of redundant lines. by Johnny Chen · 12 years ago
  20. cf0bc6d Add an -F option to the redo.py script to selectively re-run only those failed sessions whose filenames contain the component(s) by Johnny Chen · 12 years ago
  21. 3bbbdc3 Move the el_source() call after the section of code which sets up the default "ctrl-r" and "ctrl-w" bindings by Johnny Chen · 12 years ago
  22. 5c33a42 Updated LLVM to fix bad disassembly of operands by Sean Callanan · 12 years ago
  23. e61ec7f Remove repeated word. by Filipe Cabecinhas · 12 years ago
  24. 78c180a Fixed some strncat/strlcat uses. by Filipe Cabecinhas · 12 years ago
  25. abd370a Jason Molenda convinced me that we should make ctrl-w on the command line bind to ed-delete-prev-word. by Johnny Chen · 12 years ago
  26. 8533e99 Missed a few uses of Mutex::GetMutex in template functions that don't seem to get instantiated on the Mac OS X build, by Jim Ingham · 12 years ago
  27. fc58af2 Added an "attach" alias as promised on the web page. by Sean Callanan · 12 years ago
  28. 1b584eb Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 12 years ago
  29. 9d01042 Added an interactive mode to the "crashlog" command so that we can look at multiple crash logs at once and do some data mining. Added an interactive command prompt that allows you to do: by Greg Clayton · 12 years ago
  30. 2b53695 When the current thread state is NULL, PyThreadState_Get() issues a fatal error. by Johnny Chen · 12 years ago
  31. 35dd496 Fix a think in Mutex::Locker::Locker(pthread_mutex_t *) Really should lock the mutex handed in, not the m_mutex_ptr that you've set to NULL... by Jim Ingham · 12 years ago
  32. cb740b3 In ProcessGDBRemote::DoConnectRemote(), if the remote system informed by Jason Molenda · 12 years ago
  33. a889aee Fix the following error when importing crashlog.py from a Python interactive session: by Johnny Chen · 12 years ago
  34. 88e3de2 Clean up the usage of "MasterPlan" status in ThreadPlans. Only user-initiated plans by Jim Ingham · 12 years ago
  35. ee033f2 Document the fact that you can repeat "-n" and similar options to make one breakpoint on multiple names. by Jim Ingham · 12 years ago
  36. 4e46867 Fix AttributeError when using crashlog with verbose mode. by Johnny Chen · 12 years ago
  37. 6a04353 Adding a new 'type category disable *' feature that disables all categories - This is intended as a quick kill switch for data formatters for cases where the user wants as little extra processing as possible to be done on their target, or to override major data formatters bug, should they occur by Enrico Granata · 12 years ago
  38. 302100f Patched our local Clang to fix a crash when parsing by Sean Callanan · 12 years ago
  39. 1990449 Update the docs to reflect the recent changes to categories by Enrico Granata · 12 years ago
  40. c0791aa Mentioning in the docs that Python commands can have docstrings by Enrico Granata · 12 years ago
  41. 7950572 If a command takes options and arguments, the help text should warn the user to use "--" to terminate the options. by Jim Ingham · 12 years ago
  42. 14f17cf Jeeze... Remove two unneeded #include's of ThreadPlanTestCondition.h, and replace them with by Jim Ingham · 12 years ago
  43. 13e52a6 Forgot to commit the change deleting the ThreadPlanTestCondition files from the project. by Jim Ingham · 12 years ago
  44. b5d55cf Cleanup - removing the ThreadPlanTestCondition and its helper functions. It is not needed, by Jim Ingham · 12 years ago
  45. 707b7a8 Fix reporting of stop reasons when the StepOver & StepIn plans stop because of a crash or breakpoint. Added the ability for a plan to say it is done but doesn't want to be the reason for the stop. by Jim Ingham · 12 years ago
  46. 99c63be Use a cache of the results of "GetFileAddress" from a symbol in the Comparator we are using to sort the various lookup indices by symbol address. When we switched to weak pointers, by Jim Ingham · 12 years ago
  47. 8a6f3e9 Added a --force option to "memory read," by Sean Callanan · 12 years ago
  48. 5564b58 Clarify "watchpoint set" help text. by Johnny Chen · 12 years ago
  49. fbbede5 Bump to lldb-145. by Jason Molenda · 12 years ago
  50. e1ef1e3 Clean up the way modules are looked for when calling Target::GetSharedModule(...). We were ignoring remapped files, even if they were valid. Also if we have a UUID, we should check our global module list first. by Greg Clayton · 12 years ago
  51. c76486c Don't call SBDebugger::SetInternalVariable in the sigwinch_handler, since that takes locks and potentially does allocations. by Jim Ingham · 12 years ago
  52. 26c05d9 Made the IR interpreter move all floats, not just "wide" by Sean Callanan · 12 years ago
  53. 13bf85c Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  54. 45dbebf Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  55. 664b099 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  56. b7a22b2 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  57. 7aeed48 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  58. 9e8865e Save more memory by not parsing the symbol table for stand alone DWARF files. We currently have SymbolFile plug-ins which all get the chance to say what they can parse in a symbol file. Prior to this fix we would ask the SymbolFileDWARF plug-in what abilities it had, and it would answer with "everything", and then we would check the SymbolFileSymtab plug-in what abilities it had, in case it had more abilities. The checking that SymbolFileSymtab does is a bit expensive as it pulls in the entire symbol table just to see if it can offer a few scraps of debug information. This causes all stand along DWARF files to pull in their symbol tables even though those symbols will never be used. This fix will check all SymbolFile plug-ins for their abilities and if any plug-in responds with "everything", then we stop the search. by Greg Clayton · 12 years ago
  59. 87677ee Add an Error string specifically for when we hit an ENOMEM when by Jason Molenda · 12 years ago
  60. ce035a0 Automatically enabling the Cocoa formatter categories for command-line LLDB. Previously, the categories were filled in but disabled by default. Tweaking test cases appropriately to keep working and do the right thing by Enrico Granata · 12 years ago
  61. 356bcc0 <rdar://problem/11271074> <rdar://problem/11285931> by Greg Clayton · 12 years ago
  62. 431d26d Patch from Viktor Kutuzov: changes the method declarations to const for the Args::GetCommandString and Agrs::GetQuotedCommandString methods. It allows using of these methods within the other const methods. by Greg Clayton · 12 years ago
  63. 3e33979 Make the libheap.dylib build into a consistent temp directory so it can be reused between lldb invocations. Also add the module name into the directory path that is used to store the target triple specific build of libheap.dylib. by Greg Clayton · 12 years ago
  64. 0ff10b5 Fixing a typo in the NSArray data formatter by Enrico Granata · 12 years ago
  65. f8c2370 Make sure the end of the first line is still within the function, and if not, don't push the prologue past it. by Jim Ingham · 12 years ago
  66. 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
  67. 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
  68. 0ffff1e Hardened LLDB against NULL identifiers being passed by Sean Callanan · 12 years ago
  69. dff3f44 Suspend program threads before sending the SIGSTOP & resuming, so other threads won't get into trouble while we are waiting for the SIGSTOP. by Jim Ingham · 12 years ago
  70. d6d067a Fixing an over-substitution of text by Enrico Granata · 12 years ago
  71. 66148c6 Make the C++ formatters importable by having them use the right package to import and reference the Logger by Enrico Granata · 12 years ago
  72. 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
  73. b11f4a0 Bump to lldb-144. by Jason Molenda · 12 years ago
  74. 0d235d5 Making the Cocoa formatters comply with the new on-disk layout of the Python resources - This is one of the steps towards making the data formatters work again by Enrico Granata · 12 years ago
  75. 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
  76. a666550 Remove unneeded files. by Greg Clayton · 12 years ago
  77. aa0489c Move the source and Makefile into a directory so it will be easier to install. by Greg Clayton · 12 years ago
  78. 70fa461 Renaming to rid of the '++' in the test file name and simplify the Makefile. by Johnny Chen · 12 years ago
  79. f4c2c68 Make the Makefile stand alone. by Greg Clayton · 12 years ago
  80. 73260da Fix the docs for "breakpoint command add" to specify the arguments passed into the python function. by Jim Ingham · 12 years ago
  81. 89f099b Removed a binary that I accidentally committed. by Sean Callanan · 12 years ago
  82. 49749a7 Recognize Objective-C classes with runtime class by Sean Callanan · 12 years ago
  83. 4e651b1 Maked LLDB into a package so we can import things without poluting the global namespace. by Greg Clayton · 12 years ago
  84. 20c1307 Made it safe to re-import a Python module, allowing by Sean Callanan · 12 years ago
  85. c315bdc Fixing a bunch of i386 testsuite failures by Enrico Granata · 12 years ago
  86. 6b028d6 Change Target::ReadMemoryFromFileCache to not read from the file by Jason Molenda · 12 years ago
  87. 2a45d0e Make the test case more robust in terms of remote testsuite execution. by Johnny Chen · 12 years ago
  88. 800bd70 Forgo the selector test on i386, where we can't by Sean Callanan · 12 years ago
  89. 0eba719 Create an NSAutoreleasePool correctly in a test by Sean Callanan · 12 years ago
  90. 1463b65 Add a suffix rule for compiling objc++ files and a sample directory under test/lang/objcxx. by Johnny Chen · 12 years ago
  91. ba0893f Fixing a typo in the previous commit that broke the build by Enrico Granata · 12 years ago
  92. 4d609c9 Fixing an issue where the expression parser was not correctly freeze-drying bitfields - This patch ensures that (a) freeze-drying bitfields works correctly and (b) that we actually access bitfields through IR instead of the 'frame var en lieu of expr' shortcut, for added safety in corner cases that may arise by Enrico Granata · 12 years ago
  93. 3bc7e5e Add a '-R' option, which is similar to '-r', except that the relocated directory, if exists, will be removed entirely by Johnny Chen · 12 years ago
  94. cbff0fb <rdar://problem/11291668> by Greg Clayton · 12 years ago
  95. 0821057 Fixed a crasher that occurs when an expression by Sean Callanan · 12 years ago
  96. 6f7f8da Added support for the LC_ENCRYPTION_INFO load command. by Greg Clayton · 12 years ago
  97. 862fd5c Report the command error when we are in "stop on error mode." by Jim Ingham · 12 years ago
  98. 2a76fbf A small fix for ObjectFileMachO::ParseSymtab() where a pointer by Jason Molenda · 12 years ago
  99. d67dc54 Fixing the test case so that it runs correctly on i386 as well as on x86_64 by Enrico Granata · 12 years ago
  100. 79bdadd Removing the @expectedFailurei386 decorator from test cases that now work as a result of the latest changes to Value.cpp by Enrico Granata · 12 years ago