1. e01879a Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
  2. adb909b Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
  3. 6d29aeb Added header doc for the recently added Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error) function. by Greg Clayton · 14 years ago
  4. f72fdee Added the ability to read unsigned integers from the Process: by Greg Clayton · 14 years ago
  5. e404746 Use SBModule.GetDescription(SBStream) API to get the module description to match by Johnny Chen · 14 years ago
  6. 6c884d2 Update the comment section of blacklist.py with the command line to reproduce the crash. by Johnny Chen · 14 years ago
  7. 01cd93d Remove #include of non-existant lldb/Expression/ASTSplitConsumer.h by Jason Molenda · 14 years ago
  8. 05a5a1b Implemented a feature where the expression parser by Sean Callanan · 14 years ago
  9. dc3e063 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
  10. 002e869 Add python_api/symbol-context to test getting the symbol context while stopped by Johnny Chen · 14 years ago
  11. c1955f2 Patch by Stephen Wilson to make Swig happy building on linux. by Johnny Chen · 14 years ago
  12. cf660db Fix one of the golden output of "frame variable -t *self" to be: by Johnny Chen · 14 years ago
  13. b3e7181 Fix typos in SBBreakpoint::GetThreadIndex()/GetThreadName(), and test sequences by Johnny Chen · 14 years ago
  14. 1f3dd64 Fix invalid conversion from "const char *" to "char *" for linux systems. strchr() on darwin returns "char *" so we weren't seeing this issue on MacOSX. by Greg Clayton · 14 years ago
  15. a625387 Fixed an error where the thread index was being returned as zero in "uint32_t SBBreakpoint::GetThreadIndex() const" even when it isn't specified. It should be UINT32_MAX to indicate there is no thread index set for the breakpoint (the breakpoint isn't thread specific). Also fixed the ThreadSpec.cpp to use UINT32_MAX instead of -1. Fixed the logging Printf statement in "uint32_t SBBreakpoint::GetThreadIndex() const" to not print the address of the "index" function from <string.h>! by Greg Clayton · 14 years ago
  16. fd570ba Added a test for finding the correct values for ivars when a property causes the ivar offsets by Jim Ingham · 14 years ago
  17. ba23f58 Add an entry for test case BasicExprCommandsTestCase.test_evaluate_expression_python, by Johnny Chen · 14 years ago
  18. 67637d8 Add termination instructions when entering the interactive script interpreter. by Caroline Tice · 14 years ago
  19. d36f590 by Caroline Tice · 14 years ago
  20. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  21. 5d1ff14 Move the demangle-failed indication out a bit so other failing cases by Jason Molenda · 14 years ago
  22. 6983cda Fix a crash on some platforms where a dSYM for a system library lists a DW_AT_mips_linkage_name for by Jason Molenda · 14 years ago
  23. 3cdf729 Modify the test case to run under ['gcc', 'llvm-gcc', 'clang'] x ['x86_64', 'i386'] by Johnny Chen · 14 years ago
  24. 387fe61 Add test cases to make sure the Command Interpreter is handling by Caroline Tice · 14 years ago
  25. 1decbac Rearrange some statements so that the adding of teardown hook follows immediately by Johnny Chen · 14 years ago
  26. a50971f Make the TestSettings.py test cases use different output filenames: by Johnny Chen · 14 years ago
  27. 4370585 Fixed a crasher in the DWARF log channel code. by Greg Clayton · 14 years ago
  28. 26923fe Updated the code signing instructions to be more complete. by Greg Clayton · 14 years ago
  29. 539b3ef Removed unused files that were out of date and causing issues with the by Greg Clayton · 14 years ago
  30. ec88274 Execute the test case teardown hooks in a LIFO (last in, first out) order. by Johnny Chen · 14 years ago
  31. b201736 Added a test case LoadUnloadTestCase.test_dyld_library_path to test launching a process by Johnny Chen · 14 years ago
  32. cf03765 Fix the completion of "fr " and the like. by Jim Ingham · 14 years ago
  33. a8e2ea7 Modify test cases to accomodate Python API change: by Johnny Chen · 14 years ago
  34. 56d2fc4 by Caroline Tice · 14 years ago
  35. 4e9267d Changed: by Greg Clayton · 14 years ago
  36. d1a4796 Change the golden output so that merely evaluating an existing persistent variable by Johnny Chen · 14 years ago
  37. 0c8a190 Fixed rdar://problem/8767055 test suite failure TestStaticVariables.py (ToT r121745). by Johnny Chen · 14 years ago
  38. dd62d72 Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object by Greg Clayton · 14 years ago
  39. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  40. 047923c Bugfixes for the new "self" pointer handling. Specifically, by Sean Callanan · 14 years ago
  41. 3aa7da5 Added support for generating expressions that have by Sean Callanan · 14 years ago
  42. 7a4512b Add TestBreakpointIgnoreCount.py to exercise the breakpoint ignore count features, by Johnny Chen · 14 years ago
  43. 4877965 Revert a small but important part of the EOF handling code that Greg by Caroline Tice · 14 years ago
  44. 5aa1ebc Make the test case SourceManagerTestCase.display_source_python stronger by also by Johnny Chen · 14 years ago
  45. ff5cac2 Fixed a crasher where when a ProcessGDBRemote class was being destroyed, it would eventually destroy the dynamic loader (when the lldb_private::Process::m_dynamic_loader_ap destroys itself in the object member destructor chain). The dynamic loader was calling a pure virtual method in Process which was causing a crash. The quick fix is to reset the auto pointer in the ProcessGDBRemote destructor when ProcessGDBRemote is still a valid object with all its pure virtual functions intact. by Greg Clayton · 14 years ago
  46. 9e7958e Updated to latest Clang revision. This involved by Sean Callanan · 14 years ago
  47. b89274f Fixed a multi-threaded race condition that could happen when communication classes are shutting down. We currently don't protect communication connection classes against multi-threaded access. The connection is stored in the lldb_private::Communication.m_connection_ap auto_ptr member. We either need to add protections when accessing this class or not let anything racy occur. With this fix, we are doing the latter. by Greg Clayton · 14 years ago
  48. ab42902 Fixed an issue where the macosx dynamic loader, on the first shared library loaded notification, wasn't properly removing shared libraries from the target that didn't get loaded. This usually happens when a different shared library is loaded in place of another due to DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH environment variables. We now properly remove any images that didn't make it into the executable. by Greg Clayton · 14 years ago
  49. ea49cc7 Added the ability for SBTarget to resolve load addresses (convert lldb::addr_t values into resolved SBAddress objects). These SBAddress objects can then be used to resolve a symbol context using "lldb::SBSymbolContext ResolveSymbolContextForAddress (const lldb::SBAddress& addr, uint32_t resolve_scope);". by Greg Clayton · 14 years ago
  50. ea6e3df Fix bug where using incomplete strings for command names causes by Caroline Tice · 14 years ago
  51. e5791dd Add test_display_source_python() test case to TestSourceManager.py which uses by Johnny Chen · 14 years ago
  52. 887d251 Made all LLDB-generated ASTContexts have valid by Sean Callanan · 14 years ago
  53. 3f1696c Make sure that @python_api_test is only used to decorate a test method, not the by Johnny Chen · 14 years ago
  54. 494735d Simplified the code that handles overloaded operator names. by Sean Callanan · 14 years ago
  55. cc659ad Do not specify both '-a' and '+a' at the same time. by Johnny Chen · 14 years ago
  56. 3ebdacc Add a '+a' command line option to the test driver to run only the Python API tests. by Johnny Chen · 14 years ago
  57. ec953b5 Add the @python_api_test decorator for two test cases. by Johnny Chen · 14 years ago
  58. ad5518d Fix some typo in method names and docstrings. by Johnny Chen · 14 years ago
  59. 9ac4be9 Added some tests for ObjC stepping, step into ordinary and stret methods, and stepping by Jim Ingham · 14 years ago
  60. c2c9a14 Fixed detection of overloaded operators in type by Sean Callanan · 14 years ago
  61. 0678f8e Add @python_api_test decorator to the remaining Test*.py files. by Johnny Chen · 14 years ago
  62. 013c574 Fix a test method docstring. by Johnny Chen · 14 years ago
  63. 4f93bf1 Add an infrastructure to mark the Python APIs only test using a decorator. by Johnny Chen · 14 years ago
  64. 5899a23 Added the source file for some ObjC stepping tests. No test yet. by Jim Ingham · 14 years ago
  65. d9105c2 by Caroline Tice · 14 years ago
  66. 6507dd9 Changing the ObjC find method implementation to use a ClangUtilityFunction inserted into the target. Consolidate all the by Jim Ingham · 14 years ago
  67. e0da7a5 by Caroline Tice · 14 years ago
  68. f831222 Add more module docstring. by Johnny Chen · 14 years ago
  69. 28e4966 Minor docstring change. by Johnny Chen · 14 years ago
  70. 22dc972 process launch now asks to kill the current process if it is alive, and if you affirm, does so for you. by Jim Ingham · 14 years ago
  71. 88044a9 Remove unnecessary imports. by Johnny Chen · 14 years ago
  72. 6f7abb0 Add a test/source-manager directory for testing lldb core component SourceManager. by Johnny Chen · 14 years ago
  73. 4dc1892 Any arguments that are not options to the "lldb" command line driver, now get by Greg Clayton · 14 years ago
  74. 61e2c30 Fixed an issue in our source manager where we were permanently caching source by Greg Clayton · 14 years ago
  75. deaf884 Add more docstring for the lldb_iter() utility function which provides a compact by Johnny Chen · 14 years ago
  76. 4d426c6 Modify the TestObjCMethods2.py test to fix a typo (should be str_id, not id). by Johnny Chen · 14 years ago
  77. 3355d11 Bumped lldb Xcode version to 35 for lldb-35, and debugserver to 121 for by Greg Clayton · 14 years ago
  78. 58e844b Added the ability to dump sections to a certain depth (for when sections by Greg Clayton · 14 years ago
  79. fa2f48b Fixed up the error message for when a file is not supported. by Greg Clayton · 14 years ago
  80. 8290758 Fixed a problem where the AST importer would assert() by Sean Callanan · 14 years ago
  81. 8fd886c For SBTarget.Launch()/LaunchProcess(), there's no need to pass an empty string by Johnny Chen · 14 years ago
  82. a3a67d4 Add test_evaluate_expression_python() to exercise SBFrame.EvaluateExpression() Python API. by Johnny Chen · 14 years ago
  83. 5045fdc Use Python raw string literal to avoid escaping the escape sequence and to make by Johnny Chen · 14 years ago
  84. 94d255f More logging for use in debugging the interactions by Sean Callanan · 14 years ago
  85. 94756b1 Make the various expression command test sequences more strict by also verifying by Johnny Chen · 14 years ago
  86. 6369bbb Add a test sequence for test_expr_commands_can_handle_quotes(self): by Johnny Chen · 14 years ago
  87. 6cdafd7 Remove comment no longer applied. by Johnny Chen · 14 years ago
  88. 44c841d by Caroline Tice · 14 years ago
  89. 0bbe13a Add test/foundation/TestSymbolTable.py to exercise accessing the symbol table by Johnny Chen · 14 years ago
  90. 7b85755 Cleanup before making the objective C ivar changes. by Greg Clayton · 14 years ago
  91. 42c8fdc Improved the "image dump section" command output by making sure by Greg Clayton · 14 years ago
  92. c418ec2 'thread backtrace', not 'thread backtrac'. by Johnny Chen · 14 years ago
  93. f9954b5 The do_simple_disasm() also needs to be modified to accommodate the recent changes by Johnny Chen · 14 years ago
  94. 3371102 Logging improvements to help identify major events in by Sean Callanan · 14 years ago
  95. 9d972a4 Fixed an issue when debugging with DWARF in the .o files where by Greg Clayton · 14 years ago
  96. 6728364 Forgot to qualify SBSymbol with the lldb namespace for SWIG. by Greg Clayton · 14 years ago
  97. 43edca3 Added symbol table access through the module for now. We might need to expose by Greg Clayton · 14 years ago
  98. 78b9ee8 Handle the case where you make a ClangExpressionDeclMap without a selected frame. by Jim Ingham · 14 years ago
  99. 61a000d Add expect matching patterns for some self.expect() statements. by Johnny Chen · 14 years ago
  100. c4217a6 Fixes to make id work as well as well as fix minor errors by Sean Callanan · 14 years ago