1. 4ed315f Added the ability to find functions from either a SBModule (find functions by Greg Clayton · 13 years ago
  2. dfbfa9c Remove duplicate m_monitor field from LaunchArgs by Peter Collingbourne · 13 years ago
  3. e7a91c1 The "-r" option should work for both "-n" and "-s", but it was only set to work for "-s". by Jim Ingham · 13 years ago
  4. d2554b5 Test lldb Python API object's default constructor and make sure it is invalid by Johnny Chen · 13 years ago
  5. eca14c7 Add dependency tracking/clean rule to interpreter makefile by Peter Collingbourne · 13 years ago
  6. 14ecb06 Create a _lldb.so symlink in the bin directory by Peter Collingbourne · 13 years ago
  7. 7aecabb Revert r133358 which forgoes printing of breakpoint command when doing a breakpoint list where the description by Johnny Chen · 13 years ago
  8. e6bd142 Use the dyld_mode, image_infos & image_infos_count passed into the shared library notification function by Jim Ingham · 13 years ago
  9. dab471f Fixed a crasher where we were accessing a symbol with a bad index. by Greg Clayton · 13 years ago
  10. 887f45f Make sure we have a valid object file before we try getting the symbol table by Greg Clayton · 13 years ago
  11. 8c6907c Fixed a case where LLDB would crash if we get C++ operators with invalid by Greg Clayton · 13 years ago
  12. 20fe30c Switch from USEC_PER_SEC/NSEC_PER_SEC/NSEC_PER_USEC to TimeValue constants by Peter Collingbourne · 13 years ago
  13. 49da2f3 Don't print the baton when a breakpoint has a callback since it is pretty by Greg Clayton · 13 years ago
  14. 582ed0e Added two new API functions to SBFrame: by Greg Clayton · 13 years ago
  15. 307fa07 Added a new format for displaying an array of characters: eFormatCharArray by Greg Clayton · 13 years ago
  16. 1bd2b2f Fixed variable parsing to not parse block variables over and over due to an by Greg Clayton · 13 years ago
  17. 58d02ff Add a bunch of test cases to TestHelloWorld.py to exercise combinations of dwarf/dsym debug setup. by Johnny Chen · 13 years ago
  18. 604f0d3 Added the notion of an system root for SDKs. This is a directory where all by Greg Clayton · 13 years ago
  19. 63afdb0 Improved the packet throughput when debugging with GDB remote by over 3x on by Greg Clayton · 13 years ago
  20. 535960e o TestHelloWorld.py: by Johnny Chen · 13 years ago
  21. 892fadd by Caroline Tice · 13 years ago
  22. 409646d Add an API to SBDebugger class: by Johnny Chen · 13 years ago
  23. ac35442 Made GetConditionText const everywhere. Made it return NULL when there's no condition by Jim Ingham · 13 years ago
  24. 2b5e4e6 by Caroline Tice · 13 years ago
  25. 9bab8d4 Primitive attach support for linux by Johnny Chen · 13 years ago
  26. 84cc16d by Caroline Tice · 13 years ago
  27. 2f57b3d Improve error reporting in ProcessMonitor::Launch by Peter Collingbourne · 13 years ago
  28. 50f0e89 Fix mistakes relating to ProcessMonitor::DupDescriptor by Peter Collingbourne · 13 years ago
  29. 6cf4fd1 If ProcessMonitor::Launch fails, post semaphore to notify caller by Peter Collingbourne · 13 years ago
  30. abb3e5b Add license header to InferiorCallPOSIX.cpp by Peter Collingbourne · 13 years ago
  31. 82ce540 Fix typo: fucntion -> function by Peter Collingbourne · 13 years ago
  32. 1c96341 Remove assert() calls that were firing off and crashing the LLDB framework. by Greg Clayton · 13 years ago
  33. d4d9283 by Caroline Tice · 13 years ago
  34. 87e1f77 by Caroline Tice · 13 years ago
  35. 28f8674 Header file cleanup and moved an inline to the implementation file. by Greg Clayton · 13 years ago
  36. d720e01 Explicitly set the value to NULL when adding a string map entry. by Greg Clayton · 13 years ago
  37. 9d47944 I modified the StringMap that was being used to unique our debugger C strings by Greg Clayton · 13 years ago
  38. 6561155 Created a std::string in the base StopInfo class for the description and by Greg Clayton · 13 years ago
  39. 4399446 Make sure we are ok to stop in a thread plan and have no stop reason for by Greg Clayton · 13 years ago
  40. abb53e5 Fix some order-of-initialisation warnings by Peter Collingbourne · 13 years ago
  41. 828c34f Implement RegisterContextLinux_x86_64::{Read,Write}AllRegisterValues by Peter Collingbourne · 13 years ago
  42. e426d85 Move SaveFrameZeroState and RestoreSaveFrameZero implementations to Thread base class by Peter Collingbourne · 13 years ago
  43. ad11546 Implement ProcessLinux::Do{Allocate,Deallocate}Memory using inferior mmap/munmap calls by Peter Collingbourne · 13 years ago
  44. 4d623e8 Move inferior mmap/munmap call code into their own functions in utility lib by Peter Collingbourne · 13 years ago
  45. c3f5573 Disable MCJIT on non-Darwin platforms by Peter Collingbourne · 13 years ago
  46. 182c286 Scan dynamic symbol table of ELF object files by Peter Collingbourne · 13 years ago
  47. e5ed8e9 Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse errors when we go to run a breakpoint condition. by Jim Ingham · 13 years ago
  48. 6dc5a1a Bail out if we have an invalid thumb instruction. by Johnny Chen · 13 years ago
  49. 6cc6097 Turn the commented-out assert()'s into appropriate bail-out actions. by Johnny Chen · 13 years ago
  50. a4438a7 When emulating an ill-formed instruction, we should bail out instead of asserting and bringing down the whole process. by Johnny Chen · 13 years ago
  51. e1f47bb Remove asserts that will crash LLDB. These should be changed to return by Greg Clayton · 13 years ago
  52. 261a18b Make sure we don't lose our stop reply packet in the case where the other by Greg Clayton · 13 years ago
  53. a54461d by Caroline Tice · 13 years ago
  54. f5ae76b EmulateShiftReg() also accepts shifter type of SRType_ROR. by Johnny Chen · 13 years ago
  55. d8662f5 by Caroline Tice · 13 years ago
  56. 2d268cb Add comment about Thread::GetStatus(), which returns the number of frames shown. by Johnny Chen · 13 years ago
  57. 0f5e6f1 Use the correct accessor on CXXRecordDecl to know when a C++ class is dynamic. by Greg Clayton · 13 years ago
  58. a8a6871 If somebody has deleted the breakpoint while we are testing the condition, then just continue. by Jim Ingham · 13 years ago
  59. 05750a6 The 'thread backtrace all' logical branch had the if (thread->GetStatus()) condition inverted. by Johnny Chen · 13 years ago
  60. 5420ec8 Fix remaining Python issues leftover from my previous patch. by Charles Davis · 13 years ago
  61. c0df828 Fix dynamic value objects to do the right thing when the by Greg Clayton · 13 years ago
  62. 82f0746 lldb-59. by Greg Clayton · 13 years ago
  63. 577fbc3 Disable dynamic types being on by default until kinks get worked out when by Greg Clayton · 13 years ago
  64. 860f746 Protect the input reader stack with a recursive mutex. by Greg Clayton · 13 years ago
  65. af3f1fb Make sure if an enumeration "settings" value has a valid default setting in by Greg Clayton · 13 years ago
  66. 421ca50 Don't have the debugger default to ignoring EOF. This is only what the driver by Greg Clayton · 13 years ago
  67. d976b0e Fixed an issue that could cause LLDB to spin indefinitely. by Greg Clayton · 13 years ago
  68. 7224aab regexp-break -> _regexp-break in command string. by Jim Ingham · 13 years ago
  69. 19552cb Added some comments. by Greg Clayton · 13 years ago
  70. 54b3841 ABI plug-ins must implement the following pure virtual functions: by Greg Clayton · 13 years ago
  71. 3930cbe Add comment. by Johnny Chen · 13 years ago
  72. 1c3b9f8 Fix a thinko in converting to ReadCStringFromMemory. by Jim Ingham · 13 years ago
  73. d254eb9 Refactor InstructionLLVM::Dump() a little bit to reduce the entropy by introducing by Johnny Chen · 13 years ago
  74. ca8ad2d Don't resolve the path when we extract the path from the dyld info or we by Greg Clayton · 13 years ago
  75. c049274 This commit integrates support for the LLVM MCJIT by Sean Callanan · 13 years ago
  76. 6e3dc10 Calculate the dyld slide from all in memory info without having to use the by Greg Clayton · 13 years ago
  77. c298a98 Add more workarounds for "bl #..." and "blx #..." where the ARMAsmParser fails to parse/recognize by Johnny Chen · 13 years ago
  78. 04d397c Fixed an issue in the EmulateInstructionARM there the IT opcode was trying to by Greg Clayton · 13 years ago
  79. d17f801 Fix the Align() utility which tries to align the raw disassembly with the edis'ed disassembly by Johnny Chen · 13 years ago
  80. c0fa533 Added new lldb_private::Process memory read/write functions to stop a bunch by Greg Clayton · 13 years ago
  81. 6cf4d2b Change the m_update_state to an int, and only trigger the "on removal" by Jim Ingham · 13 years ago
  82. b220388 by Caroline Tice · 13 years ago
  83. 5a26910 Added functions to lldb_private::Address to set an address from a load address by Greg Clayton · 13 years ago
  84. 84d42e8 A little refactoring. by Johnny Chen · 13 years ago
  85. 08251ef When in non-raw mode and edis fails to parse the tokens of the instruction, output by Johnny Chen · 13 years ago
  86. fab305b Lock the target API mutex correctly in all cases and make sure m_opaque_sp by Greg Clayton · 13 years ago
  87. 4a60f9e Centralize the code that gathers the thread ID list from the remote GDB by Greg Clayton · 13 years ago
  88. d77c039 Fix build error - strstr returns a const char * by Peter Collingbourne · 13 years ago
  89. 905acaf Now that we have dynamic values, we need to protect the GetChildAtIndex() by Greg Clayton · 13 years ago
  90. 1889f1a Better way to build the CFCPP sources as part of liblldbHostMacOSX. by Charles Davis · 13 years ago
  91. a4bacd4 When installing the binary part of the LLDB Python modules, symlink to the by Charles Davis · 13 years ago
  92. de5cc8c Workaround the issue of llvm:tB (A8.6.16 B Encoding T2) not being processed as by Johnny Chen · 13 years ago
  93. 9f5082f Do not parse DIE's outside a compilation units range. by Stephen Wilson · 13 years ago
  94. f6f0e33 Fix typo. Stupid 'n' key... by Charles Davis · 13 years ago
  95. d4c21f0 Some makefile fixes for the Interpreter: by Charles Davis · 13 years ago
  96. 1f75545 Fix the Host library build on Mac OS X with makefiles. by Charles Davis · 13 years ago
  97. 139da72 Fixed an issue in GDBRemoteCommunicationClient where we weren't listening to by Greg Clayton · 13 years ago
  98. a985eec Add the LanguageRuntime plugins to the makefile build, and remove the by Charles Davis · 13 years ago
  99. a71464f Use a SmallVector here instead of a VLA. by Charles Davis · 13 years ago
  100. 8b32be7 A bit of clean up. by Johnny Chen · 13 years ago