aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
2009-09-30Add a target hook to add pre- post-regalloc scheduling passes.Evan Cheng
2009-09-30Remove -post-RA-schedule flag and add a TargetSubtarget method to enable post...David Goodwin
2009-09-25Flip -disable-post-RA-scheduler to -post-RA-scheduler.Evan Cheng
2009-09-16Add a new pass for doing late hoisting of floating-point and vectorDan Gohman
2009-08-26-fast is now -O0. -fast-isel is no longer experimental.Dan Gohman
2009-08-23remove std::ostream versions of printing stuff for MBB and MF,Chris Lattner
2009-08-22Rename TargetAsmInfo (and its subclasses) to MCAsmInfo.Chris Lattner
2009-08-17Move the sjlj exception handling conversions to a back-end pass where theyJim Grosbach
2009-08-15Allow double defs in the machine code verifier after the addPreRegAlloc passes.Jakob Stoklund Olesen
2009-08-13TargetRegistry: Change AsmPrinter constructor to be typed as returning anDaniel Dunbar
2009-08-13TargetRegistry: Reorganize AsmPrinter construction so that clients pass in theDaniel Dunbar
2009-08-12Change TargetAsmInfo to be constructed via TargetRegistry from a Target+TripleChris Lattner
2009-08-11Tidy #includes.Dan Gohman
2009-08-11SjLj based exception handling unwinding support. This patch is nasty, brutishJim Grosbach
2009-08-05Disable stack coloring with register for now. It's not able to set kill markers.Evan Cheng
2009-07-31Reapply r77654 with a fix: MachineFunctionPass's getAnalysisUsageDan Gohman
2009-07-31Revert r77654, it appears to be causing llvm-gcc bootstrap failures, and manyDaniel Dunbar
2009-07-31Manage MachineFunctions with an analysis Pass instead of the AnnotableDan Gohman
2009-07-15We don't need to use llvm_report_error, this interface can deal with errorsDaniel Dunbar
2009-07-15Add missing includes.Daniel Dunbar
2009-07-15Lift addAssemblyEmitter into LLVMTargetMachine.Daniel Dunbar
2009-07-15Lift DumpAsm / -print-emitted-asm functionality into LLVMTargetMachine.Daniel Dunbar
2009-07-14Have asm printers use formatted_raw_ostream directly to avoid aDavid Greene
2009-07-13Revert an accidental commit.Evan Cheng
2009-07-06Add the Object Code Emitter class. Original patch by Aaron Gray, I did someBruno Cardoso Lopes
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