1. 17f5afe Header patch, virtual dtor patch and missed UUID patch from Kirk Beitz. by Greg Clayton · 14 years ago
  2. 8da92a7 Added support for targets that don't support expanding "~/" or "~USERNAME". by Greg Clayton · 14 years ago
  3. 0bfda0b Added a quicker lookup in the SectionLoadList when looking things up by by Greg Clayton · 14 years ago
  4. 19a1ab8 Fixed the BreakpointLocationList to be able to do O(1) lookups on breakpoint by Greg Clayton · 14 years ago
  5. 5e41dd3 Added the start of platform configuration designed for internal LLDB use. by Greg Clayton · 14 years ago
  6. 0467c78 Applied a fix to qualify "UUID" with the lldb_private namespace to fix by Greg Clayton · 14 years ago
  7. 151185a MinGW patch from Kirk Beitz. by Greg Clayton · 14 years ago
  8. a14755a Patches from Jean-Daniel: by Johnny Chen · 14 years ago
  9. e71e258 Added support for attaching to a remote debug server with the new command: by Greg Clayton · 14 years ago
  10. b77be41 Add EmulateInstructionARM::EmulateSVC() to the g_arm_opcodes and g_thumb_opcodes tables, by Johnny Chen · 14 years ago
  11. a04acd8 Modify 'apropos' command to search settings variable descriptions as well. by Caroline Tice · 14 years ago
  12. 271a5db Added a SBListener parameter to Launch and attach calls to avoid a race by Greg Clayton · 14 years ago
  13. 52fd984 Modified the PluginManager to be ready for loading plug-ins from a system by Greg Clayton · 14 years ago
  14. 9b8d783 Add EmulateBLXImmediate() and EmulateBLXRm() to the g_arm_opcodes and g_thumb_opcodes tables, by Johnny Chen · 14 years ago
  15. 6e74dbb Added a new class, ASTDumper, that provides verbose by Sean Callanan · 14 years ago
  16. b077058 Added EmulateIntruction plug-in manager support. by Greg Clayton · 14 years ago
  17. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 14 years ago
  18. 8482ded Made the EmulateInstruction class into a plug-in interface and moved the by Greg Clayton · 14 years ago
  19. 7e2f91c Finished up the async attach support. This allows us to request to attach by Greg Clayton · 14 years ago
  20. 68bffc5 The m_next_action is simpler if it is an auto_pointer. by Jim Ingham · 14 years ago
  21. c2dc7c8 Added a completion action class to the Process events so that we can make things like Attach and later Launch start their job, and then return to the event loop while waiting for the work to be done. by Jim Ingham · 14 years ago
  22. db2bab4 Finally tracked down the racy condition that would hose up our debug by Greg Clayton · 14 years ago
  23. 28d5fcc Changed the SymbolFile::FindFunction() function calls to only return by Greg Clayton · 14 years ago
  24. 97c924e Added error reporting to IRForTarget so that the by Sean Callanan · 14 years ago
  25. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
  26. 68ca823 Fixed ProcessGDBRemote to kill the process correctly when it is either running by Greg Clayton · 14 years ago
  27. ac95966 More useful STEP logging. by Jim Ingham · 14 years ago
  28. d1eb73f Add a method to StreamFile to line buffer the file. Use that in "log enable -f file" to line buffer the log output. by Jim Ingham · 14 years ago
  29. 5ec14f8 Deprecated old forms of SBTarget::Launch. There is not just one and no by Greg Clayton · 14 years ago
  30. 1fcdb82 Let's teach SWIG to rename the overloaded SBTarget::Launch() function which has by Johnny Chen · 14 years ago
  31. 879bfee Restored some missing APIs for the test suite. Now testsuite still has some failures by Greg Clayton · 14 years ago
  32. de915be Added a new variant of SBTarget::Launch() that deprectates the old one that by Greg Clayton · 14 years ago
  33. 72e1c78 Fixed an issue in "SBError SBProcess::Destroy ()" where it wasn't properly by Greg Clayton · 14 years ago
  34. 55e01d8 Added an interface for noticing new thread creation. At this point, I only turn it on when by Jim Ingham · 14 years ago
  35. cce607b Centralize the register reporting (might want to move this function to Thread). by Jim Ingham · 14 years ago
  36. c4ed12f Add API and implementation for SBDebugger::Destroy and Debugger::Destroy. by Caroline Tice · 14 years ago
  37. 1ebdcc7 Added support for stepping out of a frame. If you have 10 stack frames, and you by Greg Clayton · 14 years ago
  38. 00c3ae7 Fixed up the SBValue::GetExpressionPath() to be more correct under more by Greg Clayton · 14 years ago
  39. c67efa4 Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid by Greg Clayton · 14 years ago
  40. cd15169 Made the DWARF + debug map symbol file parser be much more efficient when it isn't by Greg Clayton · 14 years ago
  41. 15dcb7c Back up both the register AND the stop state when calling functions. by Jim Ingham · 14 years ago
  42. d0882d0 Make expressions clean up their JIT'ed code allocation. by Greg Clayton · 14 years ago
  43. 3e2ef48 ThreadPlanCallUserExpression's WillPop needs to call it's parent's WillPop. by Jim Ingham · 14 years ago
  44. 443bd75 Remove trailing commas from lldb enumerations (patch from Stephen Wilson). by Greg Clayton · 14 years ago
  45. 6c9662e In ThreadPlanCallFunction, do the Takedown right when the thread plan gets popped. When the function call is discarded (e.g. when it crashes and discard_on_error is true) the plan gets discarded. You need to make sure that the stack gets restored right then, and not wait till you start again and the thread plan stack is cleared. by Jim Ingham · 14 years ago
  46. c7674af Added support for the fragile ivars provided by by Sean Callanan · 14 years ago
  47. 3bb8259 Add a method on the ObjC Language Runtime that returns the runtime version. by Jim Ingham · 14 years ago
  48. d8b6502 Added missing source files. by Greg Clayton · 14 years ago
  49. b01000f A few of the issue I have been trying to track down and fix have been due to by Greg Clayton · 14 years ago
  50. e52f37b Added complete complex support for displaying and parsing complex types. by Greg Clayton · 14 years ago
  51. 91da749 Added the ability to wait for a predicate value, and set it to a new value all in a thread safe fashion. by Greg Clayton · 14 years ago
  52. 7ec8105 Extend the ObjectFile interface to support dynamic loading on ELF platforms. by Stephen Wilson · 14 years ago
  53. 0d62dfd Fixed an error in the type map for "char **" that was a bad memory smasher. by Greg Clayton · 14 years ago
  54. 0aa2e55 Split up the Python script interpreter code to allow multiple script interpreter objects to by Caroline Tice · 14 years ago
  55. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  56. 123db40 Added the following functions to SBThread to allow threads to be suspended when a process is resumed: by Greg Clayton · 14 years ago
  57. a875b64 Put more smarts into the RegisterContext base class. Now the base class has by Greg Clayton · 14 years ago
  58. 5382281 Made FuncUnwinders threadsafe. by Greg Clayton · 14 years ago
  59. e2f9064 Fixed issues with the unwinding code where the collection of FuncUnwinders by Greg Clayton · 14 years ago
  60. fd11999 Added memory caching to lldb_private::Process. All lldb_private::Process by Greg Clayton · 14 years ago
  61. 26100dc Added the ability for Target::ReadMemory to prefer to read from the file by Greg Clayton · 14 years ago
  62. 08d7d3a Fixed issues with RegisterContext classes and the subclasses. There was by Greg Clayton · 14 years ago
  63. e179a58 Added the ability to get an set the desired format for SBValue objects. by Greg Clayton · 14 years ago
  64. ff7c3e9 Patch from Stephen Wilson: by Johnny Chen · 14 years ago
  65. bdcda46 The LLDB API (lldb::SB*) is now thread safe! by Greg Clayton · 14 years ago
  66. c044686 by Caroline Tice · 14 years ago
  67. 15bc1f5 Line tables were trying to be too clever and only use 24 bits for a line by Greg Clayton · 14 years ago
  68. 928d130 Improved our argument parsing abilities to be able to handle stuff more like by Greg Clayton · 14 years ago
  69. 576b965 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
  70. ca66a5f Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
  71. f6d8b67 Linux patches from Stephen Wilson. by Greg Clayton · 14 years ago
  72. 6e889b1 Removed libunwind sources as we aren't using them anymore. by Greg Clayton · 14 years ago
  73. c5157ec Added access to set the current stack frame within a thread so any command by Greg Clayton · 14 years ago
  74. 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
  75. f72fdee Added the ability to read unsigned integers from the Process: by Greg Clayton · 14 years ago
  76. 05a5a1b Implemented a feature where the expression parser by Sean Callanan · 14 years ago
  77. c3b61d2 Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() by Greg Clayton · 14 years ago
  78. 4e9267d Changed: by Greg Clayton · 14 years ago
  79. dd62d72 Fixed SBFrame to properly check to make sure it has a valid m_opaque_sp object by Greg Clayton · 14 years ago
  80. 427f290 Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 14 years ago
  81. 047923c Bugfixes for the new "self" pointer handling. Specifically, by Sean Callanan · 14 years ago
  82. 3aa7da5 Added support for generating expressions that have by Sean Callanan · 14 years ago
  83. 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
  84. 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
  85. e5791dd Add test_display_source_python() test case to TestSourceManager.py which uses by Johnny Chen · 14 years ago
  86. 887d251 Made all LLDB-generated ASTContexts have valid by Sean Callanan · 14 years ago
  87. d9105c2 by Caroline Tice · 14 years ago
  88. 6507dd9 Changing the ObjC find method implementation to use a ClangUtilityFunction inserted into the target. Consolidate all the by Jim Ingham · 14 years ago
  89. e0da7a5 by Caroline Tice · 14 years ago
  90. 61e2c30 Fixed an issue in our source manager where we were permanently caching source by Greg Clayton · 14 years ago
  91. 58e844b Added the ability to dump sections to a certain depth (for when sections by Greg Clayton · 14 years ago
  92. 44c841d by Caroline Tice · 14 years ago
  93. 7b85755 Cleanup before making the objective C ivar changes. by Greg Clayton · 14 years ago
  94. 6728364 Forgot to qualify SBSymbol with the lldb namespace for SWIG. by Greg Clayton · 14 years ago
  95. 43edca3 Added symbol table access through the module for now. We might need to expose by Greg Clayton · 14 years ago
  96. 7b9fcc0 When shared libraries are unloaded, they are now removed from the target by Greg Clayton · 14 years ago
  97. 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
  98. 3ca95da Added "void SBBroadcaster::Clear ();" method to SBBroadcaster. by Greg Clayton · 14 years ago
  99. eecb0f3 More reverting of the EOF stuff as the API was changed which we don't want to by Greg Clayton · 14 years ago
  100. 638351a Added the ability for a process to inherit the current host environment. This by Greg Clayton · 14 years ago