1. 4b40711 Cleaned up a unused member variable in Debugger. by Greg Clayton · 14 years ago
  2. 324067b Add "-o" option to "expression" which prints the object description if available. by Jim Ingham · 14 years ago
  3. 294553c Fixed an LLVM/Clang assertion that would happen for C++ and ObjC methods if the DWARF doesn't specify the accessibility for the method. Currently gcc 4.2 and clang++ do not set the accessibility correctly on methods. We currently shouldn't default to private since public methods don't have the accessibility specified. by Greg Clayton · 14 years ago
  4. 462d414 Fixed the forward declaration issue that was present in the DWARF parser after by Greg Clayton · 14 years ago
  5. b6c0c9d Make sure we've read in the ObjC runtime library data before trying to use it... by Jim Ingham · 14 years ago
  6. b66cd07 Replace the vestigial Value::GetOpaqueCLangQualType with the more correct Value::GetValueOpaqueClangQualType. by Jim Ingham · 14 years ago
  7. 1344e13 Added a DIE to clang opaque type map. by Greg Clayton · 14 years ago
  8. 4fb400f Hooked up detach for ProcessGDBRemote. by Greg Clayton · 14 years ago
  9. 1d8173f Added the ability to create an objective C method for an objective C by Greg Clayton · 14 years ago
  10. 47a5c4c Updated to latest LLVM. Major LLVM changes: by Sean Callanan · 14 years ago
  11. 642036f Committing the skeleton of Language runtime plugin classes. by Jim Ingham · 14 years ago
  12. 412440a Added motheds to C++ classes as we parse them to keep clang happy. by Greg Clayton · 14 years ago
  13. ea0dbca Add a new ArchVolatileRegs plugin class to identify by Jason Molenda · 14 years ago
  14. 3c9c5eb Removed the hacky "#define this ___clang_this" handler by Sean Callanan · 14 years ago
  15. 5bc8c97 Add UserSettings to Target class, making Target settings by Caroline Tice · 14 years ago
  16. fe424a9 General command line help cleanup: by Greg Clayton · 14 years ago
  17. 2ea8f27 Made CreateFunctionType static. Also fixed the spelling by Sean Callanan · 14 years ago
  18. 4c273fd Unbreak build, you can't take a pointer from a "register" variable. Most compilers ignore this keyword anyways. by Benjamin Kramer · 14 years ago
  19. c4547c5 Add the ability to not resolve the name passed to FileSpec. Then don't resolve the names of compilation units found in DWARF. by Jim Ingham · 14 years ago
  20. 5fcff9a 15-20% speed improvement when parsing DWARF. I used instruments to by Greg Clayton · 14 years ago
  21. 1924e24 Fixed a missing newline when dumping mixed disassembly. by Greg Clayton · 14 years ago
  22. 7412475 So we can't use .debug_pubtypes as it, as designed, does not tell us about by Greg Clayton · 14 years ago
  23. eea2640 Moved the section load list up into the target so we can use the target by Greg Clayton · 14 years ago
  24. 515ea54 Added logging of an error message in GDBRemoteCommunication::SendPacketNoLock() by Johnny Chen · 14 years ago
  25. 17454cf Add the ability for "ThreadPlanRunToAddress" to run to multiple addresses. by Jim Ingham · 14 years ago
  26. 178710c Looking at some of the test suite failures in DWARF in .o files with the by Greg Clayton · 14 years ago
  27. aed5881 Added a work in the DWARF parser when we parse an array that ends up having by Greg Clayton · 14 years ago
  28. e37f23c Fixed a crash that would happen when using "frame variables" on any struct, by Greg Clayton · 14 years ago
  29. 637029b Fixed an issue I found in the mach-o symbol table parsing where by Greg Clayton · 14 years ago
  30. 7c36fa0 Remove the eSymbolTypeFunction, eSymbolTypeGlobal, and eSymbolTypeStatic. by Greg Clayton · 14 years ago
  31. e34ee5f Always look up the symbols with FindSymbolByID since we are minimizing the symbol list. by Jim Ingham · 14 years ago
  32. 3a4ea24 The first part of an lldb native stack unwinder. by Jason Molenda · 14 years ago
  33. 0a7f75f Got the ARM version of debugserver up to date. by Greg Clayton · 14 years ago
  34. 8c84880 Disable minimized symbol tables for now as this was causing test suite failures. by Greg Clayton · 14 years ago
  35. 576a68b Enable minimized symbol tables when parsing mach-o files. This by Greg Clayton · 14 years ago
  36. 236c1c7 Remove the Flags member in lldb_private::Module in favor of bitfield boolean by Greg Clayton · 14 years ago
  37. 059ce9b Updated the x86_64 and i386 ABIs to chain RBP by Sean Callanan · 14 years ago
  38. 0ad086f Added Symtab::FindSymbolByID() in preparation for enabling the minimal by Greg Clayton · 14 years ago
  39. e33bdd3 Improved name demangling performance by 20% on darwin. by Greg Clayton · 14 years ago
  40. f04d661 Cleaned up step logging a bit. by Greg Clayton · 14 years ago
  41. c5b15db Fixed an lldb infrastructure bug, where the debugger should reaaly update its by Johnny Chen · 14 years ago
  42. b4d1d33 Added some extra logging to track asynchronous packet activity. by Greg Clayton · 14 years ago
  43. 1a67946 Fixed a case where we might be able to acquire a mutex with a try lock and by Greg Clayton · 14 years ago
  44. 2653be9 Pacify operator precedence warnings. No functionality change because eLaunchFlagDisableASLR happens to be 1. by Benjamin Kramer · 14 years ago
  45. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  46. 452bf61 Added the ability to disable ASLR (Address Space Layout Randomization). ASLR by Greg Clayton · 14 years ago
  47. 4fb0815 Clarified the intent of the SymbolContextScope class in the header by Greg Clayton · 14 years ago
  48. 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
  49. b04e7a8 Got a lot of the kinks worked out in the inline support after debugging more by Greg Clayton · 14 years ago
  50. 33ed170 Added support for inlined stack frames being represented as real stack frames by Greg Clayton · 14 years ago
  51. 75ccf50 Modified the host process monitor callback function Host::StartMonitoringChildProcess by Greg Clayton · 14 years ago
  52. 35729d6 Remove redundant call to ParseCompileUnitLineTable. The call to sc.comp_unit->GetLineTable() will parse the line table if it hasn't been read in. by Jim Ingham · 14 years ago
  53. 709c473 Avoid an assertion crash by avoiding a circular dependency in the objective by Greg Clayton · 14 years ago
  54. 88957ff Fixed an issue where we would return matches for DWARF in the .o files when by Greg Clayton · 14 years ago
  55. 7241ba7 Fixed FindFunctions so it works with all the new name types for the DWARF in object files case. by Greg Clayton · 14 years ago
  56. 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
  57. 0007dff Few little fixes to reading in inlined functions. Also added a test case with some inlining. by Jim Ingham · 14 years ago
  58. 1240b91 Looks like this is how you identify executables in ELF. by Jim Ingham · 14 years ago
  59. ac9c8b5 Remove unused powerpc unwind support. by Jason Molenda · 14 years ago
  60. 7508e73 Change Target & Process so they can really be initialized with an invalid architecture. by Jim Ingham · 14 years ago
  61. 70a4f92 Fixed namespace visibility problems that were by Sean Callanan · 14 years ago
  62. 643ee73 Abtracted the old "lldb_private::Thread::StopInfo" into an abtract class. by Greg Clayton · 14 years ago
  63. 960d6a4 Added support for objective C built-in types: id, Class, and SEL. This by Greg Clayton · 14 years ago
  64. 9488b74 Created lldb::LanguageType by moving an enumeration from the by Greg Clayton · 14 years ago
  65. 447e82f Fix makefiles to build properly on Darwin. by Stephen Wilson · 14 years ago
  66. f6f4033 Add a new Process plugin for Linux. by Stephen Wilson · 14 years ago
  67. 7661a98 Centralized the Mach exception stop info code by adding it as a first by Greg Clayton · 14 years ago
  68. f8e98a6 Warnings cleanup patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  69. 7cebe13 Added Mach exception stop descriptions. The chunk of code I just added needs to be placed into a utility location so it can be used by ProcessMacOSX and debugserver. by Greg Clayton · 14 years ago
  70. 8541f2f Added extensive logging of the code that is actually going by Sean Callanan · 14 years ago
  71. 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
  72. 32a8c7e Modified both the ObjectFileMachO and ObjectFileELF to correctly set the by Greg Clayton · 14 years ago
  73. 1674b12 Change over to using the definitions for mach-o types and defines to the by Greg Clayton · 14 years ago
  74. c9b6000 Updated LLVM and Clang to July 20 at 16:00. by Greg Clayton · 14 years ago
  75. 53d68e7 Remove use of STL collection class use of the "data()" method since it isn't by Greg Clayton · 14 years ago
  76. 7a45a2f More constructor warning fixes from William Lynch. by Benjamin Kramer · 14 years ago
  77. bef1583 I enabled some extra warnings for hidden local variables and for hidden by Greg Clayton · 14 years ago
  78. 5565cd1 Remove our local ELF definitions and rely on llvm/Support/ELF.h instead. by Stephen Wilson · 14 years ago
  79. ddd2962 Combine 32 and 64 bit ELF readers. by Stephen Wilson · 14 years ago
  80. f6d49a5 Don't build the SymbolVendor/MacOSX when not building on Darwin. by Greg Clayton · 14 years ago
  81. 7991225 A few more misc warning fixes. by Eli Friedman · 14 years ago
  82. 0a164a1 Misc warning fixes. by Eli Friedman · 14 years ago
  83. 54e7afa Merged Eli Friedman's linux build changes where he added Makefile files that by Greg Clayton · 14 years ago
  84. 596ba27 64 bit ELF support from Stephen Wilson. by Greg Clayton · 14 years ago
  85. c041815 typedef fixups, patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  86. 7ae20c4 Fix build for newer versions of GCC that don't include cstring implicitly. Based on a patch by Pawel Wodnicki! by Benjamin Kramer · 14 years ago
  87. ccfba72 Switch over to using llvm's dwarf constants file. by Jason Molenda · 14 years ago
  88. 90bc5c6 Remove extraneous semicolon after if condition (from Jean-Daniel Dupas). by Greg Clayton · 14 years ago
  89. 47ebf9b Avoid duplicate names (something else that clang++ really doesn't like) in by Greg Clayton · 14 years ago
  90. f2a4d2e Applied pid.patch from Jean-Daniel Dupas. by Greg Clayton · 14 years ago
  91. cdd22d0 Plugged 4 more leaks in the libunwind code. One leaks is still left in as it by Greg Clayton · 14 years ago
  92. e9d0df4 More leaks detection: by Greg Clayton · 14 years ago
  93. cf7f1ad Fixed up disassembly to not emit the module name before all function names by Greg Clayton · 14 years ago
  94. 7043635 Centralized all disassembly into static functions in source/Core/Disassembler.cpp. by Greg Clayton · 14 years ago
  95. 661825b Fixed debug map in executable + DWARF in .o debugging on Mac OS X. by Greg Clayton · 14 years ago
  96. 12bec71 Added function name types to allow us to set breakpoints by name more by Greg Clayton · 14 years ago
  97. 63094e0 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 14 years ago
  98. 3ae9340 Initialize member so GDBRemoteRegisterContext::ReadRegisterBytes doesn't rely on by Benjamin Kramer · 14 years ago
  99. 5a47e8b Two changes in this checkin. Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan by Jim Ingham · 14 years ago
  100. 0a298dc Fixed a problem where invalid triples were being passed by Sean Callanan · 14 years ago