Skip to content
  1. Feb 12, 2015
    • Benjamin Kramer's avatar
      Update after LLVM API change. · 2ea19616
      Benjamin Kramer authored
      llvm-svn: 228933
      2ea19616
    • Greg Clayton's avatar
      Make a more complete fix for always supplying an execution context when... · 526ae040
      Greg Clayton authored
      Make a more complete fix for always supplying an execution context when getting byte sizes from types.
      
      There was a test in the test suite that was triggering the backtrace logging output that requested that the client pass an execution context. Sometimes we need the process for Objective C types because our static notion of the type might not align with the reality when being run in a live runtime.
      
      Switched from an "ExecutionContext *" to an "ExecutionContextScope *" for greater ease of use.
      
      llvm-svn: 228892
      526ae040
  2. Feb 11, 2015
    • Greg Clayton's avatar
      Fixed a crasher that could happen if: · e3c65509
      Greg Clayton authored
      - you have a type that contains a typedef to a VectorType or an ExtVectorType
      - that type is returned from an ARM function that LLDB steps over so we try to figure out the return type
      - we try to determine if the type is a homogeneous aggregate type and we crash
      
      We get not using getAs() when we should have been and using llvm::cast caused an assertion crash when the typedef type didn't return a valid VectorType or ExtVectorType.
      
      <rdar://problem/19646550>
      
      llvm-svn: 228771
      e3c65509
  3. Feb 10, 2015
  4. Feb 03, 2015
    • Greg Clayton's avatar
      Fixed bugs in the multi-threaded access in HostInfoBase. Prior to this fix,... · ff48e4be
      Greg Clayton authored
      Fixed bugs in the multi-threaded access in HostInfoBase. Prior to this fix, static bool variables were used but this is not sufficient. We now use std::call_once in all places where the previous static bool code was used to try to implement thread safety.
      
      This was causing code that opened multiple targets to try and get a path to debugserver from the GDB remote communication class, and it would get the LLDB path and some instances would return empty strings and it would cause debugserver to not be found.
      
      <rdar://problem/18756927>
      
      llvm-svn: 227935
      ff48e4be
  5. Jan 28, 2015
  6. Jan 27, 2015
  7. Jan 23, 2015
  8. Jan 15, 2015
    • Vince Harron's avatar
      Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ · 5275aaa0
      Vince Harron authored
      The refactor was motivated by some comments that Greg made
      http://reviews.llvm.org/D6918
      
      and also to break a dependency cascade that caused functions linking
      in string->int conversion functions to pull in most of lldb
      
      llvm-svn: 226199
      5275aaa0
    • Greg Clayton's avatar
      Modified LLDB to be able to lookup global variables by address. · 2501e5e2
      Greg Clayton authored
      This is done by adding a "Variable *" to SymbolContext and allowing SymbolFile::ResolveSymbolContext() so if an address is resolved into a symbol context, we can include the global or static variable for that address.
      
      This means you can now find global variables that are merged globals when doing a "image lookup --verbose --address 0x1230000". Previously we would resolve a symbol and show "_MergedGlobals123 + 1234". But now we can show the global variable name.
      
      The eSymbolContextEverything purposely does not include the new eSymbolContextVariable in its lookup since stack frame code does many lookups and we don't want it triggering the global variable lookups.
      
      <rdar://problem/18945678> 
      
      llvm-svn: 226084
      2501e5e2
  9. Jan 13, 2015
    • Jason Molenda's avatar
      Change the x86 assembly instruction unwind parser to · 34549b8f
      Jason Molenda authored
      step through the complete function looking for any epilogue
      instructions.  If we find an epilogue sequence, re-instate
      the correct unwind instructions if there is more code past
      that epilogue -- this will correctly handle an x86 function
      with multiple epilogues in it.
      
      NB there is still a bug with the "eh_frame augmented" 
      UnwindPlans and mid-function epilogues.  Looking at that next.
      
      <rdar://problem/18863406> 
      
      llvm-svn: 225770
      34549b8f
  10. Dec 29, 2014
  11. Dec 22, 2014
  12. Dec 21, 2014
    • Jason Molenda's avatar
      Various unwinder work. · 5c45c541
      Jason Molenda authored
      Most of the changes are to the FuncUnwinders class -- as we've added
      more types of unwind information, the way this class was written was
      making it a mess to maintain.  Instead of trying to keep one
      "non-call site" unwind plan and one "call site" unwind plan, track
      all the different types of unwind plans we can possibly retrieve for
      each function and have the call-site/non-call-site accessor methods
      retrieve those.
      
      Add a real "fast unwind plan" for x86_64 / i386 -- when doing an
      unwind through a function, this only has to read the first 4 bytes 
      to tell if the function has a standard prologue sequence.  If so, 
      we can use the architecture default unwind plan to backtrace 
      through this function.  If we try to retrieve the save location for
      other registers later on, a real unwind plan will be used.  This
      one is just for doing fast backtraces.
      
      Change the compact unwind plan importer to fill in the valid address
      range it is valid for. 
      
      Compact unwind, in theory, may have multiple entries for a single
      function.  The FuncUnwinders rewrite includes the start of supporting
      this correctly.  In practice compact unwind encodings are used for
      the entire range of the function today -- in fact, sometimes the same
      encoding is used for multiple functions that have the same unwind
      rules.  But I want to handle a single function that has multiple
      different compact unwind UnwindPlans eventually.
      
      llvm-svn: 224689
      5c45c541
  13. Dec 20, 2014
    • Jason Molenda's avatar
      Re-enable compact unwind use on Mac platforms. · b12a136c
      Jason Molenda authored
      When lldb has a binary with protected section contents,
      don't use the on-disk representation of that compact 
      uwnind -- read it only out of live memory where it has
      been decrypted.
      
      llvm-svn: 224670
      b12a136c
  14. Dec 16, 2014
  15. Dec 08, 2014
  16. Dec 06, 2014
  17. Dec 05, 2014
    • Sean Callanan's avatar
      This is the meat of the code to add Clang modules · 9998acd0
      Sean Callanan authored
      support to LLDB.  It includes the following:
      
      - Changed DeclVendor to TypeVendor.
      - Made the ObjCLanguageRuntime provide a DeclVendor
        rather than a TypeVendor.
      - Changed the consumers of TypeVendors to use
        DeclVendors instead.
      - Provided a few convenience functions on
        ClangASTContext to make that easier.
      
      llvm-svn: 223433
      9998acd0
  18. Nov 18, 2014
    • Jason Molenda's avatar
      Fix up the code in the FuncUnwinders class that · ae3e40dd
      Jason Molenda authored
      retrieves the personality routine addr and the
      LSDA addr.  Don't bother checking with the
      "non-call site" unwind plan - this kind of
      information is only going to come from the 
      call site unwind plan.
      
      llvm-svn: 222226
      ae3e40dd
    • Jason Molenda's avatar
      Read the LSDA and Personality Routine function address out of the · e9c7ecf6
      Jason Molenda authored
      eh_frame data.  These two pieces of information are used in the
      process of exception handler unwinding on SysV ABI systems.
      
      This patch reads the data from the eh_frame section 
      (DWARFCallFrameInfo.cpp), allows for it to be saved & read out
      of a given UnwindPlan (UnwindPlan.h, UnwindPlan.cpp) - as well
      as printing the information in the UnwindPlan::Dump method - and
      adds methods to the FuncUnwinders object so that higher levels
      can query if a given function has an LSDA / personality routine
      defined.
      
      It's only lightly tested, but seems to be working correctly as long
      as your have this information in eh_frame.  Does not address getting
      this information from compact unwind yet on Darwin systems.
      
      <rdar://problem/18742797> 
      
      llvm-svn: 222214
      e9c7ecf6
  19. Nov 17, 2014
    • Greg Clayton's avatar
      Fixed more fallout from running the test suite remotely on iOS devices. · 8012cadb
      Greg Clayton authored
      Fixed include:
      - Change Platform::ResolveExecutable(...) to take a ModuleSpec instead of a FileSpec + ArchSpec to help resolve executables correctly when we have just a path + UUID (no arch).
      - Add the ability to set the listener in SBLaunchInfo and SBAttachInfo in case you don't want to use the debugger as the default listener. 
      - Modified all places that use the SBLaunchInfo/SBAttachInfo and the internal ProcessLaunchInfo/ProcessAttachInfo to not take a listener as a parameter since it is in the launch/attach info now
      - Load a module's sections by default when removing a module from a target. Since we create JIT modules for expressions and helper functions, we could end up with stale data in the section load list if a module was removed from the target as the section load list would still have entries for the unloaded module. Target now has the following functions to help unload all sections a single or multiple modules:
      
          size_t
          Target::UnloadModuleSections (const ModuleList &module_list);
      
          size_t
          Target::UnloadModuleSections (const lldb::ModuleSP &module_sp);
      
      llvm-svn: 222167
      8012cadb
  20. Nov 15, 2014
    • Jim Ingham's avatar
      For some reason, sometimes the directory paths that clang emits have internal · 96a1596a
      Jim Ingham authored
      relative paths, like:
      
      /whatever/llvm/lib/Sema/../../include/llvm/Sema/
      
      That causes problems with our type uniquing, since we use the declaration file
      and line as one component of the uniquing, and different ways of getting to the
      same file will have different directory spellings, though they are functionally
      equivalent.  We end up with two copies of the exact same type because of this, 
      and that makes the expression parser give "duplicate type" errors.
      
      I added a method to resolve paths with ../ in them and used that in the FileSpec::Equals,
      for comparing Declarations and for doing Breakpoint compares as well, since they also
      suffer from this if you specify breakpoints by full path (since nobody knows what
      ../'s to insert...)
      
      <rdar://problem/18765814>
      
      llvm-svn: 222075
      96a1596a
  21. Nov 12, 2014
    • Justin Hibbits's avatar
      Add an alternative CFA type. · 43bcdbde
      Justin Hibbits authored
      Summary:
      PowerPC handles the stack chain with the current stack pointer being a pointer
      to the backchain (CFA).  LLDB currently has no way of handling this, so this
      adds a "CFA is dereferenced from a register" type.
      
      Discussed with Jason Molenda, who also provided the initial patch for this.
      
      Reviewers: jasonmolenda
      
      Reviewed By: jasonmolenda
      
      Subscribers: emaste, lldb-commits
      
      Differential Revision: http://reviews.llvm.org/D6182
      
      llvm-svn: 221788
      43bcdbde
  22. Nov 04, 2014
  23. Nov 01, 2014
  24. Oct 30, 2014
  25. Oct 28, 2014
  26. Oct 17, 2014
  27. Oct 16, 2014
Loading