1. 527154d Added a new class to Process.h: ProcessAttachInfo. This class contains enough by Greg Clayton · 13 years ago
  2. e6ea5fe Pulled in a new version of LLVM/Clang to solve a variety by Sean Callanan · 13 years ago
  3. 96154be <rdar://problem/10126482> by Greg Clayton · 13 years ago
  4. bd06ff4 <rdar://problem/10103980> by Greg Clayton · 13 years ago
  5. a1b9a90 <rdar://problem/10338439> by Greg Clayton · 13 years ago
  6. 2d9adb7 Added the ability to run a process in a shell on MacOSX currently when using by Greg Clayton · 13 years ago
  7. 2546fd2 Add code that reads the APPLE_property debug info, and makes up properties from them. by Jim Ingham · 13 years ago
  8. 70d7092 Fixed a bug that inhibited symbol lookup. The by Sean Callanan · 13 years ago
  9. 22a3afd Allow the Apple hash tables to be emtpy. by Greg Clayton · 13 years ago
  10. 6e56157 <rdar://problem/9334299> by Greg Clayton · 13 years ago
  11. 6db3594 Using the wrong type for the break id's (user_id_t is an unsigned int, but internal breakpoints can be negative, and anyway it is a good idea to use break_id_t for breakpoints, no?) by Jim Ingham · 13 years ago
  12. 9b71484 Added a function to ClangASTSource to service by Sean Callanan · 13 years ago
  13. 0296fe7 Do a better job of detecting when a breakpoint command has set the target running again (except you have to ignore by Jim Ingham · 13 years ago
  14. abb3302 Moved many of the "settings" that used to be in "target.process.*" to just by Greg Clayton · 13 years ago
  15. d7a6281 Moved the fixed ScriptSummaryFormat forward declaration into the #ifndef LLDB_DISABLE_PYTHON so it doesn't show up in builds where it is supposed to be disabled. by Greg Clayton · 13 years ago
  16. 5b658cc Added a language parameter to the expression parser, by Sean Callanan · 13 years ago
  17. 9d60ca8 Remove duplicate and contradictory forward declaration. by Eric Christopher · 13 years ago
  18. 6010ace this patch addresses several issues with "command script" subcommands: by Enrico Granata · 13 years ago
  19. b607f42 Missed part of a previous patch. by Greg Clayton · 13 years ago
  20. 07c51d0 Include limits.h for PATH_MAX. by Benjamin Kramer · 13 years ago
  21. 3e4238d Fixed the Xcode project building of LLVM to be a bit more user friendly: by Greg Clayton · 13 years ago
  22. 36bc5ea Modified all Process::Launch() calls to use a ProcessLaunchInfo structure by Greg Clayton · 13 years ago
  23. 0fcc7d2 Try to unbreak Makefile builds. by Benjamin Kramer · 13 years ago
  24. 2581dbf Sometimes the debug information includes artifically- by Sean Callanan · 13 years ago
  25. 9911d2f Added functionality to call Objective-C class methods by Sean Callanan · 13 years ago
  26. 716e3f0 Added the capability (turned off for now) to mark a by Sean Callanan · 13 years ago
  27. ba560cc Enhanced the ObjC DynamicCheckerFunction to test for "object responds to selector" as well as by Jim Ingham · 13 years ago
  28. 97c8957 warnings: Fix a bunch of -Wreorder problems. by Daniel Dunbar · 13 years ago
  29. f09a857 warnings: Fix several uses of trailing comma on enumeration extensions. by Daniel Dunbar · 13 years ago
  30. 705a098 warnings: Fix up several const qualified return types. by Daniel Dunbar · 13 years ago
  31. 3ac9f04 warnings: Fixup a number of mismatched tags problems. by Daniel Dunbar · 13 years ago
  32. 715f6b0 The IRDynamicChecks subsystem was not properly by Sean Callanan · 13 years ago
  33. 41a857a finish removal of alpha arch -- previous half-removal caused lldb to assert on startup by Jason Molenda · 13 years ago
  34. 9394b5a Cloned FindExternalVisibleDecls from by Sean Callanan · 13 years ago
  35. bb715f9 Moved FindExternalLexicalDecls and a few smaller by Sean Callanan · 13 years ago
  36. 73b520f I moved the responsibility for interacting with the by Sean Callanan · 13 years ago
  37. d8a218d Fixed the "expression" command when it comes to using it with the new GDB format by Greg Clayton · 13 years ago
  38. f76afff As part of a general refactoring of ClangASTSource to by Sean Callanan · 13 years ago
  39. 3ec8bb7 Fixed the GDB format to allow the size and format characters to come in any by Greg Clayton · 13 years ago
  40. 7089d8a Added the ability for the target to specify Modules that will not be searched by Jim Ingham · 13 years ago
  41. 7268b4c Added the ability to have GDB formats appended to any command so you can do by Greg Clayton · 13 years ago
  42. f35a96c Added a function to the Host that gets a dummy target by Sean Callanan · 13 years ago
  43. 6f3bde7 Changed the way the expression parser handles variables by Sean Callanan · 13 years ago
  44. 24a6bd9 Added support for the new ".apple_objc" accelerator tables. These tables are by Greg Clayton · 13 years ago
  45. 4b3cef0 Extended the IR interpreter to handle the variables by Sean Callanan · 13 years ago
  46. cfbfb1a Use full path to ClangForward.h by Peter Collingbourne · 13 years ago
  47. a31b4dd Added a new #define, LLVM_NDEBUG_OFF, that should by Sean Callanan · 13 years ago
  48. 65193b3 Fixed VerifyDecl to use shared forward declarations. by Sean Callanan · 13 years ago
  49. 902b5be A simple fix for the GDB format strings so the byte size parameter gets by Greg Clayton · 13 years ago
  50. 5e8eb5c Fixed an issue where a class that resides inside another class wasn't getting by Greg Clayton · 13 years ago
  51. c6d161e Added VerifyDecl, a function that, when LLDB is by Sean Callanan · 13 years ago
  52. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  53. c7ca466 Improved handling of static data in the expression by Sean Callanan · 13 years ago
  54. a42880a Updated all commands that use a "--format" / "-f" options to use the new by Greg Clayton · 13 years ago
  55. 9d855c6 Simplified the CommandInterpreter::StripFirstWord logic by making it a static by Greg Clayton · 13 years ago
  56. fa1f617 Decoupling of lock-related code from the core of ScriptInterpreterPython. All that concerns locking the Python interpreter is now delegated to the internal ScriptInterpreterPython::Locker class. Several changes in ScriptInterpreterPython to accommodate this new pattern. by Enrico Granata · 13 years ago
  57. c28bbdb Move Python.h includes out of the headers into the .cpp file where it's actually used. by Benjamin Kramer · 13 years ago
  58. 3ce5128 Remove unused include of deprecated header. by Benjamin Kramer · 13 years ago
  59. f6a5bd7 Added template support when parsing DWARF into types. We can now use STL by Greg Clayton · 13 years ago
  60. a7cb1fa Implemented an extension to the namespace map that by Sean Callanan · 13 years ago
  61. 557ccd6 Made the IR interpreter more robust in the presence by Sean Callanan · 13 years ago
  62. 591cf15 Lock the Unwinder before accessing it. by Jim Ingham · 13 years ago
  63. bbe3916 Fixed some issues where we might not have one of the new apple accelerator by Greg Clayton · 13 years ago
  64. a23ca42 Modified the ASTDumper to return a "const char *" instead of a copy of the by Greg Clayton · 13 years ago
  65. 444e35b Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 13 years ago
  66. 4c8353b Changed lldb_private::Type over to use the intrusive ref counted pointers by Greg Clayton · 13 years ago
  67. e3737fd Improved logging, replacing the old ASTDumper (which by Sean Callanan · 13 years ago
  68. 1a7b956 This patch alloows lldb to build under GCC. by Johnny Chen · 13 years ago
  69. 59df36f this patch introduces a new command script import command which takes as input a filename for a Python script and imports the module contained in that file. the containing directory is added to the Python path such that dependencies are honored. also, the module may contain an __lldb_init_module(debugger,dict) function, which gets called after importing, and which can somehow initialize the module's interaction with lldb by Enrico Granata · 13 years ago
  70. 712a628 Add a commnad to set a condition for a watchpoint. Example: by Johnny Chen · 13 years ago
  71. 43d3906 Make "next" and "step-out" work when in stepping over or out of inlined functions. by Jim Ingham · 13 years ago
  72. 76e55f7 Make the step range plans capable of supporting multiple ranges. Also make their constructors public, there isn't any good reason why you shouldn't be able to make these plans. by Jim Ingham · 13 years ago
  73. 5f24c50 Add function decls to their parent decl context. by Greg Clayton · 13 years ago
  74. 6364304 Make sure we create only unique one namespace per AST when parsing the DWARF. by Greg Clayton · 13 years ago
  75. 67bbb11 Improved expression logging. Now all calls to by Sean Callanan · 13 years ago
  76. 41a55ef Add SBWatchpoint::GetError() API, which is not currently populated as yet. by Johnny Chen · 13 years ago
  77. f5c0c72 Added the ability to run expressions in any command. Expressions can be by Greg Clayton · 13 years ago
  78. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  79. 9f54ab7 Fixed a case where we might end up trying to parse a type in the DWARF parser for a method whose class isn't currently in the process of completing itself. Currently, methods of a class, must be parsed when the class type that contains the method is asked to complete itself through the clang::ExternalASTSource virtual functions. Now we "do the right thing" by checking if the class is being defined, and if so we parse it, else we tell the class to complete itself so everything happens correctly. by Greg Clayton · 13 years ago
  80. b01f7a4 Cleaned up a few functions that never get used. by Sean Callanan · 13 years ago
  81. a759706 Moved the list of found namespaces into the search by Sean Callanan · 13 years ago
  82. 1fa6b3d Cleaned up the SBWatchpoint public API. by Greg Clayton · 13 years ago
  83. aa4a553 Removed namespace qualification from symbol queries. by Sean Callanan · 13 years ago
  84. 0fcec13 Completed the glue that passes a ClangNamespaceDecl * by Sean Callanan · 13 years ago
  85. 4a07832 Now that we know the values are going to stick around, by Sean Callanan · 13 years ago
  86. 16c4ec3 Refactoring in preparation for having multiple by Sean Callanan · 13 years ago
  87. 0eca1a7 Added support to ClagnExpressionDeclMap for finding data symbols in namespaces. by Sean Callanan · 13 years ago
  88. 94cd0ca Made FindGlobalVariable() optionally search a specific by Sean Callanan · 13 years ago
  89. 3e80cd9 Added ClangNamespaceDecl * parameters to several by Sean Callanan · 13 years ago
  90. 03f64ca Cleanups in preparation for making FindExternalVisibleDecls by Sean Callanan · 13 years ago
  91. 141f8d9 Fix preprocessor warnings for no newline at the end of the source files. by Greg Clayton · 13 years ago
  92. 16b53ab Implemented a namespace map that allows searching by Sean Callanan · 13 years ago
  93. 1fb8a2d Add a SBTarget::BreakpointCreateByName API that allows you to specify the name by Jim Ingham · 13 years ago
  94. 81a20a0 Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class. by Greg Clayton · 13 years ago
  95. be42123 Changed RangeMap over to use llvm::SmallVector and updated the RangeArray and the RangeDataArray to have an extra "unsigned N" template parameter. Updated the lldb_private::Block to use a RangeArray with a uint32_t for both the function base offset and block range size, and then a 1 for the small vector size since most lexical blocks in DWARF only have 1 range. Updates the DWARFDebugRanges RangeArray to use an unsigned of 2 since most blocks that have more than one range usually have 2. Also updated a DWARFDebugAranges to default their RangeArray to use a SmallVector with unsigned size of 1 since this will take care of the .o files when doing DWARF in .o files and since there really isn't any good size we can guess with. by Greg Clayton · 13 years ago
  96. c03a99a Added some debug code that can verify that all RangeMap.h maps are sorted when needed since RangeArray and RangeDataArray instantiations depend on it. I ran the test suite with ASSERT_RANGEMAP_ARE_SORTED defined and I got no assertions, so I disabled it prior to checkin. by Greg Clayton · 13 years ago
  97. 49e08e3 Started on the export table for the MappedHash. by Greg Clayton · 13 years ago
  98. 8a2a4f8 Fix the last testsuite regression from the apple-names stuff. by Jim Ingham · 13 years ago
  99. bc36a86 Added more functionality to Range template classes in RangeMap.h and converted remaining DWARF areas that were using ranges over to this class. Also converted lldb_private::Block to use it. by Greg Clayton · 13 years ago
  100. 060d53f Fixed a memory leak of ASTResultSynthesizers, by Sean Callanan · 13 years ago