Skip to content
  1. Jul 07, 2011
    • Greg Clayton's avatar
      Added "target variable" command that allows introspection of global · 644247c1
      Greg Clayton authored
      variables prior to running your binary. Zero filled sections now get
      section data correctly filled with zeroes when Target::ReadMemory
      reads from the object file section data.
      
      Added new option groups and option values for file lists. I still need
      to hook up all of the options to "target variable" to allow more complete
      introspection by file and shlib.
      
      Added the ability for ValueObjectVariable objects to be created with
      only the target as the execution context. This allows them to be read
      from the object files through Target::ReadMemory(...). 
      
      Added a "virtual Module * GetModule()" function to the ValueObject
      class. By default it will look to the parent variable object and
      return its module. The module is needed when we have global variables
      that have file addresses (virtual addresses that are specific to
      module object files) and in turn allows global variables to be displayed
      prior to running.
      
      Removed all of the unused proxy object support that bit rotted in 
      lldb_private::Value.
      
      Replaced a lot of places that used "FileSpec::Compare (lhs, rhs) == 0" code
      with the more efficient "FileSpec::Equal (lhs, rhs)".
      
      Improved logging in GDB remote plug-in.
      
      llvm-svn: 134579
      644247c1
    • Enrico Granata's avatar
      new detailed descriptions for type summary add and type format add · 82a7d983
      Enrico Granata authored
      some changes to the help system code for better display of long help text
      -p and -r flags now also work for type format add
      
      llvm-svn: 134574
      82a7d983
  2. Jul 06, 2011
    • Enrico Granata's avatar
      bug fix in summary strings: · a7187d00
      Enrico Granata authored
      - ${*var[].something} was not working as expected
      options -p and -r now also work for type format add
      
      llvm-svn: 134523
      a7187d00
    • Greg Clayton's avatar
      Fixed an issue that was causing us to crash when evaluating expressions for · dd0649bc
      Greg Clayton authored
      objective C or C++ methods when "self" or "this" were in scope, but had 
      invalid locations in a DWARF location list. The lack of a valid value caused
      us to use an invalid type value and then we tried to import that invalid 
      value and we would crash.
      
      llvm-svn: 134518
      dd0649bc
    • Jim Ingham's avatar
      Set the EvaluationPoint's m_thread_id to the RIGHT invalid define... · 89b6109b
      Jim Ingham authored
      llvm-svn: 134505
      89b6109b
    • Greg Clayton's avatar
      Made the string representation for a SBValue return what "frame variable" · 262f80df
      Greg Clayton authored
      would return instead of a less than helpful "name: '%s'" description.
      
      Make sure that when we ask for the error from a ValueObject object we
      first update the value if needed.
      
      Cleaned up some SB functions to use internal functions and not re-call
      through the public API when possible.
      
      llvm-svn: 134497
      262f80df
    • Enrico Granata's avatar
      Fixed some format names · e443ba73
      Enrico Granata authored
      llvm-svn: 134492
      e443ba73
    • Greg Clayton's avatar
      Fixed some issues with ARM backtraces by not processing any push/pop · 34132754
      Greg Clayton authored
      instructions if they are conditional. Also fixed issues where the PC wasn't
      getting bit zero stripped for ARM targets when a stack frame was thumb. We
      now properly call through the GetOpcodeLoadAddress() functions to make sure
      the addresses are properly stripped for any targets that may decorate up
      their addresses.
      
      We now don't pass the SIGSTOP signals along. We can revisit this soon, but
      currently this was interfering with debugging some older ARM targets that
      don't have vCont support in the GDB server.
      
      llvm-svn: 134461
      34132754
    • Enrico Granata's avatar
      new syntax for summary strings: · 9fc1944e
      Enrico Granata authored
       - ${*expr} now simply means to dereference expr before actually using it
       - bitfields, array ranges and pointer ranges now work in a (hopefully) more natural and language-compliant way
      a new class TypeHierarchyNavigator replicates the behavior of the FormatManager in going through type hierarchies
      when one-lining summary strings, children's summaries can be used as well as values
      
      llvm-svn: 134458
      9fc1944e
  3. Jul 03, 2011
  4. Jul 02, 2011
    • Greg Clayton's avatar
      Cleanup errors that come out of commands and make sure they all have newlines · 197bacff
      Greg Clayton authored
      _only_ in the resulting stream, not in the error objects (lldb_private::Error).
      lldb_private::Error objects should always just have an error string with no 
      terminating newline characters or periods.
      
      Fixed an issue with GDB remote packet detection that could end up deadlocking
      if a full packet wasn't received in one chunk. Also modified the packet 
      checking function to properly toss one or more bytes when it detects bad
      data. 
      
      llvm-svn: 134357
      197bacff
    • Peter Collingbourne's avatar
      Fix Linux build errors · f52f0502
      Peter Collingbourne authored
      llvm-svn: 134347
      f52f0502
    • Enrico Granata's avatar
      several improvements to "type summary": · 0a3958e0
      Enrico Granata authored
       - type names can now be regular expressions (exact matching is done first, and is faster)
       - integral (and floating) types can be printed as bitfields, i.e. ${var[low-high]} will extract bits low thru high of the value and print them
       - array subscripts are supported, both for arrays and for pointers. the syntax is ${*var[low-high]}, or ${*var[]} to print the whole array (the latter only works for statically sized arrays)
       - summary is now printed by default when a summary string references a variable. if that variable's type has no summary, value is printed instead. to force value, you can use %V as a format specifier
       - basic support for ObjectiveC:
        - ObjectiveC inheritance chains are now walked through
        - %@ can be specified as a summary format, to print the ObjectiveC runtime description for an object
       - some bug fixes
      
      llvm-svn: 134293
      0a3958e0
  5. Jun 30, 2011
    • Greg Clayton's avatar
      Centralize all of the type name code so that we always strip the leading · e3055942
      Greg Clayton authored
      "struct ", "class ", and "union " from the start of any type names that are
      extracted from clang QualType objects. I had to fix test suite cases that
      were expecting the struct/union/class prefix to be there.
      
      llvm-svn: 134132
      e3055942
    • Enrico Granata's avatar
      This commit adds a new top subcommand "summary" to command type named "type".... · 4becb37e
      Enrico Granata authored
      This commit adds a new top subcommand "summary" to command type named "type". Currently this command
      implements three commands:
      
      type summary add <format> <typename1> [<typename2> ...]
      type summary delete <typename1> [<typename2> ...]
      type summary list [<typename1> [<typename2>] ...]
      type summary clear
      
      This allows you to specify the default format that will be used to display
      summaries for variables, shown when you use "frame variable" or "expression", or the SBValue classes.
      
      Examples:
      type summary add "x = ${var.x}" Point
      
      type summary list
      
      type summary add --one-liner SimpleType
      
      llvm-svn: 134108
      4becb37e
    • Greg Clayton's avatar
      Added support for finding and global variables in the SBTarget and SBModule · dea8cb4f
      Greg Clayton authored
      level in the public API. 
      
      Also modified the ValueObject values to be able to display global variables
      without having a valid running process. The globals will read themselves from
      the object file section data if there is no process, and from the process if
      there is one.
      
      Also fixed an issue where modifications for dynamic types could cause child
      values of ValueObjects to not show up if the value was unable to evaluate
      itself (children of NULL pointer objects).
      
      llvm-svn: 134102
      dea8cb4f
  6. Jun 29, 2011
  7. Jun 28, 2011
    • Greg Clayton's avatar
      Remove the disassembly option: "eOptionShowCurrentLine" and replaced it with · b10d72f0
      Greg Clayton authored
      two:
      
      eOptionMarkPCSourceLine = (1u << 2), // Mark the source line that contains the current PC (mixed mode only)
      eOptionMarkPCAddress    = (1u << 3)  // Mark the disassembly line the contains the PC
      
      This allows mixed mode to show the line that contains the current PC, and it
      allows us to mark the PC address in the disassembly if desired. Having these
      be separate gives more control on the disassembly output. SBFrame::Disassemble()
      doesn't enable any of these options.
      
      llvm-svn: 134019
      b10d72f0
  8. Jun 25, 2011
  9. Jun 24, 2011
  10. Jun 23, 2011
    • Greg Clayton's avatar
      Centralized all of the format to c-string and to format character code inside · bb7f31fa
      Greg Clayton authored
      the FormatManager class. Modified the format arguments in any commands to be
      able to use a single character format, or a full format name, or a partial 
      format name if no full format names match.
      
      Modified any code that was displaying formats to use the new FormatManager
      calls so that our help text and errors never get out of date.
      
      Modified the display of the "type format list" command to be a bit more
      human readable by showing the format as a format string rather than the single
      character format char.
      
      llvm-svn: 133765
      bb7f31fa
    • Peter Collingbourne's avatar
      Fix header paths · 08405b69
      Peter Collingbourne authored
      llvm-svn: 133755
      08405b69
    • Charles Davis's avatar
      Fix typo spotted by Elias Pipping. · 40249155
      Charles Davis authored
      llvm-svn: 133744
      40249155
    • Greg Clayton's avatar
      Another patch from Enrico Granata. · f60f3752
      Greg Clayton authored
      Added a fix for where you might have already displayed something with a given
      type, then did a "type format add ...", then you display the type again. This
      patch will figure out that the format changed and allow us to display the
      type with the correct new format.
      
      llvm-svn: 133743
      f60f3752
    • Greg Clayton's avatar
      Committing type format code for Enrico Granata. · 4a33d318
      Greg Clayton authored
      This commit adds a new top level command named "type". Currently this command
      implements three commands:
      
      type format add <format> <typename1> [<typename2> ...]
      type format delete <typename1> [<typename2> ...]
      type format list [<typename1> [<typename2>] ...]
      
      This allows you to specify the default format that will be used to display
      types when you use "frame variable" or "expression", or the SBValue classes.
      
      Examples:
      
      // Format uint*_t as hex
      type format add x uint16_t uint32_t uint64_t
      
      // Format intptr_t as a pointer
      type format add p intptr_t
      
      The format characters are the same as "printf" for the most part with many
      additions. These format character specifiers are also used in many other 
      commands ("frame variable" for one). The current list of format characters
      include:
      
      a - char buffer
      b - binary
      B - boolean
      c - char
      C - printable char
      d - signed decimal
      e - float
      f - float
      g - float
      i - signed decimal
      I - complex integer
      o - octal
      O - OSType
      p - pointer
      s - c-string
      u - unsigned decimal
      x - hex
      X - complex float
      y - bytes
      Y - bytes with ASCII
      
      llvm-svn: 133728
      4a33d318
    • Charles Davis's avatar
      When installing the Python modules: · b1858901
      Charles Davis authored
      - Respect DESTDIR.
      - Use the realpath function on the path before prepending DESTDIR.
      - Don't depend on liblldb.{so,dylib} being installed already.
      - Don't put the DESTDIR into the _lldb.so symlink.
      
      Patch by Elias Pipping!
      
      llvm-svn: 133689
      b1858901
    • Greg Clayton's avatar
      084db10d
    • Peter Collingbourne's avatar
      Remove -MT options from SWIG invocation · 09aff6bc
      Peter Collingbourne authored
      SWIG on Darwin does not support -MT, and it only means that we lose
      the .d target, which doesn't seem to be used or needed.
      
      Pointed out by Charles Davis.
      
      llvm-svn: 133660
      09aff6bc
  11. Jun 22, 2011
Loading