1. e9d0df4 More leaks detection: by Greg Clayton · 14 years ago
  2. 84a0d33 Remove duplicate def'n from FileSpec.h. by Jim Ingham · 14 years ago
  3. 99e79df Removed the thread specific data that was being used for demangling since by Greg Clayton · 14 years ago
  4. 8c6934d Added a SemaConsumer that transforms the ASTs for by Sean Callanan · 14 years ago
  5. b1a9862 Added a missing static function prototype to FileSpec.h for ResolveUsername. by Greg Clayton · 14 years ago
  6. a30baf5 Moved the User Name expansion over to FileSpec, and converted it to use getpwname directly. by Jim Ingham · 14 years ago
  7. cf7f1ad Fixed up disassembly to not emit the module name before all function names by Greg Clayton · 14 years ago
  8. 2cf6e9e Removed a commented out function and did a little reformatting. by Greg Clayton · 14 years ago
  9. 7043635 Centralized all disassembly into static functions in source/Core/Disassembler.cpp. by Greg Clayton · 14 years ago
  10. 558be58 Add a unique ID to each debugger instance. by Caroline Tice · 14 years ago
  11. bdbb9af Fix an obvious typo and replace deprecated bcopy(3) with memcpy(3). by Benjamin Kramer · 14 years ago
  12. 802f8b0 Add a source file completer to the CommandCompleters. by Jim Ingham · 14 years ago
  13. 034a7c3 A little code cleanup to not create an script bridging object just to feed by Greg Clayton · 14 years ago
  14. 661825b Fixed debug map in executable + DWARF in .o debugging on Mac OS X. by Greg Clayton · 14 years ago
  15. 12bec71 Added function name types to allow us to set breakpoints by name more by Greg Clayton · 14 years ago
  16. adb8429 Handle completing "-" and "--". by Jim Ingham · 14 years ago
  17. 8b9af1c Convert direct access to the required & optional option sets to an accessor so we can lazily run BuildValidOptionSet, but make sure it is done before access. by Jim Ingham · 14 years ago
  18. 9a57417 Fix a bug in handling command resolution for non-exact matches. Now we will correctly give help options when there are both aliases & real commands matching the current input string. by Jim Ingham · 14 years ago
  19. 5e173d4 Improved printing of LLVM IR. We now print by Sean Callanan · 14 years ago
  20. 46b6249 Extensive code cleanup of the expression command. by Sean Callanan · 14 years ago
  21. 848960c Added the temporary -i option to expr, which by Sean Callanan · 14 years ago
  22. 705d678 Fixed the log streams for logs that output to by Sean Callanan · 14 years ago
  23. 3c821cc Fixes for array handling and dynamic type casting by Sean Callanan · 14 years ago
  24. 63094e0 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 14 years ago
  25. 6184dfe Updated the expression parser to use proper logging when by Sean Callanan · 14 years ago
  26. 8f0dc34 Added support to the expression parser for locating by Sean Callanan · 14 years ago
  27. 0b145ba Avoid tolower, it's slow and unnecessary. by Benjamin Kramer · 14 years ago
  28. 86c73c1 Turns out __cxa_demangle returns the size of the buffer instead of the size of by Benjamin Kramer · 14 years ago
  29. 9c6898b Make an explicit GetThreadSpecNoCreate accessor so you don't have to get the const-ness right to ensure you are not making a copy of the owning breakpoint's ThreadSpec in a breakpoint location. Also change the name from NoCopy to NoCreate since that's clearer. by Jim Ingham · 14 years ago
  30. 8e10cf9 Reduce code duplication. by Benjamin Kramer · 14 years ago
  31. 7d25348 Ensure GetDemangledName's thread safety by making the demangle buffer thread specific. by Benjamin Kramer · 14 years ago
  32. 726cccb Move trivial parts of UserID into the header. by Benjamin Kramer · 14 years ago
  33. f9a232b Move a bunch of trivial methods into the header. These compile down to 1-2 by Benjamin Kramer · 14 years ago
  34. 3ae9340 Initialize member so GDBRemoteRegisterContext::ReadRegisterBytes doesn't rely on by Benjamin Kramer · 14 years ago
  35. dfe3df9 Return false from FileSpec::GetPath early instead of making the return value by Benjamin Kramer · 14 years ago
  36. 5d2832c Don't snprintf directly into a std::string, it's undefined behavior per C++03. by Benjamin Kramer · 14 years ago
  37. 5a47e8b Two changes in this checkin. Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan by Jim Ingham · 14 years ago
  38. d457122 Remember whether a queue or thread name were passed into "breakpoint modify" so we can recognize an empty argument as unsetting the option. by Jim Ingham · 14 years ago
  39. 285c23e Remove an include of the deleted CommandObjectStatus.h. by Jim Ingham · 14 years ago
  40. 8e5e38f Adding setting thread specific breakpoints by name, ID, index & queue name to the SB interfaces. by Jim Ingham · 14 years ago
  41. 41313fc Move the "status" command to "process status" since that's where it belongs. Also make it print "running" if invoked by Jim Ingham · 14 years ago
  42. 649492b Change the Breakpoint & BreakpointLocation GetDescription methods so they call the BreakpointOptions::GetDescription rather by Jim Ingham · 14 years ago
  43. 10622a2 Change "breakpoint configure" to "breakpoint modify" so it doesn't collide with "breakpoint command" by Jim Ingham · 14 years ago
  44. a1e1475 Fix comment, per Chris' suggestion. by Owen Anderson · 14 years ago
  45. 944be70 Unstick the -r option for the disassemble command. by Sean Callanan · 14 years ago
  46. 0a298dc Fixed a problem where invalid triples were being passed by Sean Callanan · 14 years ago
  47. c3d6855 Switch from qsort_r to std::stable_sort for a performance win and improved portability. by Owen Anderson · 14 years ago
  48. 3c7b5b9 Add a "thread specification" class that specifies thread specific breakpoints by name, index, queue or TID. by Jim Ingham · 14 years ago
  49. 84cdc15 Move Args.{cpp,h} and Options.{cpp,h} to Interpreter where they really belong. by Jim Ingham · 14 years ago
  50. 34e9a98 Change the Options parser over to use a mask rather than an ordinal for option sets. by Jim Ingham · 14 years ago
  51. 17f4bff Move posix specific files into posix subdirectory so they can by Greg Clayton · 14 years ago
  52. 273a8e5 patch from: Jean-Daniel Dupas by Greg Clayton · 14 years ago
  53. e5cadba Make include paths work on Linux. ifdef out stuff that isn't relevant to by Eli Friedman · 14 years ago
  54. ef2bc87 Make getopt() use portable to Linux. by Eli Friedman · 14 years ago
  55. f05633b Add missing stdio.h include; fix include path for ClangASTContext.h. by Eli Friedman · 14 years ago
  56. e41c4b2 Updated LLVM/Clang to revision from 2010-06-13T06:00. by Greg Clayton · 14 years ago
  57. ccdb9ec Fix include paths; please check that this works on Mac. by Eli Friedman · 14 years ago
  58. c3d2139 Remove Mac-specific includes. by Eli Friedman · 14 years ago
  59. 8f5fd6b I have eliminated RTTI from LLDB! by Greg Clayton · 14 years ago
  60. 17b7136 Move SharingPtr.h into include/. by Eli Friedman · 14 years ago
  61. e49f79d Switched over to using the new lldb::SharingPtr from Howard Hinnant. by Greg Clayton · 14 years ago
  62. bfe9bb9 Moved files around for linux build. Fixed up Xcode project to by Greg Clayton · 14 years ago
  63. f6e509a Fixed an issue with the new DW_TAG_ptr_to_member_type changes where the clang type that was being created was using the pointee_type for both the class and the member pointer. by Greg Clayton · 14 years ago
  64. fa97069 Anders Carlsson patch for member pointers. Thanks Anders. by Greg Clayton · 14 years ago
  65. 011cb18 Fixed the build after recent header changes. by Greg Clayton · 14 years ago
  66. 2519d99 Avoid calls to memcpy. by Greg Clayton · 14 years ago
  67. 6d8fe90 Include mach/mach_types.h in two files to adjust for their by Jason Molenda · 14 years ago
  68. 53d9686 Applied PluginManager.cpp patch from Jean-Daniel Dupas. by Jason Molenda · 14 years ago
  69. 7dbd6da Revert my previous patch. Apparently the code-size impact of std::sort isn't acceptable. by Owen Anderson · 14 years ago
  70. c0b52f4 Replace qsort_r with std::sort. This gets rid of a lot of portability by Owen Anderson · 14 years ago
  71. 151a331 Fix includes. by Eli Friedman · 14 years ago
  72. b586901 Use st_mtime instead of st_mtimespec for portability. by Eli Friedman · 14 years ago
  73. 5b5985d Fix TimeValue::Offset* to take uint64_t by Eli Friedman · 14 years ago
  74. 18cba0c Use Host::GetCurrentThreadID() instead of mach_thread_self(). by Eli Friedman · 14 years ago
  75. 224c4cc Add missing include; fix missed constant to use llvm::MachO. by Eli Friedman · 14 years ago
  76. cf01505 Made lldb_private::ArchSpec more generic so that it can take a mach-o cpu by Greg Clayton · 14 years ago
  77. beb7742 Fixed an issue where a return value wasn't being returned from Symtab::CompareSymbolValueByIndexLinux. by Greg Clayton · 14 years ago
  78. 5eeb2d3 Remove dependency on Mac-specific libkern/OSByteOrder.h. by Eli Friedman · 14 years ago
  79. 6206317 Make Error.h and Error.cpp compile on Linux. by Eli Friedman · 14 years ago
  80. 020f353 Make qsort_r usage "portable". Why does a function which seems so simple by Eli Friedman · 14 years ago
  81. 67ee10b Expand AR_EFMT1 because the define is not present on Linux (and possibly by Eli Friedman · 14 years ago
  82. ce6fe88 Add missing include. by Eli Friedman · 14 years ago
  83. e02154d Remove unused uuid_t constructor for lldb_private::UUID. by Eli Friedman · 14 years ago
  84. 1f3af54 Correctly handle the case where dyld has slid. by Jason Molenda · 14 years ago
  85. b34d2a2 Fix include path. by Eli Friedman · 14 years ago
  86. a8a5e56 Committing patch from Joseph Ranieri to handle 'exit()' the same by Jason Molenda · 14 years ago
  87. e8448c6 SymbolVendor.mm doesn't seem to have any Objective-C in it; by Jason Molenda · 14 years ago
  88. dea5ea7 Move source/Utility/PseudoTerminal.h into include/lldb/Utility. by Jason Molenda · 14 years ago
  89. 1936546 For header includes we are currently trying to adopt some aspects of the by Greg Clayton · 14 years ago
  90. 3c90d99 Don't include Python.h in the shared header. by Eli Friedman · 14 years ago
  91. 057ef85 Add necessary includes. Remove unnecessary assignments to sin_len. by Eli Friedman · 14 years ago
  92. 27cd889 Remove unused class. by Eli Friedman · 14 years ago
  93. 9cb59a1 A few more warning/error fixes. by Eli Friedman · 14 years ago
  94. ced18cd A few more minor fixes. by Eli Friedman · 14 years ago
  95. f553b51 Add a couple missing includes. by Eli Friedman · 14 years ago
  96. b1ed516 Minor warning/error fixes. by Eli Friedman · 14 years ago
  97. a408326 Add missing includes. by Eli Friedman · 14 years ago
  98. 1501a96 Per surrounding style, use stdarg.h instead of cstdio, etc. by Eli Friedman · 14 years ago
  99. b4a4728 More minor build fixes. by Eli Friedman · 14 years ago
  100. 10ff00e Add missing include. by Eli Friedman · 14 years ago