Skip to content
  1. Mar 27, 2013
  2. Mar 26, 2013
  3. Mar 23, 2013
  4. Mar 22, 2013
  5. Mar 21, 2013
    • Sean Callanan's avatar
      Modified the way we report fields of records. · 6b200d0b
      Sean Callanan authored
      Clang requires them to have complete types, but
      we were previously only completing them if they
      were of tag or Objective-C object types.
      
      I have implemented a method on the ASTImporter
      whose job is to complete a type.  It handles not
      only the cases mentioned above, but also array
      and atomic types.
      
      <rdar://problem/13446777>
      
      llvm-svn: 177672
      6b200d0b
    • Jason Molenda's avatar
      Add a new method GetFunctionAddressAndSizeVector to DWARFCallFrameInfo. · 5635f77a
      Jason Molenda authored
      This returns a vector of <file address, size> entries for all of
      the functions in the module that have an eh_frame FDE.
      
      Update ObjectFileMachO to use the eh_frame FDE function addresses if
      the LC_FUNCTION_STARTS section is missing, to fill in the start 
      addresses of any symbols that have been stripped from the binary.
      
      Generally speaking, lldb works best if it knows the actual start
      address of every function in a module - it's especially important
      for unwinding, where lldb inspects the instructions in the prologue
      of the function.  In a stripped binary, it is deprived of this
      information and it reduces the quality of our unwinds and saved
      register retrieval.  
      
      Other ObjectFile users may want to use the function addresses from 
      DWARFCallFrameInfo to fill in any stripped symbols like ObjectFileMachO
      does already.
      <rdar://problem/13365659> 
      
      llvm-svn: 177624
      5635f77a
  6. Mar 20, 2013
  7. Mar 19, 2013
  8. Mar 16, 2013
  9. Mar 14, 2013
    • Greg Clayton's avatar
      <rdar://problem/13421412> · faac1118
      Greg Clayton authored
      Many "byte size" members and variables were using a mixture of uint32_t and size_t. Switching over to using uint64_t everywhere.
      
      llvm-svn: 177091
      faac1118
    • Greg Clayton's avatar
      <rdar://problem/13413693> · 617995c0
      Greg Clayton authored
      Fixed a crasher in the new DWARF in .o files line table linking function where "back()" could end up being called on an empty std::vector.
      
      llvm-svn: 177082
      617995c0
  10. Mar 12, 2013
  11. Mar 09, 2013
  12. Mar 08, 2013
    • Sean Callanan's avatar
      Added very lightweight, statically-allocated · 8106d808
      Sean Callanan authored
      counters for a variety of metrics associated
      with expression parsing.  This should give some
      idea of how much work the expression parser is
      doing on Clang's behalf, and help with hopefully
      reducing that load over time.
      
      <rdar://problem/13210748> Audit type search/import for expressions
      
      llvm-svn: 176714
      8106d808
    • Greg Clayton's avatar
      <rdar://problem/13374267> · 1bbcc034
      Greg Clayton authored
      Fixed error where objective C methods with selectors names starting with ".cxx_" where causing errors for ARC built binaries.
      
      llvm-svn: 176683
      1bbcc034
    • Greg Clayton's avatar
      <rdar://problem/13119621> · c4ffd66f
      Greg Clayton authored
      Make dynamic type detection faster by using the AST metadata to help out and allow us not to complete types when we don't need to.
      
      After running "purge" on a MacOSX system, the Xcode variables view now populates more than 3x faster with this fix.
      
      llvm-svn: 176676
      c4ffd66f
  13. Mar 07, 2013
    • Greg Clayton's avatar
      <rdar://problem/13362109> · 084fad6a
      Greg Clayton authored
      LLDB was not parsing line tables correctly for DWARF in .o files after recent debug map changes. This has now been fixed. 
      
      llvm-svn: 176592
      084fad6a
  14. Mar 06, 2013
    • Greg Clayton's avatar
      Fixed enum printing for negative enums. There previously was no testing to... · 5d14fc06
      Greg Clayton authored
      Fixed enum printing for negative enums. There previously was no testing to validate that enum values were being displayed correctly.
      
      Also added C++11 enum test cases to cover enums as int8_t, int16_t int32_t, int64_t, uint8_t, uint16_t, uint32_t, and uint64_t both for DWARF and dSYM cases. The DWARF being emitted by clang is missing the enum integer type, but the code is now ready to accept and deal with the integral type if it is supplied.
      
      llvm-svn: 176548
      5d14fc06
    • Greg Clayton's avatar
      <rdar://problem/13341472> · 3e067534
      Greg Clayton authored
      LLDB wasn't printing the names for negative enums. Fixed the signed extraction of enumerators and how they were registered with clang's type system.
      
      llvm-svn: 176533
      3e067534
  15. Mar 04, 2013
    • Greg Clayton's avatar
      <rdar://problem/13338643> · 9422dd64
      Greg Clayton authored
      DWARF with .o files now uses 40-60% less memory!
      
      Big fixes include:
      - Change line table internal representation to contain "file addresses". Since each line table is owned by a compile unit that is owned by a module, it makes address translation into lldb_private::Address easy to do when needed.
      - Removed linked address members/methods from lldb_private::Section and lldb_private::Address
      - lldb_private::LineTable can now relink itself using a FileRangeMap to make it easier to re-link line tables in the future
      - Added ObjectFile::ClearSymtab() so that we can get rid of the object file symbol tables after we parse them once since they are not needed and kept memory allocated for no reason
      - Moved the m_sections_ap (std::auto_ptr to section list) and m_symtab_ap (std::auto_ptr to the lldb_private::Symtab) out of each of the ObjectFile subclasses and put it into lldb_private::ObjectFile.
      - Changed how the debug map is parsed and stored to be able to:
          - Lazily parse the debug map for each object file
          - not require the address map for a .o file until debug information is linked for a .o file
      
      llvm-svn: 176454
      9422dd64
    • Enrico Granata's avatar
      <rdar://problem/12897838> · c1a5b2eb
      Enrico Granata authored
      Making sure we do not try to copy memory at address 0 - that would make us crash
      
      llvm-svn: 176438
      c1a5b2eb
  16. Feb 28, 2013
    • Sean Callanan's avatar
      Fixed some problems with type deportation: · 933ca2e2
      Sean Callanan authored
        - made sure we tell Clang not to try to
          complete the type since it can't be
          completed from its origin any more; and
      
        - fixed a silly bug where we tried to
          forget about the original decl's origins
          rather than the deported decl's origin.
      
      These produced some crashes in ptr_refs,
      especially under libgmalloc.
      
      <rdar://problem/13256150>
      
      llvm-svn: 176233
      933ca2e2
  17. Feb 27, 2013
  18. Feb 23, 2013
    • Greg Clayton's avatar
      <rdar://problem/13265297> · 72310355
      Greg Clayton authored
      StackFrame assumes m_sc is additive, but m_sc can lose its target. So now the SymbolContext::Clear() method takes a bool that indicates if the target should be cleared. Modified all existing code to properly set the bool argument.
      
      llvm-svn: 175953
      72310355
  19. Feb 21, 2013
    • Daniel Malea's avatar
      Adding CMake build system to LLDB. Some known issues remain: · 23720cc6
      Daniel Malea authored
      - generate-vers.pl has to be called by cmake to generate the version number
      - parallel builds not yet supported; dependency on clang must be explicitly specified
      
      Tested on Linux.
      - Building on Mac will require code-signing logic to be implemented.
      - Building on Windows will require OS-detection logic and some selective directory inclusion
      
      Thanks to Carlo Kok (who originally prepared these CMakefiles for Windows) and Ben Langmuir
      who ported them to Linux!
      
      llvm-svn: 175795
      23720cc6
  20. Feb 19, 2013
  21. Feb 13, 2013
  22. Feb 12, 2013
    • Sean Callanan's avatar
      Made LLDB build with the latest Clang. This meant · eeffea41
      Sean Callanan authored
      changing the ClangASTSource to return a bool instead
      of returning a list of results.  Our testsuite mostly
      works with this change, but some minor issues may
      remain both on LLDB's side and on Clang's side.
      
      llvm-svn: 174949
      eeffea41
  23. Feb 08, 2013
  24. Feb 07, 2013
  25. Feb 06, 2013
    • Greg Clayton's avatar
      <rdar://problem/13159777> · 5ce9c565
      Greg Clayton authored
      lldb was mmap'ing archive files once per .o file it loads, now it correctly shares the archive between modules.
      
      LLDB was also always mapping entire contents of universal mach-o files, now it maps just the slice that is required.
      
      Added a new logging channel for "lldb" called "mmap" to help track future regressions.
      
      Modified the ObjectFile and ObjectContainer plugin interfaces to take a data offset along with the file offset and size so we can implement the correct caching and efficient reading of parts of files without mmap'ing the entire file like we used to.
      
      The current implementation still keeps entire .a files mmaped (once) and entire slices from universal files mmaped to ensure that if a client builds their binaries during a debug session we don't lose our data and get corrupt object file info and debug info.
      
      llvm-svn: 174524
      5ce9c565
    • Greg Clayton's avatar
      <rdar://problem/11109570> · 906ba471
      Greg Clayton authored
      The first part of the fix for having LLDB handle LTO debugging when the DWARF is in the .o files. This part separates the object file's modules into a separate cache map that maps unique C strings for the N_OSO path to the ModuleSP since one object file might be mentioned more than once in LTO binaries.
      
      llvm-svn: 174476
      906ba471
  26. Feb 01, 2013
    • Greg Clayton's avatar
      <rdar://problem/13092722> · 39f7ee86
      Greg Clayton authored
      Fix in loading mach files from memory when using DynamicLoaderMacOSXDYLD.
      
      Removed the uuid mismatch warning that could be spit out and any time during debugging and removed the test case that was looking for that. Currently the "add-dsym" or "target symbols add" command will report an error when the UUID's don't match.
      
      Be more careful when checking and resolving section + offset addresses to make sure none of the base addresses are invalid.
      
      llvm-svn: 174222
      39f7ee86
    • Sean Callanan's avatar
      Modified the expression parser's class wrapper to · fa4fab77
      Sean Callanan authored
      support reporting "this" as a templated class.  The
      expression parser wraps expressions in C++ methods
      as methods with the signature
      
      $__lldb_class::$__lldb_expr(...)
      
      and previously responded to clang's queries about
      $__lldb_class with the type of *this.  This didn't
      work if *this was a ClassTemplateSpecializationDecl
      because ClassTemplateSpecializationDecls can't be
      the result of simple name queries.
      
      Instead what we do now is respond that $__lldb_class
      is a typedef and that the target of the typedef is
      the (potentially templated) type of *this.  That is
      much more robust.
      
      Thanks to John McCall for key insights.
      
      <rdar://problem/10987183>
      
      llvm-svn: 174153
      fa4fab77
    • Greg Clayton's avatar
      Get rid for switch statement warning for unhandled cases. · 3dcaa2c8
      Greg Clayton authored
      llvm-svn: 174128
      3dcaa2c8
  27. Jan 30, 2013
    • Greg Clayton's avatar
      <rdar://problem/9141269> · 1b3815cb
      Greg Clayton authored
      Cleaned up the objective C name parsing code to use a class.
      
      Now breakpoints that are set by name that are objective C methods without the leading '+' or '-' will resolve. We do this by expanding all the objective C names for a given string. For example:
      
      (lldb) b [MyString cStringUsingEncoding:]
      
      Will set a breakpoint with multiple possible names: 
      -[MyString cStringUsingEncoding:]
      +[MyString cStringUsingEncoding:]
      
      Also if you have a category, it will strip the category and set a breakpoint in all variants:
      
      (lldb) [MyString(my_category) cStringUsingEncoding:]
      
      Will resolve to the following names:
      
      -[MyString(my_category) cStringUsingEncoding:]
      +[MyString(my_category) cStringUsingEncoding:]
      -[MyString cStringUsingEncoding:]
      +[MyString cStringUsingEncoding:]
      
      Likewise when we have:
      
      (lldb) b -[MyString(my_category) cStringUsingEncoding:]
      
      It will resolve to two names:
      -[MyString(my_category) cStringUsingEncoding:]
      -[MyString cStringUsingEncoding:]
      
      llvm-svn: 173858
      1b3815cb
  28. Jan 25, 2013
    • Greg Clayton's avatar
      <rdar://problem/13069948> · c7bece56
      Greg Clayton authored
      Major fixed to allow reading files that are over 4GB. The main problems were that the DataExtractor was using 32 bit offsets as a data cursor, and since we mmap all of our object files we could run into cases where if we had a very large core file that was over 4GB, we were running into the 4GB boundary.
      
      So I defined a new "lldb::offset_t" which should be used for all file offsets.
      
      After making this change, I enabled warnings for data loss and for enexpected implicit conversions temporarily and found a ton of things that I fixed.
      
      Any functions that take an index internally, should use "size_t" for any indexes and also should return "size_t" for any sizes of collections.
      
      llvm-svn: 173463
      c7bece56
Loading