aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
2010-01-13Re-enable extension optimization pass.Evan Cheng
2010-01-13Disable opt-ext pass to unbreak the build for now.Evan Cheng
2010-01-13Remove debug option I accidentally left in.Evan Cheng
2010-01-13Add a quick pass to optimize sign / zero extension instructions. For targets ...Evan Cheng
2010-01-06Allow double defs after tail duplication.Jakob Stoklund Olesen
2010-01-04Change errs() to dbgs().David Greene
2009-12-21Fix setting and default setting of code model for jit. Do thisEric Christopher
2009-12-17Remove debugging code.Evan Cheng
2009-12-17Revert 91280-91283, 91286-91289, 91291, 91293, 91295-91296. It apparently int...Evan Cheng
2009-12-04Add a pre-regalloc tail duplication pass.Evan Cheng
2009-11-26Rename new TailDuplicationPass to avoid name conflict with the old one.Bob Wilson
2009-11-26Split tail duplication into a separate pass. This is needed to avoidBob Wilson
2009-11-24Remove DebugLabelFolder pass. It is not used by dwarf writer anymore.Devang Patel
2009-11-20Add an experimental option to run gep-splitting and no-load GVNDan Gohman
2009-11-05Now that code placement optimization pass is run for JIT, make sure it's befo...Evan Cheng
2009-11-04Add some options to disable various code gen optimizations.Eric Christopher
2009-10-31Factor out more code into addCommonCodeGenPasses. The JIT wasn'tDan Gohman
2009-10-31Remove CodeGenLICM. It's largely obsoleted by MachineLICM's new abilityDan Gohman
2009-10-29Don't put in these EH changes.Bill Wendling
2009-10-29Reverting r85338 for now. It's causing a bootstrap failure on PPC darwin9.Bill Wendling
2009-10-28Revert r85346 change to control tail merging by CodeGenOpt::Level.Bob Wilson
2009-10-27Record CodeGen optimization level in the BranchFolding pass so that we canBob Wilson
2009-10-16Change createPostRAScheduler so it can be turned off at llc -O1.Evan Cheng
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