Skip to content
  1. May 20, 2013
  2. May 18, 2013
  3. May 17, 2013
  4. May 16, 2013
  5. May 15, 2013
  6. May 14, 2013
    • Manman Ren's avatar
      GlobalOpt: fix an issue where CXAAtExitFn points to a deleted function. · b3c52fb4
      Manman Ren authored
      CXAAtExitFn was set outside a loop and before optimizations where functions
      can be deleted. This patch will set CXAAtExitFn inside the loop and after
      optimizations.
      
      Seg fault when running LTO because of accesses to a deleted function.
      rdar://problem/13838828
      
      llvm-svn: 181838
      b3c52fb4
    • Michael Gottesman's avatar
      Removed trailing whitespace. · 0c8b5628
      Michael Gottesman authored
      llvm-svn: 181760
      0c8b5628
    • Arnold Schwaighofer's avatar
      LoopVectorize: Handle loops with multiple forward inductions · 2e7a922a
      Arnold Schwaighofer authored
      We used to give up if we saw two integer inductions. After this patch, we base
      further induction variables on the chosen one like we do in the reverse
      induction and pointer induction case.
      
      Fixes PR15720.
      
      radar://13851975
      
      llvm-svn: 181746
      2e7a922a
    • Michael Gottesman's avatar
    • Michael Gottesman's avatar
      [objc-arc-opts] In the presense of an alloca unconditionally remove RR pairs... · a76143ee
      Michael Gottesman authored
      [objc-arc-opts] In the presense of an alloca unconditionally remove RR pairs if and only if we are both KnownSafeBU/KnownSafeTD rather than just either or.
      
      In the presense of a block being initialized, the frontend will emit the
      objc_retain on the original pointer and the release on the pointer loaded from
      the alloca. The optimizer will through the provenance analysis realize that the
      two are related (albiet different), but since we only require KnownSafe in one
      direction, will match the inner retain on the original pointer with the guard
      release on the original pointer. This is fixed by ensuring that in the presense
      of allocas we only unconditionally remove pointers if both our retain and our
      release are KnownSafe (i.e. we are KnownSafe in both directions) since we must
      deal with the possibility that the frontend will emit what (to the optimizer)
      appears to be unbalanced retain/releases.
      
      An example of the miscompile is:
      
        %A = alloca
        retain(%x)
        retain(%x) <--- Inner Retain
        store %x, %A
        %y = load %A
        ... DO STUFF ...
        release(%y)
        call void @use(%x)
        release(%x) <--- Guarding Release
      
      getting optimized to:
      
        %A = alloca
        retain(%x)
        store %x, %A
        %y = load %A
        ... DO STUFF ...
        release(%y)
        call void @use(%x)
      
      rdar://13750319
      
      llvm-svn: 181743
      a76143ee
  7. May 13, 2013
  8. May 12, 2013
  9. May 11, 2013
  10. May 10, 2013
  11. May 09, 2013
  12. May 08, 2013
  13. May 07, 2013
Loading