Skip to content
  1. Jul 14, 2007
    • Anton Korobeynikov's avatar
      Long live the exception handling! · 383a3247
      Anton Korobeynikov authored
      This patch fills the last necessary bits to enable exceptions
      handling in LLVM. Currently only on x86-32/linux.
      
      In fact, this patch adds necessary intrinsics (and their lowering) which
      represent really weird target-specific gcc builtins used inside unwinder.
      
      After corresponding llvm-gcc patch will land (easy) exceptions should be
      more or less workable. However, exceptions handling support should not be 
      thought as 'finished': I expect many small and not so small glitches
      everywhere.
      
      llvm-svn: 39855
      383a3247
  2. Jun 26, 2007
  3. Jun 19, 2007
    • Dan Gohman's avatar
      Replace M_REMATERIALIZIBLE and the newly-added isOtherReMaterializableLoad · 9e820649
      Dan Gohman authored
      with a general target hook to identify rematerializable instructions. Some
      instructions are only rematerializable with specific operands, such as loads
      from constant pools, while others are always rematerializable. This hook
      allows both to be identified as being rematerializable with the same
      mechanism.
      
      llvm-svn: 37644
      9e820649
  4. May 06, 2007
  5. Apr 25, 2007
  6. Apr 23, 2007
  7. Apr 20, 2007
  8. Apr 17, 2007
  9. Apr 11, 2007
  10. Mar 21, 2007
  11. Jan 26, 2007
  12. Jan 24, 2007
  13. Dec 05, 2006
  14. Nov 30, 2006
  15. Nov 29, 2006
  16. Nov 04, 2006
  17. Oct 30, 2006
  18. Oct 13, 2006
  19. Oct 12, 2006
  20. Oct 11, 2006
  21. Oct 09, 2006
  22. Sep 22, 2006
  23. Sep 11, 2006
  24. Sep 08, 2006
  25. Sep 07, 2006
  26. Aug 11, 2006
  27. Jul 20, 2006
  28. Jul 19, 2006
  29. Jul 11, 2006
  30. Jun 29, 2006
  31. Jun 27, 2006
  32. Jun 15, 2006
  33. Jun 02, 2006
  34. Jun 01, 2006
  35. May 30, 2006
    • Evan Cheng's avatar
      A addressing mode folding enhancement: · 734e1e24
      Evan Cheng authored
      Fold c2 in (x << c1) | c2 where (c2 < c1)
      e.g.
      int test(int x) {
        return (x << 3) + 7;
      }
      
      This can be codegen'd as:
      leal 7(,%eax,8), %eax
      
      llvm-svn: 28550
      734e1e24
  36. May 20, 2006
Loading