1. 1d080bd Updated LLVM/Clang to the latest release, to pick up AVX disassembly support. by Sean Callanan · 14 years ago
  2. 04fdd67 Now that we have the debug map issues fixed, change the Xcode project to by Greg Clayton · 14 years ago
  3. f1b73af Added a fix that should help incorrect type uniquing. There was an issue by Greg Clayton · 14 years ago
  4. 06cfe2e Make the first vector of "long" instead of "int" so we can tell the difference by Greg Clayton · 14 years ago
  5. 13acfc9 Added a test case for unique types. In the test case there are two std::vector by Greg Clayton · 14 years ago
  6. dd506e1 Added a fix to not re-use object files when doing DWARF with debug map. by Greg Clayton · 14 years ago
  7. 279584c Updated to LLVM/Clang revision 127600. by Sean Callanan · 14 years ago
  8. 52ce561 Fix makefile builds when llvm is configured with -enable-shared. by Stephen Wilson · 14 years ago
  9. f6aaf7d Turn labels into actual switch cases. by Benjamin Kramer · 14 years ago
  10. 015eb23 Add a missing include. by Stephen Wilson · 14 years ago
  11. 7304147 Add a test directory stop-hook to test the newly added "target stop-hook" command. by Johnny Chen · 14 years ago
  12. 8a3c043 Add pexpect-2.4 (a pure Python module for controlling and automating other programs) to the test directory. by Johnny Chen · 14 years ago
  13. 4f52c40 Discover the 'lldb' executable in the setUp() hook of the base test class. by Johnny Chen · 14 years ago
  14. 26901c8 Add a mechanism to discover the full path of the 'lldb' program into the test driver. by Johnny Chen · 14 years ago
  15. 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
  16. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 14 years ago
  17. 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 14 years ago
  18. 8053904 Declare some const functions as const. by Jim Ingham · 14 years ago
  19. a526823 Fix a typo in a comment. by Jim Ingham · 14 years ago
  20. 8d237a2 Add test cases to exercise the SBThread.GetProcess() API. We launch the process using the by Johnny Chen · 14 years ago
  21. 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 14 years ago
  22. ce207c1 by Caroline Tice · 14 years ago
  23. 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
  24. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 14 years ago
  25. 650fef9 Add test cases to TestThreadAPI.py to exercise SBThread.StepOver() by stopping at a breakpoint, by Johnny Chen · 14 years ago
  26. 912675f by Caroline Tice · 14 years ago
  27. 2a45681 by Caroline Tice · 14 years ago
  28. d09dcac Test cleanup. Check for the full caller symbol of malloc -- b(int). by Johnny Chen · 14 years ago
  29. ef6635b Add Makefile support for the Platform plugins. by Stephen Wilson · 14 years ago
  30. c97bfdb Centralize the GDB remote timeout value into the GDBRemoteCommunication as a by Greg Clayton · 14 years ago
  31. 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
  32. d151c8a Fixed a bug where the disassembly syntax specified for the by Sean Callanan · 14 years ago
  33. e59b869 There's no sense checking for < 0 with a return type of size_t: by Johnny Chen · 14 years ago
  34. 88e7859 Add an expectedFailure decorator to the test_connect_remote() test case. by Johnny Chen · 14 years ago
  35. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 14 years ago
  36. 791af3b Fix ObjectFileElf::GetEntryPointAddress() by Stephen Wilson · 14 years ago
  37. 8be525a Add Makefile support for the new DynamicLoaderStatic plugin. by Stephen Wilson · 14 years ago
  38. 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
  39. 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
  40. 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
  41. 9d352ce by Caroline Tice · 14 years ago
  42. 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
  43. edc0524 Add test cases for SBTarget.Launch() API with the stdout of the inferior redirected to a file. by Johnny Chen · 14 years ago
  44. 586a3e6 Add TestThreadAPI.py file to house the Python SBThread API test cases. by Johnny Chen · 14 years ago
  45. 2cd9418 Don't cache .o files in the debug map + DWARF in .o files. If we cache them by Greg Clayton · 14 years ago
  46. 42da4da Add a test case ProcessAPITestCase.test_remote_launch() which tests SBProcess.RemoteLaunch() by Johnny Chen · 14 years ago
  47. bd321c5 Added a DynamicLoaderStatic plug-in that will act as a static dynamic loader. by Greg Clayton · 14 years ago
  48. a7951be Add a test case for the lldb command 'process connect'. by Johnny Chen · 14 years ago
  49. d3475a2 Allow the macosx frame backchain to use 32/64 bit as the selector when by Greg Clayton · 14 years ago
  50. 7d71b1a Add docstrings for unittest framework's test methods. by Johnny Chen · 14 years ago
  51. 1f968f4 Change the CFLAGS variable assignment operator to ?= (conditional variable assignment operator). by Johnny Chen · 14 years ago
  52. e96c72b Add TestObjcOptimized.py under the objc-optimized directory to by Johnny Chen · 14 years ago
  53. 5acc343 Add objc source file and Makefile. Test case to follow. by Johnny Chen · 14 years ago
  54. 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
  55. 3809340 Expose ConnectRemote API through SBTarget and SBProcess. by James McIlree · 14 years ago
  56. 50339fe Fixed a bug in the expression parser where the 'this' by Sean Callanan · 14 years ago
  57. b27771d by Caroline Tice · 14 years ago
  58. 51ed1b6 Add TestDisasmAPI.py which exercises the newly added SBFunction/SBSymbol.GetStartAddress(), by Johnny Chen · 14 years ago
  59. 11555f2 by Caroline Tice · 14 years ago
  60. 8ce96d9 by Caroline Tice · 14 years ago
  61. 868198b by Caroline Tice · 14 years ago
  62. 6bf6516 by Caroline Tice · 14 years ago
  63. 77356a0 Add TestTargetAPI.py: by Johnny Chen · 14 years ago
  64. 40b1a6c by Caroline Tice · 14 years ago
  65. dcc11b3 by Caroline Tice · 14 years ago
  66. 89f1aa7 Export the ability to get the start and end addresses for functions by Greg Clayton · 14 years ago
  67. 5c1e2ed by Caroline Tice · 14 years ago
  68. afb8186 Added a missing API call in SBTarget that enables one to get by Greg Clayton · 14 years ago
  69. 291a3e9 by Caroline Tice · 14 years ago
  70. d2765fc Clarified the docstrings for int_to_bytearray() and bytearray_to_int(). by Johnny Chen · 14 years ago
  71. c7129c3 Add some function docs. by Jim Ingham · 14 years ago
  72. a6e29c2 Add some comments. by Johnny Chen · 14 years ago
  73. d2fac09 by Caroline Tice · 14 years ago
  74. 4c70f28 Add two utility functions to lldbutil.py: by Johnny Chen · 14 years ago
  75. 78fb563 by Caroline Tice · 14 years ago
  76. 672f311 by Caroline Tice · 14 years ago
  77. 60a544f Add an API SBProcess::GetByteOrder() and add test cases which utilizes GetByteOrder(), by Johnny Chen · 14 years ago
  78. 5f59391 by Caroline Tice · 14 years ago
  79. a5e28af by Caroline Tice · 14 years ago
  80. 27f0f40 Fix wrong placement of skipUnless() decorator. by Johnny Chen · 14 years ago
  81. aaea42e Add test methods for SBProcess.WriteMemory() API to the TestProcessAPI.py file. by Johnny Chen · 14 years ago
  82. 0e6bc95 by Caroline Tice · 14 years ago
  83. 36a0f74 Add TestProcessAPI.py which exercises some Python SBProcess API. In particular, this tests by Johnny Chen · 14 years ago
  84. 2396b9f Look for swig in /usr/bin and /usr/local/bin. by Jim Ingham · 14 years ago
  85. 952b538 by Caroline Tice · 14 years ago
  86. 708b447 by Stephen Wilson · 14 years ago
  87. 0491b3b by Caroline Tice · 14 years ago
  88. fc30997 If the user sets a working directory path using "process launch -w <path>", honor that dir path; by Johnny Chen · 14 years ago
  89. da9ab6f Simplify the dictionary setting for test_set_working_dir_* methods. by Johnny Chen · 14 years ago
  90. 4f797d8 Call self.setTearDownCleanup() and pass a proper dictionay to properly cleanup by Johnny Chen · 14 years ago
  91. a29321a Add a test case to exercise the process launch flag of '-w <path>' which sets the by Johnny Chen · 14 years ago
  92. 40e2479 Renamed the Python test file to be TestProcessLaunch.py. by Johnny Chen · 14 years ago
  93. 803c979 Renamed the test class to be ProcessLaunchTestCase. by Johnny Chen · 14 years ago
  94. 25d8837 Simplified the code a little bit. by Johnny Chen · 14 years ago
  95. cba2be3 Renamed test/process_io directory to test/process_launch, in preparation to add additional tests by Johnny Chen · 14 years ago
  96. a5a34bd Add readme on the version of emacs that works with lldb-enhanced gud.el, by Johnny Chen · 14 years ago
  97. 01d6157 Add emulation for Encoding A1 of A8.6.97 MOV (register). by Johnny Chen · 14 years ago
  98. 7677f45 The lldb-enhanced gud.el does not work on emacs 22.1.1 (dumb terminal). by Johnny Chen · 14 years ago
  99. a2f7423 Fixed CommandReturnObject::SetImmediateErrorFile() to set the correct stream. by Greg Clayton · 14 years ago
  100. 696b4ef Fix typos in the opcode entries for branch instructions. by Johnny Chen · 14 years ago