Skip to content
  1. Apr 23, 2008
  2. Mar 11, 2008
  3. Feb 29, 2008
  4. Feb 28, 2008
  5. Feb 10, 2008
  6. Dec 29, 2007
  7. Dec 22, 2007
  8. Jul 20, 2007
  9. Feb 08, 2007
  10. Jan 27, 2007
  11. Jan 17, 2007
  12. Sep 08, 2006
  13. Sep 04, 2006
    • 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
  14. May 30, 2006
  15. May 12, 2006
  16. May 03, 2006
  17. Mar 23, 2006
  18. Mar 14, 2006
  19. Nov 08, 2005
  20. Sep 01, 2005
    • Jim Laskey's avatar
      · 19058c39
      Jim Laskey authored
      1. Use SubtargetFeatures in llc/lli.
      
      2. Propagate feature "string" to all targets.
      
      3. Implement use of SubtargetFeatures in PowerPCTargetSubtarget.
      
      llvm-svn: 23192
      19058c39
  21. Jul 12, 2005
    • Nate Begeman's avatar
      Implement Subtarget support · f26625e1
      Nate Begeman authored
      Implement the X86 Subtarget.
      
      This consolidates the checks for target triple, and setting options based
      on target triple into one place.  This allows us to convert the asm printer
      and isel over from being littered with "forDarwin", "forCygwin", etc. into
      just having the appropriate flags for each subtarget feature controlling
      the code for that feature.
      
      This patch also implements indirect external and weak references in the
      X86 pattern isel, for darwin.  Next up is to convert over the asm printers
      to use this new interface.
      
      llvm-svn: 22389
      f26625e1
  22. Jun 25, 2005
  23. Apr 22, 2005
  24. Nov 16, 2004
  25. Jul 11, 2004
  26. Jun 02, 2004
  27. Mar 09, 2004
  28. Mar 01, 2004
  29. Dec 28, 2003
  30. Dec 20, 2003
  31. Dec 12, 2003
  32. Nov 11, 2003
  33. Oct 21, 2003
  34. Oct 20, 2003
  35. Oct 17, 2003
Loading