1. b7c59ce Simplify Makefile. by Johnny Chen · 14 years ago
  2. a85859f Add help message for the scenario of using lldb.py module distributed by Xcode4 by Johnny Chen · 14 years ago
  3. 7235a5e Make clang happy. by Johnny Chen · 14 years ago
  4. 9e974ff Fixed compilation warnings emitted by clang. by Johnny Chen · 14 years ago
  5. 2b8732c Fixed an issue with Function::GetPrologueByteSize() where if a function's first line table entry didn't have the same address as the start address of the function itself, we could end up returning and incorrect value. by Greg Clayton · 14 years ago
  6. 745ac7a Add ThreadPlanTracer class to allow instruction step tracing of execution. by Jim Ingham · 14 years ago
  7. 917b09a Added a simple test for: by Johnny Chen · 14 years ago
  8. abab590 Bumped Xcode versions to lldb-32 and debugserver-119. by Greg Clayton · 14 years ago
  9. 53d287b Fixed an issue where we might not be able to track down a real definition of by Greg Clayton · 14 years ago
  10. 07c55d1 Disable the debug logging I accidentally left enabled. by Greg Clayton · 14 years ago
  11. e8587d0 Some rewordings of the assert messages for process stopped due to breakpoint. by Johnny Chen · 14 years ago
  12. d7cb26e Added initial support to the lldb_private::SymbolFile for finding by Greg Clayton · 14 years ago
  13. 634c86f Slight changes to how to phrase the assert for Python API thread.GetStopReason(). by Johnny Chen · 14 years ago
  14. 631c45d Finish adding the actual stop reason as part of the assert message when asserting: by Johnny Chen · 14 years ago
  15. c82ac76 Add the actual stop reason to an assert message for bitfields_variable_python() by Johnny Chen · 14 years ago
  16. fddc25a Silence a bunch of clang warnings. by Benjamin Kramer · 14 years ago
  17. 74e55ed Don't keep appending to the current crash description with each formatted crash description call. by Greg Clayton · 14 years ago
  18. 2ade611 Move the embedded Python interpreter onto a separate thread, to prevent by Caroline Tice · 14 years ago
  19. cb39544 Trivial fix for an error message. by Johnny Chen · 14 years ago
  20. b1a3d9c Remove @skip decorator: by Johnny Chen · 14 years ago
  21. 83e8b9d Remove an obsolete reference to immediate plans. by Jim Ingham · 14 years ago
  22. e98ac25 Modified lldb_private::SymboleFile to be able to override where its TypeList by Greg Clayton · 14 years ago
  23. 91557b0 Fixed a bug where the LLVM disassembler was ignoring the show_address parameter. by Sean Callanan · 14 years ago
  24. 26be453 Add more comments on LLDBTestResult class. by Johnny Chen · 14 years ago
  25. e5748d8 Did a lot of code cleanup. by Greg Clayton · 14 years ago
  26. 47c47c4 Rephrase the output message about session information; make it both "session logs". by Johnny Chen · 14 years ago
  27. 55c1bfd When dumping the session log for a failed/errored test, also emit the command to by Johnny Chen · 14 years ago
  28. cf18faa Added a named container for the source QualType by Sean Callanan · 14 years ago
  29. e24f7cb Remove the @skip decorator for the whole class: by Johnny Chen · 14 years ago
  30. 573335b We should make the class name of test cases which emphasize expression command by Johnny Chen · 14 years ago
  31. 05efcf78 Distinguish between the assert messages for runCmd and expect. The former now by Johnny Chen · 14 years ago
  32. 5ef1c4b Move the persistent_variables directory under expression_command directory. by Johnny Chen · 14 years ago
  33. b883d17 Add a test for expression parser crash which has been fixed. by Johnny Chen · 14 years ago
  34. 4b1c625 Make the specification of relative directory more robust. by Johnny Chen · 14 years ago
  35. 670c1f8 Bumped versions in Xcode projects to lldb-31 and debugserver-118. by Greg Clayton · 14 years ago
  36. 5745283 Fixed an issue in the DWARF parser that was causing forward declarations by Greg Clayton · 14 years ago
  37. 2ecd040 Implement RegisterContext::WriteRegisterBytes in RegisterContextLLDB. by Jason Molenda · 14 years ago
  38. 1da513b Refactor UnwindLLDB so it doesn't populate the entire stack unless by Jason Molenda · 14 years ago
  39. d6ef16a Fix thinko in UnwindTable.cpp where it wouldn't provde a by Jason Molenda · 14 years ago
  40. 92027bf Add keyboard shortcuts: by Johnny Chen · 14 years ago
  41. f9be01f Minor comment fix. by Johnny Chen · 14 years ago
  42. 1a6e92a Better wording of the help text for the '-f testclass.testmethod' option usage. by Johnny Chen · 14 years ago
  43. d529f6b Let's also emit the informational message for where to find the session logs for by Johnny Chen · 14 years ago
  44. a3e6931 Skipped due to rdar://problem/8641483 ./dotest.py -v -t -w forward seg faults. by Johnny Chen · 14 years ago
  45. 23cf0c7 Cleaned up the pseudo terminal code in ProcessGDBRemote as it was spawning by Greg Clayton · 14 years ago
  46. 6dff827 Added more logging so we see the register state by Sean Callanan · 14 years ago
  47. b29b8c6 Fixed an issue where if you try and run something in a TTY that isn't by Greg Clayton · 14 years ago
  48. cc6f7cc Fixed some type parsing that was causing types to thing they were forward by Greg Clayton · 14 years ago
  49. a224cd1 Change the test driver so that simply specifying '-f testclass.testmethod' means that by Johnny Chen · 14 years ago
  50. 1d1b39c Made variable resolution more robust by handling by Sean Callanan · 14 years ago
  51. d6d806c Fixed FileSpec's operator == to deal with equivalent paths such as "/tmp/a.c" by Greg Clayton · 14 years ago
  52. 95e33b7 Modified the DWARF parser for both the single DWARF file and for the case by Greg Clayton · 14 years ago
  53. e005f2c Modified all logging calls to hand out shared pointers to make sure we by Greg Clayton · 14 years ago
  54. 101530a Howard Hinnant gave us changes for lldb_private::SharingPtr that gives us the ability have a single allocation contain both the class and the ref count without having to do intrusive pointer type stuff. They will intermingle correctly with other shared pointers as well. In order to take advantage of this you need to create your pointer in your class with the make_shared function: by Greg Clayton · 14 years ago
  55. 58a4034 Fixed a bug where variables in the source operands by Sean Callanan · 14 years ago
  56. 51d6b1c Make the type of session log part of the filename itself. It allows for easier by Johnny Chen · 14 years ago
  57. 538eb82 Added copy constructors and assignment operators to all lldb::SB* classes by Greg Clayton · 14 years ago
  58. 91a1dab If debugserver is running on the local machine, pass it a by Caroline Tice · 14 years ago
  59. 89e4bae Fix the infinite recursion crash reported by Antoine Missout: by Johnny Chen · 14 years ago
  60. ea9d426 Added the equivalent of gdb's "unwind-on-signal" to the expression command, and a parameter to control it in ClangUserExpression, and on down to ClangFunction. by Jim Ingham · 14 years ago
  61. e625092 Fix comments. by Johnny Chen · 14 years ago
  62. 6ddae13 Don't need both LIBLLDB_LOG_DYNAMIC_LOADER and LIBLLDB_LOG_SHLIB. Go with the former. by Jim Ingham · 14 years ago
  63. 088c03e Don't need both LIBLLDB_LOG_DYNAMIC_LOADER and LIBLLDB_LOG_SHLIB. Go with the former. by Jim Ingham · 14 years ago
  64. 981e44c Don't need both LIBLLDB_LOG_DYNAMIC_LOADER and LIBLLDB_LOG_SHLIB. Go with the former. by Jim Ingham · 14 years ago
  65. d96b568 Add comment about iterating over possible architecture and compiler combinations. by Johnny Chen · 14 years ago
  66. 7db314d Make lldb dump fullpath instead of just basename when printing out frame or by Johnny Chen · 14 years ago
  67. f773145 Fixed error handling when the utility functions by Sean Callanan · 14 years ago
  68. 4f385f1 Handle stepping through ObjC vtable trampoline code. by Jim Ingham · 14 years ago
  69. 4ba3999 Added a setting to "log timer" so you can see the incremental timings as well: by Jim Ingham · 14 years ago
  70. abab14b Added a top level Timer to the interpreter execute command. Also added an option to pass the depth to "log timer enable". That allows you to time just command execution with: by Jim Ingham · 14 years ago
  71. 19e29a8 Added a top level Timer to the interpreter execute command. Also added an option to pass the depth to "log timer enable". That allows you to time just command execution with: by Jim Ingham · 14 years ago
  72. db60f8d Remove the @skip decorators for assertion aborts. Jim fixed them in r118255. by Johnny Chen · 14 years ago
  73. dc7422c Use the new native unwinder by default. by Jason Molenda · 14 years ago
  74. 2eac2b9 Add a ObjC V1 runtime, and a generic AppleObjCRuntime plugin. by Jim Ingham · 14 years ago
  75. 95fcc92 Add one @skip decorator for assertion abort: by Johnny Chen · 14 years ago
  76. 56a814d Add two @skip decorators for assertion abort: by Johnny Chen · 14 years ago
  77. e9cab7a Revert last checkin to DisassemblerLLVM.cpp; that was some temporary by Jason Molenda · 14 years ago
  78. 8132f2d Add #ifdef to easily switch between the current libunwind-remote based unwinder by Jason Molenda · 14 years ago
  79. 96829fb Revert last checking to ThreadGDBRemote.cpp; I accidentally checked by Jason Molenda · 14 years ago
  80. 8f0ad08 Revert last checking to CommandObjectDisassemble.cpp; that was by Jason Molenda · 14 years ago
  81. a6b71de Built the native unwinder with all the warnings c++-4.2 could muster; by Jason Molenda · 14 years ago
  82. 12e4185 Removed the hardcoding of the system compiler to gcc 4.2 by Greg Clayton · 14 years ago
  83. 81ab615 Bumped version for lldb-29 and debugserver-116 in the Xcode projects. by Greg Clayton · 14 years ago
  84. 0baa394 Added support for loading and unloading shared libraries. This was done by by Greg Clayton · 14 years ago
  85. 14a97ff Re-enabled LLDB's pointer checkers, and moved the by Sean Callanan · 14 years ago
  86. 800d11d Handle the case where no eh_frame section is present. by Jason Molenda · 14 years ago
  87. 29756d4 Factored the code that implements breakpoints on by Sean Callanan · 14 years ago
  88. b1ba407 Fix an incorrect comment in main.c and TestConditionalBreak.py. by Johnny Chen · 14 years ago
  89. 2c8d159 Add a test for Python API SBValue.GetValueType() inside TestArrayTypes.py for a by Johnny Chen · 14 years ago
  90. e3bb7ec Fix comment about eValueTypeConstResult. by Johnny Chen · 14 years ago
  91. 94fb543 Modified ThreadPlanCallFunction to perform the by Sean Callanan · 14 years ago
  92. dd2bb2c Now that the test suite has very few expected failures remaining (2), it is a good by Johnny Chen · 14 years ago
  93. 3a89ffe Really remove the @expectedFailure decorator this time. by Johnny Chen · 14 years ago
  94. b120412 Remove the @expectedFailure decorator. The bug rdar://problem/8508987 has been fixed. by Johnny Chen · 14 years ago
  95. 9d2993d Fixed shared library unloads when the unloaded library doesn't come off by Greg Clayton · 14 years ago
  96. 07f3d8d Modified the thread plan that calls functions to by Sean Callanan · 14 years ago
  97. ddeba74 Add more comment for dumpSessionInfo(self) method. by Johnny Chen · 14 years ago
  98. b51ee98 Fixed a bug where we left a definition hanging by Sean Callanan · 14 years ago
  99. 9ac3a96 Fixed a bug that was confusing the code generator by Sean Callanan · 14 years ago
  100. 66a0353 Clean up the test case by removing the filtering code related to fixed radars. by Johnny Chen · 14 years ago