1. 107e53d Fixed some issues with ARM backtraces by not processing any push/pop by Greg Clayton · 13 years ago
  2. d0691fe When we use the "fd://%u" for file descriptors, we need to detect if this is by Greg Clayton · 13 years ago
  3. a9eb827 Cleanup errors that come out of commands and make sure they all have newlines by Greg Clayton · 13 years ago
  4. b302b2f Centralize all of the type name code so that we always strip the leading by Greg Clayton · 13 years ago
  5. e6d72ca This commit adds broad architectural support for hierarchical by Greg Clayton · 13 years ago
  6. b474782 Removed an member variable "m_local_debugserver" that is no longer needed. by Greg Clayton · 13 years ago
  7. 5851366 Add support for looking up ivar offset from the ObjC runtime. by Jim Ingham · 13 years ago
  8. de1dd81 Fixed SBTarget attach calls to properly deal with being connected to a remotely by Greg Clayton · 13 years ago
  9. dfbfa9c Remove duplicate m_monitor field from LaunchArgs by Peter Collingbourne · 13 years ago
  10. e6bd142 Use the dyld_mode, image_infos & image_infos_count passed into the shared library notification function by Jim Ingham · 13 years ago
  11. dab471f Fixed a crasher where we were accessing a symbol with a bad index. by Greg Clayton · 13 years ago
  12. 887f45f Make sure we have a valid object file before we try getting the symbol table by Greg Clayton · 13 years ago
  13. 20fe30c Switch from USEC_PER_SEC/NSEC_PER_SEC/NSEC_PER_USEC to TimeValue constants by Peter Collingbourne · 13 years ago
  14. 1bd2b2f Fixed variable parsing to not parse block variables over and over due to an by Greg Clayton · 13 years ago
  15. 604f0d3 Added the notion of an system root for SDKs. This is a directory where all by Greg Clayton · 13 years ago
  16. 63afdb0 Improved the packet throughput when debugging with GDB remote by over 3x on by Greg Clayton · 13 years ago
  17. 9bab8d4 Primitive attach support for linux by Johnny Chen · 13 years ago
  18. 2f57b3d Improve error reporting in ProcessMonitor::Launch by Peter Collingbourne · 13 years ago
  19. 50f0e89 Fix mistakes relating to ProcessMonitor::DupDescriptor by Peter Collingbourne · 13 years ago
  20. 6cf4fd1 If ProcessMonitor::Launch fails, post semaphore to notify caller by Peter Collingbourne · 13 years ago
  21. abb3e5b Add license header to InferiorCallPOSIX.cpp by Peter Collingbourne · 13 years ago
  22. 1c96341 Remove assert() calls that were firing off and crashing the LLDB framework. by Greg Clayton · 13 years ago
  23. 28f8674 Header file cleanup and moved an inline to the implementation file. by Greg Clayton · 13 years ago
  24. 6561155 Created a std::string in the base StopInfo class for the description and by Greg Clayton · 13 years ago
  25. 828c34f Implement RegisterContextLinux_x86_64::{Read,Write}AllRegisterValues by Peter Collingbourne · 13 years ago
  26. e426d85 Move SaveFrameZeroState and RestoreSaveFrameZero implementations to Thread base class by Peter Collingbourne · 13 years ago
  27. ad11546 Implement ProcessLinux::Do{Allocate,Deallocate}Memory using inferior mmap/munmap calls by Peter Collingbourne · 13 years ago
  28. 4d623e8 Move inferior mmap/munmap call code into their own functions in utility lib by Peter Collingbourne · 13 years ago
  29. 182c286 Scan dynamic symbol table of ELF object files by Peter Collingbourne · 13 years ago
  30. 6dc5a1a Bail out if we have an invalid thumb instruction. by Johnny Chen · 13 years ago
  31. 6cc6097 Turn the commented-out assert()'s into appropriate bail-out actions. by Johnny Chen · 13 years ago
  32. 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
  33. e1f47bb Remove asserts that will crash LLDB. These should be changed to return by Greg Clayton · 13 years ago
  34. 261a18b Make sure we don't lose our stop reply packet in the case where the other by Greg Clayton · 13 years ago
  35. f5ae76b EmulateShiftReg() also accepts shifter type of SRType_ROR. by Johnny Chen · 13 years ago
  36. 82f0746 lldb-59. by Greg Clayton · 13 years ago
  37. 19552cb Added some comments. by Greg Clayton · 13 years ago
  38. 54b3841 ABI plug-ins must implement the following pure virtual functions: by Greg Clayton · 13 years ago
  39. 3930cbe Add comment. by Johnny Chen · 13 years ago
  40. 1c3b9f8 Fix a thinko in converting to ReadCStringFromMemory. by Jim Ingham · 13 years ago
  41. d254eb9 Refactor InstructionLLVM::Dump() a little bit to reduce the entropy by introducing by Johnny Chen · 13 years ago
  42. ca8ad2d Don't resolve the path when we extract the path from the dyld info or we by Greg Clayton · 13 years ago
  43. 6e3dc10 Calculate the dyld slide from all in memory info without having to use the by Greg Clayton · 13 years ago
  44. c298a98 Add more workarounds for "bl #..." and "blx #..." where the ARMAsmParser fails to parse/recognize by Johnny Chen · 13 years ago
  45. 04d397c Fixed an issue in the EmulateInstructionARM there the IT opcode was trying to by Greg Clayton · 13 years ago
  46. d17f801 Fix the Align() utility which tries to align the raw disassembly with the edis'ed disassembly by Johnny Chen · 13 years ago
  47. c0fa533 Added new lldb_private::Process memory read/write functions to stop a bunch by Greg Clayton · 13 years ago
  48. 5a26910 Added functions to lldb_private::Address to set an address from a load address by Greg Clayton · 13 years ago
  49. 84d42e8 A little refactoring. by Johnny Chen · 13 years ago
  50. 08251ef When in non-raw mode and edis fails to parse the tokens of the instruction, output by Johnny Chen · 13 years ago
  51. 4a60f9e Centralize the code that gathers the thread ID list from the remote GDB by Greg Clayton · 13 years ago
  52. d77c039 Fix build error - strstr returns a const char * by Peter Collingbourne · 13 years ago
  53. de5cc8c Workaround the issue of llvm:tB (A8.6.16 B Encoding T2) not being processed as by Johnny Chen · 13 years ago
  54. 9f5082f Do not parse DIE's outside a compilation units range. by Stephen Wilson · 13 years ago
  55. 139da72 Fixed an issue in GDBRemoteCommunicationClient where we weren't listening to by Greg Clayton · 13 years ago
  56. a985eec Add the LanguageRuntime plugins to the makefile build, and remove the by Charles Davis · 13 years ago
  57. 8b32be7 A bit of clean up. by Johnny Chen · 13 years ago
  58. 527b2b9 API fix and missing headers. by Johnny Chen · 13 years ago
  59. 9f2d8aa Fix trailing commas at the end of enumerator lists. by Charles Davis · 13 years ago
  60. b7f5945 Build and initialise the Darwin ABI plugins on all platforms by Peter Collingbourne · 13 years ago
  61. 59d4cb8 Add UnwindAssembly plugins to makefile build by Peter Collingbourne · 13 years ago
  62. c573d69 Use the portable memchr function instead of the BSD-only strnstr by Peter Collingbourne · 13 years ago
  63. 628cead Fixed a crasher that was happened when a log shared pointer wasn't valid. by Greg Clayton · 13 years ago
  64. 51ff248 Make InstructionLLVM::Dump() more robust for edis in cases when all the by Johnny Chen · 13 years ago
  65. 5fba9ee Added the ability to sign extend a Scalar at any bit position for integer types. by Greg Clayton · 13 years ago
  66. ff8fea6 Some refactorings with respect to setting of the 'printTokenized' flag. by Johnny Chen · 13 years ago
  67. 6d61ebf Remove dead code which tests for boolan flag 'raw' and restore one indentation level. by Johnny Chen · 13 years ago
  68. da7af84 Added a function to lldb_private::Address: by Greg Clayton · 13 years ago
  69. 1608c87 If the use_thumb is set, pass llvm::Triple::thumb to the InstructionLLVM.ctor() unconditionally. by Johnny Chen · 13 years ago
  70. b9e8f6e Added a way to resolve an load address from a target: by Greg Clayton · 13 years ago
  71. 914553f Removed some assertions that could crash the controlling program by Greg Clayton · 13 years ago
  72. aeb922c Fixed an issue that broke expression parsing related to backing up by Greg Clayton · 13 years ago
  73. 3058197 Fixed the "mmap" to work on MacOSX/darwin by supplying the correct arguemnts. by Greg Clayton · 13 years ago
  74. 613b873 Added an allocated memory cache to avoid having to allocate memory over and by Greg Clayton · 13 years ago
  75. efe0b80 Add support for the 'G' packet not being implemented or returning an error. by Greg Clayton · 13 years ago
  76. c8bc1c3 Fixed an issue where large memory writes might not get chunked up into smaller by Greg Clayton · 13 years ago
  77. 9d2b321 Dump JIT memory requirements when "log enable lldb expr" logging is enabled. by Greg Clayton · 13 years ago
  78. 5b53e8e Properly handle when commands are not unsupported in the GDB remote clients. by Greg Clayton · 13 years ago
  79. d45c3d7 Added the ability to get a 32 or 64 bit simple return value from the by Greg Clayton · 13 years ago
  80. 8c2d609 Fixed the default ARM registers to have the generic argument by Greg Clayton · 13 years ago
  81. 997b1e8 Added generic register numbers for simple ABI argument registers and defined by Greg Clayton · 13 years ago
  82. 2f085c6 Added the ability to get the return value from a ThreadPlanCallFunction by Greg Clayton · 13 years ago
  83. 989816b Expand the ABI prepare trivial function call to allow 6 simple args. by Greg Clayton · 13 years ago
  84. 6497f77 For the purposes of setting breakpoints treat methods defined in the class and methods defined in a category on the class as the same. by Jim Ingham · 13 years ago
  85. 0b0e3fc This patch add a "fake" attach waiting for a real implementation and by Johnny Chen · 13 years ago
  86. f387823 PATH_MAX is in limits.h on Linux. by Johnny Chen · 13 years ago
  87. 80ab18e Fix the InstructionLLVM::Dump() so that for Triple::arm, PC reads as the address by Johnny Chen · 13 years ago
  88. c5272bf Construction of the RegisterReaderArg instance should happen after we have a valid base_addr, not before. by Johnny Chen · 13 years ago
  89. 61d4f7a Cleaned up the ABI::PrepareTrivialCall() function to take three argument by Greg Clayton · 13 years ago
  90. 75906e4 Moved all code from ArchDefaultUnwindPlan and ArchVolatileRegs into their by Greg Clayton · 13 years ago
  91. 061b79d While implementing unwind information using UnwindAssemblyInstEmulation I ran by Greg Clayton · 13 years ago
  92. 3aeaed3 Fixed an issue with the MacOSX backchain register context where the pc was by Greg Clayton · 13 years ago
  93. a458240 Fixed not being able to launch the i386 slice of a universal binary by adding by Greg Clayton · 13 years ago
  94. 10de7d1 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 13 years ago
  95. ef80aab Adding support for fetching the Dynamic Value for ObjC Objects. by Jim Ingham · 13 years ago
  96. 180546b Added the ability to set the Platform path for a module through the SBModule by Greg Clayton · 13 years ago
  97. 3063c95 Added the start of the CFI row production using the emulate instruction classes. by Greg Clayton · 13 years ago
  98. 57b3c6b Added a new OptionValue subclass for lldb::Format: OptionValueFormat. Added by Greg Clayton · 13 years ago
  99. c07d451 Got the EmulateInstruction CFI code a lot closer to producing CFI data. by Greg Clayton · 13 years ago
  100. 1d29a85 Modify EmulateInstructionARM::SetArchitecture() to treat "arm" and "thumb" as wild card architectures by Johnny Chen · 13 years ago