Skip to content
  1. Nov 07, 2011
    • Eric Christopher's avatar
      8c7505f2
    • Eric Christopher's avatar
      Add new files to cmake. · e1c874aa
      Eric Christopher authored
      llvm-svn: 143924
      e1c874aa
    • Eric Christopher's avatar
      Add the support code to enable the dwarf accelerator tables. Upcoming patches · 4996c700
      Eric Christopher authored
      to fix the types section (all types, not just global types), and testcases.
      
      The code to do the final emission is disabled by default.
      
      llvm-svn: 143923
      4996c700
    • Eric Christopher's avatar
      Add a new dwarf accelerator table prototype with the goal of replacing · 6e47204b
      Eric Christopher authored
      the pubnames and pubtypes tables. LLDB can currently use this format
      and a full spec is forthcoming and submission for standardization is planned.
      
      A basic summary:
      
      The dwarf accelerator tables are an indirect hash table optimized
      for null lookup rather than access to known data. They are output into
      an on-disk format that looks like this:
      
      .-------------.
      |  HEADER     |
      |-------------|
      |  BUCKETS    |
      |-------------|
      |  HASHES     |
      |-------------|
      |  OFFSETS    |
      |-------------|
      |  DATA       |
      `-------------'
      
      where the header contains a magic number, version, type of hash function,
      the number of buckets, total number of hashes, and room for a special
      struct of data and the length of that struct.
      
      The buckets contain an index (e.g. 6) into the hashes array. The hashes
      section contains all of the 32-bit hash values in contiguous memory, and
      the offsets contain the offset into the data area for the particular
      hash.
      
      For a lookup example, we could hash a function name and take it modulo the
      number of buckets giving us our bucket. From there we take the bucket value
      as an index into the hashes table and look at each successive hash as long
      as the hash value is still the same modulo result (bucket value) as earlier.
      If we have a match we look at that same entry in the offsets table and
      grab the offset in the data for our final match.
      
      llvm-svn: 143921
      6e47204b
    • Eric Christopher's avatar
      Expose a way to get the beginning of the dwarf string section. · a7b61890
      Eric Christopher authored
      llvm-svn: 143920
      a7b61890
    • Eric Christopher's avatar
      Fix up comment. · 6abc9c5a
      Eric Christopher authored
      llvm-svn: 143919
      6abc9c5a
    • Eric Christopher's avatar
      Typo. · 2b4f7735
      Eric Christopher authored
      llvm-svn: 143918
      2b4f7735
  2. Nov 05, 2011
  3. Nov 04, 2011
  4. Nov 03, 2011
  5. Nov 02, 2011
  6. Oct 28, 2011
  7. Oct 27, 2011
  8. Oct 25, 2011
  9. Oct 19, 2011
  10. Oct 18, 2011
  11. Oct 16, 2011
  12. Oct 12, 2011
    • Eric Christopher's avatar
      Add a new wrapper node for a DILexicalBlock that encapsulates it and a · 6647b830
      Eric Christopher authored
      file. Since it should only be used when necessary propagate it through
      the backend code generation and tweak testcases accordingly.
      
      This helps with code like in clang's test/CodeGen/debug-info-line.c where
      we have multiple #line directives within a single lexical block and want
      to generate only a single block that contains each file change.
      
      Part of rdar://10246360
      
      llvm-svn: 141729
      6647b830
  13. Oct 05, 2011
  14. Oct 03, 2011
  15. Sep 29, 2011
  16. Sep 28, 2011
  17. Sep 26, 2011
  18. Sep 22, 2011
    • Devang Patel's avatar
      Do not unnecessarily use AT_specification DIE because it does not add any value. · 5e6b65cf
      Devang Patel authored
      Few weeks ago, llvm completely inverted the debug info graph. Earlier each debug info node used to keep track of its compile unit, now compile unit keeps track of important nodes. One impact of this change is that the global variable's do not have any context, which should be checked before deciding to use AT_specification DIE.
      
      llvm-svn: 140282
      5e6b65cf
  19. Sep 21, 2011
  20. Sep 15, 2011
  21. Sep 02, 2011
  22. Aug 31, 2011
    • David Greene's avatar
      Fix Size Typing · 7df940d6
      David Greene authored
      Stores sizes as uint64_t to avoid possible truncation.
      
      llvm-svn: 138901
      7df940d6
    • David Greene's avatar
      Compress Repeated Byte Output · cdef71f4
      David Greene authored
      Emit a repeated sequence of bytes using .zero.  This saves an enormous
      amount of asm file space for certain programs.
      
      llvm-svn: 138864
      cdef71f4
  23. Aug 28, 2011
  24. Aug 24, 2011
  25. Aug 20, 2011
Loading