aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
2008-11-04Update in response to feedback from Chris:Bill Wendling
2008-11-04Initial checkin for stack protectors. Here's what it does:Bill Wendling
2008-10-25Move the code that adds the DeadMachineInstructionElimPass fromDan Gohman
2008-10-22Move Print*Pass to use raw_ostream.Daniel Dunbar
2008-10-21Privatize PrintModulePass and PrintFunctionPass and addDaniel Dunbar
2008-10-07Remove -disable-fast-isel. Use cl::boolOrDefault with -fast-iselDan Gohman
2008-10-01Remove OptimizeForSize global. Use function attribute optsize.Devang Patel
2008-10-01Enable FastISel by default (on x86 and x86-64) with the -fast option.Dan Gohman
2008-09-25Enable DeadMachineInstructionElim when Fast-ISel is enabled.Dan Gohman
2008-09-25Refactor the code that adds standard LLVM codegen passes intoDan Gohman
2008-08-21Use raw_ostream throughout the AsmPrinter.Owen Anderson
2008-08-17Rename some GC classes so that their roll will hopefully be clearer.Gordon Henriksen
2008-08-17Factor GC metadata table assembly generation out of Collector in preparation ...Gordon Henriksen
2008-06-30Don't run stack slot coloring if -fast.Evan Cheng
2008-06-06Enable stack coloring by default.Evan Cheng
2008-06-04Oops. Should not be enabled by default.Evan Cheng
2008-06-04Add a stack slot coloring pass. Not yet enabled.Evan Cheng
2008-06-03Do not run loop-aligner at -fast (e.g. -O0).Evan Cheng
2008-05-30Fix indentation.Evan Cheng
2008-04-23Unbreak JITAnton Korobeynikov
2008-04-23Add facility for pre-RA passesAnton Korobeynikov
2008-04-02Recommitting EH patch; this should answer most of theDale Johannesen
2008-04-01Revert 49006 for the moment.Dale Johannesen
2008-03-31Emit exception handling info for functions which areDale Johannesen
2008-03-25Avoid outputing spaces at the ends of lines.Dan Gohman
2008-03-25Do not align loops if optimizing for size.Devang Patel
2008-03-11Use PassManagerBase instead of FunctionPassManager for functionsDan Gohman
2008-02-28Added option -align-loops=<true/false> to disable loop aligner pass.Evan Cheng
2008-02-13Enable exception handling int JITNicolas Geoffray
2008-01-14don't create the post-ra scheduler unless it is enabled.Chris Lattner
2008-01-07Ammending r45669 with a missing file.Gordon Henriksen
2008-01-05allow sinking to be enabled for the jitChris Lattner
2008-01-04Move option to enable machine LICM into LLVMTargetMachine.cpp.Bill Wendling
2008-01-04Add a really quick hack at a machine code sinking pass, enabled with --enable...Chris Lattner
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-07Initial commit of the machine code LICM pass. It successfully hoists this:Bill Wendling
2007-07-27Move subreg lowering pass to be right after regalloc, per feedback.Christopher Lamb
2007-07-26Add a MachineFunction pass, which runs post register allocation, that turns s...Christopher Lamb
2007-07-20Added -print-emitted-asm to print out JIT generated asm to cerr.Evan Cheng
2007-07-13Modify previous patch per review comments.Dale Johannesen
2007-07-13Skeleton of post-RA scheduler; doesn't do anything yet.Dale Johannesen
2007-07-11Exception handling has been implemented.Duncan Sands
2007-06-19document and hide two options.Chris Lattner
2007-05-22name change requested by review of previous patchDale Johannesen
2007-05-22Make tail merging the default, except on powerPC. There was no prior artDale Johannesen
2007-03-31move a bunch of code out of the sdisel pass into its own opt pass "codegenpre...Chris Lattner
2007-03-31Add a -print-lsr-output option to LLC, to print the output of the LSR pass.Chris Lattner
2007-03-06Now LoopStrengthReduce is a LoopPass.Devang Patel
2007-02-22Use exception flag.Jim Laskey
2007-02-08Split the addPassesToEmitFile method up into two. This is so that we canBill Wendling