1. e71e258 Added support for attaching to a remote debug server with the new command: by Greg Clayton · 13 years ago
  2. 1c2aa46 Fixed the SendInterrupt logic to return the true if the target was halted by Greg Clayton · 13 years ago
  3. 1febb89 A missed endian fix for the linux register context for x86_64. by Greg Clayton · 13 years ago
  4. cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 13 years ago
  5. 8482ded Made the EmulateInstruction class into a plug-in interface and moved the by Greg Clayton · 13 years ago
  6. ef85e91 Add emulate_pop (loads multiple registers from the stack) entries to both the by Johnny Chen · 13 years ago
  7. fdd179e Add emulate_add_sp_imm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 13 years ago
  8. 6db9e88 Align comment. by Johnny Chen · 13 years ago
  9. 08c25e8 Add some comments to the emulate_* functions. by Johnny Chen · 13 years ago
  10. 5e675ec Minor comment fix. by Johnny Chen · 13 years ago
  11. 31e2a38 Added the start of the plug-in interface to EmulateInstruction by Greg Clayton · 13 years ago
  12. 5bc2096 Added some documentation that describes the purpose and the goals by Greg Clayton · 13 years ago
  13. 7e2f91c Finished up the async attach support. This allows us to request to attach by Greg Clayton · 13 years ago
  14. 1c13b62 Add emulate_mov_low_high() entry to the g_thumb_opcodes table to capture moving by Johnny Chen · 13 years ago
  15. 2ccad83 Add emulate_mov_rd_sp() entries to the g_arm_opcodes and g_thumb_opcodes tables. by Johnny Chen · 13 years ago
  16. 0d0148e Add emulate_sub_r7_ip_imm() (set frame pointer to some ip offset) and emulate_sub_ip_sp_imm() ( by Johnny Chen · 14 years ago
  17. 9082c8a Fix a little thinko in sending down the thread name to SetName. by Jim Ingham · 14 years ago
  18. 809742e Should provide more useful context info for the emulate_ldr_rd_pc_rel() impl. by Johnny Chen · 14 years ago
  19. e4450f0 by Caroline Tice · 14 years ago
  20. 788e055 Add emulate_ldr_rd_pc_rel entry to the g_thumb_opcodes table, which represents a by Johnny Chen · 14 years ago
  21. 5b442b7 Add emulate_add_sp_rm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 14 years ago
  22. db2bab4 Finally tracked down the racy condition that would hose up our debug by Greg Clayton · 14 years ago
  23. bcec3af Add emulate_add_rd_sp_imm (SP plus immediate) to the g_arm_opcodes and g_thumb_opcodes tables. by Johnny Chen · 14 years ago
  24. 799dfd0 Add emulate_vpush (stores multiple consecutive extension registers to the stack) entries by Johnny Chen · 14 years ago
  25. a8e31c0 Remove duplicated comments. by Johnny Chen · 14 years ago
  26. 8584c92 Move #define's out of ARMUtils.h and into a newly created file ARMDefines.h. by Johnny Chen · 14 years ago
  27. 108d5aa Move the generic instruction bits manipulation routines into a newly created file by Johnny Chen · 14 years ago
  28. e445502 Add Encoding T1 entry of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
  29. bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
  30. 60c0d62 Add Encoding T2 & T3 entries of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
  31. 4c0e0bc Add an entry to the g_arm_opcodes table named emulate_sub_sp_imm which corresponds by Johnny Chen · 14 years ago
  32. 91d9986 Variable renaming for better readability. by Johnny Chen · 14 years ago
  33. cc3e640 Reverting recent thread resume changes as it was causing testing issues. by Greg Clayton · 14 years ago
  34. c72af6b When we are stepping a thread, force it to resume ALL the way to 0. And of course, when we stop by Jim Ingham · 14 years ago
  35. 27a8dd7 One more fix to ProcessGDBRemote::DoDestroy(). This one will make sure we by Greg Clayton · 14 years ago
  36. 68ca823 Fixed ProcessGDBRemote to kill the process correctly when it is either running by Greg Clayton · 14 years ago
  37. ce1ca77 Add an emulate-callback function emulate_str_rt_sp() to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  38. 347320d Use two opcode tables g_arm_opcodes and g_thumb_opcodes, instead of lumping arm and thumb opcodes together. by Johnny Chen · 14 years ago
  39. 7d193c1 Fix typo of encoding T2 (push) in the original ARM Architecture Reference Manual, by Johnny Chen · 14 years ago
  40. a33d484 Add comment about using Encoding A1 push instruction to emulate the "stmfd sp!, reg" case, by Johnny Chen · 14 years ago
  41. d6873ed Make the assembler mnemonic lowercase. by Johnny Chen · 14 years ago
  42. aedde1c Add Encoding T1 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  43. 555c497 Fix typo in the instruction descriptions for Encoding T2 and T3 of PUSH. by Johnny Chen · 14 years ago
  44. c3b5bc3 Move some #define's to the ARMUtils.h header file. by Johnny Chen · 14 years ago
  45. 7dc60e1 Add Encoding T2 & T3 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  46. 4baf2e3 Add an ARMUtils.h file to house utility functions for the ARM/Thumb Instruction Set Architecture. by Johnny Chen · 14 years ago
  47. 9ed3ebf Remember to turn off the debugserver.txt hard-coded emission. by Jim Ingham · 14 years ago
  48. ac95966 More useful STEP logging. by Jim Ingham · 14 years ago
  49. 2860ba9 Improved process logging for both lldb_private::Process and ProcessGDBRemote. by Greg Clayton · 14 years ago
  50. de915be Added a new variant of SBTarget::Launch() that deprectates the old one that by Greg Clayton · 14 years ago
  51. 72e1c78 Fixed an issue in "SBError SBProcess::Destroy ()" where it wasn't properly by Greg Clayton · 14 years ago
  52. a4881d0 Sped up the shutdown time on MacOSX by quite a bit by making sure any by Greg Clayton · 14 years ago
  53. 55e01d8 Added an interface for noticing new thread creation. At this point, I only turn it on when by Jim Ingham · 14 years ago
  54. 4bee8ce Add more descriptions to the g_arm_opcodes table entries. by Johnny Chen · 14 years ago
  55. 3c75c76 Pass along (ARMEncoding)encoding as the callback data, which allows us to abstract by Johnny Chen · 14 years ago
  56. 251af6a Untabify the file. by Johnny Chen · 14 years ago
  57. 64c8443 Added the start of opcode emulation for ARM instructions. This class is designed by Greg Clayton · 14 years ago
  58. cecf348 Fixed the async packets (packets that need to be sent to the GDB server by Greg Clayton · 14 years ago
  59. 15dcb7c Back up both the register AND the stop state when calling functions. by Jim Ingham · 14 years ago
  60. 4e1ba0f Delay sync with the parent thread in ProcessLinux/ProcessMonitor. by Stephen Wilson · 14 years ago
  61. e0c20da Make LinuxThread use the LLDB unwinder. by Stephen Wilson · 14 years ago
  62. f3cbdc2 Do not enable hardware stepping when resuming a step-enabled thread. by Stephen Wilson · 14 years ago
  63. 89d46e3 Fix implementation of LinuxThread::HardwareSingleStep. by Stephen Wilson · 14 years ago
  64. f5db7cf Implement RegisterContextLinux_x86_64::ReadRegisterBytes. by Stephen Wilson · 14 years ago
  65. bc5d8a2 Support the reading of registers en masse via the linux ProcessMonitor. by Stephen Wilson · 14 years ago
  66. 83047fc Timeout if we fail to receive a state change event when destroying an inferior. by Stephen Wilson · 14 years ago
  67. 07fc7a9 Only enqueue valid ProcessLinux messages. by Stephen Wilson · 14 years ago
  68. c71899e Thread safety changes in debugserver and also in the process GDB remote plugin. by Greg Clayton · 14 years ago
  69. 1724dec Avoid infinite loops in stack backtraces and renamed: by Greg Clayton · 14 years ago
  70. 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
  71. 92241ef Initial support for a DynamicLoader plugin on Linux. by Stephen Wilson · 14 years ago
  72. b47794a Make a mandatory call to DestroyThread() in ~LinuxThread(). by Stephen Wilson · 14 years ago
  73. 593b5e1 Add empty implementation of pure virtual RegisterContext::InvalidateAllRegisters. by Stephen Wilson · 14 years ago
  74. 1f004c6 Set the ID of a ProcessLinux instance to the PID of the inferior on launch. by Stephen Wilson · 14 years ago
  75. 25defec Miscellaneous cleanups in ProcessMonitor. by Stephen Wilson · 14 years ago
  76. ec2bab4 Use the correct type for thread handle. by Stephen Wilson · 14 years ago
  77. 0131642 Implement ProcessLinux::GetImageInfoAddress(). by Stephen Wilson · 14 years ago
  78. 140f69a Have LinuxThread cache it's current StopInfo object. by Stephen Wilson · 14 years ago
  79. 6a92553 Implemented a major overhaul of the way variables are handled by Sean Callanan · 14 years ago
  80. a875b64 Put more smarts into the RegisterContext base class. Now the base class has by Greg Clayton · 14 years ago
  81. 5382281 Made FuncUnwinders threadsafe. by Greg Clayton · 14 years ago
  82. 5d187e5 Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener. by Greg Clayton · 14 years ago
  83. 4862fa2 Modified the stop reply packet to be able to send the thread name using the by Greg Clayton · 14 years ago
  84. 869efc2 Fixed an issue with the UnwindLLDB code where if there were inlined stack by Greg Clayton · 14 years ago
  85. fd11999 Added memory caching to lldb_private::Process. All lldb_private::Process by Greg Clayton · 14 years ago
  86. 26100dc Added the ability for Target::ReadMemory to prefer to read from the file by Greg Clayton · 14 years ago
  87. bc1418b Fix a few small issues in r122981 to ensure compilation on Linux. by Stephen Wilson · 14 years ago
  88. 90ccf88 First try at patching linux for the recent RegisterContext patch. Can someone by Greg Clayton · 14 years ago
  89. 08d7d3a Fixed issues with RegisterContext classes and the subclasses. There was by Greg Clayton · 14 years ago
  90. 6c4f6b2 Fix typo (presumably carried over from the MacOSX plugin). by Stephen Wilson · 14 years ago
  91. d61182d Provide LinuxThread with an implementation of Thread::GetUnwinder. by Stephen Wilson · 14 years ago
  92. ed56002 Remove LinuxThread::GetRawStopReason and implement Thread::GetPrivateStopReason. by Stephen Wilson · 14 years ago
  93. 9702556 StopInfo now lives in the lldb_private namespace. Qualify. by Stephen Wilson · 14 years ago
  94. c8c74e0 Use default implementation of Thread::GetStackFrameCount and Thread::GetStackFrameAtIndex. by Stephen Wilson · 14 years ago
  95. a280e58 Do not load sections manually when launching a Linux process. by Stephen Wilson · 14 years ago
  96. 3a80431 by Stephen Wilson · 14 years ago
  97. 09e34d5 by Stephen Wilson · 14 years ago
  98. 4504bca Replace old "CurrentThread" calls with equivalent "SelectedThread" calls. by Stephen Wilson · 14 years ago
  99. d4c5cd5 RegisterContextLLDB.cpp (InitializeNonZerothFrame): If we get a by Jason Molenda · 14 years ago
  100. 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