1. a792abe Added logging so we can see the field names and offsets of any structures by Greg Clayton · 13 years ago
  2. 2fecc45 Stop running so many individual commands when going into the script interpreter. by Greg Clayton · 13 years ago
  3. 98b9895 Xcode codesigning is broken. Work around this by doing code signing in a shell script build phase. by Greg Clayton · 13 years ago
  4. 3fc0c4f Adding the DWARF parser side for assited layout where the AST context by Greg Clayton · 13 years ago
  5. d13a4df Add an InstanceSettings::NotifyOwnerIsShuttingDown() method so that the owner can notify InstanceSettings instances by Johnny Chen · 13 years ago
  6. 8a79708 Disable the ConnectionFileDescriptor mutex for now as it is deadlocking our by Greg Clayton · 13 years ago
  7. 3a4a75c Fix typo. by Johnny Chen · 13 years ago
  8. fd8ef2e Emit the message about putting ' -- ' between the end of command options and the raw input conditionally, by Johnny Chen · 13 years ago
  9. 08205a6 Added a ModuleList::Destroy() method which will reclaim the std::vector by Greg Clayton · 13 years ago
  10. b17bf82 NULL out the "ptr_" member of shared pointers for debug and release by Greg Clayton · 13 years ago
  11. 1503c0f Enable extra error checking for debug builds in our mutexes by by Greg Clayton · 13 years ago
  12. f75e391 There is no need to hold onto an ExecutionContext as a member variable. by Greg Clayton · 13 years ago
  13. 06c6b25 Fixed a location where we would never end up unlocking our mutex in by Greg Clayton · 13 years ago
  14. c149c8b Fixed an issue that could happen during global object destruction in our by Greg Clayton · 13 years ago
  15. aa119dd <rdar://problem/10760649> by Greg Clayton · 13 years ago
  16. 177bc68 <rdar://problem/10750012> by Greg Clayton · 13 years ago
  17. ccf4450 Fixed formats being able to be applied recursively when using: by Greg Clayton · 13 years ago
  18. 261c974 Added some clarifications about when the __lldb_init_module would be called by Greg Clayton · 13 years ago
  19. 47fdb0f Added a 'gdbremote' python module that adds two commands: start_gdb_log and end_gdb_log. by Greg Clayton · 13 years ago
  20. f3edcc0 Fix page title. by Greg Clayton · 13 years ago
  21. f8c0fc5 For Dump(Stream *s), use GetOptionsNoCreate()->GetIgnoreCount() and fix the indentation. by Johnny Chen · 13 years ago
  22. 736f0d6 Typo. by Johnny Chen · 13 years ago
  23. 4272164 If timestamps are enabled when logging GDB remote packets ("log enable -T -f /tmp/packets.log gdb-remote logs") then get the amount of time spent executing each packet and summarize at the end of a dump. Sample timing output looks like: by Greg Clayton · 13 years ago
  24. 758442a Move argument checking/manipulation into the front of the function. by Johnny Chen · 13 years ago
  25. 61d44fa Clearify some comment. by Johnny Chen · 13 years ago
  26. 39fb5c2 Cleanup docstring and remove dead code. by Johnny Chen · 13 years ago
  27. 5f4a538 Handle 's' packets correctly when disassembling GDB packet output. by Greg Clayton · 13 years ago
  28. 42b7ff9 Add some more test cases for command completion: by Johnny Chen · 13 years ago
  29. 0c5c43b Fix a typo in the error message of the StopInfoWatchpoint class. by Johnny Chen · 13 years ago
  30. ddf110d Added a mechanism for the IR interpreter to return by Sean Callanan · 13 years ago
  31. 27276f7 Better name for the Python Scripting. by Jim Ingham · 13 years ago
  32. 4b59b49 Better name for the python reference. by Jim Ingham · 13 years ago
  33. 062a836 Proof-reading the python docs. by Jim Ingham · 13 years ago
  34. 4fda467 Modify redo.py script so that if sessin_dir is left unspecified, it uses the heuristic by Johnny Chen · 13 years ago
  35. 1c2d941 Minor comment change. Plus use member function instead of directly accessing member field. by Johnny Chen · 13 years ago
  36. 51b7c5f Tiny refactoring to use member functions instead of directly accessing member fields. by Johnny Chen · 13 years ago
  37. f872775 Followup check in for http://llvm.org/viewvc/llvm-project?rev=148491&view=rev, by Johnny Chen · 13 years ago
  38. ad635c8 Dump the raw bytes and the disassembled instruction before calling self.assertTrue() instead of after, by Johnny Chen · 13 years ago
  39. f9ab5ea Added a python FAQ page with detailed examples of how to add python functions by Greg Clayton · 13 years ago
  40. 2c1fdd0 Added options to specify how many instructions before and after the frame by Greg Clayton · 13 years ago
  41. 223e808 Use the "shlex" module to parse the command line that was passed down into by Greg Clayton · 13 years ago
  42. 838c27d <rdar://problem/10711649> by Greg Clayton · 13 years ago
  43. 64f8cab Our Read functions were taking a timeout of UINT32_MAX to mean wait forever, but then by Jim Ingham · 13 years ago
  44. c8bba45 Followup check in for http://llvm.org/viewvc/llvm-project?rev=148491&view=rev, by Johnny Chen · 13 years ago
  45. 9a8e584 Bumped Xcode project versions for lldb-108 and debugserver-166. by Greg Clayton · 13 years ago
  46. a3698c6 Fixed it so the "--help" option works for the crashlog command. Corrected and by Greg Clayton · 13 years ago
  47. 47397c7 Add comment. by Johnny Chen · 13 years ago
  48. 5b6e565 A little bit of cleanup to make the code more understandable. by Johnny Chen · 13 years ago
  49. 45c8714 This file is no longer needed since the command: by Greg Clayton · 13 years ago
  50. 182be6a <rdar://problem/10732738> by Greg Clayton · 13 years ago
  51. fbcad68 o CommandObjectSettingsSet.cpp: by Johnny Chen · 13 years ago
  52. f7fb733 Fixed a global reference that should have been a reference to a class variable. by Sean Callanan · 13 years ago
  53. e9ee550 Make the script work again from the command line as long as the PYTHONPATH by Greg Clayton · 13 years ago
  54. cd79312 More fixed to verify if a file in the crash log is installed in the current by Greg Clayton · 13 years ago
  55. 8077a53 Improved the regular expressions to handle "+" characters being at the front by Greg Clayton · 13 years ago
  56. 01f7c96 Modified the symbolicate-crash.py so it can be imported into python as a by Greg Clayton · 13 years ago
  57. 8f83b75 Add some usage documentation to the top of the source file. by Greg Clayton · 13 years ago
  58. 824da9b Added a new tool that can be loaded into a user space darwin application and allows you by Greg Clayton · 13 years ago
  59. 8042eed Add comment describing the interaction of WantsRawCommandString()/WantsCompletion() with the completion mechanism. by Johnny Chen · 13 years ago
  60. ebad95d Made IsArrayOfScalarType handle typedefs correctly. by Sean Callanan · 13 years ago
  61. adc6c38 Integrated a patch for the MCJIT that inhibits a memory leak. by Sean Callanan · 13 years ago
  62. 120d94d rdar://problem/10724187 by Johnny Chen · 13 years ago
  63. 7f86483 ValueObjectRegister type value objects should obey the format in ValueAsCString. by Jim Ingham · 13 years ago
  64. a1b0ce1 rdar://problem/10712130 by Johnny Chen · 13 years ago
  65. 39c42c5 Fixed a problem where Objective-C classes that were by Sean Callanan · 13 years ago
  66. 666c553 Allow a way to track all allocations for our intrusive ref counted pointers. by Greg Clayton · 13 years ago
  67. 662e567 Fixed an issue with the Instruction subclasses where the strings might by Greg Clayton · 13 years ago
  68. e0028b8 Fixed a problem where maintaining the ObjCInterfaceMap by Sean Callanan · 13 years ago
  69. c1cd379 Fix to ensure that methods aren't called on NULL objects. by Sean Callanan · 13 years ago
  70. e14d3d3 Added an extra way to chop up an objective C prototype and use it where necessary. by Greg Clayton · 13 years ago
  71. 445c086 Be sure to use the one and only trusted source for chopping up by Greg Clayton · 13 years ago
  72. c43e7b8 Fixed an issue in the debugger format strings that include "${function.name-with-args}" by Greg Clayton · 13 years ago
  73. b46346b Add comment regarding TestHelloWorld.py's use of a dictionary to specify/overwrite the EXE name. by Johnny Chen · 13 years ago
  74. 5034a14 Modify the test cases so that each uses a unique executable name for the debugger to attach/launch. by Johnny Chen · 13 years ago
  75. cc63936 Fixed an issue where we might not find the one true ObjC definition. Now we do things by Greg Clayton · 13 years ago
  76. 781452a Add a test case where 'settings set frame-format' supplies a format string containing, among other things, a single backtick character. by Johnny Chen · 13 years ago
  77. 8e16745 Bump version number past lldb-107. by Jason Molenda · 13 years ago
  78. e9eae81 Add a '-X excluded-dir' option to the test driver to exclude a directory from consideration during test discovery. For example: by Johnny Chen · 13 years ago
  79. 3cab941 Fix the test properly now that SBValue::GetValueAsUnsigned works for bitfields. by Jim Ingham · 13 years ago
  80. ce9cf4e Add usage example of specifying the full path to the compiler used while building the debuggees for running the test suite. by Johnny Chen · 13 years ago
  81. a2a9f79 Add usage example from test/functionalities/archives/Makefile. by Johnny Chen · 13 years ago
  82. ad639b6 More improvements to not follow child processes and improved logging that always shows the process info. by Greg Clayton · 13 years ago
  83. 70bc536 Bumped xcode project versions for lldb-106 and debugserver-165 by Greg Clayton · 13 years ago
  84. bba4836 <rdar://problem/9731573> by Greg Clayton · 13 years ago
  85. a58a788 I forgot to import a header file change. This should fix builds. by Sean Callanan · 13 years ago
  86. 06a3058 Added some fixes for the fd interposing dylib: by Greg Clayton · 13 years ago
  87. 2fc9b6f <rdar://problem/10684141> by Greg Clayton · 13 years ago
  88. a981a64 I made two major improvements to the way the master AST importer imports types. by Sean Callanan · 13 years ago
  89. 4e4805b Only create new ASTImporters on demand, not proactively. by Sean Callanan · 13 years ago
  90. d0d7372 If the name of a struct or union is NULL in the by Sean Callanan · 13 years ago
  91. 6e22e8b Fixed some logging in the AST source and added more information. by Sean Callanan · 13 years ago
  92. 688082e Updated HTML with info for ${function.name-with-args} by Greg Clayton · 13 years ago
  93. f9971c4 Added a new thread and frame format that can be used to display a function by Greg Clayton · 13 years ago
  94. f771915 Bumped Xcode project version for lldb-105 and debugserver-164. by Greg Clayton · 13 years ago
  95. 3d7b6fb <rdar://problem/10688864> by Greg Clayton · 13 years ago
  96. a44297a Don't set breakpoints independently comp unit by comp unit, but look over all the file & line matches by Jim Ingham · 13 years ago
  97. 5d235d5 Add some description for this test directory. by Johnny Chen · 13 years ago
  98. f70160e rdar://problem/10684459 by Johnny Chen · 13 years ago
  99. 111e18b Modify a couple of Makefiles to use clang instead of gcc, since gcc is being deprecated. by Johnny Chen · 13 years ago
  100. 62f0b37 rdar://problem/10680957 Need a test case that tests DWARF with .o in .a files by Johnny Chen · 13 years ago