aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
2009-06-13Add a ARM specific pre-allocation pass that re-schedule loads / stores fromEvan Cheng
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes
2009-05-22Add a new codegen pass that normalizes dwarf exception handlingDuncan Sands
2009-05-16Pass to verify generated machine code.Jakob Stoklund Olesen
2009-05-12Fixed a stack slot coloring with reg bug: do not update implicit use / def wh...Evan Cheng
2009-05-07Rename "loop aligner" pass to "code placement optimization" pass.Evan Cheng
2009-05-07Just turn aggressive stack coloring off at -O3.Bill Wendling
2009-05-07Temporarily revert r71010. It was causing massive failures during self-hosting.Bill Wendling
2009-05-05Enable stack coloring with regs at -O3.Evan Cheng
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling
2009-04-29Second attempt:Bill Wendling
2009-04-28r70270 isn't ready yet. Back this out. Sorry for the noise.Bill Wendling
2009-04-28Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want toBill Wendling
2009-03-25CodeGen still defaults to non-verbose asm, but llc now overrides it and defau...Evan Cheng
2009-02-09Re-enable machine sinking pass now that the coalescer bugs and the AnalyzeBrn...Evan Cheng
2009-02-08Revert r63999. It was breaking self-hosting builds.Bill Wendling
2009-02-07Enable machine sinking pass in non-fast mode.Evan Cheng
2009-02-05Turn on machine LICM in non-fast mode.Evan Cheng
2008-12-18Move post-RA scheduling before branch folding for now, because branchDan Gohman
2008-11-24Run post-RA scheduling after branch folding, as it tends toDan Gohman
2008-11-20Add another machine-code printing pass when post-pass scheduling is run.Dan Gohman
2008-11-13Implement stack protectors as function attributes: "ssp" and "sspreq".Bill Wendling
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