1. 08f7fff Replace printf with result.Printf, so that the plugin shows its output with any configuration of the LLDB I/O streams (esp. useful in graphic environments such as Xcode) by Enrico Granata · 12 years ago
  2. a3da572 Patch from Matt Kopec <matt.kopec@intel.com> to handle stepping into multiply-nested inlined code. by Jim Ingham · 12 years ago
  3. 4af3835 Patch from Matt Kopec: by Greg Clayton · 12 years ago
  4. 42dc5a5 Fixed File::SeekFromEnd() to use SEEK_END insted of SEEK_CUR. by Greg Clayton · 12 years ago
  5. 4756b67 Use the "data()" accessor on the std::vector<clang_type_t> in case it is empty. by Greg Clayton · 12 years ago
  6. 9927057 Added the ability to get function return and argument types to SBType(): by Greg Clayton · 12 years ago
  7. aaf0088 Add missing return to SBAddress::GetOffset(). This was caught by Carlo Kok. by Greg Clayton · 12 years ago
  8. 82913de Ensuring that the swig typemaps for SBData set the size to 0 along with the pointer to NULL by Enrico Granata · 12 years ago
  9. db05491 <rdar://problem/11449953> Change Debugger::SetOutputFileHandle() so that it does not automatically initialize the script interpreter in order to transfer its output file handle to it by Enrico Granata · 12 years ago
  10. 8433278 <rdar://problem/12500785> by Greg Clayton · 12 years ago
  11. ca57bc5 Fix an incorrect comment... by Jim Ingham · 12 years ago
  12. a955275 Improve the broadcast event dumping. by Greg Clayton · 12 years ago
  13. a32c5a5 This is the first phase of supporting the DW_AT_object_pointer tag. I expanded the decl metadata by Jim Ingham · 12 years ago
  14. 4fa015b If we got what looks like a single step exception but we weren't single stepping then just report by Jim Ingham · 12 years ago
  15. 89fda00 Moving ValueObjectCast over to its own .h/.cpp files instead of sharing ValueObjectDynamic.h/.cpp by Enrico Granata · 12 years ago
  16. c62f5ab Fixes to the Objective-C V2 runtime: by Sean Callanan · 12 years ago
  17. b856a45 Show both lldb-168 and earlier "bt -c 5" as well as lldb-169 and later "bt 5" usage. by Jason Molenda · 12 years ago
  18. 6021b24 Document "bt <n>" for "thread backtrace -c <n>", note that it is available by Jason Molenda · 12 years ago
  19. 51d7a39 This patch updates comments in the Predicate class to describe a subtle behavior that callers may need to be aware. It also adds documentation for one function which didn’t have any. by Andrew Kaylor · 12 years ago
  20. fee26ee Add API to get the process plugin name & short name. by Jim Ingham · 12 years ago
  21. b34ca85 Updated the "breakpoint command add" documentation and fixed the web site docs for the signature of the python breakpoint callback functions. by Greg Clayton · 12 years ago
  22. 37816a3 Add a new capability to RegisterContextLLDB: To recognize when the by Jason Molenda · 12 years ago
  23. 0a07c0e Document target.source-map as the replacement for gdb's directory command. by Jason Molenda · 12 years ago
  24. 9d9b063 Add a teardown function to TestAbbreviations so it doesn't error out when running for two archs. by Filipe Cabecinhas · 12 years ago
  25. fb46772 <rdar://problem/12570550> by Greg Clayton · 12 years ago
  26. 23f2194 Found a couple more places where we need to run all threads when stepping. by Jim Ingham · 12 years ago
  27. 02ed285 Add text to the help to explain how to set user defined variables. by Jim Ingham · 12 years ago
  28. 91a9f21 Allow operating system plug-ins to specify the address for registers so we don't have to create data up front. by Greg Clayton · 12 years ago
  29. d21d8aa Add section on creating convenience variables. by Jim Ingham · 12 years ago
  30. 90c6cd5 Changed the V1 and V2 runtimes to be able to detect when the ISA hash table has changed, and auto update as needed. by Greg Clayton · 12 years ago
  31. cbe707c Updated LLDB's use of the DiagnosticsEngine to by Sean Callanan · 12 years ago
  32. d06bb50 Identify a kdp session that is connecting to an EFI monitor, by Jason Molenda · 12 years ago
  33. 0acf4c6 Added --framework and --executable arguments by Sean Callanan · 12 years ago
  34. 6319042 Fixing the test case for rdar://12481949 to do the right thing with our new rules for sign-extension in GetValueAsUnsigned() by Enrico Granata · 12 years ago
  35. fb6a8bb And one more logging message goes away by Enrico Granata · 12 years ago
  36. 03bc3fd Reverting unwanted changes to the test suite by Enrico Granata · 12 years ago
  37. 671dd55 Reverting the changes to Scalar since this class needs to follow C rules for type promotion by Enrico Granata · 12 years ago
  38. 4a0a125 Reimplementing SBValue/ValueObject.GetValueAsUnsigned() in terms of appropriate calls in Scalar - Making sure Scalar does the right thing when casting signed values to unsigned ones. by Enrico Granata · 12 years ago
  39. 82ad7ca Changing the NSDate data formatter to use GetData().uint64[] instead of relying on SBValue.GetValueAsUnsigned() to reinterpret a double as a uint64_t by Enrico Granata · 12 years ago
  40. 467e1ea Added process and thread logging the python OperatingSystem plug-in. by Greg Clayton · 12 years ago
  41. b2c1a41 Patch from Ashok Thirumurthi that enabled FPU registers for POSIX x86_64. by Greg Clayton · 12 years ago
  42. 0fd6c8d <rdar://problem/12481949> Fixing SBValue.GetValueAsSigned() to do the right thing when dealing with a 32-bit negative value by Enrico Granata · 12 years ago
  43. c5fbd9a Cleanup some variable names to indicate auto pointers and also manager the llvm::Module memory more correctly. by Greg Clayton · 12 years ago
  44. 7b771d2 eArgTypePath was removed in r166533; change -c to expect eArgTypeFilename. by Jason Molenda · 12 years ago
  45. 251729e <rdar://problem/12523238> Commit 3 of 3 by Enrico Granata · 12 years ago
  46. 9a91ef6 This is a fix for the command option parser. by Sean Callanan · 12 years ago
  47. 2d32924 Better error message for invalid argument to --category - silenced the printout of the raw args when not in verbose mode by Enrico Granata · 12 years ago
  48. ef22b90 Objective C cleanup. Removed an cache that was no longer needed and changes the code that gets the dynamic type and class name to use our new Objective C cache. by Greg Clayton · 12 years ago
  49. 2bc5737 Added a testcase for runtime types in Objective-C. by Sean Callanan · 12 years ago
  50. c01344c <rdar://problem/12523238> Commit 2 of 3 by Enrico Granata · 12 years ago
  51. ed2b62a Turns out there are 8 bits in a byte. by Jim Ingham · 12 years ago
  52. 800332c <rdar://problem/12523238> Commit 1 of 3 by Enrico Granata · 12 years ago
  53. 9e37662 Watchpoints remember the type of the expression or variable they were set with, and use by Jim Ingham · 12 years ago
  54. d43f40d Change how the UnwindAssemblyInstEmulation class tracks the setup of by Jason Molenda · 12 years ago
  55. de1edce Clean up help/usage messages for kdp-remote / gdb-remote a little bit. by Jason Molenda · 12 years ago
  56. b8080cb Fixing a compiler warning about has_children being used before being initialized by Enrico Granata · 12 years ago
  57. 54037b1 <rdar://problem/12493007> by Greg Clayton · 12 years ago
  58. 61ff3a3 Improved support for language types as command options: by Sean Callanan · 12 years ago
  59. 01458ca <rdar://problem/12500212> Test case for the new plugin feature by Enrico Granata · 12 years ago
  60. b8183d4 Added support for zero-length arrays at the end by Sean Callanan · 12 years ago
  61. ad76439 Proper copyright notice by Enrico Granata · 12 years ago
  62. 6837dfd <rdar://problem/12524810> by Greg Clayton · 12 years ago
  63. 14cf90e <rdar://problem/12479701> Use the plain pydoc pager to work around Python help() pagination conflicts with our I/O management by Enrico Granata · 12 years ago
  64. 3d656c7 <rdar://problem/12437442> by Enrico Granata · 12 years ago
  65. b9bd4ee <rdar://problem/12473003> by Greg Clayton · 12 years ago
  66. 25a66bc Reorder the sections of "USE AND EXTENSIONS" so the most useful to by Jason Molenda · 12 years ago
  67. 33f7dd5 Rename the lldb/gdb command page. by Jason Molenda · 12 years ago
  68. 509c728 Fixed a bug that caused floating-point values to be printed truncated. by Sean Callanan · 12 years ago
  69. 0f32a66 Also remove PlatformiOSSimulator::GetProcessInfo decl from by Jason Molenda · 12 years ago
  70. 4e84674 Improved logging for the SBTarget's launching and attaching APIs. by Sean Callanan · 12 years ago
  71. 88d3971 Fixed the iOS simulator platform: by Sean Callanan · 12 years ago
  72. 307c7fd <rdar://problem/12491387> by Greg Clayton · 12 years ago
  73. 2f27af8 Change the name of the variable used to detect if we are loading kexts to "load-kexts" instead of "disable-kext-loading" since the value is a boolean. This was requested by the person who requested the feature. It now defaults to true: by Greg Clayton · 12 years ago
  74. ee7a663 Remove -w write flag to watch set var from tutorial.html. by Jason Molenda · 12 years ago
  75. 2acbc2a Rename "macosx-kernel" to "darwin-kernel" to match the filenames before anyone starts using the settings for this plug-in. by Greg Clayton · 12 years ago
  76. 87e9d32 Added the infrastructure necessary for plug-ins to be able to add their own settings instead of having settings added to existing ones. In particular "target.disable-kext-loading" was added to "target" where it should actually be specific to the the dynamic loader plugin. Now the plug-in manager has the ability to create settings at the root level starting with "plugin". Each plug-in type can add new sub dictionaries, and then each plug-in can register a setting dictionary under its own short name. For example the DynamicLoaderDarwinKernel plug-in now registers a setting dictionary at: by Greg Clayton · 12 years ago
  77. 127291c Add a new target setting to disable automatic loading of kext images by Jason Molenda · 12 years ago
  78. 3b92456 typeo fix in comment by Jason Molenda · 12 years ago
  79. 6237746 Change CommunicationKDP::SendRequestWriteMemory to append data as binary by Jason Molenda · 12 years ago
  80. c7e5708 Fixed a bug where empty C structs were given size by Sean Callanan · 12 years ago
  81. 2657b6b Change the "rb" alias to "rbreak" since some people are used to typing more than "rb" and so weren't by Jim Ingham · 12 years ago
  82. 2e7f313 <rdar://problem/12491420> by Greg Clayton · 12 years ago
  83. e128068 Mention "break set -r" and "break set -p". by Jim Ingham · 12 years ago
  84. ed0a0fb <rdar://problem/12462048> <rdar://problem/12068650> by Greg Clayton · 12 years ago
  85. 0c8446c <rdar://problem/12462048> by Greg Clayton · 12 years ago
  86. 7b69503 Improvements to the data formatters logging - plus, new log messages when our dynamic type changes by Enrico Granata · 12 years ago
  87. 6a97d42 Fixed ClangASTContext to own its TargetOptions by Sean Callanan · 12 years ago
  88. 683a97c Added support for "bool", "true", and "false" to by Sean Callanan · 12 years ago
  89. 3499e18 Added register write examples and also how to modify the pc. For this we show and example of GDB using the "jump" command, and LLDB using "register write" with an expression. by Greg Clayton · 12 years ago
  90. 0b2be9d <rdar://problem/12503640> Fixing an issue where the dynamic type of an Objective-C pointer changed but we still reported the one-true-definition for the previous type. This was causing issues where a variable could be reported as being of an entirely different type after an assignment by Enrico Granata · 12 years ago
  91. 6ca5be3 Add code to UnwindAssemblyInstEmulation::GetNonCallSiteUnwindPlanFromAssembly by Jason Molenda · 12 years ago
  92. 75a443b API cleanup. by Greg Clayton · 12 years ago
  93. 47beabb Add the ability to set timeout & "run all threads" options both from the "expr" command and from by Jim Ingham · 12 years ago
  94. b8fda50 Removing the two extra GetXSize(bool) calls since we do not desire to support them long-term by Enrico Granata · 12 years ago
  95. c2bc794 <rdar://problem/12446320> Fixing an issue with our Driver where setting an immediate output would not cause suppression of the final printout. This allows effective output redirection for Python commands by Enrico Granata · 12 years ago
  96. 1b97a65 llvm needs the OS to be set to either iOS or Mac OS X by Jason Molenda · 12 years ago
  97. db178a1 Patch from Matt Kopec: by Greg Clayton · 12 years ago
  98. 783ac95 If a full path to a compiler is provided on the by Sean Callanan · 12 years ago
  99. 5d30ea7 Add a new ABI plugin method which specifies whether the architecture by Jason Molenda · 12 years ago
  100. 6bc24c1 Patch from Matt Kopec <matt.kopec@intel.com> to fix the problem that if two breakpoints were set on consecutive addresses, the continue from the by Jim Ingham · 12 years ago