Skip to content
  1. Aug 10, 2012
  2. Aug 06, 2012
  3. Aug 01, 2012
  4. Jul 27, 2012
  5. Jul 26, 2012
  6. Jul 25, 2012
  7. Jul 23, 2012
  8. Jul 21, 2012
  9. Jul 20, 2012
  10. Jul 19, 2012
  11. Jul 18, 2012
    • Preston Gurd's avatar
      This patch fixes 8 out of 20 unexpected failures in "make check" · f0a48ec8
      Preston Gurd authored
      when run on an Intel Atom processor. The failures have arisen due
      to changes elsewhere in the trunk over the past 8 weeks or so.
      
      These failures were not detected by the Atom buildbot because the
      CPU on the Atom buildbot was not being detected as an Atom CPU.
      The fix for this problem is in Host.cpp and X86Subtarget.cpp, but
      shall remain commented out until the current set of Atom test failures
      are fixed.
      
      Patch by Andy Zhang and Tyler Nowicki!
      
      llvm-svn: 160451
      f0a48ec8
  12. Jul 17, 2012
  13. Jul 16, 2012
  14. Jul 12, 2012
  15. Jul 11, 2012
  16. Jun 28, 2012
  17. Jun 26, 2012
  18. Jun 25, 2012
  19. Jun 24, 2012
  20. Jun 20, 2012
  21. Jun 19, 2012
    • Chandler Carruth's avatar
      Fix PR13148, an inf-loop in StringMap. · 198422a4
      Chandler Carruth authored
      StringMap suffered from the same bug as DenseMap: when you explicitly
      construct it with a small number of buckets, you can arrange for the
      tombstone-based growth path to be followed when the number of buckets
      was less than '8'. In that case, even with a full map, it would compare
      '0' as not less than '0', and refuse to grow the table, leading to
      inf-loops trying to find an empty bucket on the next insertion. The fix
      is very simple: use '<=' as the comparison. The same fix was applied to
      DenseMap as well during its recent refactoring.
      
      Thanks to Alex Bolz for the great report and test case. =]
      
      llvm-svn: 158725
      198422a4
    • Michael J. Spencer's avatar
  22. Jun 16, 2012
    • Chandler Carruth's avatar
      Don't call 'FilesToRemove[0]' when the vector is empty, even to compute · 52de271d
      Chandler Carruth authored
      the address of it. Found by a checking STL implementation used on
      a dragonegg builder. Sorry about this one. =/
      
      llvm-svn: 158582
      52de271d
    • Chandler Carruth's avatar
      Harden the Unix signals code to be more async signal safe. · e6196eba
      Chandler Carruth authored
      This is likely only the tip of the ice berg, but this particular bug
      caused any double-free on a glibc system to turn into a deadlock! It is
      not generally safe to either allocate or release heap memory from within
      the signal handler. The 'pop_back()' in RemoveFilesToRemove was deleting
      memory and causing the deadlock. What's worse, eraseFromDisk in PathV1
      has lots of allocation and deallocation paths. We even passed 'true' in
      a place that would have caused the *signal handler* to try to run the
      'system' system call and shell out to 'rm -rf'. That was never going to
      work...
      
      This patch switches the file removal to use a vector of strings so that
      the exact text needed for the 'unlink' system call can be stored there.
      It switches the loop to be a boring indexed loop, and directly calls
      unlink without looking at the error. It also works quite hard to ensure
      that calling 'c_str()' is safe, by ensuring that the non-signal-handling
      code path that manipulates the vector always leaves it in a state where
      every element has already had 'c_str()' called at least once.
      
      I dunno exactly how overkill this is, but it fixes the
      deadlock-on-double free issue, and seems likely to prevent any other
      issues from sneaking up.
      
      Sorry for not having a test case, but I *really* don't know how to test
      signal handling code easily....
      
      llvm-svn: 158580
      e6196eba
  23. Jun 13, 2012
Loading