1. 1ccfba6 bump TOT version number to lldb-146 to match the checkin on the branch. by Jason Molenda · 12 years ago
  2. b170aee <rdar://problem/11358639> by Greg Clayton · 12 years ago
  3. 8d03c6f Add clarification comments. by Johnny Chen · 12 years ago
  4. a63c538 Updated LLVM to take a fix for disassembly of Thumb branch operands. by Sean Callanan · 12 years ago
  5. 6f4a115 Updated to a more meaningful macro name. by Johnny Chen · 12 years ago
  6. 6092371 Fix the problem that 'help breakpoint set' is printing a lot of redundant lines. by Johnny Chen · 12 years ago
  7. 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
  8. 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
  9. 5c33a42 Updated LLVM to fix bad disassembly of operands by Sean Callanan · 12 years ago
  10. e61ec7f Remove repeated word. by Filipe Cabecinhas · 12 years ago
  11. 78c180a Fixed some strncat/strlcat uses. by Filipe Cabecinhas · 12 years ago
  12. 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
  13. 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
  14. fc58af2 Added an "attach" alias as promised on the web page. by Sean Callanan · 12 years ago
  15. 1b584eb Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 12 years ago
  16. 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
  17. 2b53695 When the current thread state is NULL, PyThreadState_Get() issues a fatal error. by Johnny Chen · 12 years ago
  18. 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
  19. cb740b3 In ProcessGDBRemote::DoConnectRemote(), if the remote system informed by Jason Molenda · 12 years ago
  20. a889aee Fix the following error when importing crashlog.py from a Python interactive session: by Johnny Chen · 12 years ago
  21. 88e3de2 Clean up the usage of "MasterPlan" status in ThreadPlans. Only user-initiated plans by Jim Ingham · 12 years ago
  22. 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
  23. 4e46867 Fix AttributeError when using crashlog with verbose mode. by Johnny Chen · 12 years ago
  24. 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
  25. 302100f Patched our local Clang to fix a crash when parsing by Sean Callanan · 12 years ago
  26. 1990449 Update the docs to reflect the recent changes to categories by Enrico Granata · 12 years ago
  27. c0791aa Mentioning in the docs that Python commands can have docstrings by Enrico Granata · 12 years ago
  28. 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
  29. 14f17cf Jeeze... Remove two unneeded #include's of ThreadPlanTestCondition.h, and replace them with by Jim Ingham · 12 years ago
  30. 13e52a6 Forgot to commit the change deleting the ThreadPlanTestCondition files from the project. by Jim Ingham · 12 years ago
  31. b5d55cf Cleanup - removing the ThreadPlanTestCondition and its helper functions. It is not needed, by Jim Ingham · 12 years ago
  32. 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
  33. 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
  34. 8a6f3e9 Added a --force option to "memory read," by Sean Callanan · 12 years ago
  35. 5564b58 Clarify "watchpoint set" help text. by Johnny Chen · 12 years ago
  36. fbbede5 Bump to lldb-145. by Jason Molenda · 12 years ago
  37. 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
  38. c76486c Don't call SBDebugger::SetInternalVariable in the sigwinch_handler, since that takes locks and potentially does allocations. by Jim Ingham · 12 years ago
  39. 26c05d9 Made the IR interpreter move all floats, not just "wide" by Sean Callanan · 12 years ago
  40. 13bf85c Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  41. 45dbebf Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  42. 664b099 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  43. b7a22b2 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  44. 7aeed48 Patch from Filipe Cabecinhas. by Greg Clayton · 12 years ago
  45. 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
  46. 87677ee Add an Error string specifically for when we hit an ENOMEM when by Jason Molenda · 12 years ago
  47. 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
  48. 356bcc0 <rdar://problem/11271074> <rdar://problem/11285931> by Greg Clayton · 12 years ago
  49. 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
  50. 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
  51. 0ff10b5 Fixing a typo in the NSArray data formatter by Enrico Granata · 12 years ago
  52. 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
  53. 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
  54. 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
  55. 0ffff1e Hardened LLDB against NULL identifiers being passed by Sean Callanan · 12 years ago
  56. 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
  57. d6d067a Fixing an over-substitution of text by Enrico Granata · 12 years ago
  58. 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
  59. 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
  60. b11f4a0 Bump to lldb-144. by Jason Molenda · 12 years ago
  61. 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
  62. 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
  63. a666550 Remove unneeded files. by Greg Clayton · 12 years ago
  64. aa0489c Move the source and Makefile into a directory so it will be easier to install. by Greg Clayton · 12 years ago
  65. 70fa461 Renaming to rid of the '++' in the test file name and simplify the Makefile. by Johnny Chen · 12 years ago
  66. f4c2c68 Make the Makefile stand alone. by Greg Clayton · 12 years ago
  67. 73260da Fix the docs for "breakpoint command add" to specify the arguments passed into the python function. by Jim Ingham · 12 years ago
  68. 89f099b Removed a binary that I accidentally committed. by Sean Callanan · 12 years ago
  69. 49749a7 Recognize Objective-C classes with runtime class by Sean Callanan · 12 years ago
  70. 4e651b1 Maked LLDB into a package so we can import things without poluting the global namespace. by Greg Clayton · 12 years ago
  71. 20c1307 Made it safe to re-import a Python module, allowing by Sean Callanan · 12 years ago
  72. c315bdc Fixing a bunch of i386 testsuite failures by Enrico Granata · 12 years ago
  73. 6b028d6 Change Target::ReadMemoryFromFileCache to not read from the file by Jason Molenda · 12 years ago
  74. 2a45d0e Make the test case more robust in terms of remote testsuite execution. by Johnny Chen · 12 years ago
  75. 800bd70 Forgo the selector test on i386, where we can't by Sean Callanan · 12 years ago
  76. 0eba719 Create an NSAutoreleasePool correctly in a test by Sean Callanan · 12 years ago
  77. 1463b65 Add a suffix rule for compiling objc++ files and a sample directory under test/lang/objcxx. by Johnny Chen · 12 years ago
  78. ba0893f Fixing a typo in the previous commit that broke the build by Enrico Granata · 12 years ago
  79. 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
  80. 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
  81. cbff0fb <rdar://problem/11291668> by Greg Clayton · 12 years ago
  82. 0821057 Fixed a crasher that occurs when an expression by Sean Callanan · 12 years ago
  83. 6f7f8da Added support for the LC_ENCRYPTION_INFO load command. by Greg Clayton · 12 years ago
  84. 862fd5c Report the command error when we are in "stop on error mode." by Jim Ingham · 12 years ago
  85. 2a76fbf A small fix for ObjectFileMachO::ParseSymtab() where a pointer by Jason Molenda · 12 years ago
  86. d67dc54 Fixing the test case so that it runs correctly on i386 as well as on x86_64 by Enrico Granata · 12 years ago
  87. 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
  88. 2d34a50 This patch fixes a bug where LLDB was incorrectly setting the address-size on a DataExtractor to be sizeof(void*) when the ValueObject came out of the expression parser by Enrico Granata · 12 years ago
  89. 796152f Pass *this in explicitly to save the FileSpec copy construction. by Jim Ingham · 12 years ago
  90. 73a3571 Added the ability to log a message with a backtrace when verbose logging is enabled to the Module class. Used this new function in the DWARF parser. by Greg Clayton · 12 years ago
  91. c705730 <rdar://problem/11282938> by Greg Clayton · 12 years ago
  92. f0bc815 Added the ability to specify the symbol file for a module when adding it to a target. by Greg Clayton · 12 years ago
  93. 67898a0 Test file renaming. by Johnny Chen · 12 years ago
  94. 6a3f9af Implemented zext as a no-op cast in the IR interpreter. by Sean Callanan · 12 years ago
  95. 25f800e Bump version to lldb-143. by Jason Molenda · 12 years ago
  96. 1ced142 Remove the expectedFailure decorator as the bug has been fixed. by Johnny Chen · 12 years ago
  97. 9098fee Added code to automatically load the libheap.dylib when ptr_refs, cstr_refs or malloc_info are called. If MallocStackLogging is enabled, then you can now use --stack to dump the backtrace of the code that allocated each malloc block. by Greg Clayton · 12 years ago
  98. 0f485ea Method name change to avoid further conflicts when merging from ToT to branches/lldb-platform-work. by Johnny Chen · 12 years ago
  99. 4c983c8 Fixed some issues with symbolicating things. Fixed symbolication.add_module() to not use the resolved_path before we have tried to locate it. Fixed crashlog.locate_module_and_debug_symbols() to return true and false correctly. by Greg Clayton · 12 years ago
  100. e787c7e Make sure the "synchronous breakpoint callbacks" get called before the thread plan logic gets invoked, and if they by Jim Ingham · 12 years ago