1. 3ca24b4 <rdar://problem/12817233> by Enrico Granata · 12 years ago
  2. 33060ad Make sure that the lldb globals: by Greg Clayton · 12 years ago
  3. 1dba077 Even when we aren’t going to init all the lldb.frame, etc, globals, init lldb.debugger, since each script interpreter is tied to just one debugger. by Jim Ingham · 12 years ago
  4. 81b8db9 Get LLDB-Info.plist up to date with r169081. by Filipe Cabecinhas · 12 years ago
  5. 6f3a711 Make sure to check for DW_AT_linkage_name to get the mangled name in the DWARF along with the older DW_AT_MIPS_linkage_name attribute. by Greg Clayton · 12 years ago
  6. 18e0830 Added GetCanonicalType() to SBType: by Greg Clayton · 12 years ago
  7. b9db9d5 Fix a few more clang (3.2) warnings on Linux: by Daniel Malea · 12 years ago
  8. d35b7b3 More Linux warnings fixes (remove default labels as needed): by Daniel Malea · 12 years ago
  9. 6798bd4 Now that we set ThreadPlanCallFunction to private in the constructor, it is confusing that we set it by Jim Ingham · 12 years ago
  10. f61e16b <rdar://problem/10903854> by Greg Clayton · 12 years ago
  11. ae0f59c Set ThreadPlanCallFunction to private in ConstructorSetup. This fixes a problem on Linux where 'continue' was misfiring after an expression evaluation when stopped at a breakpoint. The problem was that InferiorCallMmap was not setting its ThreadPlanCallFunction to private and so the completion of that thread plan appeared to be the stop reason and therefore the 'continue' operation failed to step over the breakpoint. The SetPrivate call is being put in ThreadPlanCallFunction rather than InferiorCallMmap to make the solution more general. by Andrew Kaylor · 12 years ago
  12. 691e74c Fix Test11588.py on Linux. The test was failing because the synthetic type fields were resolving to int instead of long. A similar change was made in r155144 to eliminate the type specification for an earlier check in this test, so it seemed appropriate here too. by Andrew Kaylor · 12 years ago
  13. 14e71ec Separate initing the stdout/stderr for running the Python Script interpreter from initing the lldb.target/frame/etc globals, by Jim Ingham · 12 years ago
  14. 4a96ab8 Take the Target API lock before letting the Python code start to work constructing threads, otherwise we will risk a lock-inversion deadlock between the thread list and the API mutex. by Jim Ingham · 12 years ago
  15. e8a321d <rdar://problem/12831670> by Jason Molenda · 12 years ago
  16. 7812411 <rdar://problem/8908550> by Greg Clayton · 12 years ago
  17. f7a24e5 <rdar://problem/12827789> by Greg Clayton · 12 years ago
  18. 49d888d <rdar://problem/12820334> by Greg Clayton · 12 years ago
  19. 19113d6 Add examples of how to set env vars for the inferior process from lldb. by Jason Molenda · 12 years ago
  20. eddc95d Mark the "dwarf" version of the test expected fail as well as the dsym version. by Jim Ingham · 12 years ago
  21. 81b78ca Merge rename fix from libcxxabi (r169402: rename class with name that clashes with GCC 4.6/4.7) by Daniel Malea · 12 years ago
  22. 70a8945 Fix ABIMacOSX_i386::RegisterIsVolatile to return the negated value of by Jason Molenda · 12 years ago
  23. b912457 <rdar://problem/12560257> by Greg Clayton · 12 years ago
  24. 77dd4a4 The expression parser will now check the validity by Sean Callanan · 12 years ago
  25. 8f00907 Move isprint8() into lldb_private as per post-commit review from Stefanus by Daniel Malea · 12 years ago
  26. 48f833c Rewrote the bitfield logic. Major changes include: by Sean Callanan · 12 years ago
  27. c4d49fd Adding missing log->Printf instead of printf in Target::SetArchitecture by Jason Molenda · 12 years ago
  28. a7eb248 <rdar://problem/12560257> by Greg Clayton · 12 years ago
  29. 0b93a75 <rdar://problem/12749733> by Greg Clayton · 12 years ago
  30. 2eafcaa Define isprint8() wrapper around isprint() in order to avoid crashes on Linux by Daniel Malea · 12 years ago
  31. dd06f93 Backed out part of the ABI changes that were checked in because it breaks the i386 test suite as it makes backtraces for the first instruction of a function fail. Stepping relies on backtraces being correct, so I am reverting what is causing the breakage. by Greg Clayton · 12 years ago
  32. 48eca2f Crash every time with new target logging is now fixed. by Greg Clayton · 12 years ago
  33. 8c6cf43 Add an LLDB_LOG_TARGET logging channel (log eanble lldb target). by Jason Molenda · 12 years ago
  34. d891f9b Fix Linux build warnings due to redefinition of macros: by Daniel Malea · 12 years ago
  35. 0bce9a2 <rdar://problem/12649160> by Greg Clayton · 12 years ago
  36. bdf98ef Fix comment in ABIMacOSX_i386::RegisterIsCalleeSaved to say that by Jason Molenda · 12 years ago
  37. 99611fe In the data formatters, if we know the result by Sean Callanan · 12 years ago
  38. c07d199 Cache the names for Objective-C classes if we know by Sean Callanan · 12 years ago
  39. 1a18ded Mark TestConnectRemote.py as expected to fail on Linux due to bugzilla #14427 by Daniel Malea · 12 years ago
  40. b3dafc6 <rdar://problem/12750060> by Greg Clayton · 12 years ago
  41. 6701ba3 Missing #include to pick up def'n of TerminalState.h. by Jim Ingham · 12 years ago
  42. 965b404 Get rid of a warning where functions in DNB.h were extern "C" when they don't need to be anymore. by Greg Clayton · 12 years ago
  43. 6475c42 <rdar://problem/12798131> by Greg Clayton · 12 years ago
  44. 25b2109 A few more build fixes for gcc 4.6: by Daniel Malea · 12 years ago
  45. 3e1d95d Fixed a crash in which we examined the extension of by Sean Callanan · 12 years ago
  46. 803c3b0 Fix clang build issues. by Greg Clayton · 12 years ago
  47. 5292b44 <rdar://problem/12742973> by Greg Clayton · 12 years ago
  48. 5fdfc6d Don't re-add kexts and the kernel each time we get a notification by Jason Molenda · 12 years ago
  49. 253a86b Bump lldb version num to lldb-178, debugserver version to debugserver-198. by Jason Molenda · 12 years ago
  50. c557e7d Read full 64 bits of kernel address when locating a by Jason Molenda · 12 years ago
  51. 6b21a9b Added support for PtrToInt to the IR interpreter. by Sean Callanan · 12 years ago
  52. 5474125 Added logging to the code that determines by Sean Callanan · 12 years ago
  53. b1087a2 Save and restore terminal state when lldb is suspended with SIGTSTP and resumed with SIGCONT. by Jim Ingham · 12 years ago
  54. 9ac7ce3 <rdar://problem/12676084> Dump the traceback when a Python error occurs in "command script import" and the exception is not an ImportError by Enrico Granata · 12 years ago
  55. ec9c2d2 Added new options to "target create" and "target modules add". by Greg Clayton · 12 years ago
  56. 1649a72 <rdar://problem/12687087> by Greg Clayton · 12 years ago
  57. f14269a <rdar://problem/12780259> by Han Ming Ong · 12 years ago
  58. 5f35a4b Resolve printf formatting warnings on Linux: by Daniel Malea · 12 years ago
  59. 507a638 <rdar://problem/12655594> by Greg Clayton · 12 years ago
  60. 2c7e854 <rdar://problem/12635804> by Greg Clayton · 12 years ago
  61. 37459fc Match extern "C" in declaration and definition (swig template) by Daniel Malea · 12 years ago
  62. 214d2a3 <rdar://problem/12445557> by Greg Clayton · 12 years ago
  63. 6ecafc7 Don't return decorated (i.e., const or pointer) by Sean Callanan · 12 years ago
  64. dacdc01 Add an example of using the target.process.extra-startup-command to turn on debugserver logging since by Jim Ingham · 12 years ago
  65. 15fd97d Tighten up how we acquire the underlying frame in the SBFrame methods. We were getting by Jim Ingham · 12 years ago
  66. db23fc2 Rename __lambda to __lambda_node (apply r164404 from libcxxabi) by Daniel Malea · 12 years ago
  67. 53a1c26 Correct the label for the com.apple.debugserver.posix plist. by Jason Molenda · 12 years ago
  68. 0194553 Linux buildbot fix: detect swig tool from PATH in shell script (before searching hardcoded directories) by Daniel Malea · 12 years ago
  69. 2d05dc6 Add 'class' keyword to friend definition (to fix gcc 4.6 build) by Daniel Malea · 12 years ago
  70. c4a8ba7 Cleanup - remove declarations of unimplemented functions. by Jim Ingham · 12 years ago
  71. 14571fc If Clang is looking for an Objective-C method on by Sean Callanan · 12 years ago
  72. c9b798c <rdar://problem/12639603> by Greg Clayton · 12 years ago
  73. c62ef46 Fixing a silly typo in the previous patch by Enrico Granata · 12 years ago
  74. 8127561 Fixed the debugserver Xcode project to allow by Sean Callanan · 12 years ago
  75. 341c311 <rdar://problem/12754509> by Enrico Granata · 12 years ago
  76. 2c825fb <rdar://problem/12636970> by Greg Clayton · 12 years ago
  77. f5150e8 Mark expected failures on Linux (due to bugzilla #14437) by Daniel Malea · 12 years ago
  78. e45c499 <rdar://problem/12759744> Provide physical memory distribution as part of profile data by Han Ming Ong · 12 years ago
  79. 01e6a58 <rdar://problem/12106825> by Greg Clayton · 12 years ago
  80. 7bf78a0 The skipOnLinux decorator wasn't calling the test method correctly (no need to pass in the "self") resulting by Jim Ingham · 12 years ago
  81. 14fe7f1 <rdar://problem/12636970> by Greg Clayton · 12 years ago
  82. 76b258d The Function calling thread plan was replacing the stored stop info too soon, causing recursive entry into the by Jim Ingham · 12 years ago
  83. 99e8729 Improvement to TestGlobalVariables fix by Daniel Malea · 12 years ago
  84. e5aa0d4 Fix for TestSharedLib.py (on Linux) by Daniel Malea · 12 years ago
  85. ae9cc55 <rdar://problem/12723044> For 'process plugin packet send…', we just send it async by default by Han Ming Ong · 12 years ago
  86. 0052123 Missing “if (log)” on a log printf. by Jim Ingham · 12 years ago
  87. 1565469 Fix TestGlobalVariables.py (on Linux) by Daniel Malea · 12 years ago
  88. 46a645f Skip objC test on non-darwin platforms by Daniel Malea · 12 years ago
  89. 1ff1f2e Remove decorator to skip event tests - hang resolved in r168503 by Daniel Malea · 12 years ago
  90. 40c9d75 Update test status on Linux by Daniel Malea · 12 years ago
  91. c001040 Fix Linux bug that leaves lldb in invalid state after expression evaluation times out. by Daniel Malea · 12 years ago
  92. f7f5804 Remove call to StopMonitor() from ProcessMonitor::Detach() by Daniel Malea · 12 years ago
  93. bd31619 Disable darwin-specific test on non-darwin platforms by Daniel Malea · 12 years ago
  94. 169cd51 Linux test case fixes by Daniel Malea · 12 years ago
  95. c676e35 Clear auto-confirm setting on teardown for tests that use it by Daniel Malea · 12 years ago
  96. c09b5c1 Use auto-confirm setting to avoid prompts causing some tests to appear to hang by Daniel Malea · 12 years ago
  97. eec1981 Fix incorrect usage of buildDsym() in dwarf test by Daniel Malea · 12 years ago
  98. b810628 Skip dsym tests on Linux by Daniel Malea · 12 years ago
  99. b2921e2 Rest of the fix for Thread by Filipe Cabecinhas · 12 years ago
  100. 1a00ab3 Remove unneeded const qualifier by Filipe Cabecinhas · 12 years ago