aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
2010-07-01Fast isel no longer needs DeadMachineInstrElim to clean up after it.Dan Gohman
2010-06-24Add some comments.Dan Gohman
2010-05-27Add a -regalloc=default option that chooses a register allocator based on the -OJakob Stoklund Olesen
2010-05-26MC: Add TargetMachine support for setting the value of MCRelaxAll withDaniel Dunbar
2010-05-23MC: Add an MCLoggingStreamer, for use in debugging integrated-as mismatches.Daniel Dunbar
2010-05-18llc (et al): Add support for --show-encoding and --show-inst.Daniel Dunbar
2010-05-14XFAIL the test I added with vg_leak, apparently it is the first and only llcDaniel Dunbar
2010-04-19Code that needs a TargetMachine should have access to one directly, ratherDan Gohman
2010-04-17Fix codegen passes. -disable-ssc shouldn't disable postra machine licm.Evan Cheng
2010-04-12Enable post regalloc machine licm by default.Evan Cheng
2010-04-07Remove late ARM codegen optimization pass committed by accident.Anton Korobeynikov
2010-04-07Add hook to insert late LLVM=>LLVM passes just before iselAnton Korobeynikov
2010-04-07Post regalloc LICM. Work in progress.Evan Cheng
2010-04-04Momentous day: remove the "O" member from AsmPrinter. Now all Chris Lattner
2010-04-04fix an ugly wart in the MCInstPrinter api where theChris Lattner
2010-03-13rearrange MCContext ownership. Before LLVMTargetMachine created it Chris Lattner
2010-03-12make the mangler take an MCContext instead of an MAI.Chris Lattner
2010-03-12remove MAI argument from createAsmStreamer since itChris Lattner
2010-03-11change MCContext to always have an MCAsmInfo.Chris Lattner
2010-03-11MC: Provide MCAssembler with a TargetAsmBackend.Daniel Dunbar
2010-03-10Enable machine cse pass.Evan Cheng
2010-03-09Revert accidental commit.Evan Cheng
2010-03-09- Make the machine cse dumb coalescer (as opposed to the more awesome simpleEvan Cheng
2010-03-05We don't really care about correct register liveness information after theJakob Stoklund Olesen
2010-03-04Run machine licm before machine cse to avoid messing up licm opportunities.Evan Cheng
2010-03-04Rename -machine-cse to -enable-machine-cse.Evan Cheng
2010-03-03Add an option to enable machine cse (it's not doing anything yet.Evan Cheng
2010-02-28Add a flag to addPassesToEmit* to disable the Verifier pass runDan Gohman
2010-02-26Remove unused "NoPRE" parameter in GVN and createGVNPass().Bob Wilson
2010-02-13Besides removing phi cycles that reduce to a single value, also remove deadBob Wilson
2010-02-12give MCCodeEmitters access to the current MCContext.Chris Lattner
2010-02-12Reapply the new LoopStrengthReduction code, with compile time andDan Gohman
2010-02-12Add a new pass on machine instructions to optimize away PHI cycles that Bob Wilson
2010-02-06Run codegen dce pass for all targets at all optimization levels. Previously it'sEvan Cheng
2010-02-03change addPassesToEmitFile to return true on failure instead of its input,Chris Lattner
2010-02-03pass an instprinter into the AsmPrinter if it is available.Chris Lattner
2010-02-03make any use of the "O" stream in asmprinter print toChris Lattner
2010-02-02Hook up -filetype=obj through the MachO streamer. Here's a demo:Chris Lattner
2010-02-02use OwningPtr and factor code better.Chris Lattner
2010-02-02refactor code so that LLVMTargetMachine creates the asmstreamer and Chris Lattner
2010-02-02simplify getVerboseAsmChris Lattner
2010-02-02move handling of asm-verbose out of AsmPrinter.cpp into LLVMTargetMachine.cpp...Chris Lattner
2010-02-02Remove a bunch of stuff around the edges of the ELF writer.Chris Lattner
2010-02-02eliminate FileModel::Model, just use CodeGenFileType. The clientChris Lattner
2010-02-02eliminate all forms of addPassesToEmitMachineCode exceptChris Lattner
2010-02-02Inline addAssemblyEmitter into its one real caller and deleteChris Lattner
2010-02-01Kill the Mach-O writer, and temporarily make filetype=obj an error.Nate Begeman
2010-01-22Revert r94066, which was the patch which added a Verifier pass afterDan Gohman
2010-01-21Run the verifier after LSR, to help catch use-before-def errors beforeDan Gohman
2010-01-16Run the pre-register allocation tail duplication pass by default. RemoveBob Wilson