Skip to content
  1. Nov 08, 2010
  2. Nov 07, 2010
    • Greg Clayton's avatar
      Modified the DWARF parser for both the single DWARF file and for the case · 2ccf8cfc
      Greg Clayton authored
      where the DWARF is in the .o files so they can track down the actual type for
      a forward declaration. This was working before for just DWARF files, but not
      for DWARF in .o files where the actual definition was in another .o file.
      
      Modified the main thread name in the driver to be more consistent with the
      other LLDB thread names.
      
      llvm-svn: 118383
      2ccf8cfc
  3. 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
  4. Nov 05, 2010
  5. Nov 04, 2010
    • Jason Molenda's avatar
      Use the new native unwinder by default. · 744aa8a1
      Jason Molenda authored
      llvm-svn: 118264
      744aa8a1
    • Jim Ingham's avatar
      Add a ObjC V1 runtime, and a generic AppleObjCRuntime plugin. · 2a5e0f03
      Jim Ingham authored
      Also move the Checker creation into the Apple Runtime code.
      
      llvm-svn: 118255
      2a5e0f03
    • Jason Molenda's avatar
      Revert last checkin to DisassemblerLLVM.cpp; that was some temporary · 504d3f51
      Jason Molenda authored
      debug printfs that got left behind by accident.
      
      llvm-svn: 118244
      504d3f51
    • Jason Molenda's avatar
      Add #ifdef to easily switch between the current libunwind-remote based unwinder · c311c234
      Jason Molenda authored
      or the native unwinder (UnwindLLDB).  I'll make the native unwinder the default
      once I check in with everyone tomorrow.
      
      llvm-svn: 118243
      c311c234
    • Jason Molenda's avatar
      Revert last checking to ThreadGDBRemote.cpp; I accidentally checked · 311eb2de
      Jason Molenda authored
      that in along with some cleanup work with the native unwinder code.
      
      llvm-svn: 118242
      311eb2de
    • Jason Molenda's avatar
      Built the native unwinder with all the warnings c++-4.2 could muster; · fa19c3e7
      Jason Molenda authored
      fixed them.  Added DISALLOW_COPY_AND_ASSIGN to classes that should
      not be bitwise copied.  Added default initializers for member
      variables that weren't being initialized in the ctor.  Fixed a few
      shadowed local variable mistakes.
      
      llvm-svn: 118240
      fa19c3e7
    • 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
    • Jason Molenda's avatar
      Handle the case where no eh_frame section is present. · 5976200d
      Jason Molenda authored
      RegisterContextLLDB holds a reference to the SymbolContext
      in the vector of Cursors that UnwindLLDB maintains.  Switch
      UnwindLLDB to hold a vector of shared pointers of Cursors
      so this reference doesn't become invalid.
      
      Correctly falling back from the "fast" UnwindPlan to the
      "full" UnwindPlan when additional registers need to be
      retrieved.
      
      llvm-svn: 118218
      5976200d
  6. Nov 03, 2010
    • Sean Callanan's avatar
      Factored the code that implements breakpoints on · f211510f
      Sean Callanan authored
      exceptions for different languages out of 
      ThreadPlanCallFunction and put it into the 
      appropriate language runtimes.
      
      llvm-svn: 118200
      f211510f
    • 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
  7. Nov 01, 2010
  8. Oct 30, 2010
  9. Oct 29, 2010
  10. Oct 28, 2010
  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 26, 2010
    • Jason Molenda's avatar
      Add an unwind log Printf to note when an eh_frame section is · e6194f17
      Jason Molenda authored
      loaded/parsed.  Should add timers to this eventually.
      
      Delay getting a full UnwindPlan if it's possible to unwind with
      just a fast UnwindPlan.  This keeps us from reading the eh_frame
      section unless we hit something built -fomit-frame pointer or we
      hit a frame with no symbol (read: no start address) available.
      
      It doesn't look like it is correctly falling back to using the
      full UnwindPlan to provide additional registers that the fast
      UnwindPlan doesn't supply; e.g. go to the middle of a stack and
      ask for r12 and it will show you the value of r12 in frame 0.
      That's a bug for tomorrow.
      
      llvm-svn: 117361
      e6194f17
    • Jason Molenda's avatar
      Don't indent log lines by frame # spaces if the frame # exceeds 100 - the indentation · 49ea23e2
      Jason Molenda authored
      gets to be a problem if you have a unbounded stack walk.
      
      Fix the CFA sanity checks.  Add one to the arch default UnwindPlan run which was giving
      one extra stack frame on the main thread.  Fix a couple of logging lines that had their
      argument order incorrect.
      
      llvm-svn: 117350
      49ea23e2
    • Jason Molenda's avatar
      Get a disassembler based on the correct architecture for assembly · 5c01cb6b
      Jason Molenda authored
      prologue profiling.
      
      Change the log print statements to elide the thread number, make
      some of them only print when IsLogVerbose().
      
      Add a couple of sanity checks for impossible CFA values so backtraces
      don't go too far off into the weeds.
      
      llvm-svn: 117343
      5c01cb6b
  13. Oct 25, 2010
    • Jason Molenda's avatar
      Check in the native lldb unwinder. · ab4f1924
      Jason Molenda authored
      Not yet enabled as the default unwinder but there are no known
      backtrace problems with the code at this point.
      
      Added 'log enable lldb unwind' to help diagnose backtrace problems;
      this output needs a little refining but it's a good first step.
      
      eh_frame information is currently read unconditionally - the code
      is structured to allow this to be delayed until it's actually needed.
      There is a performance hit when you have to parse the eh_frame
      information for any largeish executable/library so it's necessary
      to avoid if possible.
      
      It's confusing having both the UnwindPlan::RegisterLocation struct
      and the RegisterConextLLDB::RegisterLocation struct, I need to rename
      one of them.
      
      The writing of registers isn't done in the RegisterConextLLDB subclass
      yet; neither is the running of complex DWARF expressions from eh_frame
      (e.g. used for _sigtramp on Mac OS X).
      
      llvm-svn: 117256
      ab4f1924
  14. Oct 23, 2010
  15. 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
  16. Oct 18, 2010
    • Greg Clayton's avatar
      Still trying to get detach to work with debugserver. Got a bit closer, · 58d1c9a4
      Greg Clayton authored
      but something is still killing our inferior.
      
      Fixed an issue with darwin-debug where it wasn't passing all needed arguments
      to the inferior.
      
      Fixed a race condition with the attach to named process code.
      
      llvm-svn: 116697
      58d1c9a4
    • Greg Clayton's avatar
      Fixed debugserver to properly attach to a process by name with the · 19388cfc
      Greg Clayton authored
      "vAttachName;<PROCNAME>" packet, and wait for a new process by name to launch 
      with the "vAttachWait;<PROCNAME>".
      
      Fixed a few issues with attaching where if DoAttach() returned no error, yet
      there was no valid process ID, we would deadlock waiting for an event that
      would never happen.
      
      Added a new "process launch" option "--tty" that will launch the process 
      in a new terminal if the Host layer supports the "Host::LaunchInNewTerminal(...)"
      function. This currently works on MacOSX and will allow the debugging of 
      terminal applications that do complex operations with the terminal. 
      
      Cleaned up the output when the process resumes, stops and halts to be 
      consistent with the output format.
      
      llvm-svn: 116693
      19388cfc
    • Greg Clayton's avatar
      Added a new Host call to find LLDB related paths: · dd36defd
      Greg Clayton authored
          static bool
          Host::GetLLDBPath (lldb::PathType path_type, FileSpec &file_spec);
          
      This will fill in "file_spec" with an appropriate path that is appropriate
      for the current Host OS. MacOSX will return paths within the LLDB.framework,
      and other unixes will return the paths they want. The current PathType
      enums are:
      
      typedef enum PathType
      {
          ePathTypeLLDBShlibDir,          // The directory where the lldb.so (unix) or LLDB mach-o file in LLDB.framework (MacOSX) exists
          ePathTypeSupportExecutableDir,  // Find LLDB support executable directory (debugserver, etc)
          ePathTypeHeaderDir,             // Find LLDB header file directory
          ePathTypePythonDir              // Find Python modules (PYTHONPATH) directory
      } PathType;
      
      All places that were finding executables are and python paths are now updated
      to use this Host call.
      
      Added another new host call to launch the inferior in a terminal. This ability
      will be very host specific and doesn't need to be supported on all systems.
      MacOSX currently will create a new .command file and tell Terminal.app to open
      the .command file. It also uses the new "darwin-debug" app which is a small
      app that uses posix to exec (no fork) and stop at the entry point of the 
      program. The GDB remote plug-in is almost able launch a process and attach to
      it, it currently will spawn the process, but it won't attach to it just yet.
      This will let LLDB not have to share the terminal with another process and a
      new terminal window will pop up when you launch. This won't get hooked up
      until we work out all of the kinks. The new Host function is:
      
          static lldb::pid_t
          Host::LaunchInNewTerminal (
              const char **argv,   // argv[0] is executable
              const char **envp,
              const ArchSpec *arch_spec,
              bool stop_at_entry,
              bool disable_aslr);
      
      Cleaned up FileSpec::GetPath to not use strncpy() as it was always zero 
      filling the entire path buffer.
      
      Fixed an issue with the dynamic checker function where I missed a '$' prefix
      that should have been added.
      
      llvm-svn: 116690
      dd36defd
  17. Oct 16, 2010
  18. Oct 15, 2010
    • Greg Clayton's avatar
      Did a bit of parameter renaming. · 9476d957
      Greg Clayton authored
      llvm-svn: 116562
      9476d957
    • Greg Clayton's avatar
      Separated the DWARF index for types from that the index of the namespaces · 69b0488d
      Greg Clayton authored
      since we can't parse DW_TAG_namespace DIEs as types. They are only decls in
      clang. All of the types we handle right now have both clang "XXXType" classes
      to go with the "XXXDecl" classes which means they can be used within the 
      lldb_private::Type class. I need to check to see which other decls that don't
      have associated type objects need to float around the debugger and possibly
      make a lldb_private::Decl class to manage them.
      
      llvm-svn: 116558
      69b0488d
  19. Oct 13, 2010
    • Greg Clayton's avatar
      Fixed C++ class clang type creation and display by making sure we omit · 24739923
      Greg Clayton authored
      artifical members (like the vtable pointer member that shows up in the DWARF).
      We were adding this to each class which was making all member variables be off
      by a pointer size.
      
      Added a test case so we can track this with "test/forward".
      
      Fixed the type name index in DWARF to include all the types after finding
      some types were being omitted due to the DW_AT_specification having the
      DW_AT_declaration attribute which was being read into the real type instances
      when there were forward declarations in the DWARF, causing the type to be
      omitted. We now check to make sure any DW_AT_declaration values are only
      respected when parsing types if the attribute is from the current DIE.
      
      After fixing the missing types, we ran into some issues with the expression
      parser finding duplicate entries for __va_list_tag since they are built in
      types and would result in a "duplicate __va_list_tag definition" error. We
      are now just ignoring this name during lookup, but we will need to see if
      we can get the name lookup function to not get called in these cases.
      
      Fixed an issue that would cause an assertion where DW_TAG_subroutine_types
      that had no children, would not properly make a clang function type of:
      "void (*) (void)".
      
      llvm-svn: 116392
      24739923
  20. Oct 12, 2010
Loading