Skip to content
  1. Oct 16, 2004
  2. Oct 12, 2004
  3. Sep 15, 2004
  4. Sep 10, 2004
  5. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  6. Aug 20, 2004
  7. Aug 17, 2004
  8. Aug 05, 2004
  9. Aug 04, 2004
  10. Jul 29, 2004
  11. Jul 19, 2004
  12. Jul 18, 2004
    • Reid Spencer's avatar
      bug 122: · 1ebe1abe
      Reid Spencer authored
      - Replace ConstantPointerRef usage with GlobalValue usage
      - Minimize redundant isa<GlobalValue> usage
      - Correct isa<Constant> for GlobalValue subclass
      - Delete ConstantPointerRef member function implementations
      
      llvm-svn: 14928
      1ebe1abe
  13. Jul 12, 2004
  14. Jul 04, 2004
  15. Jun 21, 2004
  16. Jun 17, 2004
  17. Jun 09, 2004
  18. Jun 05, 2004
  19. May 25, 2004
  20. Apr 05, 2004
  21. Mar 31, 2004
  22. Mar 29, 2004
  23. Mar 12, 2004
  24. Mar 08, 2004
  25. Feb 16, 2004
  26. Feb 15, 2004
  27. Feb 09, 2004
  28. Feb 01, 2004
  29. Jan 23, 2004
  30. Jan 14, 2004
  31. Jan 12, 2004
    • Chris Lattner's avatar
      Rename ConstantHandling.* -> ConstantFolding.* · 5a945e36
      Chris Lattner authored
      Move a bunch of (now) private stuff from ConstantFolding.h into
      ConstantFolding.cpp.
      
      This _finally_ gets us to a place where we have a sane constant folder.  The
      rules are:
      
      1. LLVM clients now use ConstantExpr::get* methods to fold constants.  If they
         cannot be folded, a constantexpr is created, so these methods always return
         valid Constant*'s.
      2. The implementation of ConstantExpr::get* uses the functions exposed by
         ConstantFolding.h to try to fold constants.  If they cannot be folded,
         they should return a null pointer.
      3. The implementation of ConstantFolding can do whatever it wants, and only
         has one client (Constants.cpp)
      
      This cuts down on the wierd dependencies, and eliminates the two interfaces.
      The old constanthandling interface was especially bad for clients to use
      because almost none of them took the failure condition into consideration,
      thus leading to obscure problems.
      
      llvm-svn: 10807
      5a945e36
Loading