Skip to content
  1. Jul 22, 2011
    • Johnny Chen's avatar
      Add BasicFormatter and ChildVisitingFormatter utility classes to the lldbutil.py module · 989b7efd
      Johnny Chen authored
      which provide some convenient ways to print an SBValue object.  Use that in TestValueAPI.py
      to print the 'days_of_week' char* array variable.
      
      For an example:
      
      cvf = lldbutil.ChildVisitingFormatter(indent=2)
      print cvf.format(days_of_week)
      
      produces:
      
      (const char *[7]) days_of_week = 0x00000001026a5060 (location)
        (const char *) [0] = "Sunday"
        (const char *) [1] = "Monday"
        (const char *) [2] = "Tuesday"
        (const char *) [3] = "Wednesday"
        (const char *) [4] = "Thursday"
        (const char *) [5] = "Friday"
        (const char *) [6] = "Saturday"
      
      llvm-svn: 135736
      989b7efd
    • Enrico Granata's avatar
      when typing a summary string you can use the %S symbol to explicitly indicate... · d55546b2
      Enrico Granata authored
      when typing a summary string you can use the %S symbol to explicitly indicate that you want the summary to be used to print the target object
       (e.g. ${var%S}). this might already be the default if your variable is of an aggregate type
      new feature: synthetic filters. you can restrict the number of children for your variables to only a meaningful subset
       - the restricted list of children obeys the typical rules (e.g. summaries prevail over children)
       - one-line summaries show only the filtered (synthetic) children, if you type an expanded summary string, or you use Python scripts, all the real children are accessible
       - to provide a synthetic children list use the "type synth add" command, as in:
         type synth add foo_type --child varA --child varB[0] --child varC->packet->flags[1-4]
         (you can use ., ->, single-item array operator [N] and bitfield operator [N-M]; array slice access is not supported, giving simplified names to expression paths is not supported)
       - a new -S option to frame variable and target variable lets you override synthetic children and instead show real ones
      
      llvm-svn: 135731
      d55546b2
    • Johnny Chen's avatar
      6cbb8d68
  2. Jul 21, 2011
  3. Jul 20, 2011
  4. Jul 19, 2011
    • Johnny Chen's avatar
      Rearrange the %include SWIG directives into two groups. One is the pure .h... · 0f519684
      Johnny Chen authored
      Rearrange the %include SWIG directives into two groups.  One is the pure .h headers and the other is the .i interface files.
      The objective is to move the .h header into .i interface file eventually.
      
      llvm-svn: 135526
      0f519684
    • Enrico Granata's avatar
      Applied Matt Johnson patch to ValueObject and FormatManager · 9df29e32
      Enrico Granata authored
      llvm-svn: 135523
      9df29e32
    • Greg Clayton's avatar
      Avoid calling accessor function more than once when result is already in · 72c66dde
      Greg Clayton authored
      a local.
      
      llvm-svn: 135512
      72c66dde
    • Greg Clayton's avatar
      Added some more functionality to SocketAddress and modified · 9189b208
      Greg Clayton authored
      ConnectionFileDescriptor to use it.
      
      llvm-svn: 135511
      9189b208
    • Johnny Chen's avatar
      Patch by Matt Johnson to silence G++ warnings! · 4480530a
      Johnny Chen authored
      Used hand merge to apply the diffs.  I did not apply the diffs for FormatManager.h and
      the diffs for memberwise initialization for ValueObject.cpp because they changed since.
      I will ask my colleague to apply them later.
      
      llvm-svn: 135508
      4480530a
    • Johnny Chen's avatar
      Fix build error for StringSummaryFormat undefined symbols. · 8a4fc747
      Johnny Chen authored
      llvm-svn: 135503
      8a4fc747
    • Enrico Granata's avatar
      The implementation of categories is now synchronization safe · 20edcdbe
      Enrico Granata authored
      Code cleanup:
       - The Format Manager implementation is now split between two files: FormatClasses.{h|cpp} where the
         actual formatter classes (ValueFormat, SummaryFormat, ...) are implemented and
         FormatManager.{h|cpp} where the infrastructure classes (FormatNavigator, FormatManager, ...)
         are contained. The wrapper code always remains in Debugger.{h|cpp}
       - Several leftover fields, methods and comments from previous design choices have been removed
      type category subcommands (enable, disable, delete) now can take a list of category names as input
       - for type category enable, saying "enable A B C" is the same as saying
          enable C
          enable B
          enable A
         (the ordering is relevant in enabling categories, and it is expected that a user typing
          enable A B C wants to look into category A, then into B, then into C and not the other
          way round)
       - for the other two commands, the order is not really relevant (however, the same inverted ordering
         is used for consistency)
      
      llvm-svn: 135494
      20edcdbe
    • Greg Clayton's avatar
      Abstract "struct sockaddr", "struct sockaddr_in", "struct sockaddr_in6" and · ad440da3
      Greg Clayton authored
      "struct sockaddr_storage" into a new host class called SocketAddress. This
      will allow us to control the host specific implementations (such as how to
      get the length) into a single Host specific class.
      
      llvm-svn: 135488
      ad440da3
    • Greg Clayton's avatar
      Modified the LocateMacOSXFilesUsingDebugSymbols(...) function to locate · a63d08c9
      Greg Clayton authored
      an executable file if it is right next to a dSYM file that is found using
      DebugSymbols. The code also looks into a bundle if the dSYM file is right
      next to a bundle.
      
      Modified the MacOSX kernel dynamic loader plug-in to correctly set the load
      address for kext sections. This is a tad tricky because of how LLDB chooses
      to treat mach-o segments with no name. Also modified the loader to properly
      handle the older version 1 kext summary info.
      
      Fixed a crasher in the Mach-o object file parser when it is trying to set
      the section size correctly for dSYM sections.
      
      Added packet dumpers to the CommunicationKDP class. We now also properly 
      detect address byte sizes based on the cpu type and subtype that is provided.
      Added a read memory and read register support to CommunicationKDP. Added a
      ThreadKDP class that now uses subclasses of the RegisterContextDarwin_XXX for
      arm, i386 and x86_64. 
      
      Fixed some register numbering issues in the RegisterContextDarwin_arm class
      and added ARM GDB numbers to the ARM_GCC_Registers.h file.
      
      Change the RegisterContextMach_XXX classes over to subclassing their
      RegisterContextDarwin_XXX counterparts so we can share the mach register 
      contexts between the user and kernel plug-ins.
      
      llvm-svn: 135466
      a63d08c9
    • Enrico Granata's avatar
      Fixed a bug where deleting a regex summary would not immediately reflect in the variables display · 1490c6fd
      Enrico Granata authored
      The "systemwide summaries" feature has been removed and replaced with a more general and
      powerful mechanism.
      Categories:
       - summaries can now be grouped into buckets, called "categories" (it is expected that categories
         correspond to libraries and/or runtime environments)
       - to add a summary to a category, you can use the -w option to type summary add and give
         a category name (e.g. type summary add -f "foo" foo_t -w foo_category)
       - categories are by default disabled, which means LLDB will not look into them for summaries,
         to enable a category use "type category enable". once a category is enabled, LLDB will
         look into that category for summaries. the rules are quite trivial: every enabled category
         is searched for an exact match. if an exact match is nowhere to be found, any match is
         searched for in every enabled category (whether it involves cascading, going to base classes,
         ...). categories are searched into the order in which they were enabled (the most recently
         enabled category first, then the second most and so on..)
       - by default, most commands that deal with summaries, use a category named "default" if no
         explicit -w parameter is given (the observable behavior of LLDB should not change when
         categories are not explicitly used)
       - the systemwide summaries are now part of a "system" category
      
      llvm-svn: 135463
      1490c6fd
    • Johnny Chen's avatar
      Initialize the all important automatic variable 'lldb::ConnectionStatus status' before · 74549c82
      Johnny Chen authored
      invoking the Read(...) method to read in bytes.  This seems to fix the infinite looping
      I was seeing on SnowLeopard while running the test suite.
      
      llvm-svn: 135461
      74549c82
    • Johnny Chen's avatar
      349f0763
    • Johnny Chen's avatar
      f74cb50c
Loading