1. 19525a4 Minor copy edits. by Jason Molenda · 14 years ago
  2. 3e0571b Fixed some comments. by Johnny Chen · 14 years ago
  3. b81ed0d Added [-o <one-liner>] to the "breakpoint command add" lldb command to be able by Johnny Chen · 14 years ago
  4. 3f09c63 Don't use lldb syntax in the gdb examples... by Jim Ingham · 14 years ago
  5. 0136f47 Few clarifications. by Jim Ingham · 14 years ago
  6. 4ae5196 Move the "Object Description" into the ValueObject, and the add an API to by Jim Ingham · 14 years ago
  7. 681778e Little bit of line wrapping cleanup. by Jim Ingham · 14 years ago
  8. a9248b8 When the debugger updates its symbol context, if no thread or frame are selected select the first thread's 0th frame. by Jim Ingham · 14 years ago
  9. e34ee5f Always look up the symbols with FindSymbolByID since we are minimizing the symbol list. by Jim Ingham · 14 years ago
  10. 2e3d6f2 Make sure the address passed into SymbolContext::DumpStopContext() is valid before trying to calculate any offsets. by Greg Clayton · 14 years ago
  11. 99fac48 There was a check to make sure that the frame had a valid function before the expression parser would allow decl lookups which was not needed. After removing this you can evaluate expressions correctly when stopped in a frame that only has a symbol or has no symbol context at all. by Greg Clayton · 14 years ago
  12. c328d21 Fixed the breakage of "breakpoint command add -p 1 2" caused by r113596 as by Johnny Chen · 14 years ago
  13. 4c1b218 Updated help text for "breakpoint command add" to reflect r113596 changeset. by Johnny Chen · 14 years ago
  14. 466f6c4 Added some missing API for address resolving within a module, and looking by Greg Clayton · 14 years ago
  15. a51d591 These two files should have been in r113596. Oops! by Johnny Chen · 14 years ago
  16. d1c2dca Added the capability to specify a one-liner Python script as the callback by Johnny Chen · 14 years ago
  17. 98bea86 Don't flatten lldb and import everything into the global namespace. Instead, by Johnny Chen · 14 years ago
  18. 3a4ea24 The first part of an lldb native stack unwinder. by Jason Molenda · 14 years ago
  19. eddffe9 If the file the user specifies can't be found in the current directory, by Caroline Tice · 14 years ago
  20. c67b7d1 Cleaned up the output of "image lookup --address <ADDR>" which involved by Greg Clayton · 14 years ago
  21. 396704b Add comments to InstanceSettings constructors explaining why they have by Caroline Tice · 14 years ago
  22. f2c330d Move the ProcessPlugins enum definition from lldb-enumerations.h to by Caroline Tice · 14 years ago
  23. b8314fe Make API calls for setting/getting user settable variables static. by Caroline Tice · 14 years ago
  24. e5f18b0 Modify the command options help generation so that required options by Caroline Tice · 14 years ago
  25. 0a7f75f Got the ARM version of debugserver up to date. by Greg Clayton · 14 years ago
  26. 1d2aefd Make all debugger-level user settable variables into instance variables. by Caroline Tice · 14 years ago
  27. 88866ac Added GetStackFrames(thread) utility function. by Johnny Chen · 14 years ago
  28. 5bc7b67 eliminate some clang warnings. by Chris Lattner · 14 years ago
  29. 571bcba remove unneeded #include, reducing # static ctors. by Chris Lattner · 14 years ago
  30. 0f6fa73 fix a bunch of signed/unsigned comparison warnings, stop evaluating "getsize" every time through the loop. by Chris Lattner · 14 years ago
  31. 1605cf6 Added a lldbutil.py module, which contains utility functions which can be used by Johnny Chen · 14 years ago
  32. 55261a1 There is currently a problem with our interaction by Sean Callanan · 14 years ago
  33. 31fbb64 More help text fixes. by Caroline Tice · 14 years ago
  34. abb507a Clean up, clarify and standardize help text, and fix a few help text formatting problems. by Caroline Tice · 14 years ago
  35. 91960d3 Added '-d' option to the test driver to spit out the process id and do a delay by Johnny Chen · 14 years ago
  36. 65af734 Fixed an expression parser bug that prevented by Sean Callanan · 14 years ago
  37. 8c84880 Disable minimized symbol tables for now as this was causing test suite failures. by Greg Clayton · 14 years ago
  38. b0f55d4 "break set -F" should also use the full symbol name completer. by Jim Ingham · 14 years ago
  39. 004afcb Make sure creating a pending instance doesn't also trigger creating a live instance; also make sure creating a by Caroline Tice · 14 years ago
  40. 576a68b Enable minimized symbol tables when parsing mach-o files. This by Greg Clayton · 14 years ago
  41. 20594b1 Add a user settings controller to Thread. Then added a step-avoid-regexp setting by Jim Ingham · 14 years ago
  42. c3c2408 The functions that return the static ConstString names of the settings should be static by Jim Ingham · 14 years ago
  43. 4eb0ef9 Minor tweak to add expected matching strings. by Johnny Chen · 14 years ago
  44. a773049 Added a test case which exercises some thread and frame APIs to break only when by Johnny Chen · 14 years ago
  45. dbe0d4a Added an objective C test that creates some NSString, NSArray and NSDictionary by Greg Clayton · 14 years ago
  46. 236c1c7 Remove the Flags member in lldb_private::Module in favor of bitfield boolean by Greg Clayton · 14 years ago
  47. 6aae60d The settings mutexes get used recursively, and deadlock if they are normal mutexes. by Jim Ingham · 14 years ago
  48. 2e2db53 Fixed a bug where we did not handle constant by Sean Callanan · 14 years ago
  49. c1ad82e by Caroline Tice · 14 years ago
  50. b47e69e Stop line entries from dumping full paths when addresses dump themselves as symbol contexts. by Greg Clayton · 14 years ago
  51. 92aa666 Improved function lookup to avoid conflicts between by Sean Callanan · 14 years ago
  52. 059ce9b Updated the x86_64 and i386 ABIs to chain RBP by Sean Callanan · 14 years ago
  53. 7ac83bd Move common code from GetSettingsController in Process & Debugger into static functions by Jim Ingham · 14 years ago
  54. 8f3b21d Patch from Jay Cornwall that modifies the LLDB "Host" layer to reuse more by Greg Clayton · 14 years ago
  55. c6fe11f The output for term-width setting has single quotes around the (int) value. by Johnny Chen · 14 years ago
  56. 8709723 Fix various minor bugs in the Settings stuff. by Caroline Tice · 14 years ago
  57. 072a32a Converted TestUnsignedTypespy and TestStructTypes.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  58. 301f2b1 Converted TestSTL.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  59. ae1446c Converted TestSetValues.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  60. 0ad086f Added Symtab::FindSymbolByID() in preparation for enabling the minimal by Greg Clayton · 14 years ago
  61. e0428c3 Added a test case for setting term-width, too. by Johnny Chen · 14 years ago
  62. 24dd18a Added comments. by Johnny Chen · 14 years ago
  63. 6c88f89 Added a simple test case for the "settings set" command for instance variable 'prompt'. by Johnny Chen · 14 years ago
  64. 40daa87 LLDB command "set term-width 0" needs to be changed to "settings set term-width 0" by Johnny Chen · 14 years ago
  65. 69aa5d9 Added more API to lldb::SBBlock to allow getting the block by Greg Clayton · 14 years ago
  66. e602d81 Fixed an error that could occur during disassembly that could cause a function name to be printed before the first _and_ the second instruction of disassembly when there are two symbols -- one debug symbol and one linker symbol. by Greg Clayton · 14 years ago
  67. e40e764 Fixed a buffer overrun error that could occur every time the program was run due to a "sprintf" with a destination string that was too short. by Greg Clayton · 14 years ago
  68. 72f8a3c Fixed an error where a random string would get executed after a recent fix that checked if the window column size was zero was added on the lldb driver startup. by Greg Clayton · 14 years ago
  69. 93230a3 Adding some docs on how to use lldb. First cut... by Jim Ingham · 14 years ago
  70. 6e4c5ce by Caroline Tice · 14 years ago
  71. 821a8c4 Added a default build phase at the beginning of test_load_unload() test case. by Johnny Chen · 14 years ago
  72. ff4e1d8 Marked test_process_launch_for_universal() test case as requiring 'darwin' and 'i386' by Johnny Chen · 14 years ago
  73. e33bdd3 Improved name demangling performance by 20% on darwin. by Greg Clayton · 14 years ago
  74. b064e89 Converted TestGlobalVariables.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  75. d9ed552 Converted TestFunctionTypes.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  76. 9aaaf4a Converted TestEnumTypes.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago
  77. f04d661 Cleaned up step logging a bit. by Greg Clayton · 14 years ago
  78. c5b15db Fixed an lldb infrastructure bug, where the debugger should reaaly update its by Johnny Chen · 14 years ago
  79. b4d1d33 Added some extra logging to track asynchronous packet activity. by Greg Clayton · 14 years ago
  80. 1a67946 Fixed a case where we might be able to acquire a mutex with a try lock and by Greg Clayton · 14 years ago
  81. 439ab61 Delete the vestigal "select", "info" and "delete" commands. by Jim Ingham · 14 years ago
  82. 2653be9 Pacify operator precedence warnings. No functionality change because eLaunchFlagDisableASLR happens to be 1. by Benjamin Kramer · 14 years ago
  83. 5205f0b Fixed the StackFrame to correctly resolve the StackID's SymbolContextScope. by Greg Clayton · 14 years ago
  84. 59ea45f Added comments regarding the two mechanisms of process cleanup to lldbtest.py. by Johnny Chen · 14 years ago
  85. 72b7158 Added a new bool parameter to many of the DumpStopContext() methods that by Greg Clayton · 14 years ago
  86. 72a1434 Moved the process cleanup of Script-Bridge-based APIs into TestBase.tearDown() by Johnny Chen · 14 years ago
  87. 8b09b32 (query-replace "variable list" "frame variable") by Johnny Chen · 14 years ago
  88. 17dae08 StackFrame objects now own ValueObjects for any frame variables (locals, args, by Greg Clayton · 14 years ago
  89. 0526233 Added code to run pointer validation checks in by Sean Callanan · 14 years ago
  90. 537926c Move "variable list" to "frame variable" by Jim Ingham · 14 years ago
  91. f083e68 Fixed comment. by Johnny Chen · 14 years ago
  92. c202b49 Put the little dances done after SBTarget.LaunchProcess() into the base class. by Johnny Chen · 14 years ago
  93. 1c42e86 Changed the test case class names to be noun-like instead of verb-like. by Johnny Chen · 14 years ago
  94. deb0fd2 Stream::Printf doesn't add a newline, so it needs to be added to all the error messages in CommandObjectExpression::EvaluateExpression. by Jim Ingham · 14 years ago
  95. b36218d Fixed a comment. by Sean Callanan · 14 years ago
  96. f18d91c Added support for dynamic sanity checking in by Sean Callanan · 14 years ago
  97. acb708d Updated to add plugins directory to PYTHONPATH. by Johnny Chen · 14 years ago
  98. 21f3341 Avoid killing the inferior process twice by passing a setCookie=False keyword by Johnny Chen · 14 years ago
  99. bddb789 Don't re-look up the symbol in ResolveSymbolContextForAddress. by Jim Ingham · 14 years ago
  100. 8521c58 Converted TestDeadStrip.py to Dsym/Dwarf combination. by Johnny Chen · 14 years ago