1. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 14 years ago
  2. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 14 years ago
  3. 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 14 years ago
  4. 8053904 Declare some const functions as const. by Jim Ingham · 14 years ago
  5. a526823 Fix a typo in a comment. by Jim Ingham · 14 years ago
  6. 8d237a2 Add test cases to exercise the SBThread.GetProcess() API. We launch the process using the by Johnny Chen · 14 years ago
  7. 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 14 years ago
  8. ce207c1 by Caroline Tice · 14 years ago
  9. 4a384a9 Add a test case test_run_to_address() to exercise the SBThread.RunToAddress(lldb::addr_t addr) API. by Johnny Chen · 14 years ago
  10. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 14 years ago
  11. 650fef9 Add test cases to TestThreadAPI.py to exercise SBThread.StepOver() by stopping at a breakpoint, by Johnny Chen · 14 years ago
  12. 912675f by Caroline Tice · 14 years ago
  13. 2a45681 by Caroline Tice · 14 years ago
  14. d09dcac Test cleanup. Check for the full caller symbol of malloc -- b(int). by Johnny Chen · 14 years ago
  15. ef6635b Add Makefile support for the Platform plugins. by Stephen Wilson · 14 years ago
  16. c97bfdb Centralize the GDB remote timeout value into the GDBRemoteCommunication as a by Greg Clayton · 14 years ago
  17. 69af39d Add test cases for Python SBThread.StepOut() API by stepping out of a malloc call where the call site is at function b(). by Johnny Chen · 14 years ago
  18. d151c8a Fixed a bug where the disassembly syntax specified for the by Sean Callanan · 14 years ago
  19. e59b869 There's no sense checking for < 0 with a return type of size_t: by Johnny Chen · 14 years ago
  20. 88e7859 Add an expectedFailure decorator to the test_connect_remote() test case. by Johnny Chen · 14 years ago
  21. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 14 years ago
  22. 791af3b Fix ObjectFileElf::GetEntryPointAddress() by Stephen Wilson · 14 years ago
  23. 8be525a Add Makefile support for the new DynamicLoaderStatic plugin. by Stephen Wilson · 14 years ago
  24. e45140f I didn't notice there was already an ObjectFile::GetEntryPoint. Move that over to GetEntryPointAddress 'cause that's more consistent with other functions in ObjectFile, do the mutatis mutandi and also in the ELF case I return a section offset address rather than a bare load address. by Jim Ingham · 14 years ago
  25. e84d4fd Reverting the part of the debug-in-ofile patch from earlier today that removes them from the shared module list. That was causing a bunch of asserts. Greg is working on a better fix. by Jim Ingham · 14 years ago
  26. 2877594 Add a method "GetEntryPoint" to the ObjectFile class, and implement it on MachO & ELF - though the ELF implementation is probably a little weak. Then use this method in place of directly looking for "start" in the ThreadPlanCallFunction constructor to find the stopping point for our function evaluation. by Jim Ingham · 14 years ago
  27. 9d352ce by Caroline Tice · 14 years ago
  28. 329bb8b Add an extra twist of stopping the inferior in a breakpoint, and then continue till it's done. by Johnny Chen · 14 years ago
  29. edc0524 Add test cases for SBTarget.Launch() API with the stdout of the inferior redirected to a file. by Johnny Chen · 14 years ago
  30. 586a3e6 Add TestThreadAPI.py file to house the Python SBThread API test cases. by Johnny Chen · 14 years ago
  31. 2cd9418 Don't cache .o files in the debug map + DWARF in .o files. If we cache them by Greg Clayton · 14 years ago
  32. 42da4da Add a test case ProcessAPITestCase.test_remote_launch() which tests SBProcess.RemoteLaunch() by Johnny Chen · 14 years ago
  33. bd321c5 Added a DynamicLoaderStatic plug-in that will act as a static dynamic loader. by Greg Clayton · 14 years ago
  34. a7951be Add a test case for the lldb command 'process connect'. by Johnny Chen · 14 years ago
  35. d3475a2 Allow the macosx frame backchain to use 32/64 bit as the selector when by Greg Clayton · 14 years ago
  36. 7d71b1a Add docstrings for unittest framework's test methods. by Johnny Chen · 14 years ago
  37. 1f968f4 Change the CFLAGS variable assignment operator to ?= (conditional variable assignment operator). by Johnny Chen · 14 years ago
  38. e96c72b Add TestObjcOptimized.py under the objc-optimized directory to by Johnny Chen · 14 years ago
  39. 5acc343 Add objc source file and Makefile. Test case to follow. by Johnny Chen · 14 years ago
  40. 1a4d5e7 Add the ability for the test suite to specify a list of compilers and a list of architectures by Johnny Chen · 14 years ago
  41. 3809340 Expose ConnectRemote API through SBTarget and SBProcess. by James McIlree · 14 years ago
  42. 50339fe Fixed a bug in the expression parser where the 'this' by Sean Callanan · 14 years ago
  43. b27771d by Caroline Tice · 14 years ago
  44. 51ed1b6 Add TestDisasmAPI.py which exercises the newly added SBFunction/SBSymbol.GetStartAddress(), by Johnny Chen · 14 years ago
  45. 11555f2 by Caroline Tice · 14 years ago
  46. 8ce96d9 by Caroline Tice · 14 years ago
  47. 868198b by Caroline Tice · 14 years ago
  48. 6bf6516 by Caroline Tice · 14 years ago
  49. 77356a0 Add TestTargetAPI.py: by Johnny Chen · 14 years ago
  50. 40b1a6c by Caroline Tice · 14 years ago
  51. dcc11b3 by Caroline Tice · 14 years ago
  52. 89f1aa7 Export the ability to get the start and end addresses for functions by Greg Clayton · 14 years ago
  53. 5c1e2ed by Caroline Tice · 14 years ago
  54. afb8186 Added a missing API call in SBTarget that enables one to get by Greg Clayton · 14 years ago
  55. 291a3e9 by Caroline Tice · 14 years ago
  56. d2765fc Clarified the docstrings for int_to_bytearray() and bytearray_to_int(). by Johnny Chen · 14 years ago
  57. c7129c3 Add some function docs. by Jim Ingham · 14 years ago
  58. a6e29c2 Add some comments. by Johnny Chen · 14 years ago
  59. d2fac09 by Caroline Tice · 14 years ago
  60. 4c70f28 Add two utility functions to lldbutil.py: by Johnny Chen · 14 years ago
  61. 78fb563 by Caroline Tice · 14 years ago
  62. 672f311 by Caroline Tice · 14 years ago
  63. 60a544f Add an API SBProcess::GetByteOrder() and add test cases which utilizes GetByteOrder(), by Johnny Chen · 14 years ago
  64. 5f59391 by Caroline Tice · 14 years ago
  65. a5e28af by Caroline Tice · 14 years ago
  66. 27f0f40 Fix wrong placement of skipUnless() decorator. by Johnny Chen · 14 years ago
  67. aaea42e Add test methods for SBProcess.WriteMemory() API to the TestProcessAPI.py file. by Johnny Chen · 14 years ago
  68. 0e6bc95 by Caroline Tice · 14 years ago
  69. 36a0f74 Add TestProcessAPI.py which exercises some Python SBProcess API. In particular, this tests by Johnny Chen · 14 years ago
  70. 2396b9f Look for swig in /usr/bin and /usr/local/bin. by Jim Ingham · 14 years ago
  71. 952b538 by Caroline Tice · 14 years ago
  72. 708b447 by Stephen Wilson · 14 years ago
  73. 0491b3b by Caroline Tice · 14 years ago
  74. fc30997 If the user sets a working directory path using "process launch -w <path>", honor that dir path; by Johnny Chen · 14 years ago
  75. da9ab6f Simplify the dictionary setting for test_set_working_dir_* methods. by Johnny Chen · 14 years ago
  76. 4f797d8 Call self.setTearDownCleanup() and pass a proper dictionay to properly cleanup by Johnny Chen · 14 years ago
  77. a29321a Add a test case to exercise the process launch flag of '-w <path>' which sets the by Johnny Chen · 14 years ago
  78. 40e2479 Renamed the Python test file to be TestProcessLaunch.py. by Johnny Chen · 14 years ago
  79. 803c979 Renamed the test class to be ProcessLaunchTestCase. by Johnny Chen · 14 years ago
  80. 25d8837 Simplified the code a little bit. by Johnny Chen · 14 years ago
  81. cba2be3 Renamed test/process_io directory to test/process_launch, in preparation to add additional tests by Johnny Chen · 14 years ago
  82. a5a34bd Add readme on the version of emacs that works with lldb-enhanced gud.el, by Johnny Chen · 14 years ago
  83. 01d6157 Add emulation for Encoding A1 of A8.6.97 MOV (register). by Johnny Chen · 14 years ago
  84. 7677f45 The lldb-enhanced gud.el does not work on emacs 22.1.1 (dumb terminal). by Johnny Chen · 14 years ago
  85. a2f7423 Fixed CommandReturnObject::SetImmediateErrorFile() to set the correct stream. by Greg Clayton · 14 years ago
  86. 696b4ef Fix typos in the opcode entries for branch instructions. by Johnny Chen · 14 years ago
  87. b14b00c When making a DataExtractor from a Value that's got a ClangType, set the AddressByteSize from the AST Context. by Jim Ingham · 14 years ago
  88. 59e6ab7 Add emulation for BXJ (Branch and Exchange Jazelle), assuming that the attempt to by Johnny Chen · 14 years ago
  89. a1f0b72 linux: Use ArchSpec::GetCore and the ArchSpec::Core enums. by Stephen Wilson · 14 years ago
  90. f7cc64d linux: Remove a local ObjectFileELF version of GetArchitecture. by Stephen Wilson · 14 years ago
  91. 7f513ba Host: linux: Use llvm::sys::getHostTriple for the default host ArchSpec. by Stephen Wilson · 14 years ago
  92. b7af465 ArchSpec: Do not depend on Host::GetArchitecture. by Stephen Wilson · 14 years ago
  93. b9f02cf Add emulation methods for Bitwise Bit Clear (immediate and register) operations. by Johnny Chen · 14 years ago
  94. 15a7a6b Add emulation methods for "SUB (immediate, Thumb)" and "SUB (immediate, ARM)" operations. by Johnny Chen · 14 years ago
  95. a695f95 Add emulation for "ADR" operations. Add a ThumbImm8Scaled() convenience function by Johnny Chen · 14 years ago
  96. c9e747f Modify EmulateSUBSPImm() to handle the cases with generic Rd value instead of by Johnny Chen · 14 years ago
  97. 9b38177 Add emulation methods for "SBC (immediate)" and "SBC (register)" operations. by Johnny Chen · 14 years ago
  98. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 14 years ago
  99. 2434884 Renamed macro definition of CPSR_C to be CPSR_C_POS to avoid confusions and subtle bugs. by Johnny Chen · 14 years ago
  100. 90e607b Add emulation methods for "RSC (immediate)" and "RSC (register)" operations. by Johnny Chen · 14 years ago