1. 2837b76 Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). by Jim Ingham · 15 years ago
  2. 969ed3d by Caroline Tice · 15 years ago
  3. 68ebae6 Added the ability to specify dumping options (show types, show location, by Greg Clayton · 15 years ago
  4. 7260f62 Centralized a lot of the status information for processes, by Greg Clayton · 15 years ago
  5. 78a685a Add support for "dynamic values" for C++ classes. This currently only works for "frame var" and for the by Jim Ingham · 15 years ago
  6. f6b8b58 Added two new classes for command options: by Greg Clayton · 15 years ago
  7. 8b82f08 Moved the execution context that was in the Debugger into by Greg Clayton · 15 years ago
  8. f16066e Really fix the test suite crasher this time. by Johnny Chen · 15 years ago
  9. eb0103f Modified the ArchSpec to take an optional "Platform *" when setting the triple. by Greg Clayton · 15 years ago
  10. 6035b67 Convert ValueObject to explicitly maintain the Execution Context in which they were created, and then use that when they update themselves. That means all the ValueObject evaluate me type functions that used to require a Frame object now do not. I didn't remove the SBValue API's that take this now useless frame, but I added ones that don't require the frame, and marked the SBFrame taking ones as deprecated. by Jim Ingham · 15 years ago
  11. 32e0a75 Many improvements to the Platform base class and subclasses. The base Platform by Greg Clayton · 15 years ago
  12. e0d378b Fixed the LLDB build so that we can have private types, private enums and by Greg Clayton · 15 years ago
  13. 92adcac Implemented a major overhaul of the way variables are handled by Sean Callanan · 15 years ago
  14. 8b2fe6d Modified LLDB expressions to not have to JIT and run code just to see variable by Greg Clayton · 15 years ago
  15. f48169b Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process. This required a bunch of renaming. by Jim Ingham · 15 years ago
  16. efed613 Add the ability to catch and do the right thing with Interrupts (often control-c) by Caroline Tice · 15 years ago
  17. 399f1ca Added the equivalent of gdb's "unwind-on-signal" to the expression command, and a parameter to control it in ClangUserExpression, and on down to ClangFunction. by Jim Ingham · 15 years ago
  18. 8f343b0 Added support for loading and unloading shared libraries. This was done by by Greg Clayton · 15 years ago
  19. 322f529 Added a user-settable variable, 'target.expr-prefix', by Sean Callanan · 15 years ago
  20. 8f92f0a Fixed an expression parsing issue where if you were stopped somewhere without by Greg Clayton · 15 years ago
  21. 32c4085 Restored the ability to set the format for expressions after changing the expression results over to ValueObjectSP objects. by Greg Clayton · 15 years ago
  22. b71f384 Added the notion that a value object can be constant by adding: by Greg Clayton · 15 years ago
  23. 0184f01 Moved expression evaluation from CommandObjectExpression into by Greg Clayton · 15 years ago
  24. 1d3afba Added a new ValueObject type that will be used to freeze dry expression by Greg Clayton · 15 years ago
  25. 405fe67 Modify existing commands with arguments to use the new argument mechanism by Caroline Tice · 15 years ago
  26. deaab22 by Caroline Tice · 15 years ago
  27. f7edb1c Fixed indentation. by Johnny Chen · 15 years ago
  28. a9a764e Fixed 'expr' help message. by Johnny Chen · 15 years ago
  29. 6c68fb4 Add "-o" option to "expression" which prints the object description if available. by Jim Ingham · 15 years ago
  30. a701509 Fixed the way set/show variables were being accessed to being natively by Greg Clayton · 15 years ago
  31. 9e6ed53 Bugfixes to the expression parser. Fixes include: by Sean Callanan · 15 years ago
  32. 3f4c09c by Caroline Tice · 15 years ago
  33. 91b9383 Stream::Printf doesn't add a newline, so it needs to be added to all the error messages in CommandObjectExpression::EvaluateExpression. by Jim Ingham · 15 years ago
  34. 6961e87 Added support for dynamic sanity checking in by Sean Callanan · 15 years ago
  35. 1a8d409 This is a major refactoring of the expression parser. by Sean Callanan · 15 years ago
  36. d0ef0ef First step of refactoring variable handling in the by Sean Callanan · 15 years ago
  37. fcd43b7 Modified CommandObjectExpression::EvaluateExpression() so that it takes an by Johnny Chen · 15 years ago
  38. b269b6e Documented ClangExpression and made parts of it by Sean Callanan · 15 years ago
  39. d1e5b43 Added automatically generated result variables for each by Sean Callanan · 15 years ago
  40. 2235f32 Added support for persistent variables to the by Sean Callanan · 15 years ago
  41. fc16cc0 Removed the -i option from the expr command, and by Sean Callanan · 15 years ago
  42. 4b4b5fc Fixed expression result printing to have the expression result type be in by Greg Clayton · 15 years ago
  43. 289e07b Added logging: by Sean Callanan · 15 years ago
  44. ebb84b2 Fix a typo. by Stephen Wilson · 15 years ago
  45. 6dde30e Added extensive logging of the code that is actually going by Sean Callanan · 15 years ago
  46. ebf7707 Modified TaggedASTType to inherit from ClangASTType by Sean Callanan · 15 years ago
  47. e1a916a Change over to using the definitions for mach-o types and defines to the by Greg Clayton · 15 years ago
  48. 1d18066 Added functionality to dematerialize values that were by Sean Callanan · 15 years ago
  49. ea22d42 Wrote the code that looks at a context to see by Sean Callanan · 15 years ago
  50. 7618f4e Fixes to the IR generator in the expression parser by Sean Callanan · 15 years ago
  51. 2ab712f2 Added the skeleton of an IR transformer that will by Sean Callanan · 15 years ago
  52. 116be53 Added a SemaConsumer that transforms the ASTs for by Sean Callanan · 15 years ago
  53. 0c5cd90 Added function name types to allow us to set breakpoints by name more by Greg Clayton · 15 years ago
  54. 16ad5fa Extensive code cleanup of the expression command. by Sean Callanan · 15 years ago
  55. 1d389c4 Added the temporary -i option to expr, which by Sean Callanan · 15 years ago
  56. 6611103 Very large changes that were needed in order to allow multiple connections by Greg Clayton · 15 years ago
  57. 40af72e Move Args.{cpp,h} and Options.{cpp,h} to Interpreter where they really belong. by Jim Ingham · 15 years ago
  58. 8651121 Change the Options parser over to use a mask rather than an ordinal for option sets. by Jim Ingham · 15 years ago
  59. 30fdc8d Initial checkin of lldb code from internal Apple repo. by Chris Lattner · 15 years ago