Skip to content
  1. Oct 07, 2011
  2. Oct 06, 2011
  3. Oct 05, 2011
  4. Oct 01, 2011
    • Greg Clayton's avatar
      Cleaned up the the code that figures out the inlined stack frames given a · 1ed54f50
      Greg Clayton authored
      symbol context that represents an inlined function. This function has been
      renamed internally to:
      
      bool
      SymbolContext::GetParentOfInlinedScope (const Address &curr_frame_pc, 
                                              SymbolContext &next_frame_sc, 
                                              Address &next_frame_pc) const;
                                              
      And externally to:
      
      SBSymbolContext
      SBSymbolContext::GetParentOfInlinedScope (const SBAddress &curr_frame_pc, 
                                                SBAddress &parent_frame_addr) const;
      
      The correct blocks are now correctly calculated.
      
      Switched the stack backtracing engine (in StackFrameList) and the address
      context printing over to using the internal SymbolContext::GetParentOfInlinedScope(...) 
      so all inlined callstacks will match exactly.
      
      llvm-svn: 140910
      1ed54f50
  5. Sep 30, 2011
    • Greg Clayton's avatar
      Removed some commented out code from the DWARF parser. · 0bd4e1b8
      Greg Clayton authored
      Also reduce the size of the lldb_private::Symbol objects by removing the
      lldb_private::Function pointer that was in each symbol. Running Instruments
      has shown that when debugging large applications with DWARF in .o files that
      lldb_private::Symbol objects are one of the highest users of memory. No one
      was using the Symbol::GetFunction() call anyway.
      
      llvm-svn: 140881
      0bd4e1b8
    • Greg Clayton's avatar
      <rdar://problem/10212450> · 2bc22f83
      Greg Clayton authored
      Don't parse function types all the time, only parse them lazily.
      
      llvm-svn: 140842
      2bc22f83
    • Greg Clayton's avatar
      Fixed an issue where a lexical block or inlined function might have bad debug · 6c7f5619
      Greg Clayton authored
      information generated for it. Say we have a concrete function "foo" which
      has inlined function "a" which calls another inlined function "b":
      
          foo
      1   {
      2       {
                  a ()
      3           {
                      b ()
      4               {
                      
                      }
                  }
              }
          }
          
      Sometimes we see the compiler generate an address range in the DWARF for "foo"
      (block 1 above) as say [0x1000-0x1100). Then the range for "a" is something
      like [0x1050-0x1060) (note that it is correctly scoped within the "foo" 
      address range). And then we get "b" which is a child of "a", yet the debug
      info says it has a range of [0x1060-0x1080) (not contained within "a"). We now
      detect this issue when making our blocks and add an extra range to "a".
      
      Also added a new "lldb" logging category named "symbol" where we can find out
      about symbol file errors and warnings.
      
      llvm-svn: 140822
      6c7f5619
  6. Sep 29, 2011
  7. Sep 28, 2011
  8. Sep 27, 2011
  9. Sep 26, 2011
    • Greg Clayton's avatar
      Added more functionality to the public API to allow for better · 8f7180b1
      Greg Clayton authored
      symbolication. Also improved the SBInstruction API to allow
      access to the instruction opcode name, mnemonics, comment and
      instruction data.
      
      Added the ability to edit SBLineEntry objects (change the file,
      line and column), and also allow SBSymbolContext objects to be
      modified (set module, comp unit, function, block, line entry
      or symbol). 
      
      The SymbolContext and SBSymbolContext can now generate inlined
      call stack infomration for symbolication much easier using the
      SymbolContext::GetParentInlinedFrameInfo(...) and 
      SBSymbolContext::GetParentInlinedFrameInfo(...) methods.
      
      llvm-svn: 140518
      8f7180b1
  10. Sep 24, 2011
    • Greg Clayton's avatar
      Added the ability to get all section contents, or the section · d9dc52dc
      Greg Clayton authored
      contents starting at an offset (2 separate methods). This helps
      the scripting interface stay more natural by allowing both from
      Python.
      
      Added the ability to dump data with address annotations when
      call SBData::GetDescription().
      
      Hooked up the SBSection to the __repr__ so you can print section
      objects from within python.
      
      Improved the dumping of symbols from python.
      
      Fixed the .i interface references which were set to "Relative to this Group"
      which somehow included Jim's "lldb-clean" root directory in the path. The
      interfaces are now in a folder called "interfaces" withing the Xcode API
      subfolder.
      
      llvm-svn: 140451
      d9dc52dc
  11. Sep 23, 2011
  12. Sep 22, 2011
    • Greg Clayton's avatar
      Converted the lldb_private::Process over to use the intrusive · c14ee32d
      Greg Clayton authored
      shared pointers.
      
      Changed the ExecutionContext over to use shared pointers for
      the target, process, thread and frame since these objects can
      easily go away at any time and any object that was holding onto
      an ExecutionContext was running the risk of using a bad object.
      
      Now that the shared pointers for target, process, thread and
      frame are just a single pointer (they all use the instrusive
      shared pointers) the execution context is much safer and still
      the same size. 
      
      Made the shared pointers in the the ExecutionContext class protected
      and made accessors for all of the various ways to get at the pointers,
      references, and shared pointers.
      
      llvm-svn: 140298
      c14ee32d
  13. Sep 20, 2011
  14. Sep 18, 2011
    • Greg Clayton's avatar
      Don't put modules for .o files into the global shared module list. We · 762f7135
      Greg Clayton authored
      used to do this because we needed to find the shared pointer for a .o
      file when the .o file's module was needed in a SymbolContext since the
      module in a symbol context was a shared pointer. Now that we are using
      intrusive pointers we don't have this limitation anymore since any
      instrusive shared pointer can be made from a pointer to an object
      all on its own.
      
      Also switched over to having the Module and SymbolVendor use shared 
      pointers to their object files as had a leak on MacOSX when the 
      SymbolVendor's object file wasn't the same as the Module's (debug info
      in a stand along file (dSYM file)). Now everything will correctly clean
      itself up when the module goes away after an executable gets rebuilt.
      
      Now we correctly get rid of .o files that are used with the DWARF with 
      debug map executables on subsequent runs since the only shared pointer
      to the object files in from the DWARF symbol file debug map parser, and
      when the module gets replaced, it destroys to old one along with all .o 
      files. 
      
      Also added a small optimization when using BSD archives where we will
      remove old BSD containers from the shared list when they are outdated.
      
      llvm-svn: 140002
      762f7135
  15. Sep 17, 2011
    • Greg Clayton's avatar
      Removed the function: · a2eee184
      Greg Clayton authored
      	ModuleSP
      	Module::GetSP();
      
      Since we are now using intrusive ref counts, we can easily turn any
      pointer to a module into a shared pointer just by assigning it.
      	
      
      llvm-svn: 139984
      a2eee184
    • Greg Clayton's avatar
      Convert lldb::ModuleSP to use an instrusive ref counted pointer. · 747bcb03
      Greg Clayton authored
      We had some cases where getting the shared pointer for a module from
      the global module list was causing a performance issue when debugging
      with DWARF in .o files. Now that the module uses intrusive ref counts,
      we can easily convert any pointer to a shared pointer.
      
      llvm-svn: 139983
      747bcb03
  16. Sep 15, 2011
    • Sean Callanan's avatar
      This patch modifies the expression parser to allow it · 3bfdaa2a
      Sean Callanan authored
      to execute expressions even in the absence of a process.
      This allows expressions to run in situations where the
      target cannot run -- e.g., to perform calculations based
      on type information, or to inspect a binary's static
      data.
      
      This modification touches the following files:
      
      lldb-private-enumerations.h
        Introduce a new enum specifying the policy for
        processing an expression.  Some expressions should
        always be JITted, for example if they are functions
        that will be used over and over again.  Some
        expressions should always be interpreted, for
        example if the target is unsafe to run.  For most,
        it is acceptable to JIT them, but interpretation
        is preferable when possible.
      
      Target.[h,cpp]
        Have EvaluateExpression now accept the new enum.
      
      ClangExpressionDeclMap.[cpp,h]
        Add support for the IR interpreter and also make
        the ClangExpressionDeclMap more robust in the 
        absence of a process.
      
      ClangFunction.[cpp,h]
        Add support for the new enum.
      
      IRInterpreter.[cpp,h]
        New implementation.
      
      ClangUserExpression.[cpp,h]
        Add support for the new enum, and for running 
        expressions in the absence of a process.
      
      ClangExpression.h
        Remove references to the old DWARF-based method
        of evaluating expressions, because it has been
        superseded for now.
      
      ClangUtilityFunction.[cpp,h]
        Add support for the new enum.
      
      ClangExpressionParser.[cpp,h]
        Add support for the new enum, remove references
        to DWARF, and add support for checking whether
        the expression could be evaluated statically.
      
      IRForTarget.[h,cpp]
        Add support for the new enum, and add utility
        functions to support the interpreter.
      
      IRToDWARF.cpp
        Removed
      
      CommandObjectExpression.cpp
        Remove references to the obsolete -i option.
      
      Process.cpp 
        Modify calls to ClangUserExpression::Evaluate
        to pass the correct enum (for dlopen/dlclose)
      
      SBValue.cpp
        Add support for the new enum.
      
      SBFrame.cpp
        Add support for he new enum.
      
      BreakpointOptions.cpp
        Add support for the new enum.
      
      llvm-svn: 139772
      3bfdaa2a
    • Jason Molenda's avatar
      · 995cd3a5
      Jason Molenda authored
      Have the FuncUnwinder object request & provide an architecture-defined
      UnwindPlan for unwinding from the first instruction of an otherwise
      unknown function call (GetUnwindPlanArchitectureDefaultAtFunctionEntry()).
      
      Update RegisterContextLLDB::GetFullUnwindPlanForFrame() to detect the
      case of a frame 0 at address 0x0 which indicates that we jumped through
      a NULL function pointer.  Use the ABI's FunctionEntryUnwindPlan to
      find the caller frame.
      
      These changes make it so lldb can identify the calling frame correctly
      in code like
      
      int main ()
      {
        void (*f)(void) = 0;
        f();
      }
      
      llvm-svn: 139760
      995cd3a5
  17. Sep 11, 2011
  18. Sep 10, 2011
  19. Sep 06, 2011
    • Enrico Granata's avatar
      Redesign of the interaction between Python and frozen objects: · 9128ee2f
      Enrico Granata authored
       - introduced two new classes ValueObjectConstResultChild and ValueObjectConstResultImpl: the first one is a ValueObjectChild obtained from
         a ValueObjectConstResult, the second is a common implementation backend for VOCR and VOCRCh of method calls meant to read through pointers stored
         in frozen objects ; now such reads transparently move from host to target as required
       - as a consequence of the above, removed code that made target-memory copies of expression results in several places throughout LLDB, and also
         removed code that enabled to recognize an expression result VO as such
       - introduced a new GetPointeeData() method in ValueObject that lets you read a given amount of objects of type T from a VO
         representing a T* or T[], and doing dereferences transparently
         in private layer it returns a DataExtractor ; in public layer it returns an instance of a newly created lldb::SBData
       - as GetPointeeData() does the right thing for both frozen and non-frozen ValueObject's, reimplemented ReadPointedString() to use it
         en lieu of doing the raw read itself
       - introduced a new GetData() method in ValueObject that lets you get a copy of the data that backs the ValueObject (for pointers,
         this returns the address without any previous dereferencing steps ; for arrays it actually reads the whole chunk of memory)
         in public layer this returns an SBData, just like GetPointeeData()
       - introduced a new CreateValueFromData() method in SBValue that lets you create a new SBValue from a chunk of data wrapped in an SBData
         the limitation to remember for this kind of SBValue is that they have no address: extracting the address-of for these objects (with any
         of GetAddress(), GetLoadAddress() and AddressOf()) will return invalid values
       - added several tests to check that "p"-ing objects (STL classes, char* and char[]) will do the right thing
      Solved a bug where global pointers to global variables were not dereferenced correctly for display
      New target setting "max-string-summary-length" gives the maximum number of characters to show in a string when summarizing it, instead of the hardcoded 128
      Solved a bug where the summary for char[] and char* would not be shown if the ValueObject's were dumped via the "p" command
      Removed m_pointers_point_to_load_addrs from ValueObject. Introduced a new m_address_type_of_children, which each ValueObject can set to tell the address type
       of any pointers and/or references it creates. In the current codebase, this is load address most of the time (the only notable exception being file
       addresses that generate file address children UNLESS we have a live process)
      Updated help text for summary-string
      Fixed an issue in STL formatters where std::stlcontainer::iterator would match the container's synthetic children providers
      Edited the syntax and help for some commands to have proper argument types
      
      llvm-svn: 139160
      9128ee2f
  20. Sep 02, 2011
    • Greg Clayton's avatar
      Added the ability for DWARF locations to use the ABI plug-ins to resolve · afacd14b
      Greg Clayton authored
      register names when dumping variable locations and location lists. Also did
      some cleanup where "int" types were being used for "lldb::RegisterKind"
      values.
      
      llvm-svn: 138988
      afacd14b
    • Greg Clayton's avatar
      Added support for accessing and loading our new .debug_names and .debug_types · f9eec20b
      Greg Clayton authored
      DWARF accelerator table sections to the DWARF parser. These sections are similar
      to the .debug_pubnames and .debug_pubtypes, but they are designed to be hash tables
      that are saved to disc in a way that the sections can just be loaded into memory
      and used without any work on the debugger side. The .debug_pubnames and .debug_pubtypes
      sections are not ordered, contain a copy of the name in the section itself which
      makes these sections quite large, they only include publicly exported names (so no
      static functions, no types defined inside functions), many compilers put different
      information in them making them very unreliable so most debugger ignore these sections
      and parse the DWARF on their own. The tables must also be parsed and sorted in order 
      to be used effectively. The new sections can be quickly loaded and very efficiently be used 
      to do name to DIE lookups with very little up front work. The format of these new
      sections will be changing while we work out the bugs, but we hope to have really 
      fast name to DIE lookups soon.
      
      llvm-svn: 138979
      f9eec20b
  21. Aug 25, 2011
  22. Aug 19, 2011
    • 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
  23. Aug 16, 2011
  24. Aug 15, 2011
  25. Aug 12, 2011
  26. Aug 10, 2011
    • Greg Clayton's avatar
      While tracking down memory consumption issue a few things were needed: the · 3418c857
      Greg Clayton authored
      ability to dump more information about modules in "target modules list". We
      can now dump the shared pointer reference count for modules, the pointer to
      the module itself (in case performance tools can help track down who has
      references to said pointer), and the modification time.
      
      Added "target delete [target-idx ...]" to be able to delete targets when they
      are no longer needed. This will help track down memory usage issues and help 
      to resolve when module ref counts keep getting incremented. If the command gets
      no arguments, the currently selected target will be deleted. If any arguments 
      are given, they must all be valid target indexes (use the "target list" 
      command to get the current target indexes).
      
      Took care of a bunch of "no newline at end of file" warnings.
      
      TimeValue objects can now dump their time to a lldb_private::Stream object.
      
      Modified the "target modules list --global" command to not error out if there
      are no targets since it doesn't require a target.
      
      Fixed an issue in the MacOSX DYLD dynamic loader plug-in where if a shared 
      library was updated on disk, we would keep using the older one, even if it was
      updated.
      
      Don't allow the ModuleList::GetSharedModule(...) to return an empty module.
      Previously we could specify a valid path on disc to a module, and specify an
      architecture that wasn't contained in that module and get a shared pointer to
      a module that wouldn't be able to return an object file or a symbol file. We
      now make sure an object file can be extracted prior to adding the shared pointer
      to the module to get added to the shared list.
      
      llvm-svn: 137196
      3418c857
    • Sean Callanan's avatar
      Fixed the type code to print "<invalid>" for NULL · 1c49954b
      Sean Callanan authored
      types instead of letting Clang crash.
      
      llvm-svn: 137167
      1c49954b
  27. Aug 09, 2011
    • Enrico Granata's avatar
      Basic support for reading synthetic children by index: · 27b625e1
      Enrico Granata authored
       if your datatype provides synthetic children, "frame variable object[index]" should now do the right thing
       in cases where the above syntax would have been rejected before, i.e.
        object is not a pointer nor an array (frame variable ignores potential overload of [])
        object is a pointer to an Objective-C class (which cannot be dereferenced)
       expression will still run operator[] if available and complain if it cannot do so
       synthetic children by name do not work yet
      
      llvm-svn: 137097
      27b625e1
Loading