aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
AgeCommit message (Expand)Author
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
2010-01-15Hook up llc's -filetype=obj to use MCStreamer if an MCCodeEmitter is available.Nate Begeman
2010-01-14Add comment explaining the necessity of r93456Jim Grosbach
2010-01-14Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,Jim Grosbach
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