Skip to content
  1. Aug 23, 2011
  2. Aug 22, 2011
    • Jim Ingham's avatar
      Don't let Python write its .pyc files, that's not really polite... · 586b0bd8
      Jim Ingham authored
      llvm-svn: 138262
      586b0bd8
    • Enrico Granata's avatar
      Code cleanup and refactoring (round 4): · 1d887499
      Enrico Granata authored
       - FormatCategories now are directly mapped by ConstString objects instead of going through
         const char* -> ConstString -> const char*
       - FormatCategory callback does not pass category name anymore. This is not necessary because
         FormatCategory objects themselves hold their name as a member variable
      
      llvm-svn: 138254
      1d887499
    • Enrico Granata's avatar
      - Support for Python namespaces: · def5391a
      Enrico Granata authored
        If you have a Python module foo, in order to use its contained objects in LLDB you do not need to use
        'from foo import *'. You can use 'import foo', and then refer to items in foo as 'foo.bar', and LLDB
        will know how to resolve bar as a member of foo.
        Accordingly, GNU libstdc++ formatters have been moved from the global namespace to gnu_libstdcpp and a few
        test cases are also updated to reflect the new convention. Python docs suggest using a plain 'import' en lieu of
        'from-import'.
      
      llvm-svn: 138244
      def5391a
    • Greg Clayton's avatar
      Added a new plug-in type: lldb_private::OperatingSystem. The operating system · 56d9a1b3
      Greg Clayton authored
      plug-ins are add on plug-ins for the lldb_private::Process class that can add
      thread contexts that are read from memory. It is common in kernels to have
      a lot of threads that are not currently executing on any cores (JTAG debugging
      also follows this sort of thing) and are context switched out whose state is
      stored in memory data structures. Clients can now subclass the OperatingSystem
      plug-ins and then make sure their Create functions correcltly only enable 
      themselves when the right binary/target triple are being debugged. The 
      operating system plug-ins get a chance to attach themselves to processes just
      after launching or attaching and are given a lldb_private::Process object 
      pointer which can be inspected to see if the main executable, target triple,
      or any shared  libraries match a case where the OS plug-in should be used.
      Currently the OS plug-ins can create new threads, define the register contexts
      for these threads (which can all be different if desired), and populate and
      manage the thread info (stop reason, registers in the register context) as
      the debug session goes on.
      
      llvm-svn: 138228
      56d9a1b3
  3. Aug 20, 2011
  4. Aug 19, 2011
    • Enrico Granata's avatar
      Taking care of an issue with using lldb_private types in... · 58ad3344
      Enrico Granata authored
      Taking care of an issue with using lldb_private types in SBCommandInterpreter.cpp ; Making NSString test case work on Snow Leopard ; Removing an unused variable warning
      
      llvm-svn: 138105
      58ad3344
    • Enrico Granata's avatar
      - Now using ${var} as the summary for an aggregate type will produce... · d64d0bc0
      Enrico Granata authored
      - Now using ${var} as the summary for an aggregate type will produce "name-of-type @ object-location" instead of giving an error
        e.g. you may get "foo_class @ 0x123456" when typing "type summary add -f ${var} foo_class"
      - Added a new special formatting token %T for summaries. This shows the type of the object.
        Using it, the new "type @ location" summary could be manually generated by writing ${var%T} @ ${var%L}
      - Bits and pieces required to support "frame variable array[n-m]"
        The feature is not enabled yet because some additional design and support code is required, but the basics
        are getting there
      - Fixed a potential issue where a ValueObjectSyntheticFilter was not holding on to its SyntheticChildrenSP
        Because of the way VOSF are being built now, this has never been an actual issue, but it is still sensible for
        a VOSF to hold on to the SyntheticChildrenSP as well as to its FrontEnd
      
      llvm-svn: 138080
      d64d0bc0
    • Johnny Chen's avatar
      Revert the workaround patch in the last check in. With the local patch to... · aeaf436e
      Johnny Chen authored
      Revert the workaround patch in the last check in.  With the local patch to LLVM, it is no longer necessary.
      
      llvm-svn: 138046
      aeaf436e
    • Sean Callanan's avatar
      Refined the rollback to LLVM, picking up a newer · a87bee84
      Sean Callanan authored
      revision and adding a patch that fixes an AsmParser
      crash on ARM.
      
      One feature that we unfortunately lost (for the
      moment!) is the ability to cast unknown code symbols
      to arbitrary function types and put the resulting
      function pointer in a result variable.  This feature
      will be back, though.
      
      llvm-svn: 138036
      a87bee84
    • Enrico Granata's avatar
      Third round of code cleanups: · 02b6676d
      Enrico Granata authored
       - reorganizing the PTS (Partial Template Specializations) in FormatManager.h
       - applied a patch by Filipe Cabecinhas to make LLDB compile with GCC
      Functional changes:
       - fixed an issue where command type summary add for type "struct Foo" would not match any types.
         currently, "struct" will be stripped off and type "Foo" will be matched.
         similar behavior occurs for class, enum and union specifiers.
      
      llvm-svn: 138020
      02b6676d
    • Johnny Chen's avatar
      Apply some workaround for known crashers. · f6cb9bcf
      Johnny Chen authored
      llvm-svn: 137991
      f6cb9bcf
  5. Aug 18, 2011
    • Enrico Granata's avatar
      Second round of code cleanups: · 85933ed4
      Enrico Granata authored
       - reorganizing classes layout to have public part first
         Typedefs that we want to keep private, but must be defined for some public code to work correctly are an exception
       - avoiding methods in the form T foo() { code; } all on one-line
       - moving method implementations from .h to .cpp whenever feasible
         Templatized code is an exception and so are very small methods
       - generally, adhering to coding conventions followed project-wide
      Functional changes:
       - fixed an issue where using ${var} in a summary for an aggregate, and then displaying a pointer-to-aggregate would lead to no summary being displayed
         The issue was not a major one because all ${var} was meant to do in that context was display an error for invalid use of pointer
         Accordingly fixed test cases and added a new test case
      
      llvm-svn: 137944
      85933ed4
    • Jim Ingham's avatar
      Fix the "command alias" help string to make clear that the $<N> substitutions... · 81ded935
      Jim Ingham authored
      Fix the "command alias" help string to make clear that the $<N> substitutions should be whole words in the output command.
      
      llvm-svn: 137921
      81ded935
    • Enrico Granata's avatar
      First round of code cleanups: · c482a192
      Enrico Granata authored
       - all instances of "vobj" have been renamed to "valobj"
       - class Debugger::Formatting has been renamed to DataVisualization (defined in FormatManager.h/cpp)
         The interface to this class has not changed
       - FormatCategory now uses ConstString's as keys to the navigators instead of repeatedly casting
         from ConstString to const char* and back all the time
         Next step is making the same happen for categories themselves
       - category gnu-libstdc++ is defined in the constructor for a FormatManager
         The source code for it is defined in gnu_libstdcpp.py, drawn from examples/synthetic at compile time
         All references to previous 'osxcpp' name have been removed from both code and file names
      Functional changes:
       - the name of the option to use a summary string for 'type summary add' has changed from the previous --format-string
         to the new --summary-string. It is expected that the short option will change from -f to -s, and -s for --python-script
         will become -o
      
      llvm-svn: 137886
      c482a192
  6. Aug 17, 2011
    • Enrico Granata's avatar
      New category "gnu-libstdc++" provides summary for std::string and synthetic... · 217f91fc
      Enrico Granata authored
      New category "gnu-libstdc++" provides summary for std::string and synthetic children for types std::map, std::list and std::vector
       The category is enabled by default. If you run into issues with it, disable it and the previous behavior of LLDB is restored
       ** This is a temporary solution. The general solution to having formatters pulled in at startup should involve going through the Platform.
      Fixed an issue in type synthetic list where a category with synthetic providers in it was not shown if all the providers were regex-based
      
      llvm-svn: 137850
      217f91fc
    • Enrico Granata's avatar
      When defining a scripted command, it is possible to provide a docstring and... · 99f0b8f9
      Enrico Granata authored
      When defining a scripted command, it is possible to provide a docstring and that will be used as the help text for the command
       If no docstring is provided, a default help text is created
      LLDB will refuse to create scripted commands if the scripting language is anything but Python
      Some additional comments in AppleObjCRuntimeV2.cpp to describe the memory layout expected by the dynamic type lookup code
      
      llvm-svn: 137801
      99f0b8f9
    • Enrico Granata's avatar
      Changes to Python commands: · 223383ed
      Enrico Granata authored
       - They now have an SBCommandReturnObject instead of an SBStream as third argument
       - The class CommandObjectPythonFunction has been merged into CommandObjectCommands.cpp
       - The command to manage them is now:
        command script with subcommands add, list, delete, clear
         command alias is returned to its previous functionality
       - Python commands are now part of an user dictionary, instead of being seen as aliases
       
      
      llvm-svn: 137785
      223383ed
  7. Aug 16, 2011
  8. Aug 15, 2011
Loading