Skip to content
  1. Dec 22, 2011
  2. Dec 21, 2011
    • Sean Callanan's avatar
      The "desired result type" code in the expression · 20bb3aa5
      Sean Callanan authored
      parser has hitherto been an implementation waiting
      for a use.  I have now tied the '-o' option for
      the expression command -- which indicates that the
      result is an Objective-C object and needs to be
      printed -- to the ExpressionParser, which
      communicates the desired type to Clang.
      
      Now, if the result of an expression is determined
      by an Objective-C method call for which there is
      no type information, that result is implicitly
      cast to id if and only if the -o option is passed
      to the expression command.  (Otherwise if there
      is no explicit cast Clang will issue an error.
      This behavior is identical to what happened before
      r146756.)
      
      Also added a testcase for -o enabled and disabled.
      
      llvm-svn: 147099
      20bb3aa5
  3. Dec 17, 2011
    • Jim Ingham's avatar
      Add the ability to capture the return value in a thread's stop info, and print it · 73ca05a2
      Jim Ingham authored
      as part of the thread format output.
      Currently this is only done for the ThreadPlanStepOut.
      Add a convenience API ABI::GetReturnValueObject.
      Change the ValueObject::EvaluationPoint to BE an ExecutionContextScope, rather than
      trying to hand out one of its subsidiary object's pointers.  That way this will always
      be good.
      
      llvm-svn: 146806
      73ca05a2
  4. Dec 15, 2011
    • Greg Clayton's avatar
      Expose new read memory fucntion through python in SBProcess: · e91b7957
      Greg Clayton authored
          size_t
          SBProcess::ReadCStringFromMemory (addr_t addr, void *buf, size_t size, lldb::SBError &error);
      
          uint64_t
          SBProcess::ReadUnsignedFromMemory (addr_t addr, uint32_t byte_size, lldb::SBError &error);
      
          lldb::addr_t
          SBProcess::ReadPointerFromMemory (addr_t addr, lldb::SBError &error);
      
      These ReadCStringFromMemory() has some SWIG type magic that makes it return the
      python string directly and the "buf" is not needed:
      
      error = SBError()
      max_cstr_len = 256
      cstr = lldb.process.ReadCStringFromMemory (0x1000, max_cstr_len, error)
      if error.Success():
          ....
      
      The other two functions behave as expteced. This will make it easier to get integer values
      from the inferior process that are correctly byte swapped. Also for pointers, the correct
      pointer byte size will be used.
      
      Also cleaned up a few printf style warnings for the 32 bit lldb build on darwin.
      
      llvm-svn: 146636
      e91b7957
  5. Dec 12, 2011
    • Johnny Chen's avatar
      rdar://problem/10227672 · 64bab489
      Johnny Chen authored
      There were two problems associated with this radar:
      1. "settings show target.source-map" failed to show the source-map after, for example,
         "settings set target.source-map /Volumes/data/lldb/svn/trunk/test/source-manager /Volumes/data/lldb/svn/trunk/test/source-manager/hidden"
         has been executed to set the source-map.
      2. "list -n main" failed to display the source of the main() function after we properly set the source-map.
      
      The first was fixed by adding the missing functionality to TargetInstanceSettings::GetInstanceSettingsValue (Target.cpp)
      and updating the support files PathMappingList.h/.cpp; the second by modifying SourceManager.cpp to fix several places
      with incorrect logic.
      
      Also added a test case test_move_and_then_display_source() to TestSourceManager.py, which moves main.c to hidden/main.c,
      sets target.source-map to perform the directory mapping, and then verifies that "list -n main" can still show the main()
      function.
      
      llvm-svn: 146422
      64bab489
  6. Dec 09, 2011
    • Jim Ingham's avatar
      Rework how the breakpoint conditions & callbacks are handled. We now iterate... · 79ea1d88
      Jim Ingham authored
      Rework how the breakpoint conditions & callbacks are handled.  We now iterate over all the locations at the site
      that got hit, and first check the condition, and if that location's condition says we should stop, then we
      run the callback.  In the end if any location's condition and callback say we should stop, then we stop. 
      
      llvm-svn: 146242
      79ea1d88
  7. Dec 08, 2011
    • Greg Clayton's avatar
      Added a new class called lldb_private::SymbolFileType which is designed to · d1767f05
      Greg Clayton authored
      take a SymbolFile reference and a lldb::user_id_t and be used in objects
      which represent things in debug symbols that have types where we don't need
      to know the true type yet, such as in lldb_private::Variable objects. This
      allows us to defer resolving the type until something is used. More specifically
      this allows us to get 1000 local variables from the current function, and if
      the user types "frame variable argc", we end up _only_ resolving the type for
      "argc" and not for the 999 other local variables. We can expand the use of this
      as needed in the future.
      
      Modified the DWARFMappedHash class to be able to read the HashData that has
      more than just the DIE offset. It currently will read the atoms in the header
      definition and read the data correctly. Currently only the DIE offset and 
      type flags are supported. This is needed for adding type flags to the 
      .apple_types hash accelerator tables.
      
      Fixed a assertion crash that would happen if we have a variable that had a
      DW_AT_const_value instead of a location where "location.LocationContains_DW_OP_addr()"
      would end up asserting when it tried to parse the variable location as a
      DWARF opcode list.
      
      Decreased the amount of memory that LLDB would use when evaluating an expression
      by 3x - 4x for clang. There was a place in the namespace lookup code that was
      parsing all namespaces with a certain name in a DWARF file instead of stopping
      when it found the first match. This was causing all of the compile units with
      a matching namespace to get parsed into memory and causing unnecessary memory
      bloat. 
      
      Improved "Target::EvaluateExpression(...)" to not try and find a variable
      when the expression contains characters that would certainly cause an expression
      to need to be evaluated by the debugger. 
      
      llvm-svn: 146130
      d1767f05
  8. Dec 03, 2011
    • Jim Ingham's avatar
      Make the ThreadPlanStepThrough set a backstop breakpoint on the return address from · 25f66700
      Jim Ingham authored
      the function it is being asked to step through, so that even if we get the trampoline
      target wrong (for instance) we will still not lose control.
      
      The other fix here is to tighten up the handling of the case where the current plan
      doesn't explain the stop, but a plan above us does.  In that case, if the plan that
      does explain the stop says it is done, we need to clean up the plans below it and 
      continue on with our processing.
      
      llvm-svn: 145740
      25f66700
  9. Dec 02, 2011
  10. Dec 01, 2011
    • Jim Ingham's avatar
      Protect a few log->Printf calls with "if (log)"... · 87c665fb
      Jim Ingham authored
      llvm-svn: 145625
      87c665fb
    • Johnny Chen's avatar
      rdar://problem/10501020 · 60e2c6aa
      Johnny Chen authored
      ClangASTSource::~ClangASTSource() was calling
      
          ClangASTContext *scratch_clang_ast_context = m_target->GetScratchClangASTContext();
      
      which had the side effect of deleting this very ClangASTSource instance.  Not good.
      Change it to
      
          // We are in the process of destruction, don't create clang ast context on demand
          // by passing false to Target::GetScratchClangASTContext(create_on_demand).
          ClangASTContext *scratch_clang_ast_context = m_target->GetScratchClangASTContext(false);
      
      The Target::GetScratchClangASTContext(bool create_on_demand=true) has a new signature.
      
      llvm-svn: 145537
      60e2c6aa
  11. Nov 21, 2011
    • Greg Clayton's avatar
      Many GDB users always want to display disassembly when they stop by using · e372b98d
      Greg Clayton authored
      something like "display/4i $pc" (or something like this). With LLDB we already
      were showing 3 lines of source before and 3 lines of source after the current
      source line when showing a stop context. We now improve this by allowing the
      user to control the number of lines with the new "stop-line-count-before" and
      "stop-line-count-after" settings. Also, there is a new setting for how many
      disassembly lines to show: "stop-disassembly-count". This will control how many
      source lines are shown when there is no source or when we have no source line
      info. 
      
      settings set stop-line-count-before 3
      settings set stop-line-count-after 3
      settings set stop-disassembly-count 4
      settings set stop-disassembly-display no-source
      
      The default values are set as shown above and allow 3 lines of source before 
      and after (what we used to do) the current stop location, and will display 4 
      lines of disassembly if the source is not available or if we have no debug
      info. If both "stop-source-context-before" and "stop-source-context-after" are
      set to zero, this will disable showing any source when stopped. The 
      "stop-disassembly-display" setting is an enumeration that allows you to control
      when to display disassembly. It has 3 possible values:
      
      "never" - never show disassembly no matter what
      "no-source" - only show disassembly when there is no source line info or the source files are missing
      "always" - always show disassembly.
      
      llvm-svn: 145050
      e372b98d
  12. Nov 18, 2011
    • Greg Clayton's avatar
      Looking at our memory usage with Instruments when debugging a large application · 7ba18027
      Greg Clayton authored
      we say that the vectors of DWARFDebugInfoEntry objects were the highest on the
      the list. 
      
      With these changes we cut our memory usage by 40%!!! I did this by reducing
      the size of the DWARFDebugInfoEntry from a previous:
      
      uint32_t offset
      uint32_t parent_idx
      uint32_t sibling_idx
      Abbrev * abbrev_ptr
      
      which was 20 bytes, but rounded up to 24 bytes due to alignment. Now we have:
      
      uint32_t offset
      uint32_t parent_idx
      uint32_t sibling_idx
      uint32_t abbr_idx:15,       // 32767 possible abbreviation codes
               has_children:1,    // 0 = no children, 1 = has children
               tag:16;            // DW_TAG_XXX value
      
      This gets us down to 16 bytes per DIE. I tested some VERY large DWARF files
      (900MB) and found there were only ~700 unique abbreviations, so 32767 should
      be enough for any sane compiler. If it isn't there are built in assertions
      that will fire off and tell us.
      
      llvm-svn: 144975
      7ba18027
  13. Nov 17, 2011
  14. Nov 16, 2011
    • Sean Callanan's avatar
      I made the ClangASTImporter owned by the target · 686b2319
      Sean Callanan authored
      rather than individually on behalf of each
      ASTContext.  This allows the ASTImporter to know
      about all containers of types, which will let it
      be smarter about forwarding information about
      type origins.  That means that the following
      sequence of steps will be possible (after a few
      more changes):
      
      - Import a type from a Module's ASTContext into
        an expression parser ASTContext, tracking its
        origin information -- this works now.
      
      - Because the result of the expression uses that
        type, import it from the expression parser
        ASTContext into the Target's scratch AST
        context, forwarding the origin information --
        this needs to be added.
      
      - For a later expression that uses the result,
        import the type from the Target's scratch AST
        context, still forwarding origin information
        -- this also needs to be added.
      
      - Use the intact origin information to complete
        the type as needed -- this works now if the
        origin information is present.
      
      To this end, I made the following changes:
      
      - ASTImporter top-level copy functions now
        require both a source and a destination AST
        context parameter.
      
      - The ASTImporter now knows how to purge
        records related to an ASTContext that is
        going away.
      
      - The Target now owns and creates the ASTImporter
        whenever the main executable changes or (in the
        absence of a main executable) on demand.
      
      llvm-svn: 144802
      686b2319
    • Greg Clayton's avatar
      Made the darwin host layer properly reap any child processes that it spawns. · e4e45924
      Greg Clayton authored
      After recent changes we weren't reaping child processes resulting in many
      zombie processes. 
      
      This was fixed by adding more settings to the ProcessLaunchOptions class
      that allow clients to specify a callback function and baton to be notified
      when their process dies. If one is not supplied a default callback will be
      used that "does the right thing". 
      
      Cleaned up a race condition in the ProcessGDBRemote class that would attempt
      to monitor when debugserver died. 
      
      Added an extra boolean to the process monitor callbacks that indicate if a
      process exited or not. If your process exited with a zero exit status and no
      signal, both items could be zero.
      
      Modified the process monitor functions to not require a callback function
      in order to reap the child process.
      
      llvm-svn: 144780
      e4e45924
    • Sean Callanan's avatar
      Fixed a problem where the target didn't use a · 6d6acc89
      Sean Callanan authored
      NULL-terminated C string to store the contents
      of the expression prefix file.  This meant that
      expressions, when printing the contents of the
      prefix into the expression's text, would
      invariably put in bad data after the end of the
      expression.
      
      Now, instead, we store the prefix contents in a
      std::string, which handles null-termination
      correctly.
      
      llvm-svn: 144760
      6d6acc89
  15. Nov 15, 2011
    • Sean Callanan's avatar
      Made Target own a ClangASTSource that will be used · 4bf80d55
      Sean Callanan authored
      to complete types in the scratch AST context.
      
      llvm-svn: 144712
      4bf80d55
    • Greg Clayton's avatar
      Added a new class to Process.h: ProcessAttachInfo. This class contains enough · 144f3a9c
      Greg Clayton authored
      info for us to attach by pid, or by name and will also allow us to eventually
      do a lot more powerful attaches. If you look at the options for the "platform
      process list" command, there are many options which we should be able to
      specify. This will allow us to do things like "attach to a process named 'tcsh'
      that has a parent process ID of 123", or "attach to a process named 'x' which
      has an effective user ID of 345". 
      
      I finished up the --shell implementation so that it can be used without the
      --tty option in "process launch". The "--shell" option now can take an 
      optional argument which is the path to the shell to use (or a partial name
      like "sh" which we will find using the current PATH environment variable).
      
      Modified the Process::Attach to use the new ProcessAttachInfo as the sole
      argument and centralized a lot of code that was in the "process attach"
      Execute function so that everyone can take advantage of the powerful new
      attach functionality.
      
      llvm-svn: 144615
      144f3a9c
  16. Nov 13, 2011
    • Greg Clayton's avatar
      <rdar://problem/10103980> · 93e8619d
      Greg Clayton authored
      A long time ago we started to centralized the STDOUT in lldb_private::Process
      but we missed a few things still in ProcessGDBRemote.
      
      llvm-svn: 144491
      93e8619d
  17. Nov 12, 2011
    • Greg Clayton's avatar
      Added the ability to run a process in a shell on MacOSX currently when using · c9ed478a
      Greg Clayton authored
      the --tty option. So you can now get shell expansion and file redirection:
      
      (lldb) process launch --tty --shell -- *.jpg < in.txt > out.txt
      
      Again, the "--tty" is mandatory for now until we hook this up to other 
      functions. The shell is also currently hard coded to "/bin/bash" and not the
      "SHELL" variable. "/bin/tcsh" was causing problems which I need to dig into.
      
      llvm-svn: 144443
      c9ed478a
  18. Nov 10, 2011
  19. Nov 08, 2011
  20. Nov 04, 2011
    • Greg Clayton's avatar
      Fixed the Xcode project building of LLVM to be a bit more user friendly: · dce502ed
      Greg Clayton authored
      - If you download and build the sources in the Xcode project, x86_64 builds
        by default using the "llvm.zip" checkpointed LLVM.
      - If you delete the "lldb/llvm.zip" and the "lldb/llvm" folder, and build the
        Xcode project will download the right LLVM sources and build them from 
        scratch
      - If you have a "lldb/llvm" folder already that contains a "lldb/llvm/lib"
        directory, we will use the sources you have placed in the LLDB directory.
        
      Python can now be disabled for platforms that don't support it. 
      
      Changed the way the libllvmclang.a files get used. They now all get built into
      arch specific directories and never get merged into universal binaries as this
      was causing issues where you would have to go and delete the file if you wanted
      to build an extra architecture slice.
      
      llvm-svn: 143678
      dce502ed
  21. Nov 03, 2011
  22. Nov 01, 2011
  23. Oct 31, 2011
  24. Oct 29, 2011
  25. Oct 28, 2011
  26. Oct 26, 2011
    • Greg Clayton's avatar
      Cleaned up many error codes. For any who is filling in error strings into · 86edbf41
      Greg Clayton authored
      lldb_private::Error objects the rules are:
      - short strings that don't start with a capitol letter unless the name is a
        class or anything else that is always capitolized
      - no trailing newline character
      - should be one line if possible
      
      Implemented a first pass at adding "--gdb-format" support to anything that
      accepts format with optional size/count.
      
      llvm-svn: 142999
      86edbf41
  27. Oct 25, 2011
    • Johnny Chen's avatar
      Add more context information to the stop-hook mechanism by displaying the stop-hook · aeab25c7
      Johnny Chen authored
      command in the '- Hook id' header.  This should improve readbility of the 'display'
      command if, for example, we have issued 'display a' and 'display b' which turn into
      "target stop-hook add -o 'expr -- a'" and "target stop-hook add -o 'expr -- b'".
      
      Plus some minor change in TestAbbreviations.py to conditionalize the platform-specific
      checkings of the "image list" output.
      
      llvm-svn: 142868
      aeab25c7
  28. Oct 19, 2011
    • Greg Clayton's avatar
      Moved lldb::user_id_t values to be 64 bit. This was going to be needed for · 81c22f61
      Greg Clayton authored
      process IDs, and thread IDs, but was mainly needed for for the UserID's for
      Types so that DWARF with debug map can work flawlessly. With DWARF in .o files
      the type ID was the DIE offset in the DWARF for the .o file which is not
      unique across all .o files, so now the SymbolFileDWARFDebugMap class will
      make the .o file index part (the high 32 bits) of the unique type identifier
      so it can uniquely identify the types.
      
      llvm-svn: 142534
      81c22f61
    • Greg Clayton's avatar
      Changed lldb_private::Type over to use the intrusive ref counted pointers · 85ae2e13
      Greg Clayton authored
      so we don't have to lookup types in a type list by ID.
      
      Changed the DWARF parser to remove the "can externally complete myself" bits
      from the type when we are in the process of completing the type itself to
      avoid an onslaught of external visible decl requests from the 
      clang::ExternalASTSource.
      
      llvm-svn: 142461
      85ae2e13
  29. Oct 17, 2011
    • Johnny Chen's avatar
      Add a commnad to set a condition for a watchpoint. Example: · 16dcf718
      Johnny Chen authored
          watchpoint modify -c 'global==5'
      
      modifies the last created watchpoint so that the condition expression
      is evaluated at the stop point to decide whether we should proceed with
      the stopping.
      
      Also add SBWatchpont::SetCondition(const char *condition) to set condition
      programmatically.
      
      Test cases to come later.
      
      llvm-svn: 142227
      16dcf718
  30. Oct 15, 2011
Loading