1. 7ac83bd Move common code from GetSettingsController in Process & Debugger into static functions by Jim Ingham · 14 years ago
  2. 8f3b21d Patch from Jay Cornwall that modifies the LLDB "Host" layer to reuse more by Greg Clayton · 14 years ago
  3. 0ad086f Added Symtab::FindSymbolByID() in preparation for enabling the minimal by Greg Clayton · 14 years ago
  4. 69aa5d9 Added more API to lldb::SBBlock to allow getting the block by Greg Clayton · 14 years ago
  5. 6e4c5ce by Caroline Tice · 14 years ago
  6. e33bdd3 Improved name demangling performance by 20% on darwin. by Greg Clayton · 14 years ago
  7. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  8. 72b7158 Added a new bool parameter to many of the DumpStopContext() methods that by Greg Clayton · 14 years ago
  9. 17dae08 StackFrame objects now own ValueObjects for any frame variables (locals, args, by Greg Clayton · 14 years ago
  10. 0526233 Added code to run pointer validation checks in by Sean Callanan · 14 years ago
  11. b36218d Fixed a comment. by Sean Callanan · 14 years ago
  12. f18d91c Added support for dynamic sanity checking in by Sean Callanan · 14 years ago
  13. 452bf61 Added the ability to disable ASLR (Address Space Layout Randomization). ASLR by Greg Clayton · 14 years ago
  14. b0fff35 Add a "lldb host" logging channel, and put logging in the Host::OpenInExternalEditor code. by Jim Ingham · 14 years ago
  15. ef2298a Removed documentation for a non-existent function parameter. by Sean Callanan · 14 years ago
  16. 45690fe Fixed a bug where the parser-specific members of by Sean Callanan · 14 years ago
  17. 8194e42 Fixed a bug where ClangExpressionVariableList was by Sean Callanan · 14 years ago
  18. 74989e8 Added a way to open the current source file & line in an external editor, and you can turn this on with: by Jim Ingham · 14 years ago
  19. 4fb0815 Clarified the intent of the SymbolContextScope class in the header by Greg Clayton · 14 years ago
  20. 830a903 Added a ClangUtilityFunction class that allows the by Sean Callanan · 14 years ago
  21. 4ead2e9 o Exposed SBFileSpec to the Python APIs in lldb.py. by Johnny Chen · 14 years ago
  22. 870a1cd Made it so we update the current frames from the previous frames by doing STL by Greg Clayton · 14 years ago
  23. 1d66ef5 Simplified the StackFrameList class down to a single frames list again by Greg Clayton · 14 years ago
  24. 65dafa8 This is a major refactoring of the expression parser. by Sean Callanan · 14 years ago
  25. 65124ea Changed the StackID to store its start PC address as a load address instead of by Greg Clayton · 14 years ago
  26. c833295 Change "Current" as in GetCurrentThread, GetCurrentStackFrame, etc, to "Selected" i.e. GetSelectedThread. Selected makes more sense, since these are set by some user action (a selection). I didn't change "CurrentProcess" since this is always controlled by the target, and a given target can only have one process, so it really can't be selected. by Jim Ingham · 14 years ago
  27. 2154da4 Add StackFrame::IsInlined. by Jim Ingham · 14 years ago
  28. f40e308 Cleaned up the inline stack frame code one more time to prepare for inlined by Greg Clayton · 14 years ago
  29. bcfce90 The destructor for StackFrameList doesn't need to be virtual as we aren't by Greg Clayton · 14 years ago
  30. a92d893 Thread no longer needs to be a friend in StackFrameList now that StackFrameList by Greg Clayton · 14 years ago
  31. 782b9cc Cleaned up the inline backtrace code even more by moving all stack backtracing by Greg Clayton · 14 years ago
  32. 32f4fdd Fixed another issue with the inline stack frames where if the first frame by Greg Clayton · 14 years ago
  33. b04e7a8 Got a lot of the kinks worked out in the inline support after debugging more by Greg Clayton · 14 years ago
  34. 22a6bf3 Clear the inline stack frame info when we clean all stack frames. by Greg Clayton · 14 years ago
  35. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  36. 8c12720 Refactored ClangExpressionDeclMap to use by Sean Callanan · 14 years ago
  37. 75ccf50 Modified the host process monitor callback function Host::StartMonitoringChildProcess by Greg Clayton · 14 years ago
  38. 0bda403 Add an accessor to get the Declaration for a type. by Jim Ingham · 14 years ago
  39. b75b466 Add methods to Function to get the first and last source lines of the function, and to get whether this Function is an inlined instance or not. by Jim Ingham · 14 years ago
  40. a622343 First step of refactoring variable handling in the by Sean Callanan · 14 years ago
  41. 3351dac Patch by Bill Lynch fixing handling of the pid in the IR transformation passes. by Sean Callanan · 14 years ago
  42. 2f9b9bc Added a Thread accessor to the register context. by Greg Clayton · 14 years ago
  43. 03f2b3b Allow the SBDebugger to construct itself with the default constructor so by Greg Clayton · 14 years ago
  44. 5fd1a30 Documented RecordingMemoryManager and removed an by Sean Callanan · 14 years ago
  45. f285ebc Documented IRToDWARF, and added return value documentation to IRForTarget. by Sean Callanan · 14 years ago
  46. ca948fc Documented IRForTarget by Sean Callanan · 14 years ago
  47. 3530022 Documented DWARFExpression. by Sean Callanan · 14 years ago
  48. bfc33ce Documented ClangResultSynthesizer and added very minor API fixes. by Sean Callanan · 14 years ago
  49. db5d8e8 Documented ClangPersistentVariable(s). No API by Sean Callanan · 14 years ago
  50. 4a7c6c6 Documented ClangExpressionVariable(List), and cleaned up its API slightly. by Sean Callanan · 14 years ago
  51. a386e05 Added documentation to ClangExpressionDeclMap. by Sean Callanan · 14 years ago
  52. 39ee600 Documented ClangExpression and made parts of it by Sean Callanan · 14 years ago
  53. b291abe Added documentation to ClangASTSource and NameSearchContext. by Sean Callanan · 14 years ago
  54. 90bebb2 Fixed copyright notice on ClangASTSource.h. by Sean Callanan · 14 years ago
  55. 200dce5 Removed the ClangStmtVisitor, which is old code by Sean Callanan · 14 years ago
  56. 5337558 Applied Pawel Wodnicki's fix for "missing" lldb-forward-rtti.h header file. by Johnny Chen · 14 years ago
  57. 7121908 Now that we are using the Unwinder (or Jason's new unwinder when that comes about) all the plugin-specific details of getting stack frames by Jim Ingham · 14 years ago
  58. 82b74c8 Added automatically generated result variables for each by Sean Callanan · 14 years ago
  59. a48fe16 Added support for persistent variables to the by Sean Callanan · 14 years ago
  60. 6fb8baa Make breakpoint commands work again. Added a PerformAction to the stop info - actions are run when the by Jim Ingham · 14 years ago
  61. 7508e73 Change Target & Process so they can really be initialized with an invalid architecture. by Jim Ingham · 14 years ago
  62. e562a07 Removed the -i option from the expr command, and by Sean Callanan · 14 years ago
  63. 78ead8b Fixed namespace issues that were breaking the by Sean Callanan · 14 years ago
  64. 585660c More missing files from my previous checkin. by Greg Clayton · 14 years ago
  65. 27c83f9 Added functionality to our API for SBType. This will allow users to eventually find and peruse static type information from modules. by Greg Clayton · 14 years ago
  66. ef28e2a Added functionality to our API for SBType. This will allow users to eventually find and peruse static type information from modules. by Greg Clayton · 14 years ago
  67. 643ee73 Abtracted the old "lldb_private::Thread::StopInfo" into an abtract class. by Greg Clayton · 14 years ago
  68. 93a4b1a Added support for accessing members of C++ objects, by Sean Callanan · 14 years ago
  69. 7aff9ff Added FindTypes to Module and ModuleList. by Greg Clayton · 14 years ago
  70. 960d6a4 Added support for objective C built-in types: id, Class, and SEL. This by Greg Clayton · 14 years ago
  71. f5857a0 Added support for rewriting objc_msgSend so we can by Sean Callanan · 14 years ago
  72. 60dde64 We can do better when reporting the status of one-liner script execution. by Johnny Chen · 14 years ago
  73. 43490d1 Added "void Clear();" methods to SBDebugger, SBTarget and SBThread so they can release their shared pointers. by Greg Clayton · 14 years ago
  74. 9488b74 Created lldb::LanguageType by moving an enumeration from the by Greg Clayton · 14 years ago
  75. 321fe9e Added and improved logging. This is helping us as we by Sean Callanan · 14 years ago
  76. 02fbafa Added support for calling functions from expressions. by Sean Callanan · 14 years ago
  77. ba992c5 Added support for locating a function that is by Sean Callanan · 14 years ago
  78. 0fc7358 Changed SymbolContext so when you search for functions by Sean Callanan · 14 years ago
  79. 4583927 Updated the IR converter for the target to eliminate by Sean Callanan · 14 years ago
  80. c7f5d5c Added needed breakpoint functionality to the public API that includes: by Greg Clayton · 14 years ago
  81. 32824aa Added logging: by Sean Callanan · 14 years ago
  82. 1240f74 Remove useless typedef keyword, fix a clang warning. by Benjamin Kramer · 14 years ago
  83. 96cc4d0 Added a new utility class that I have wanted for a while. The CleanUp by Greg Clayton · 14 years ago
  84. 7661a98 Centralized the Mach exception stop info code by adding it as a first by Greg Clayton · 14 years ago
  85. f8e98a6 Warnings cleanup patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  86. 8541f2f Added extensive logging of the code that is actually going by Sean Callanan · 14 years ago
  87. 841026f Modified TaggedASTType to inherit from ClangASTType by Sean Callanan · 14 years ago
  88. 84f8075 Added a new enumeration named "ClangASTContext::AccessType" that abstracts the type creation from the various access enumerations in Clang. Currently there are clang::AccessSpecifier and the objective C ivars have their own enumeration. So I added a new enumeration that will allow a consistent interface when creating types through ClangASTContext. by Greg Clayton · 14 years ago
  89. 32a8c7e Modified both the ObjectFileMachO and ObjectFileELF to correctly set the by Greg Clayton · 14 years ago
  90. 1674b12 Change over to using the definitions for mach-o types and defines to the by Greg Clayton · 14 years ago
  91. a36f1b7 Add new SectionType enumerations for all DWARF sections. ObjectFile parsers should start properly setting the section types for DWARF sections, then we can move the DWARF SymbolFile parser over to finding the sections by the appropriate SectionType. by Greg Clayton · 14 years ago
  92. 15be8ed Allow searching for a section by SectionType. by Greg Clayton · 14 years ago
  93. 9fed024 Whoops, forgot to guard ASTType.h. Fixed. by Sean Callanan · 14 years ago
  94. f328c9f Added functionality to dematerialize values that were by Sean Callanan · 14 years ago
  95. 53d68e7 Remove use of STL collection class use of the "data()" method since it isn't by Greg Clayton · 14 years ago
  96. 2d84974 Add missing include. by Stephen Wilson · 14 years ago
  97. 3fd1f36 Have Process::CreateBreakpointSite return a break_id_t instead of a user_id_t. by Stephen Wilson · 14 years ago
  98. 336a000 Added the necessary code to copy variables used by by Sean Callanan · 14 years ago
  99. 810f22d Wrote the code that looks at a context to see by Sean Callanan · 14 years ago
  100. 5510ddd Added a function to test whether two types are the same. by Sean Callanan · 14 years ago