Skip to content
  1. Aug 14, 2010
    • Dan Gohman's avatar
      Teach SimplifyCFG how to simplify indirectbr instructions. · 4a63fad9
      Dan Gohman authored
       - Eliminate redundant successors.
       - Convert an indirectbr with one successor into a direct branch.
      
      Also, generalize SimplifyCFG to be able to be run on a function entry block.
      It knows quite a few simplifications which are applicable to the entry
      block, and it only needs a few checks to avoid trouble with the entry block.
      
      llvm-svn: 111060
      4a63fad9
  2. Jul 22, 2010
  3. Jul 15, 2010
  4. Jul 14, 2010
  5. Jul 12, 2010
  6. Jul 09, 2010
  7. Mar 30, 2010
  8. Mar 14, 2010
  9. Feb 16, 2010
  10. Feb 15, 2010
  11. Feb 05, 2010
    • Jakob Stoklund Olesen's avatar
      Teach SimplifyCFG about magic pointer constants. · 916f48a0
      Jakob Stoklund Olesen authored
      Weird code sometimes uses pointer constants other than null. This patch
      teaches SimplifyCFG to build switch instructions in those cases.
      
      Code like this:
      
      void f(const char *x) {
        if (!x)
          puts("null");
        else if ((uintptr_t)x == 1)
          puts("one");
        else if (x == (char*)2 || x == (char*)3)
          puts("two");
        else if ((intptr_t)x == 4)
          puts("four");
        else
          puts(x);
      }
      
      Now becomes a switch:
      
      define void @f(i8* %x) nounwind ssp {
      entry:
        %magicptr23 = ptrtoint i8* %x to i64            ; <i64> [#uses=1]
        switch i64 %magicptr23, label %if.else16 [
          i64 0, label %if.then
          i64 1, label %if.then2
          i64 2, label %if.then9
          i64 3, label %if.then9
          i64 4, label %if.then14
        ]
      
      Note that LLVM's own DenseMap uses magic pointers.
      
      llvm-svn: 95439
      916f48a0
  12. Jan 05, 2010
  13. Dec 02, 2009
  14. Nov 19, 2009
  15. Nov 10, 2009
  16. Nov 06, 2009
  17. Oct 31, 2009
  18. Oct 30, 2009
  19. Oct 13, 2009
  20. Sep 27, 2009
  21. Aug 26, 2009
    • Dan Gohman's avatar
      Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined, · c8a27f2a
      Dan Gohman authored
      and introduce a new Instruction::isIdenticalTo which tests for full
      identity, including the SubclassOptionalData flags. Also, fix the
      Instruction::clone implementations to preserve the SubclassOptionalData
      flags. Finally, teach several optimizations how to handle
      SubclassOptionalData correctly, given these changes.
      
      This fixes the counterintuitive behavior of isIdenticalTo not comparing
      the full value, and clone not returning an identical clone, as well as
      some subtle bugs that could be caused by these.
      
      Thanks to Nick Lewycky for reporting this, and for an initial patch!
      
      llvm-svn: 80038
      c8a27f2a
  22. Aug 23, 2009
  23. Aug 16, 2009
    • Eli Friedman's avatar
      Fix for PR3016: detect the tricky case, where there are · d56fca47
      Eli Friedman authored
      unfoldable references to a PHI node in the block being folded, and disable
      the transformation in that case.  The correct transformation of such PHI
      nodes depends on whether BB dominates Succ, and dominance is expensive 
      to compute here.  (Alternatively, it's possible to check whether any 
      uses are live, but that's also essentially a dominance calculation. 
      Another alternative is to use reg2mem, but it probably isn't a good idea to
      use that in simplifycfg.)
      
      Also, remove some incorrect code from CanPropagatePredecessorsForPHIs 
      which is made unnecessary with this patch: it didn't consider the case 
      where a PHI node in BB has multiple uses.
      
      llvm-svn: 79174
      d56fca47
  24. Aug 13, 2009
  25. Aug 12, 2009
  26. Jul 31, 2009
  27. Jul 26, 2009
  28. Jul 25, 2009
  29. Jul 22, 2009
  30. Jul 17, 2009
    • Eli Friedman's avatar
      Replace isTrapping with a new, similar method called · b8f6a4fc
      Eli Friedman authored
      isSafeToSpeculativelyExecute. The new method is a bit closer to what 
      the callers actually care about in that it rejects more things callers 
      don't want.  It also adds more precise handling for integer 
      division, and unifies code for analyzing the legality of a speculative 
      load.
      
      llvm-svn: 76150
      b8f6a4fc
  31. Jul 13, 2009
  32. Jul 10, 2009
  33. Jul 07, 2009
  34. Jul 06, 2009
Loading