1. 5a45f24 Add Security framework to the list of frameworks needed for linking. by Bill Wendling · 12 years ago
  2. 74f81ff Tolerate decimal points in the LLDB version number. by Sean Callanan · 12 years ago
  3. 8d61156 Fixed a problem where we did not read properties by Sean Callanan · 12 years ago
  4. 8705876 Order the initializations so that they reflect how they're declared in the class. by Bill Wendling · 12 years ago
  5. 3feafab <rdar://problem/11184458> by Greg Clayton · 12 years ago
  6. 69c540d Change SBAddress back to using a std::auto_ptr to a lldb_private::Address as the lldb_private::Address has a weak pointer to the section which has a weak pointer back to the module, so it is safe to have just a lldb_private::Address object now. by Greg Clayton · 12 years ago
  7. 6eea722 Use LLDB as the default debugger for launcherXPCService. by Greg Clayton · 12 years ago
  8. cfd89c4 Fixed the C++11 #defines that wrap std::weak_ptr to actually use std::weak_ptr. by Greg Clayton · 12 years ago
  9. 63aa634 Attempt at fixing a crasher where summary strings where looping endlessly. by Enrico Granata · 12 years ago
  10. 7aa754c Fixing a potential crasher where Python would assume we have no thread state while clearing out an SBDebugger which was acquiring input from the interactive interpreter by Enrico Granata · 12 years ago
  11. 8ad21a8 Adding a new --python-function (-F) option to breakpoint command add. The option allows the user to specify a Python function name instead of a Python oneliner or interactive script input as a breakpoint command by Enrico Granata · 12 years ago
  12. 3d39f83 Added a platform agnostic symbolication python module that can be used by any targets. Then modified the darwin "crashlog.py" to use this agnostic info and the new functionality and classes. by Greg Clayton · 12 years ago
  13. d787da4 Initialize ivars in the correct order. by Bill Wendling · 12 years ago
  14. b20eb3c Possibly too soon for this commit. by Bill Wendling · 12 years ago
  15. 63a424f Revert accidental checkin. by Bill Wendling · 12 years ago
  16. ab6e67a Possibly too soon for this change. by Bill Wendling · 12 years ago
  17. d6de950 Use the path to the header file. Use an integer instead of NULL. And get rid of a superfluous 'default' label. by Bill Wendling · 12 years ago
  18. 36b6b4c The option is 'NoInlineDefine.' by Bill Wendling · 12 years ago
  19. 8c1b382 Use integers instead of NULL. by Bill Wendling · 12 years ago
  20. 2e91696 Spell 'DW_TAG_APPLE_property' with the correct capitalization. by Bill Wendling · 12 years ago
  21. c7a4537 Use the correct class/struct keyword so that they match the declarations. by Bill Wendling · 12 years ago
  22. c9fda2d Initialize ivars in the order they are defined in the class. by Bill Wendling · 12 years ago
  23. a9fe7e7 Return 0 for the size_t return type. by Bill Wendling · 12 years ago
  24. ff7df6d Use 0 instead of NULL for the integral value. by Bill Wendling · 12 years ago
  25. e4b3d63 Fixed ClangASTContext to correctly recognize wchar_t as distinct from int. by Sean Callanan · 12 years ago
  26. 0cef6ba Add a Test case to make sure that __apple_types section does get produced by dsymutil. by Johnny Chen · 12 years ago
  27. 4eb1453 Add some more debug prints and retrieve the debug subsections from the DWARF section. by Johnny Chen · 12 years ago
  28. 35eac9d One last syntax error fix by Enrico Granata · 12 years ago
  29. 6805e3f Fixing syntax typos in Python formatters by Enrico Granata · 12 years ago
  30. 0be1edd <rdar://problem/11160171> by Greg Clayton · 12 years ago
  31. eb80b40 Remove unused file as this file is deprecated (use ./crashlog.py instead). by Greg Clayton · 12 years ago
  32. 9b86085 Removing some instances of str(SBValue) by Enrico Granata · 12 years ago
  33. 3be42fb Export the ability to see if a symbol is externally visible and also if the symbol was synthetically added to the symbol table (the symbol was not part of the symbol table itself but came from another section). by Greg Clayton · 12 years ago
  34. a96b789 Add testcase that verifies that __apple_types is a valid section in a .o file generated by clang. by Johnny Chen · 12 years ago
  35. c47ab2c Create a directory to host debug info specific test(s) for darwins. by Johnny Chen · 12 years ago
  36. 8f18240 Logging for data formatters. by Enrico Granata · 12 years ago
  37. daaa9d1 Building llvm for multiple arches could cause problems by Jason Molenda · 12 years ago
  38. 51f1d21 Updating Xcode project version numbers for lldb-137 and debugserver-186 by Sean Callanan · 12 years ago
  39. e43333a Updated LLVM to take a comprehensive fix to the by Sean Callanan · 12 years ago
  40. a57f3c6 Making sure the count on synthetic providers is always setup - This should prevent errors about count being undefined from showing up by Enrico Granata · 12 years ago
  41. 0cbb93b Patch from Viktor Kutuzov: delete the temporary process we created when "process connect" fails. by Greg Clayton · 12 years ago
  42. 86b391b Added the ability to log when things get completed in DWARF. This can be enabled using: by Greg Clayton · 12 years ago
  43. c17d2ed Remove unused code. by Greg Clayton · 12 years ago
  44. 101c1c1 Don't log to a temp file and delete it, just use the API that gives us a malloc'ed string array. by Greg Clayton · 12 years ago
  45. f9de192 <rdar://problem/11148044> by Greg Clayton · 12 years ago
  46. 972c438 Patch from Viktor Kutuzov: fixes a segmentation fault crash in lldb in the ProcessPOSIX class when the object gets destroyed. I can reproduce this problem on the FreeBSD platform and it should be reproducable for the other platforms also. by Greg Clayton · 12 years ago
  47. 3418bfe Disabling blocks support because of rdar://problem/11024417 - This is hopefully just a temporary countermeasure by Enrico Granata · 12 years ago
  48. 3ce15b0 Added some logging to STL synthetic children providers - this should help us catch problems; more logging might/will be added as needed by Enrico Granata · 12 years ago
  49. 940dd18 Be more careful when overriding the type for a by Sean Callanan · 12 years ago
  50. 3356d4f <rdar://problem/11082392> by Greg Clayton · 12 years ago
  51. 805f79b Fixing a whole class of crashers and potential crashers related to data formatters eating up all the stack when an unknown class has to be summarized ; this should make the whole Objective-C summaries more stable by Enrico Granata · 12 years ago
  52. c84623f Added a "add-dsym" alias to "target symbols add" to keep gdb converts happy. by Greg Clayton · 12 years ago
  53. d4f16c8 <rdar://problem/10103468> by Greg Clayton · 12 years ago
  54. 23fdf4b <rdar://problem/11149427> by Greg Clayton · 12 years ago
  55. b6641ba Add log entries for HijackBroadcaster() as well as RestoreBroadcaster(). by Johnny Chen · 12 years ago
  56. 7e20226 Part 1 of a series of fixes meant to improve reliability and increase ease of bug fixing for data formatter issues. by Enrico Granata · 12 years ago
  57. 1ec8f8f Added support for the DW_AT_APPLE_Property tag by Sean Callanan · 12 years ago
  58. 48f9c71 Missed a file in the last FreeBSD patch. by Greg Clayton · 12 years ago
  59. 27cf232 FreeBSD patch that enabled the lldb-platform to be built from Viktor Kutuzov. by Greg Clayton · 12 years ago
  60. 1ea7838 Updating Xcode project version numbers for lldb-136 and debugserver-185 by Sean Callanan · 12 years ago
  61. 05e4d97 <rdar://problem/11052174> <rdar://problem/11051056> by Greg Clayton · 12 years ago
  62. 2450cb1 <rdar://problem/11035349> by Greg Clayton · 12 years ago
  63. 9cd6c01 When running this from the command line, don't pass the python script file itself to be disassembled. by Greg Clayton · 12 years ago
  64. 2a508dd Removed unused variable. by Greg Clayton · 12 years ago
  65. 80731ec Fixing an issue where Unicode characters in an NSString were printed as escape sequences by the summary provider shipping with LLDB - Added relevant test case code. Bonus points for identifying the source of the quotes :-) by Enrico Granata · 12 years ago
  66. bd58715 Fixing an issue where saying 'po foo' made both the summary and the description for foo come out. If one is po'ing something they most probably only care about the description - We will not omit the summary by Enrico Granata · 12 years ago
  67. 3a253e8 Converted commented out printf statements for dynamic type logging to use the log for "log enabe lldb types". by Greg Clayton · 12 years ago
  68. 9af596d Fixed some space formatting. by Greg Clayton · 12 years ago
  69. 2fccde4 Updated LLVM and LLDB to fix compilation errors by Sean Callanan · 12 years ago
  70. 9d4b6e5 Adding missing file by Enrico Granata · 12 years ago
  71. 6781217 adding a summary for Objective-C type 'Class' by Enrico Granata · 12 years ago
  72. f836941 Commented out printf's for the time being. by Johnny Chen · 12 years ago
  73. 9ab696e lldb_private::Section objects have a boolean flag that can be set that by Greg Clayton · 12 years ago
  74. 23d90ae Fixed a few things in the ELF object file: by Greg Clayton · 12 years ago
  75. dba1de8 Synthetic values are now automatically enabled and active by default. SBValue is set up to always wrap a synthetic value when one is available. by Enrico Granata · 12 years ago
  76. dc0a38c <rdar://problem/11113279> by Greg Clayton · 12 years ago
  77. 155599b If creation of watchpoint failed on the device, make sure the list maintained by the target reflects that by cleaning it up. by Johnny Chen · 12 years ago
  78. 77867c6 <rdar://problem/11022964> by Sean Callanan · 12 years ago
  79. 9ff3428 Use GetClangDeclContextForDIE, it'll find the cached one by Eric Christopher · 12 years ago
  80. 60c1006 Fix method name for output. by Eric Christopher · 12 years ago
  81. b6cad8c Bump version to debugserver-184, lldb-135. by Jason Molenda · 12 years ago
  82. a3f3819 Small tweak to list of arches to build debugserver for on arm. by Jason Molenda · 12 years ago
  83. 074d0ff Explicit casts to remove two compile-time warnings. by Johnny Chen · 12 years ago
  84. d44c9d3 Adding a new API call IsTypeComplete() to SBType. This call is meant to check if the type has been previously completed or not (which is mostly interesting from a performance point of view) by Enrico Granata · 12 years ago
  85. b4a2c82 <rdar://problem/11101372> by Sean Callanan · 12 years ago
  86. 0d4453c Fix a typo. by Johnny Chen · 12 years ago
  87. 9a725f0 Make arm debugserver handle setting a watchpoint on, for example, (uint64_t)variable. by Johnny Chen · 12 years ago
  88. b4a8ac1 Bumped Xcode project versions for lldb-134 and debugserver-183. by Greg Clayton · 12 years ago
  89. ee5daf3 Fixed up the command so that it doesn't dump the first arguments when run from the command line which was causing this script to dump the script itself. by Greg Clayton · 12 years ago
  90. fed5267 Added python script that implements a "parse_log_file" command in LLDB which can by Greg Clayton · 12 years ago
  91. 74e422d <rdar://problem/11095005> by Greg Clayton · 12 years ago
  92. f5dc0fc SBTypeCategory::GetName returns const char* so return by Jason Molenda · 12 years ago
  93. 685099b Resolved two problems in the disassembler: by Sean Callanan · 12 years ago
  94. cf88842 Previous check-ins allow to hit the arm hardware watchpoint, with a workaound to handle the issue by Johnny Chen · 12 years ago
  95. f2cb7f2 Removing cascading through inheritance chains for data formatters by Enrico Granata · 12 years ago
  96. c811f9f Check in main.c modified for testing hardware watchpoints on arm architectures. by Johnny Chen · 12 years ago
  97. 2aaf59d Added the ability to log a value object just as a value would be display by Greg Clayton · 12 years ago
  98. b208860 Integrated LLVM revision 153218, which fixes a by Sean Callanan · 12 years ago
  99. 7d0356f Fixed a bug with the r153228 check-in earlier today in that the cached watchpoint by Johnny Chen · 12 years ago
  100. 501e77a Fixed a bug in the disassembler where we did by Sean Callanan · 12 years ago