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