1. 2f02e77 Remove utils/emacs directory from lldb. by Johnny Chen · 13 years ago
  2. 81a20a0 Patch from Dragos Tatulea regarding typedefs with the new RangeArray template class. by Greg Clayton · 13 years ago
  3. d51200c Remove unneeded exports. by Greg Clayton · 13 years ago
  4. 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
  5. 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
  6. 2b73576 Removed unneeded content. by Greg Clayton · 13 years ago
  7. 49e08e3 Started on the export table for the MappedHash. by Greg Clayton · 13 years ago
  8. 8a2a4f8 Fix the last testsuite regression from the apple-names stuff. by Jim Ingham · 13 years ago
  9. 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
  10. 060d53f Fixed a memory leak of ASTResultSynthesizers, by Sean Callanan · 13 years ago
  11. f28d134 Pared out debug information from the LLVM zip file. by Sean Callanan · 13 years ago
  12. e0510ea Add fuzz call for SBBreakpointLocation.GetAddress(). by Johnny Chen · 13 years ago
  13. c153518 Updated LLVM/Clang to pull in the latest ARM disassembler. by Sean Callanan · 13 years ago
  14. 659758a Remove some commented out code. by Jim Ingham · 13 years ago
  15. 1dca634 Clean up some documentation. by Jim Ingham · 13 years ago
  16. 0e6d511 Mention SBBreakpointLocation::GetAddress in the Python .i file. by Jim Ingham · 13 years ago
  17. 8b7b227 Move the responsibility for translating the various eFunctionNameType lookups to the by Jim Ingham · 13 years ago
  18. 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
  19. 464a92a Fix the option lists that "--file" belongs to so the help won't come out whonky. by Jim Ingham · 13 years ago
  20. ca804bf Don't look up main to find the default source file till somebody actually asks for it. by Jim Ingham · 13 years ago
  21. 8384612 Removed code that was left in during testing and debugging of an issue. by Greg Clayton · 13 years ago
  22. 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
  23. 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
  24. c409821 Turn the EvaluateExpression (..., True) tests back on. by Jim Ingham · 13 years ago
  25. 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
  26. d426d63 <rdar://problem/10226227> by Greg Clayton · 13 years ago
  27. 3d790bb Added better logging for the case where we don't find a PC in a block. by Greg Clayton · 13 years ago
  28. 878de9a Add a simple scenario of emacs and lldb interaction. by Johnny Chen · 13 years ago
  29. 5d6e161 Allow the crash log file path to contain an initial tilde component. by Johnny Chen · 13 years ago
  30. 0c46315 <rdar://problem/10226227> by Greg Clayton · 13 years ago
  31. 0e17253 Simplify code to print symbols and sections within a module using the built-in iterators. by Johnny Chen · 13 years ago
  32. b238517 Simplify the verbose output of WatchpointLocation::DumpWithLevel(). by Johnny Chen · 13 years ago
  33. 428b550 ProcessGDBRemote::BuildDynamicRegisterInfo() - even if we don't have a Target architecture by Jason Molenda · 13 years ago
  34. 8b3ed5c Add a test sequence for 'target variable' command when no arguments are given. by Johnny Chen · 13 years ago
  35. c7bbd27 Added a new logging channel to the DWARF called "lookups": by Greg Clayton · 13 years ago
  36. 4a3df74 Add a page describing the emacs integration elisp code based on the Grand Unified Debugger. by Johnny Chen · 13 years ago
  37. 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
  38. 1037808 Stop empty C strings in summaries from showing "<data not available>" when a by Greg Clayton · 13 years ago
  39. fac9388 "target variable" will now display the current frame's compile unit globals by Greg Clayton · 13 years ago
  40. e14cf4e Add capability to set ignore count for watchpoint on the command line: by Johnny Chen · 13 years ago
  41. 840a992 Fixed a crasher where the m_frames collection was being accessed without by Greg Clayton · 13 years ago
  42. 8bdf57c Fix a problem where the stop-hook command 'frame variable g_val' produces nothing by Johnny Chen · 13 years ago
  43. ff9a7e0 Added missing file. by Greg Clayton · 13 years ago
  44. 00db215 Enable all the new accelerator tables if they are present and don't manually by Greg Clayton · 13 years ago
  45. 681bb5e Add more docstring to the Python interface file for SBSection. by Johnny Chen · 13 years ago
  46. d94f973 Add fuzz call for sub-section iteration for SBSection. by Johnny Chen · 13 years ago
  47. 7e98e09 Add SBSection API to the fuzz testing. by Johnny Chen · 13 years ago
  48. 6136969 Add fuzz call for watchpoint location iterator, too. by Johnny Chen · 13 years ago
  49. a70c157 Add fuzz calls for various iterators, too. by Johnny Chen · 13 years ago
  50. 3689431 Add comment markers for in_range(symbol, section). by Johnny Chen · 13 years ago
  51. 5956604 Fix regression of test SourceManagerTestCase.test_display_source_python. by Johnny Chen · 13 years ago
  52. 15afa9f Removed lldb::SBSourceManager_impl. We export everything in the lldb namespace by Greg Clayton · 13 years ago
  53. 044c02b Bumped Xcode project version for lldb-80 and debugserver-145. by Greg Clayton · 13 years ago
  54. 05e3b9e Fixed an issue where a variable whose value is in a register might end up by Greg Clayton · 13 years ago
  55. 1913306 Print object names in case we have a .o file in a static archive when logging by Greg Clayton · 13 years ago
  56. b8dfc96 Fix segfault in UniqueDWARFASTTypeList::Find if we are comparing by Jason Molenda · 13 years ago
  57. 5cac6a5 Add SBFrame.WatchLocation() to find and watch the location pointed to by by Johnny Chen · 13 years ago
  58. 2f57db0 Cleaned up the the code that figures out the inlined stack frames given a by Greg Clayton · 13 years ago
  59. 7685ccc Small fix to "frame select" sans frame # feature added yesterday. by Jason Molenda · 13 years ago
  60. 467c449 Remove the "-feliminate-unused-debug-types" OTHER_CFLAGS. by Greg Clayton · 13 years ago
  61. 90c56e6 o lldbtest.py: by Johnny Chen · 13 years ago
  62. f92d0dd Removed some commented out code from the DWARF parser. by Greg Clayton · 13 years ago
  63. f29d7f2 Destroy a target when it is deleted. by Greg Clayton · 13 years ago
  64. d65593d After deleting a target, clear the target object and remove orphaned modules. by Greg Clayton · 13 years ago
  65. 6c19c8a <rdar://problem/10212450> by Greg Clayton · 13 years ago
  66. 1b45252 Add an accompanying option to the 'frame variable -w' command to, instead of watching the variable, by Johnny Chen · 13 years ago
  67. bb2218f Remember to mark the OptionValueUUID as set in SetOptionValue. by Jim Ingham · 13 years ago
  68. f11c029 Add docstring to in_range() function residing in the lldb module. by Johnny Chen · 13 years ago
  69. 6acf30a Fix extraneous import as a result of the last change. by Johnny Chen · 13 years ago
  70. bf338e6 Migrate the in_range(symbol, section) and symbol_iter(module, section) utility functions by Johnny Chen · 13 years ago
  71. ed11c1e Fixed an issue where a lexical block or inlined function might have bad debug by Greg Clayton · 13 years ago
  72. 811ded5 Add an additional "frame select" usage where it will re-select the current frame by Jason Molenda · 13 years ago
  73. 2d9b29b Fix verbose logging of unwinders. by Jason Molenda · 13 years ago
  74. 90b2079 Centralize the warning reporting and use ReportWarning & ReportError everywhere we were using fprintf(stderr directly. by Jim Ingham · 13 years ago
  75. 3dd956e Modify the delegation chain from MachThreadList -> MachThread -> DNBArchProtocol so that when by Johnny Chen · 13 years ago
  76. 2cd9fbd Free up some space in lldb_private::Block by not requiring a sibling pointer. by Greg Clayton · 13 years ago
  77. c7f18c8 Missed one place where we should use the target's SourceManager, not the debugger's. by Jim Ingham · 13 years ago
  78. 9a93fcd If the new .apple_names and .apple_types DWARF accelerator tables by Greg Clayton · 13 years ago
  79. 48c7756 Fix a bug in the current MacOSX MachThreadList::EnableHardwareWatchpoint() impl so that by Johnny Chen · 13 years ago
  80. 60a5424 Found a great optimization after speaking with Sean Callanan which cleans by Greg Clayton · 13 years ago
  81. 3a63fff Fix help string for "frame variable". by Johnny Chen · 13 years ago
  82. ff2ec04 Modify lldbutil.in_range(symbol, section) to deal with the symbol whose by Johnny Chen · 13 years ago
  83. f6e3de2 Convert over to the latest and greatest on disc accelerator by Greg Clayton · 13 years ago
  84. e708261 Add a test sequence of iterating through a module's symbols belonging to a section. by Johnny Chen · 13 years ago
  85. dc90162 Need to go to the containing inline block to get the inline name right. by Jim Ingham · 13 years ago
  86. fd4fe88 Add a simple test TestModuleAndSection.py to exercise some module/section-related APIs. by Johnny Chen · 13 years ago
  87. a9f92b1 Make the assignment of TestBase.mydir more portable. by Johnny Chen · 13 years ago
  88. 8a0d897 SBWatchpointLocation.GetDescription() takes an additional description level arg. by Johnny Chen · 13 years ago
  89. 5eb54bb Add SBTarget::GetLastCreatedWatchpointLocation() API and export to the Python interface. by Johnny Chen · 13 years ago
  90. b59194f Add fuzz testing for newly added SBWatchpointLocation API. by Johnny Chen · 13 years ago
  91. a7d8951 Added an API to SymbolContext to hide the complexity of getting the by Jim Ingham · 13 years ago
  92. 919a434 Enable the following CFLAGS in the Xcode project build: by Greg Clayton · 13 years ago
  93. 092bd15 Export the watchpoint related API (SBWatchpointLocation class and added SBTarget methods) by Johnny Chen · 13 years ago
  94. d9b4425 Fixed the public and internal disassembler API to be named correctly: by Greg Clayton · 13 years ago
  95. e97e4e3 Fixed an include path that was breaking Linux builds. by Sean Callanan · 13 years ago
  96. 096c293 Add SB API class SBWatchpointLocation and some extra methods to the SBTarget class to by Johnny Chen · 13 years ago
  97. be46d6d Fixes for a few different versions of the darwin crash log. by Greg Clayton · 13 years ago
  98. 88b6ac2 Remove the @expectedFailureClang custom decorator for indicating clang-specific test failures. by Johnny Chen · 13 years ago
  99. de3d27e Factored out handling of the source code for an by Sean Callanan · 13 years ago
  100. ee01551 Added an example that symbolicates symbol information. This file by Greg Clayton · 13 years ago