1. c044686 by Caroline Tice · 14 years ago
  2. 15bc1f5 Line tables were trying to be too clever and only use 24 bits for a line by Greg Clayton · 14 years ago
  3. 80733ea Removed logging code that I accidentally left in after recent changes. by Greg Clayton · 14 years ago
  4. 928d130 Improved our argument parsing abilities to be able to handle stuff more like by Greg Clayton · 14 years ago
  5. b73620c Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
  6. d6dfe04 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
  7. 14243ea Fixed the handling of the _cmd parameter in the i386 ABI. by Sean Callanan · 14 years ago
  8. dad0b76 Removed darwin specific CPU type defines to make UnwindAssemblyProfiler_x86 able to compile on linux (patch from Stephen Wilson). by Greg Clayton · 14 years ago
  9. 6e889b1 Removed libunwind sources as we aren't using them anymore. by Greg Clayton · 14 years ago
  10. c5157ec Added access to set the current stack frame within a thread so any command by Greg Clayton · 14 years ago
  11. e01879a Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
  12. adb909b Fixes for linux building from Stephen Wilson. by Greg Clayton · 14 years ago
  13. f72fdee Added the ability to read unsigned integers from the Process: by Greg Clayton · 14 years ago
  14. 01cd93d Remove #include of non-existant lldb/Expression/ASTSplitConsumer.h by Jason Molenda · 14 years ago
  15. 05a5a1b Implemented a feature where the expression parser by Sean Callanan · 14 years ago
  16. dc3e063 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
  17. c1955f2 Patch by Stephen Wilson to make Swig happy building on linux. by Johnny Chen · 14 years ago
  18. b3e7181 Fix typos in SBBreakpoint::GetThreadIndex()/GetThreadName(), and test sequences by Johnny Chen · 14 years ago
  19. 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
  20. 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
  21. 67637d8 Add termination instructions when entering the interactive script interpreter. by Caroline Tice · 14 years ago
  22. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  23. 5d1ff14 Move the demangle-failed indication out a bit so other failing cases by Jason Molenda · 14 years ago
  24. 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
  25. 4370585 Fixed a crasher in the DWARF log channel code. by Greg Clayton · 14 years ago
  26. 539b3ef Removed unused files that were out of date and causing issues with the by Greg Clayton · 14 years ago
  27. cf03765 Fix the completion of "fr " and the like. by Jim Ingham · 14 years ago
  28. 56d2fc4 by Caroline Tice · 14 years ago
  29. 4e9267d Changed: by Greg Clayton · 14 years ago
  30. 0c8a190 Fixed rdar://problem/8767055 test suite failure TestStaticVariables.py (ToT r121745). by Johnny Chen · 14 years ago
  31. dd62d72 Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object by Greg Clayton · 14 years ago
  32. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  33. 047923c Bugfixes for the new "self" pointer handling. Specifically, by Sean Callanan · 14 years ago
  34. 3aa7da5 Added support for generating expressions that have by Sean Callanan · 14 years ago
  35. 4877965 Revert a small but important part of the EOF handling code that Greg by Caroline Tice · 14 years ago
  36. 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
  37. 9e7958e Updated to latest Clang revision. This involved by Sean Callanan · 14 years ago
  38. 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
  39. 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
  40. 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
  41. ea6e3df Fix bug where using incomplete strings for command names causes by Caroline Tice · 14 years ago
  42. e5791dd Add test_display_source_python() test case to TestSourceManager.py which uses by Johnny Chen · 14 years ago
  43. 887d251 Made all LLDB-generated ASTContexts have valid by Sean Callanan · 14 years ago
  44. 494735d Simplified the code that handles overloaded operator names. by Sean Callanan · 14 years ago
  45. c2c9a14 Fixed detection of overloaded operators in type by Sean Callanan · 14 years ago
  46. d9105c2 by Caroline Tice · 14 years ago
  47. 6507dd9 Changing the ObjC find method implementation to use a ClangUtilityFunction inserted into the target. Consolidate all the by Jim Ingham · 14 years ago
  48. e0da7a5 by Caroline Tice · 14 years ago
  49. 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
  50. 61e2c30 Fixed an issue in our source manager where we were permanently caching source by Greg Clayton · 14 years ago
  51. 58e844b Added the ability to dump sections to a certain depth (for when sections by Greg Clayton · 14 years ago
  52. fa2f48b Fixed up the error message for when a file is not supported. by Greg Clayton · 14 years ago
  53. 8290758 Fixed a problem where the AST importer would assert() by Sean Callanan · 14 years ago
  54. 94d255f More logging for use in debugging the interactions by Sean Callanan · 14 years ago
  55. 44c841d by Caroline Tice · 14 years ago
  56. 7b85755 Cleanup before making the objective C ivar changes. by Greg Clayton · 14 years ago
  57. 42c8fdc Improved the "image dump section" command output by making sure by Greg Clayton · 14 years ago
  58. 3371102 Logging improvements to help identify major events in by Sean Callanan · 14 years ago
  59. 9d972a4 Fixed an issue when debugging with DWARF in the .o files where by Greg Clayton · 14 years ago
  60. 43edca3 Added symbol table access through the module for now. We might need to expose by Greg Clayton · 14 years ago
  61. 78b9ee8 Handle the case where you make a ClangExpressionDeclMap without a selected frame. by Jim Ingham · 14 years ago
  62. c4217a6 Fixes to make id work as well as well as fix minor errors by Sean Callanan · 14 years ago
  63. 7b9fcc0 When shared libraries are unloaded, they are now removed from the target by Greg Clayton · 14 years ago
  64. b9f09a6 Fixed a bug in which the SEL type was being resolved by Sean Callanan · 14 years ago
  65. 7cd4674 Fixed a problem in which non-external variables by Sean Callanan · 14 years ago
  66. 422b1ae Added a less than operator that will compare the internal opaque pointer values so SBBroadcaster objects can be contained in ordered containers or sorted. by Greg Clayton · 14 years ago
  67. 0e0fd1c Fixed an issue where SBProcess::LoadImage(...) was not returning the image by Greg Clayton · 14 years ago
  68. 3ca95da Added "void SBBroadcaster::Clear ();" method to SBBroadcaster. by Greg Clayton · 14 years ago
  69. 4f46cd1 Fixed a crasher when trying to get event data flavors on events that don't by Greg Clayton · 14 years ago
  70. b378133 Make sure that STDOUT and STDERR events in lldb_private::Process carry along by Greg Clayton · 14 years ago
  71. eecb0f3 More reverting of the EOF stuff as the API was changed which we don't want to by Greg Clayton · 14 years ago
  72. bd91d9a Reverted the close on EOF stuff again as it was crashing Xcode. by Greg Clayton · 14 years ago
  73. a99b0bf Added the ability to display the new "target.process.inherit-env" setting. by Greg Clayton · 14 years ago
  74. 638351a Added the ability for a process to inherit the current host environment. This by Greg Clayton · 14 years ago
  75. 9a7b291 Documentation fix - explain how to unset conditions. Also fix unsetting -x and -t so they work. by Jim Ingham · 14 years ago
  76. 19ac0bd Document the fact that "breakpoint modify" with no breakpoint acts on the by Jim Ingham · 14 years ago
  77. 539d945 Make sure to index the DWARF if we already haven't so we can resolve forward by Greg Clayton · 14 years ago
  78. f921cf5 Eliminated a redundant code path. by Sean Callanan · 14 years ago
  79. bd66601 Add '-no-stdio' option to 'process launch' command, which causes the by Caroline Tice · 14 years ago
  80. 1cee7ab Fixed an issue that would cause an assertion to fire when an inlined function was found during a regex function find call. by Greg Clayton · 14 years ago
  81. b749a26 Fixed a race condition that could cause ProcessGDBRemote::DoResume() to return by Greg Clayton · 14 years ago
  82. f3143b7 Removed a compiler warning. by Sean Callanan · 14 years ago
  83. aa301c4 Fixed object lifetimes in ClangExpressionDeclMap by Sean Callanan · 14 years ago
  84. c0da615 Fixed DoResume to watch for the correct return value from WaitForIsRunning to avoid spurious errors due to previous fix. by Greg Clayton · 14 years ago
  85. 220494a Fixed bad logic that was trying to determine if the gdb remote resumed a process or not. by Greg Clayton · 14 years ago
  86. 22defe8 Updated to latest LLVM/Clang for external AST source changes that allow by Greg Clayton · 14 years ago
  87. 9c11d47 Fixed a typo in comment. by Johnny Chen · 14 years ago
  88. 4844365 Fixed IRForTarget so that it errors out when function by Sean Callanan · 14 years ago
  89. 9ac497b by Caroline Tice · 14 years ago
  90. e8e5557 Fixed ClangUserExpression's wrapping of expressions by Sean Callanan · 14 years ago
  91. 4d0b110 Allowed ClangExpressionDeclMap to dematerialize by Sean Callanan · 14 years ago
  92. a65b527 Whitespace fix. by Sean Callanan · 14 years ago
  93. dc6c263 Make CommandObjectMultiword::GetSubcommandSP() more robust by appending the by Johnny Chen · 14 years ago
  94. dd1f02a GetCommandObject returns no matches in the match array when there is only one match. That's odd, but I don't want to change that right now, just cope with it where I'm doing the command matching. by Jim Ingham · 14 years ago
  95. c2d382c Fix completion for multi-word commands in the "help" command. by Jim Ingham · 14 years ago
  96. 1e61a63 Fixed a problem where m_register_info was not being by Sean Callanan · 14 years ago
  97. 360f53f Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process. This required a bunch of renaming. by Jim Ingham · 14 years ago
  98. 1ddd9fe Added a feature where registers can be referred to by Sean Callanan · 14 years ago
  99. a99bcaa Fix build error when lldb is being built i386. by Jason Molenda · 14 years ago
  100. b4e19b3 When we resolve a forward declaration type, be sure to put it into the m_die_to_type map so we don't assert later when someone tries to resolve the type. by Greg Clayton · 14 years ago