Skip to content
  1. Jan 19, 2011
  2. Jan 16, 2011
    • Stephen Wilson's avatar
      Initial support for a DynamicLoader plugin on Linux. · 2103e25e
      Stephen Wilson authored
      This patch is enough to have shared objects recognized by LLDB.  We can handle
      position independent executables.  We can handle dynamically loaded modules
      brought in via dlopen.
      
      The DYLDRendezvous class provides an interface to a structure present in the
      address space of ELF-based processes.  This structure provides the address of a
      function which is called by the linker each time a shared object is loaded and
      unloaded (thus a breakpoint at that address will let LLDB intercept such
      events), a list of entries describing the currently loaded shared objects, plus
      a few other things.
      
      On Linux, processes are brought up with an auxiliary vector on the stack.  One
      element in this vector contains the (possibly dynamic) entry address of the
      process.  One does not need to walk the stack to find this information as it is
      also available under /proc/<pid>/auxv.  The new AuxVector class provides a
      convenient read-only view of this auxiliary vector information.  We use the
      dynamic entry address and the address as specified in the object file to compute
      the actual load address of the inferior image.  This strategy works for both
      normal executables and PIE's.
      
      llvm-svn: 123592
      2103e25e
  3. Jan 08, 2011
  4. 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
  5. Dec 12, 2010
    • Greg Clayton's avatar
      Fixed an issue where the macosx dynamic loader, on the first shared library... · 7d07a45f
      Greg Clayton authored
      Fixed an issue where the macosx dynamic loader, on the first shared library loaded notification, wasn't properly removing shared libraries from the target that didn't get loaded. This usually happens when a different shared library is loaded in place of another due to DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH environment variables. We now properly remove any images that didn't make it into the executable.
      
      llvm-svn: 121641
      7d07a45f
  6. 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
  7. Nov 18, 2010
    • 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
  8. Nov 06, 2010
    • Greg Clayton's avatar
      Modified all logging calls to hand out shared pointers to make sure we · 2d4edfbc
      Greg Clayton authored
      don't crash if we disable logging when some code already has a copy of the
      logger. Prior to this fix, logs were handed out as pointers and if they were
      held onto while a log got disabled, then it could cause a crash. Now all logs
      are handed out as shared pointers so this problem shouldn't happen anymore.
      We are also using our new shared pointers that put the shared pointer count
      and the object into the same allocation for a tad better performance.
      
      llvm-svn: 118319
      2d4edfbc
  9. Nov 04, 2010
    • Greg Clayton's avatar
      Added support for loading and unloading shared libraries. This was done by · 8f343b09
      Greg Clayton authored
      adding support into lldb_private::Process:
      
          virtual uint32_t
          lldb_private::Process::LoadImage (const FileSpec &image_spec, 
                                            Error &error);
      
          virtual Error
          lldb_private::Process::UnloadImage (uint32_t image_token);
      
      There is a default implementation that should work for both linux and MacOSX.
      This ability has also been exported through the SBProcess API:
      
          uint32_t
          lldb::SBProcess::LoadImage (lldb::SBFileSpec &image_spec, 
                                      lldb::SBError &error);
      
          lldb::SBError
          lldb::SBProcess::UnloadImage (uint32_t image_token);
      
      Modified the DynamicLoader plug-in interface to require it to be able to 
      tell us if it is currently possible to load/unload a shared library:
      
          virtual lldb_private::Error
          DynamicLoader::CanLoadImage () = 0;
      
      This way the dynamic loader plug-ins are allows to veto whether we can 
      currently load a shared library since the dynamic loader might know if it is
      currenlty loading/unloading shared libraries. It might also know about the
      current host system and know where to check to make sure runtime or malloc
      locks are currently being held.
      
      Modified the expression parser to have ClangUserExpression::Evaluate() be
      the one that causes the dynamic checkers to be loaded instead of other code
      that shouldn't have to worry about it.
      
      llvm-svn: 118227
      8f343b09
  10. Nov 03, 2010
    • Greg Clayton's avatar
      Fixed shared library unloads when the unloaded library doesn't come off · 6ba50850
      Greg Clayton authored
      the end of the list. We had an issue in the MacOSX dynamic loader where if
      we had shlibs:
      1 - a.out
      2 - a.dylib
      3 - b.dylib
      
      And then a.dylib got unloaded, we would unload b.dylib due to the assumption
      that only shared libraries could come off the end of the list. We now properly
      search and find which ones get loaded.
      
      Added a new internal logging category for the "lldb" log channel named "dyld".
      This should allow all dynamic loaders to use this as a generic log channel so
      we can track shared library loads and unloads in the logs without having to 
      have each plug-in make up its own logging channel.
      
      llvm-svn: 118147
      6ba50850
  11. Oct 27, 2010
    • Greg Clayton's avatar
      Updated the lldb_private::Flags class to have better method names and made · 73b472d4
      Greg Clayton authored
      all of the calls inlined in the header file for better performance.
      
      Fixed the summary for C string types (array of chars (with any combo if
      modifiers), and pointers to chars) work in all cases.
      
      Fixed an issue where a forward declaration to a clang type could cause itself
      to resolve itself more than once if, during the resolving of the type itself
      it caused something to try and resolve itself again. We now remove the clang
      type from the forward declaration map in the DWARF parser when we start to 
      resolve it and avoid this additional call. This should stop any duplicate
      members from appearing and throwing all the alignment of structs, unions and
      classes.
      
      llvm-svn: 117437
      73b472d4
  12. Oct 20, 2010
    • Greg Clayton's avatar
      Fixed an issue where we were resolving paths when we should have been. · 274060b6
      Greg Clayton authored
      So the issue here was that we have lldb_private::FileSpec that by default was 
      always resolving a path when using the:
      
      FileSpec::FileSpec (const char *path);
      
      and in the:
      
      void FileSpec::SetFile(const char *pathname, bool resolve = true);
      
      This isn't what we want in many many cases. One example is you have "/tmp" on
      your file system which is really "/private/tmp". You compile code in that
      directory and end up with debug info that mentions "/tmp/file.c". Then you 
      type:
      
      (lldb) breakpoint set --file file.c --line 5
      
      If your current working directory is "/tmp", then "file.c" would be turned 
      into "/private/tmp/file.c" which won't match anything in the debug info.
      Also, it should have been just a FileSpec with no directory and a filename
      of "file.c" which could (and should) potentially match any instances of "file.c"
      in the debug info.
      
      So I removed the constructor that just takes a path:
      
      FileSpec::FileSpec (const char *path); // REMOVED
      
      You must now use the other constructor that has a "bool resolve" parameter that you must always supply:
      
      FileSpec::FileSpec (const char *path, bool resolve);
      
      I also removed the default parameter to SetFile():
      
      void FileSpec::SetFile(const char *pathname, bool resolve);
      
      And fixed all of the code to use the right settings.
      
      llvm-svn: 116944
      274060b6
  13. Sep 28, 2010
  14. Sep 15, 2010
  15. Sep 08, 2010
    • Greg Clayton's avatar
      Remove the Flags member in lldb_private::Module in favor of bitfield boolean · e83e731e
      Greg Clayton authored
      member variables.
      
      Modified lldb_private::Module to have an accessor that can be used to tell if
      a module is a dynamic link editor (dyld) as there are functions in dyld on
      darwin that mirror functions in libc (malloc, free, etc) that should not
      be used when doing function lookups by name in expressions if there are more
      than one match when looking up functions by name.
      
      llvm-svn: 113313
      e83e731e
  16. Aug 10, 2010
  17. Jul 22, 2010
    • Greg Clayton's avatar
      Change over to using the definitions for mach-o types and defines to the · e1a916a7
      Greg Clayton authored
      defines that are in "llvm/Support/MachO.h". This should allow ObjectFileMachO
      and ObjectContainerUniversalMachO to be able to be cross compiled in Linux.
      
      Also did some cleanup on the ASTType by renaming it to ClangASTType and
      renaming the header file. Moved a lot of "AST * + opaque clang type *"
      functionality from lldb_private::Type over into ClangASTType.
      
      llvm-svn: 109046
      e1a916a7
  18. Jul 20, 2010
  19. Jul 14, 2010
  20. Jul 09, 2010
  21. Jun 19, 2010
    • Jim Ingham's avatar
      Two changes in this checkin. Added a ThreadPlanKind so that I can do some... · b01e742a
      Jim Ingham authored
      Two changes in this checkin.  Added a ThreadPlanKind so that I can do some reasoning based on the kind of thread plan
      without having to use RTTI.
      Removed the ThreadPlanContinue and replaced with a ShouldAutoContinue query that serves the same purpose.  Having to push
      another plan to assert that if there's no other indication the target should continue when this plan is popped was flakey
      and error prone.  This method is more stable, and fixed problems we were having with thread specific breakpoints.
      
      llvm-svn: 106378
      b01e742a
  22. Jun 11, 2010
    • Greg Clayton's avatar
      Made lldb_private::ArchSpec more generic so that it can take a mach-o cpu · 41f92327
      Greg Clayton authored
      type and sub-type, or an ELF e_machine value. Also added a generic CPU type
      to the arch spec class so we can have a single arch definition that the LLDB
      core code can use. Previously a lot of places in the code were using the
      mach-o definitions from a macosx header file. 
      
      Switches over to using "llvm/Support/MachO.h" for the llvm::MachO::XXX for the
      CPU types and sub types for mach-o ArchSpecs. Added "llvm/Support/ELF.h" so 
      we can use the "llvm::ELF::XXX" defines for the ELF ArchSpecs.
      
      Got rid of all CPU_TYPE_ and CPU_SUBTYPE_ defines that were previously being
      used in LLDB.
      
      llvm-svn: 105806
      41f92327
  23. Jun 10, 2010
  24. Jun 08, 2010
Loading