1. 5e573a9 Add an examples/customization directory and add a subdirectory pwd-cd-and-system by Johnny Chen · 13 years ago
  2. 38d084f Made the expression parser's type search call the proper namespace-aware APIs. by Sean Callanan · 13 years ago
  3. 0eca1a7 Added support to ClagnExpressionDeclMap for finding data symbols in namespaces. by Sean Callanan · 13 years ago
  4. 30640cc Add cleanups for 'command script add' to TestCommandPython.py. by Johnny Chen · 13 years ago
  5. a5ec5a3 Changed FindExternalVisibleDecls() to use the module by Sean Callanan · 13 years ago
  6. afb01f3 Oops, committed my local build settings. Fixed that. by Sean Callanan · 13 years ago
  7. 94cd0ca Made FindGlobalVariable() optionally search a specific by Sean Callanan · 13 years ago
  8. 3e80cd9 Added ClangNamespaceDecl * parameters to several by Sean Callanan · 13 years ago
  9. 03f64ca Cleanups in preparation for making FindExternalVisibleDecls by Sean Callanan · 13 years ago
  10. d5acaa0 Add description of a more capable 'cd' command using 'command script add'. by Johnny Chen · 13 years ago
  11. 141f8d9 Fix preprocessor warnings for no newline at the end of the source files. by Greg Clayton · 13 years ago
  12. 16b53ab Implemented a namespace map that allows searching by Sean Callanan · 13 years ago
  13. 192871b Add a more generic stepping benchmark, which uses the '-k' option of the test driver by Johnny Chen · 13 years ago
  14. ac51e9f Patch by Dawn to add the logging capabilities to ProcessLinux.cpp. by Johnny Chen · 13 years ago
  15. 01df057 Fix a typo in ProcessKDP::DidAttach(). by Johnny Chen · 13 years ago
  16. e06aede Added a missing file from a previous checkin. by Greg Clayton · 13 years ago
  17. 6d1a7c4 Add documentation on providing the 'cd' and 'pwd' commands to lldb with the help of the embedded Python interpreter and by Johnny Chen · 13 years ago
  18. fa407ad Patch from Dragos Tatulea to re-enable the PECOFF object file parser for all by Greg Clayton · 13 years ago
  19. d11e14b Added some simple testcases for figuring out breakpoints by name in by Jim Ingham · 13 years ago
  20. 7340919 Remove a debugging printf... by Jim Ingham · 13 years ago
  21. 38f823c Add '-k' option to the test driver to be able to specify a runhook, which is an lldb command by Johnny Chen · 13 years ago
  22. 1fb8a2d Add a SBTarget::BreakpointCreateByName API that allows you to specify the name by Jim Ingham · 13 years ago
  23. 52f794a Fix a couple of places in FindFunctions where I was using the passed in name_type_mask by Jim Ingham · 13 years ago
  24. 7c07873 Remove test logic to check for clang and skip the rest due to insufficient debug info. by Johnny Chen · 13 years ago
  25. b8f74aa Patch from dawn@burble.org to build on linux! by Johnny Chen · 13 years ago
  26. e00c930 Add '-e' and '-x' options to the test driver to be able to specify an executable (full path) by Johnny Chen · 13 years ago
  27. 20f6fcf Modify sidebar.incl and remove files to reflect r141554 change. by Johnny Chen · 13 years ago
  28. 2f02e77 Remove utils/emacs directory from lldb. by Johnny Chen · 13 years ago
  29. 81a20a0 Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class. by Greg Clayton · 13 years ago
  30. d51200c Remove unneeded exports. by Greg Clayton · 13 years ago
  31. 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
  32. 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
  33. 2b73576 Removed unneeded content. by Greg Clayton · 13 years ago
  34. 49e08e3 Started on the export table for the MappedHash. by Greg Clayton · 13 years ago
  35. 8a2a4f8 Fix the last testsuite regression from the apple-names stuff. by Jim Ingham · 13 years ago
  36. 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
  37. 060d53f Fixed a memory leak of ASTResultSynthesizers, by Sean Callanan · 13 years ago
  38. f28d134 Pared out debug information from the LLVM zip file. by Sean Callanan · 13 years ago
  39. e0510ea Add fuzz call for SBBreakpointLocation.GetAddress(). by Johnny Chen · 13 years ago
  40. c153518 Updated LLVM/Clang to pull in the latest ARM disassembler. by Sean Callanan · 13 years ago
  41. 659758a Remove some commented out code. by Jim Ingham · 13 years ago
  42. 1dca634 Clean up some documentation. by Jim Ingham · 13 years ago
  43. 0e6d511 Mention SBBreakpointLocation::GetAddress in the Python .i file. by Jim Ingham · 13 years ago
  44. 8b7b227 Move the responsibility for translating the various eFunctionNameType lookups to the by Jim Ingham · 13 years ago
  45. 7141018 When a function calculates its module, make sure it returns the "real" module, not the linked .o file. by Jim Ingham · 13 years ago
  46. 464a92a Fix the option lists that "--file" belongs to so the help won't come out whonky. by Jim Ingham · 13 years ago
  47. ca804bf Don't look up main to find the default source file till somebody actually asks for it. by Jim Ingham · 13 years ago
  48. 8384612 Removed code that was left in during testing and debugging of an issue. by Greg Clayton · 13 years ago
  49. 7d7f447 If we spawn an lldb process for test (via pexpect), do not load the init file unless told otherwise. by Johnny Chen · 13 years ago
  50. 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
  51. c409821 Turn the EvaluateExpression (..., True) tests back on. by Jim Ingham · 13 years ago
  52. 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
  53. d426d63 <rdar://problem/10226227> by Greg Clayton · 13 years ago
  54. 3d790bb Added better logging for the case where we don't find a PC in a block. by Greg Clayton · 13 years ago
  55. 878de9a Add a simple scenario of emacs and lldb interaction. by Johnny Chen · 13 years ago
  56. 5d6e161 Allow the crash log file path to contain an initial tilde component. by Johnny Chen · 13 years ago
  57. 0c46315 <rdar://problem/10226227> by Greg Clayton · 13 years ago
  58. 0e17253 Simplify code to print symbols and sections within a module using the built-in iterators. by Johnny Chen · 13 years ago
  59. b238517 Simplify the verbose output of WatchpointLocation::DumpWithLevel(). by Johnny Chen · 13 years ago
  60. 428b550 ProcessGDBRemote::BuildDynamicRegisterInfo() - even if we don't have a Target architecture by Jason Molenda · 13 years ago
  61. 8b3ed5c Add a test sequence for 'target variable' command when no arguments are given. by Johnny Chen · 13 years ago
  62. c7bbd27 Added a new logging channel to the DWARF called "lookups": by Greg Clayton · 13 years ago
  63. 4a3df74 Add a page describing the emacs integration elisp code based on the Grand Unified Debugger. by Johnny Chen · 13 years ago
  64. b523031 Stop spurious "DW_AT_specification(0x%8.8x) has no decl" warnings that were due to not parsing the function types when the function blocks are made and parsed. by Greg Clayton · 13 years ago
  65. 1037808 Stop empty C strings in summaries from showing "<data not available>" when a by Greg Clayton · 13 years ago
  66. fac9388 "target variable" will now display the current frame's compile unit globals by Greg Clayton · 13 years ago
  67. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  68. 840a992 Fixed a crasher where the m_frames collection was being accessed without by Greg Clayton · 13 years ago
  69. 8bdf57c Fix a problem where the stop-hook command 'frame variable g_val' produces nothing by Johnny Chen · 13 years ago
  70. ff9a7e0 Added missing file. by Greg Clayton · 13 years ago
  71. 00db215 Enable all the new accelerator tables if they are present and don't manually by Greg Clayton · 13 years ago
  72. 681bb5e Add more docstring to the Python interface file for SBSection. by Johnny Chen · 13 years ago
  73. d94f973 Add fuzz call for sub-section iteration for SBSection. by Johnny Chen · 13 years ago
  74. 7e98e09 Add SBSection API to the fuzz testing. by Johnny Chen · 13 years ago
  75. 6136969 Add fuzz call for watchpoint location iterator, too. by Johnny Chen · 13 years ago
  76. a70c157 Add fuzz calls for various iterators, too. by Johnny Chen · 13 years ago
  77. 3689431 Add comment markers for in_range(symbol, section). by Johnny Chen · 13 years ago
  78. 5956604 Fix regression of test SourceManagerTestCase.test_display_source_python. by Johnny Chen · 13 years ago
  79. 15afa9f Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace by Greg Clayton · 13 years ago
  80. 044c02b Bumped Xcode project version for lldb-80 and debugserver-145. by Greg Clayton · 13 years ago
  81. 05e3b9e Fixed an issue where a variable whose value is in a register might end up by Greg Clayton · 13 years ago
  82. 1913306 Print object names in case we have a .o file in a static archive when logging by Greg Clayton · 13 years ago
  83. b8dfc96 Fix segfault in UniqueDWARFASTTypeList::Find if we are comparing by Jason Molenda · 13 years ago
  84. 5cac6a5 Add SBFrame.WatchLocation() to find and watch the location pointed to by by Johnny Chen · 13 years ago
  85. 2f57db0 Cleaned up the the code that figures out the inlined stack frames given a by Greg Clayton · 13 years ago
  86. 7685ccc Small fix to "frame select" sans frame # feature added yesterday. by Jason Molenda · 13 years ago
  87. 467c449 Remove the "-feliminate-unused-debug-types" OTHER_CFLAGS. by Greg Clayton · 13 years ago
  88. 90c56e6 o lldbtest.py: by Johnny Chen · 13 years ago
  89. f92d0dd Removed some commented out code from the DWARF parser. by Greg Clayton · 13 years ago
  90. f29d7f2 Destroy a target when it is deleted. by Greg Clayton · 13 years ago
  91. d65593d After deleting a target, clear the target object and remove orphaned modules. by Greg Clayton · 13 years ago
  92. 6c19c8a <rdar://problem/10212450> by Greg Clayton · 13 years ago
  93. 1b45252 Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 13 years ago
  94. bb2218f Remember to mark the OptionValueUUID as set in SetOptionValue. by Jim Ingham · 13 years ago
  95. f11c029 Add docstring to in_range() function residing in the lldb module. by Johnny Chen · 13 years ago
  96. 6acf30a Fix extraneous import as a result of the last change. by Johnny Chen · 13 years ago
  97. bf338e6 Migrate the in_range(symbol, section) and symbol_iter(module, section) utility functions by Johnny Chen · 13 years ago
  98. ed11c1e Fixed an issue where a lexical block or inlined function might have bad debug by Greg Clayton · 13 years ago
  99. 811ded5 Add an additional "frame select" usage where it will re-select the current frame by Jason Molenda · 13 years ago
  100. 2d9b29b Fix verbose logging of unwinders. by Jason Molenda · 13 years ago