Skip to content
  1. Jan 20, 2011
  2. Jan 18, 2011
    • Greg Clayton's avatar
      Fixed incorrect logging printf (patch from Stephen Wilson). · 411c0ce8
      Greg Clayton authored
      llvm-svn: 123780
      411c0ce8
    • Greg Clayton's avatar
      Thread safety changes in debugserver and also in the process GDB remote plugin. · c4e411ff
      Greg Clayton authored
      I added support for asking if the GDB remote server supports thread suffixes
      for packets that should be thread specific (register read/write packets) because
      the way the GDB remote protocol does it right now is to have a notion of a
      current thread for register and memory reads/writes (set via the "$Hg%x" packet)
      and a current thread for running ("$Hc%x"). Now we ask the remote GDB server
      if it supports adding the thread ID to the register packets and we enable
      that feature in LLDB if supported. This stops us from having to send a bunch
      of packets that update the current thread ID to some value which is prone to
      error, or extra packets.
      
      llvm-svn: 123762
      c4e411ff
    • Jim Ingham's avatar
      In ThreadPlanCallFunction, do the Takedown right when the thread plan gets... · bda4e5eb
      Jim Ingham authored
      In ThreadPlanCallFunction, do the Takedown right when the thread plan gets popped.  When the function call is discarded (e.g. when it crashes and discard_on_error is true) the plan gets discarded.  You need to make sure that the stack gets restored right then, and not wait till you start again and the thread plan stack is cleared.
      
      llvm-svn: 123716
      bda4e5eb
  3. Jan 17, 2011
    • Greg Clayton's avatar
      A few of the issue I have been trying to track down and fix have been due to · 6beaaa68
      Greg Clayton authored
      the way LLDB lazily gets complete definitions for types within the debug info.
      When we run across a class/struct/union definition in the DWARF, we will only
      parse the full definition if we need to. This works fine for top level types
      that are assigned directly to variables and arguments, but when we have a 
      variable with a class, lets say "A" for this example, that has a member:
      "B *m_b". Initially we don't need to hunt down a definition for this class
      unless we are ever asked to do something with it ("expr m_b->getDecl()" for
      example). With my previous approach to lazy type completion, we would be able
      to take a "A *a" and get a complete type for it, but we wouldn't be able to
      then do an "a->m_b->getDecl()" unless we always expanded all types within a
      class prior to handing out the type. Expanding everything is very costly and
      it would be great if there were a better way.
      
      A few months ago I worked with the llvm/clang folks to have the 
      ExternalASTSource class be able to complete classes if there weren't completed
      yet:
      
      class ExternalASTSource {
      ....
      
          virtual void
          CompleteType (clang::TagDecl *Tag);
          
          virtual void 
          CompleteType (clang::ObjCInterfaceDecl *Class);
      };
      
      This was great, because we can now have the class that is producing the AST
      (SymbolFileDWARF and SymbolFileDWARFDebugMap) sign up as external AST sources
      and the object that creates the forward declaration types can now also
      complete them anywhere within the clang type system.
      
      This patch makes a few major changes:
      - lldb_private::Module classes now own the AST context. Previously the TypeList
        objects did.
      - The DWARF parsers now sign up as an external AST sources so they can complete
        types.
      - All of the pure clang type system wrapper code we have in LLDB (ClangASTContext,
        ClangASTType, and more) can now be iterating through children of any type,
        and if a class/union/struct type (clang::RecordType or ObjC interface) 
        is found that is incomplete, we can ask the AST to get the definition. 
      - The SymbolFileDWARFDebugMap class now will create and use a single AST that
        all child SymbolFileDWARF classes will share (much like what happens when
        we have a complete linked DWARF for an executable).
        
      We will need to modify some of the ClangUserExpression code to take more 
      advantage of this completion ability in the near future. Meanwhile we should
      be better off now that we can be accessing any children of variables through
      pointers and always be able to resolve the clang type if needed.
      
      llvm-svn: 123613
      6beaaa68
  4. Jan 14, 2011
  5. Jan 13, 2011
    • Sean Callanan's avatar
      Implemented a major overhaul of the way variables are handled · 92adcac9
      Sean Callanan authored
      by LLDB.  Instead of being materialized into the input structure
      passed to the expression, variables are left in place and pointers
      to them are materialzied into the structure.  Variables not resident
      in memory (notably, registers) get temporary memory regions allocated
      for them.
      
      Persistent variables are the most complex part of this, because they
      are made in various ways and there are different expectations about
      their lifetime.  Persistent variables now have flags indicating their
      status and what the expectations for longevity are.  They can be
      marked as residing in target memory permanently -- this is the
      default for result variables from expressions entered on the command
      line and for explicitly declared persistent variables (but more on
      that below).  Other result variables have their memory freed.
      
      Some major improvements resulting from this include being able to
      properly take the address of variables, better and cleaner support
      for functions that return references, and cleaner C++ support in
      general.  One problem that remains is the problem of explicitly
      declared persistent variables; I have not yet implemented the code
      that makes references to them into indirect references, so currently
      materialization and dematerialization of these variables is broken.
      
      llvm-svn: 123371
      92adcac9
  6. Jan 12, 2011
  7. Jan 10, 2011
    • Greg Clayton's avatar
      Change the default signal setting for SIBABRT to SUPPRESS the signal. Why? · 1bf55f2a
      Greg Clayton authored
      When debugging, if an expression hits a SIGABRT, it the expression ends up
      completing and stopping due the the "SIGABRT". Then the next thing that runs
      (another expression, or continuing the program) ends up progating the SIGABRT
      and causing the parent processes to die.
      
      We should probably think of a different solution where we suppress any signal
      that resulted due to an expression, or we modifyin the UnixSignals class to
      contain a row for "suppress for expression".
      
      So the settings for SIGABRT are: suppress = true, stop = true, and 
      notify = true.
      
      llvm-svn: 123157
      1bf55f2a
  8. Jan 09, 2011
    • Greg Clayton's avatar
      Put more smarts into the RegisterContext base class. Now the base class has · 3e06bd90
      Greg Clayton authored
      a method:
      
          void RegisterContext::InvalidateIfNeeded (bool force);
      
      Each time this function is called, when "force" is false, it will only call
      the pure virtual "virtual void RegisterContext::InvalideAllRegisters()" if
      the register context's stop ID doesn't match that of the process. When the
      stop ID doesn't match, or "force" is true, the base class will clear its
      cached registers and the RegisterContext will update its stop ID to match
      that of the process. This helps make it easier to correctly flush the register
      context (possibly from multiple locations depending on when and where new
      registers are availabe) without inadvertently clearing the register cache 
      when it doesn't need to be.
      
      Modified the ProcessGDBRemote plug-in to be much more efficient when it comes
      to:
      - caching the expedited registers in the stop reply packets (we were ignoring
        these before and it was causing us to read at least three registers every
        time we stopped that were already supplied in the stop reply packet).
      - When a thread has no stop reason, don't keep asking for the thread stopped
        info. Prior to this fix we would continually send a qThreadStopInfo packet
        over and over when any thread stop info was requested. We now note the stop
        ID that the stop info was requested for and avoid multiple requests.
      
      Cleaned up some of the expression code to not look for ClangExpressionVariable
      objects up by name since they are now shared pointers and we can just look for
      the exact pointer match and avoid possible errors.
      
      Fixed an bug in the ValueObject code that would cause children to not be 
      displayed.
      
      llvm-svn: 123127
      3e06bd90
  9. Jan 07, 2011
    • Greg Clayton's avatar
      Added memory caching to lldb_private::Process. All lldb_private::Process · 58be07b2
      Greg Clayton authored
      subclasses will automatically be able to take advantage of caching. The
      cache line size is set to 512 by default.
      
      This greatly speeds up stack backtraces on MacOSX when using the 
      ProcessGDBRemote process plug-in since only about 6300 packets per second
      can be sent.
      
      Initial speedups show:
      
      Prior to caching: 10,000 stack frames took 5.2 seconds
      After caching: 10,000 stack frames in 240 ms!
      
      About a 20x speedup!
      
      llvm-svn: 122996
      58be07b2
    • Greg Clayton's avatar
      Added the ability for Target::ReadMemory to prefer to read from the file · db598230
      Greg Clayton authored
      cache even when a valid process exists. Previously, Target::ReadMemory would
      read from the process if there was a valid one and then fallback to the
      object file cache.
      
      llvm-svn: 122989
      db598230
  10. Jan 06, 2011
    • Greg Clayton's avatar
      Fixed issues with RegisterContext classes and the subclasses. There was · 5ccbd294
      Greg Clayton authored
      an issue with the way the UnwindLLDB was handing out RegisterContexts: it
      was making shared pointers to register contexts and then handing out just
      the pointers (which would get put into shared pointers in the thread and
      stack frame classes) and cause double free issues. MallocScribble helped to
      find these issues after I did some other cleanup. To help avoid any
      RegisterContext issue in the future, all code that deals with them now
      returns shared pointers to the register contexts so we don't end up with
      multiple deletions. Also now that the RegisterContext class doesn't require
      a stack frame, we patched a memory leak where a StackFrame object was being
      created and leaked.
      
      Made the RegisterContext class not have a pointer to a StackFrame object as
      one register context class can be used for N inlined stack frames so there is
      not a 1 - 1 mapping. Updates the ExecutionContextScope part of the 
      RegisterContext class to never return a stack frame to indicate this when it
      is asked to recreate the execution context. Now register contexts point to the
      concrete frame using a concrete frame index. Concrete frames are all of the
      frames that are actually formed on the stack of a thread. These concrete frames
      can be turned into one or more user visible frames due to inlining. Each 
      inlined stack frame has the exact same register context (shared via shared
      pointers) as any parent inlined stack frames all the way up to the concrete 
      frame itself.
      
      So now the stack frames and the register contexts should behave much better.
      
      llvm-svn: 122976
      5ccbd294
  11. Dec 22, 2010
    • Jason Molenda's avatar
      RegisterContextLLDB.cpp (InitializeNonZerothFrame): If we get a · f830e481
      Jason Molenda authored
      0 mid-stack, stop backtracing.
      
      SectionLoadList.cpp (ResolveLoadAddress): Don't assert on an
      out-of-range address, just return an invalid Address object.
      The unwinder may be passing in invalid addresses on the final
      stack frame and the assert is a problem.
      
      llvm-svn: 122386
      f830e481
  12. Dec 20, 2010
  13. Dec 16, 2010
  14. Dec 15, 2010
    • Greg Clayton's avatar
      Fix invalid conversion from "const char *" to "char *" for linux systems.... · e2956eeb
      Greg Clayton authored
      Fix invalid conversion from "const char *" to "char *" for linux systems. strchr() on darwin returns "char *" so we weren't seeing this issue on MacOSX.
      
      llvm-svn: 121897
      e2956eeb
    • Greg Clayton's avatar
      Fixed an error where the thread index was being returned as zero in "uint32_t... · bdf4c6ac
      Greg Clayton authored
      Fixed an error where the thread index was being returned as zero in "uint32_t SBBreakpoint::GetThreadIndex() const" even when it isn't specified. It should be UINT32_MAX to indicate there is no thread index set for the breakpoint (the breakpoint isn't thread specific). Also fixed the ThreadSpec.cpp to use UINT32_MAX instead of -1. Fixed the logging Printf statement in "uint32_t SBBreakpoint::GetThreadIndex() const" to not print the address of the "index" function from <string.h>!
      
      llvm-svn: 121896
      bdf4c6ac
    • Greg Clayton's avatar
      Fixed the "expression" command object to use the StackFrame::GetValueForExpressionPath() · 54979cdd
      Greg Clayton authored
      function and also hooked up better error reporting for when things fail.
      
      Fixed issues with trying to display children of pointers when none are
      supposed to be shown (no children for function pointers, and more like this).
      This was causing child value objects to be made that were correctly firing
      an assertion.
      
      llvm-svn: 121841
      54979cdd
  15. Dec 14, 2010
    • Greg Clayton's avatar
      Modified LLDB expressions to not have to JIT and run code just to see variable · 8b2fe6dc
      Greg Clayton authored
      values or persistent expression variables. Now if an expression consists of
      a value that is a child of a variable, or of a persistent variable only, we
      will create a value object for it and make a ValueObjectConstResult from it to
      freeze the value (for program variables only, not persistent variables) and
      avoid running JITed code. For everything else we still parse up and JIT code
      and run it in the inferior. 
      
      There was also a lot of clean up in the expression code. I made the 
      ClangExpressionVariables be stored in collections of shared pointers instead
      of in collections of objects. This will help stop a lot of copy constructors on
      these large objects and also cleans up the code considerably. The persistent
      clang expression variables were moved over to the Target to ensure they persist
      across process executions.
      
      Added the ability for lldb_private::Target objects to evaluate expressions.
      We want to evaluate expressions at the target level in case we aren't running
      yet, or we have just completed running. We still want to be able to access the
      persistent expression variables between runs, and also evaluate constant 
      expressions. 
      
      Added extra logging to the dynamic loader plug-in for MacOSX. ModuleList objects
      can now dump their contents with the UUID, arch and full paths being logged with
      appropriate prefix values.
      
      Thread hardened the Communication class a bit by making the connection auto_ptr
      member into a shared pointer member and then making a local copy of the shared
      pointer in each method that uses it to make sure another thread can't nuke the
      connection object while it is being used by another thread.
      
      Added a new file to the lldb/test/load_unload test that causes the test a.out file
      to link to the libd.dylib file all the time. This will allow us to test using
      the DYLD_LIBRARY_PATH environment variable after moving libd.dylib somewhere else.
      
      llvm-svn: 121745
      8b2fe6dc
  16. Dec 13, 2010
    • Sean Callanan's avatar
      Added support for generating expressions that have · 17827830
      Sean Callanan authored
      access to the members of the Objective-C self object.
      
      The approach we take is to generate the method as a
      @category on top of the self object, and to pass the
      "self" pointer to it.  (_cmd is currently NULL.)
      
      Most changes are in ClangExpressionDeclMap, but the
      change that adds support to the ABIs to pass _cmd
      touches a fair amount of code.
      
      llvm-svn: 121722
      17827830
  17. Dec 08, 2010
    • Greg Clayton's avatar
      Added the ability to dump sections to a certain depth (for when sections · 10177aa0
      Greg Clayton authored
      have children sections).
      
      Modified SectionLoadList to do it's own multi-threaded protected on its map.
      The ThreadSafeSTLMap class was difficult to deal with and wasn't providing
      much utility, it was only getting in the way.
      
      Make sure when the communication read thread is about to exit, it clears the
      thread in the main class.
      
      Fixed the ModuleList to correctly ignore architectures and UUIDs if they aren't
      valid when searching for a matching module. If we specified a file with no arch,
      and then modified the file and loaded it again, it would not match on subsequent
      searches if the arch was invalid since it would compare an invalid architecture
      to the one that was found or selected within the shared library or executable.
      This was causing stale modules to stay around in the global module list when they
      should have been removed.
      
      Removed deprecated functions from the DynamicLoaderMacOSXDYLD class.
      
      Modified "ProcessGDBRemote::IsAlive" to check if we are connected to a gdb
      server and also make sure our process hasn't exited.
      
      llvm-svn: 121236
      10177aa0
    • Greg Clayton's avatar
      Fixed up the error message for when a file is not supported. · bc5cad6c
      Greg Clayton authored
      llvm-svn: 121235
      bc5cad6c
  18. Dec 07, 2010
    • Greg Clayton's avatar
      When shared libraries are unloaded, they are now removed from the target · a4d78300
      Greg Clayton authored
      ModuleList so they don't show up in the images. Breakpoint locations that are
      in shared libraries that get unloaded will persist though so that if you
      have plug-ins that load/unload and you have a breakpoint set on functions
      in the plug-ins, the hit counts will persist between loads/unloads.
      
      llvm-svn: 121069
      a4d78300
  19. Dec 05, 2010
  20. Dec 04, 2010
  21. Dec 03, 2010
    • Caroline Tice's avatar
      Add '-no-stdio' option to 'process launch' command, which causes the · f8da8631
      Caroline Tice authored
      inferior to be launched without setting up terminal stdin/stdout for it
      (leaving the lldb command line accessible while the program is executing).
      Also add a user settings variable, 'target.process.disable-stdio' to allow
      the user to set this globally rather than having to use the command option
      each time the process is launched.
      
      llvm-svn: 120825
      f8da8631
  22. Dec 02, 2010
    • Johnny Chen's avatar
      Fixed a typo in comment. · c4221e47
      Johnny Chen authored
      llvm-svn: 120733
      c4221e47
    • Caroline Tice's avatar
      · 82305fc5
      Caroline Tice authored
      Add proper EOF handling to Communication & Connection classes:
      
      Add bool member to Communication class indicating whether the
      Connection should be closed on receiving an EOF or not.  Update the
      Connection read to return an EOF status when appropriate.  Modify the
      Communication class to pass the EOF along or not, and to close the
      Connection or not, as appropriate.
      
      llvm-svn: 120723
      82305fc5
  23. Nov 30, 2010
    • Jim Ingham's avatar
      Moved the code in ClangUserExpression that set up & ran the thread plan with... · f48169bb
      Jim Ingham authored
      Moved the code in ClangUserExpression that set up & ran the thread plan with timeouts, and restarting with all threads into a utility function in Process.  This required a bunch of renaming. 
      
      Added a ThreadPlanCallUserExpression that differs from ThreadPlanCallFunction in that it holds onto a shared pointer to its ClangUserExpression so that can't go away before the thread plan is done using it.
      
      Fixed the stop message when you hit a breakpoint while running a user expression so it is more obvious what has happened.
      
      llvm-svn: 120386
      f48169bb
  24. Nov 20, 2010
    • Jason Molenda's avatar
      Change the DWARFExpression::Evaluate methods to take an optional · 2d107dd0
      Jason Molenda authored
      RegisterContext* - normally this is retrieved from the ExecutionContext's
      StackFrame but when we need to evaluate an expression while creating
      the stack frame list this can be a little tricky.
      
      Add DW_OP_deref_size, needed for the _sigtramp FDE expression.
      
      Add support for processing DWARF expressions in RegisterContextLLDB.
      
      Update callers to DWARFExpression::Evaluate.
      
      llvm-svn: 119885
      2d107dd0
  25. Nov 19, 2010
    • Caroline Tice's avatar
      Add the ability to catch and do the right thing with Interrupts (often control-c) · efed6131
      Caroline Tice authored
      and end-of-file (often control-d).
      
      llvm-svn: 119837
      efed6131
    • Greg Clayton's avatar
      Fixed an issue where the UserSettingsControllers were being created out of · dbe54508
      Greg Clayton authored
      order and this was causing the target, process and thread trees to not be
      available.
      
      llvm-svn: 119784
      dbe54508
    • Greg Clayton's avatar
      Cleaned up code that wasn't using the Initialize and Terminate paradigm by · 99d0faf2
      Greg Clayton authored
      changing it to use it. There was an extra parameter added to the static
      accessor global user settings controllers that wasn't needed. A bool was being
      used as a parameter to the accessor just so it could be used to clean up 
      the global user settings controller which is now fixed by splitting up the
      initialization into the "static void Class::Initialize()", access into the
      "static UserSettingsControllerSP & Class::GetSettingsController()", and
      cleanup into "static void Class::Terminate()".
      
      Also added initialize and terminate calls to the logging code to avoid issues
      when LLDB is shutting down. There were cases after the logging was switched
      over to use shared pointers where we could crash if the global destructor
      chain was being run and it causes the log to be destroyed and any any logging
      occurred.
      
      llvm-svn: 119757
      99d0faf2
  26. Nov 18, 2010
    • Greg Clayton's avatar
      Added the ability to get more information on the SBThread's stop reason · 4e78f606
      Greg Clayton authored
      by being able to get the data count and data. Each thread stop reason
      has one or more data words that can help describe the stop. To do this
      I added:
      
          size_t
      	SBThread::GetStopReasonDataCount();
      
      	uint64_t
      	SBThread::GetStopReasonDataAtIndex(uint32_t idx);
      
      llvm-svn: 119720
      4e78f606
    • Greg Clayton's avatar
      Fixed Process::Halt() as it was broken for "process halt" after recent changes · 3af9ea56
      Greg Clayton authored
      to the DoHalt down in ProcessGDBRemote. I also moved the functionality that
      was in ProcessGDBRemote::DoHalt up into Process::Halt so not every class has
      to implement a tricky halt/resume on the internal state thread. The 
      functionality is the same as it was before with two changes:
      - when we eat the event we now just reuse the event we consume when the private
        state thread is paused and set the interrupted bool on the event if needed
      - we also properly update the Process::m_public_state with the state of the
        event we consume.
        
      Prior to this, if you issued a "process halt" it would eat the event, not 
      update the process state, and then produce a new event with the interrupted
      bit set and send it. Anyone listening to the event would get the stopped event
      with a process that whose state was set to "running".
      
      Fixed debugserver to not have to be spawned with the architecture of the
      inferior process. This worked fine for launching processes, but when attaching
      to processes by name or pid without a file in lldb, it would fail.
      
      Now debugserver can support multiple architectures for a native debug session
      on the current host. This currently means i386 and x86_64 are supported in
      the same binary and a x86_64 debugserver can attach to a i386 executable.
      This change involved a lot of changes to make sure we dynamically detect the
      correct registers for the inferior process.
      
      llvm-svn: 119680
      3af9ea56
Loading