Skip to content
  1. Jul 15, 2009
  2. Jul 14, 2009
    • David Greene's avatar
      · a31f96cf
      David Greene authored
      Have asm printers use formatted_raw_ostream directly to avoid a
      dynamic_cast<>.
      
      llvm-svn: 75670
      a31f96cf
  3. Jul 06, 2009
  4. Jul 01, 2009
  5. Jun 27, 2009
  6. May 30, 2009
  7. Apr 30, 2009
  8. Apr 29, 2009
    • Bill Wendling's avatar
      Second attempt: · 084669a1
      Bill Wendling authored
      Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to
      use the old behavior, the flag is -O0. This change allows for finer-grained
      control over which optimizations are run at different -O levels.
      
      Most of this work was pretty mechanical. The majority of the fixes came from
      verifying that a "fast" variable wasn't used anymore. The JIT still uses a
      "Fast" flag. I'll change the JIT with a follow-up patch.
      
      llvm-svn: 70343
      084669a1
  9. Apr 28, 2009
  10. Mar 25, 2009
  11. Feb 24, 2009
  12. Feb 09, 2009
  13. Sep 26, 2008
    • Dan Gohman's avatar
      Factor out the code for determining when symblic addresses · 007a6bb9
      Dan Gohman authored
      require RIP-relative addressing and use it to fix a bug
      in X86FastISel in x86-64 PIC mode, where it was trying to
      use base/index registers with RIP-relative addresses. This
      fixes a bunch of x86-64 testsuite failures.
      
      llvm-svn: 56676
      007a6bb9
  14. Aug 21, 2008
  15. Aug 17, 2008
  16. May 14, 2008
  17. Apr 23, 2008
  18. Mar 11, 2008
  19. Feb 29, 2008
  20. Feb 28, 2008
  21. Feb 10, 2008
  22. Dec 29, 2007
  23. Dec 22, 2007
  24. Jul 20, 2007
  25. Feb 08, 2007
  26. Jan 27, 2007
  27. Jan 17, 2007
  28. Sep 08, 2006
  29. 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
  30. May 30, 2006
  31. May 12, 2006
  32. May 03, 2006
  33. Mar 23, 2006
  34. Mar 14, 2006
Loading