1. 97c8957 warnings: Fix a bunch of -Wreorder problems. by Daniel Dunbar · 13 years ago
  2. f09a857 warnings: Fix several uses of trailing comma on enumeration extensions. by Daniel Dunbar · 13 years ago
  3. 705a098 warnings: Fix up several const qualified return types. by Daniel Dunbar · 13 years ago
  4. 3ac9f04 warnings: Fixup a number of mismatched tags problems. by Daniel Dunbar · 13 years ago
  5. 715f6b0 The IRDynamicChecks subsystem was not properly by Sean Callanan · 13 years ago
  6. 41a857a finish removal of alpha arch -- previous half-removal caused lldb to assert on startup by Jason Molenda · 13 years ago
  7. 9394b5a Cloned FindExternalVisibleDecls from by Sean Callanan · 13 years ago
  8. bb715f9 Moved FindExternalLexicalDecls and a few smaller by Sean Callanan · 13 years ago
  9. 73b520f I moved the responsibility for interacting with the by Sean Callanan · 13 years ago
  10. d8a218d Fixed the "expression" command when it comes to using it with the new GDB format by Greg Clayton · 13 years ago
  11. f76afff As part of a general refactoring of ClangASTSource to by Sean Callanan · 13 years ago
  12. 3ec8bb7 Fixed the GDB format to allow the size and format characters to come in any by Greg Clayton · 13 years ago
  13. 7089d8a Added the ability for the target to specify Modules that will not be searched by Jim Ingham · 13 years ago
  14. 7268b4c Added the ability to have GDB formats appended to any command so you can do by Greg Clayton · 13 years ago
  15. f35a96c Added a function to the Host that gets a dummy target by Sean Callanan · 13 years ago
  16. 6f3bde7 Changed the way the expression parser handles variables by Sean Callanan · 13 years ago
  17. 24a6bd9 Added support for the new ".apple_objc" accelerator tables. These tables are by Greg Clayton · 13 years ago
  18. 4b3cef0 Extended the IR interpreter to handle the variables by Sean Callanan · 13 years ago
  19. cfbfb1a Use full path to ClangForward.h by Peter Collingbourne · 13 years ago
  20. a31b4dd Added a new #define, LLVM_NDEBUG_OFF, that should by Sean Callanan · 13 years ago
  21. 65193b3 Fixed VerifyDecl to use shared forward declarations. by Sean Callanan · 13 years ago
  22. 902b5be A simple fix for the GDB format strings so the byte size parameter gets by Greg Clayton · 13 years ago
  23. 5e8eb5c Fixed an issue where a class that resides inside another class wasn't getting by Greg Clayton · 13 years ago
  24. c6d161e Added VerifyDecl, a function that, when LLDB is by Sean Callanan · 13 years ago
  25. 9c23673 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 13 years ago
  26. c7ca466 Improved handling of static data in the expression by Sean Callanan · 13 years ago
  27. a42880a Updated all commands that use a "--format" / "-f" options to use the new by Greg Clayton · 13 years ago
  28. 9d855c6 Simplified the CommandInterpreter::StripFirstWord logic by making it a static by Greg Clayton · 13 years ago
  29. 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
  30. c28bbdb Move Python.h includes out of the headers into the .cpp file where it's actually used. by Benjamin Kramer · 13 years ago
  31. 3ce5128 Remove unused include of deprecated header. by Benjamin Kramer · 13 years ago
  32. f6a5bd7 Added template support when parsing DWARF into types. We can now use STL by Greg Clayton · 13 years ago
  33. a7cb1fa Implemented an extension to the namespace map that by Sean Callanan · 13 years ago
  34. 557ccd6 Made the IR interpreter more robust in the presence by Sean Callanan · 13 years ago
  35. 591cf15 Lock the Unwinder before accessing it. by Jim Ingham · 13 years ago
  36. bbe3916 Fixed some issues where we might not have one of the new apple accelerator by Greg Clayton · 13 years ago
  37. a23ca42 Modified the ASTDumper to return a "const char *" instead of a copy of the by Greg Clayton · 13 years ago
  38. 444e35b Moved lldb::user_id_t values to be 64 bit. This was going to be needed for by Greg Clayton · 13 years ago
  39. 4c8353b Changed lldb_private::Type over to use the intrusive ref counted pointers by Greg Clayton · 13 years ago
  40. e3737fd Improved logging, replacing the old ASTDumper (which by Sean Callanan · 13 years ago
  41. 1a7b956 This patch alloows lldb to build under GCC. by Johnny Chen · 13 years ago
  42. 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
  43. 712a628 Add a commnad to set a condition for a watchpoint. Example: by Johnny Chen · 13 years ago
  44. 43d3906 Make "next" and "step-out" work when in stepping over or out of inlined functions. by Jim Ingham · 13 years ago
  45. 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
  46. 5f24c50 Add function decls to their parent decl context. by Greg Clayton · 13 years ago
  47. 6364304 Make sure we create only unique one namespace per AST when parsing the DWARF. by Greg Clayton · 13 years ago
  48. 67bbb11 Improved expression logging. Now all calls to by Sean Callanan · 13 years ago
  49. 41a55ef Add SBWatchpoint::GetError() API, which is not currently populated as yet. by Johnny Chen · 13 years ago
  50. f5c0c72 Added the ability to run expressions in any command. Expressions can be by Greg Clayton · 13 years ago
  51. ecd4feb SBValue::Watch() and SBValue::WatchPointee() are now the official API for creating by Johnny Chen · 13 years ago
  52. 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
  53. b01f7a4 Cleaned up a few functions that never get used. by Sean Callanan · 13 years ago
  54. a759706 Moved the list of found namespaces into the search by Sean Callanan · 13 years ago
  55. 1fa6b3d Cleaned up the SBWatchpoint public API. by Greg Clayton · 13 years ago
  56. aa4a553 Removed namespace qualification from symbol queries. by Sean Callanan · 13 years ago
  57. 0fcec13 Completed the glue that passes a ClangNamespaceDecl * by Sean Callanan · 13 years ago
  58. 4a07832 Now that we know the values are going to stick around, by Sean Callanan · 13 years ago
  59. 16c4ec3 Refactoring in preparation for having multiple by Sean Callanan · 13 years ago
  60. 0eca1a7 Added support to ClagnExpressionDeclMap for finding data symbols in namespaces. by Sean Callanan · 13 years ago
  61. 94cd0ca Made FindGlobalVariable() optionally search a specific by Sean Callanan · 13 years ago
  62. 3e80cd9 Added ClangNamespaceDecl * parameters to several by Sean Callanan · 13 years ago
  63. 03f64ca Cleanups in preparation for making FindExternalVisibleDecls by Sean Callanan · 13 years ago
  64. 141f8d9 Fix preprocessor warnings for no newline at the end of the source files. by Greg Clayton · 13 years ago
  65. 16b53ab Implemented a namespace map that allows searching by Sean Callanan · 13 years ago
  66. 1fb8a2d Add a SBTarget::BreakpointCreateByName API that allows you to specify the name by Jim Ingham · 13 years ago
  67. 81a20a0 Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class. by Greg Clayton · 13 years ago
  68. 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
  69. 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
  70. 49e08e3 Started on the export table for the MappedHash. by Greg Clayton · 13 years ago
  71. 8a2a4f8 Fix the last testsuite regression from the apple-names stuff. by Jim Ingham · 13 years ago
  72. 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
  73. 060d53f Fixed a memory leak of ASTResultSynthesizers, by Sean Callanan · 13 years ago
  74. c153518 Updated LLVM/Clang to pull in the latest ARM disassembler. by Sean Callanan · 13 years ago
  75. 659758a Remove some commented out code. by Jim Ingham · 13 years ago
  76. 1dca634 Clean up some documentation. by Jim Ingham · 13 years ago
  77. 8b7b227 Move the responsibility for translating the various eFunctionNameType lookups to the by Jim Ingham · 13 years ago
  78. ca804bf Don't look up main to find the default source file till somebody actually asks for it. by Jim Ingham · 13 years ago
  79. 61aca5d Re-organized the contents of RangeMap.h to be more concise and also allow for a Range, RangeArray, RangeData (range + data), or a RangeDataArray. We have many range implementations in LLDB and I will be converting over to using the classes in RangeMap.h so we can have one set of code that does ranges and searching of ranges. by Greg Clayton · 13 years ago
  80. 257663e Since we use address ranges a lot I added a templatized class that allows us to easily control the base address type, the size type, and the data that is stored with each range. It is designed to be populated by appending all needed items, then sorting the resulting list, and optionally minimizing the list when done. I adopted this new list in the DWARFDebugAranges for even further memory savings. by Greg Clayton · 13 years ago
  81. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  82. 8bdf57c Fix a problem where the stop-hook command 'frame variable g_val' produces nothing by Johnny Chen · 13 years ago
  83. ff9a7e0 Added missing file. by Greg Clayton · 13 years ago
  84. 00db215 Enable all the new accelerator tables if they are present and don't manually by Greg Clayton · 13 years ago
  85. 15afa9f Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace by Greg Clayton · 13 years ago
  86. 5cac6a5 Add SBFrame.WatchLocation() to find and watch the location pointed to by by Johnny Chen · 13 years ago
  87. 2f57db0 Cleaned up the the code that figures out the inlined stack frames given a by Greg Clayton · 13 years ago
  88. f92d0dd Removed some commented out code from the DWARF parser. by Greg Clayton · 13 years ago
  89. 6c19c8a <rdar://problem/10212450> by Greg Clayton · 13 years ago
  90. 1b45252 Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 13 years ago
  91. ed11c1e Fixed an issue where a lexical block or inlined function might have bad debug by Greg Clayton · 13 years ago
  92. 2cd9fbd Free up some space in lldb_private::Block by not requiring a sibling pointer. by Greg Clayton · 13 years ago
  93. 9a93fcd If the new .apple_names and .apple_types DWARF accelerator tables by Greg Clayton · 13 years ago
  94. f6e3de2 Convert over to the latest and greatest on disc accelerator by Greg Clayton · 13 years ago
  95. 5eb54bb Add SBTarget::GetLastCreatedWatchpointLocation() API and export to the Python interface. by Johnny Chen · 13 years ago
  96. a7d8951 Added an API to SymbolContext to hide the complexity of getting the by Jim Ingham · 13 years ago
  97. 092bd15 Export the watchpoint related API (SBWatchpointLocation class and added SBTarget methods) by Johnny Chen · 13 years ago
  98. d9b4425 Fixed the public and internal disassembler API to be named correctly: by Greg Clayton · 13 years ago
  99. e97e4e3 Fixed an include path that was breaking Linux builds. by Sean Callanan · 13 years ago
  100. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago