Skip to content
  1. Nov 17, 2006
  2. Sep 08, 2006
  3. Sep 04, 2006
    • Chris Lattner's avatar
      49c45d3a
    • Chris Lattner's avatar
      Completely rearchitect the interface between targets and the pass manager. · 12e97307
      Chris Lattner authored
      This pass:
      
      1. Splits TargetMachine into TargetMachine (generic targets, can be implemented
      any way, like the CBE) and LLVMTargetMachine (subclass of TM that is used by
      things using libcodegen and other support).
      2. Instead of having each target fully populate the passmgr for file or JIT
         output, move all this to common code, and give targets hooks they can
         implement.
      3. Commonalize the target population stuff between file emission and JIT
         emission.
      4. All (native code) codegen stuff now happens in a FunctionPassManager, which
         paves the way for "fast -O0" stuff in the CFE later, and now LLC could
         lazily stream .bc files from disk to use less memory.
      5. There are now many fewer #includes and the targets don't depend on the
         scalar xforms or libanalysis anymore (but codegen does).
      6. Changing common code generator pass ordering stuff no longer requires
         touching all targets.
      7. The JIT now has the option of "-fast" codegen or normal optimized codegen,
         which is now orthogonal to the fact that JIT'ing is being done.
      
      llvm-svn: 30081
      12e97307
  4. Sep 03, 2006
  5. Aug 29, 2006
  6. Aug 23, 2006
  7. Aug 02, 2006
  8. Jul 26, 2006
  9. Jul 25, 2006
  10. Jun 16, 2006
  11. May 30, 2006
  12. May 21, 2006
  13. May 20, 2006
  14. May 03, 2006
  15. Apr 08, 2006
  16. Mar 27, 2006
    • Nate Begeman's avatar
      SelectionDAGISel can now natively handle Switch instructions, in the same · ed728c12
      Nate Begeman authored
      manner that the LowerSwitch LLVM to LLVM pass does: emitting a binary
      search tree of basic blocks.  The new approach has several advantages:
      it is faster, it generates significantly smaller code in many cases, and
      it paves the way for implementing dense switch tables as a jump table by
      handling switches directly in the instruction selector.
      
      This functionality is currently only enabled on x86, but should be safe for
      every target.  In anticipation of making it the default, the cfg is now
      properly updated in the x86, ppc, and sparc select lowering code.
      
      llvm-svn: 27156
      ed728c12
  17. Mar 23, 2006
  18. Mar 19, 2006
  19. Mar 16, 2006
  20. Mar 14, 2006
  21. Mar 09, 2006
  22. Feb 22, 2006
  23. Feb 18, 2006
  24. Feb 17, 2006
  25. Feb 03, 2006
  26. Jan 27, 2006
  27. Jan 26, 2006
  28. Jan 23, 2006
  29. Jan 20, 2006
  30. Dec 20, 2005
  31. Dec 17, 2005
  32. Dec 12, 2005
  33. Nov 16, 2005
Loading