For PR411:
[oota-llvm.git] / lib / CodeGen /
2006-01-23 Chris LattnerFix Regression/CodeGen/SparcV8/2006-01-22-BitConvertLeg...
2006-01-23 Evan ChengRemove a couple of unnecessary #include's
2006-01-23 Evan ChengFactor out more instruction scheduler code to the base...
2006-01-23 Chris LattnerFix bugs lowering stackrestore, fixing 2004-08-12-Inlin...
2006-01-22 Chris LattnerAdd explicit #includes of <iostream>
2006-01-21 Chris LattnerFix a bug in a recent refactor that caused a bunch...
2006-01-21 Chris LattnerFix CodeGen/PowerPC/2006-01-20-ShiftPartsCrash.ll
2006-01-21 Evan ChengDo some code refactoring on Jim's scheduler in preparat...
2006-01-21 Jim LaskeySimplify search for abbreviations.
2006-01-21 Jim LaskeyCorrect some simple errors.
2006-01-20 Jim LaskeyRight size integer values before emitting.
2006-01-20 Jim LaskeyReworked how Dwarf debug info entries and abbreviations...
2006-01-20 Chris Lattnerremove some unintentionally committed code
2006-01-20 Chris LattnerIf the target doesn't support f32 natively, insert...
2006-01-19 Evan ChengAnother typo
2006-01-18 Andrew Lenharthwas ignoring the legalized chain in this case, fixed...
2006-01-18 Nate BegemanGet rid of code in the DAGCombiner that is duplicated...
2006-01-18 Chris LattnerTemporary work around for a libcall insertion bug:...
2006-01-18 Chris LattnerFix a backwards conditional that caused an inf loop...
2006-01-18 Jim LaskeyAdded minimum Dwarf aranges. Cleaned up some section...
2006-01-17 Jim LaskeyAdd frame work for additional dwarf sections. Comments...
2006-01-17 Robert BocchinoSupport for the insertelement operation.
2006-01-17 Evan ChengBug fix: missing LegalizeOp() on newly created nodes.
2006-01-17 Jim LaskeyAdding basic support for Dwarf line number debug inform...
2006-01-16 Reid SpencerFor PR411:
2006-01-16 Nate BegemanConstant fold ctpop/ctlz/cttz, and a couple other small...
2006-01-16 Nate BegemanExpand case for 64b Legalize, even though no one should...
2006-01-16 Nate BegemanAdd BSWAP stuff to intrinsic lowering for CBE & friends.
2006-01-15 Chris LattnerDisable two transformations that contribute to bus...
2006-01-15 Chris LattnerAllow the target to specify 'expand' if they just requi...
2006-01-15 Chris LattnerFix custom lowering of dynamic_stackalloc
2006-01-15 Chris Lattneradd a missing node name
2006-01-14 Chris LattnerToken chain results are not always the first or last...
2006-01-14 Nate BegemanRemove some duplicated code
2006-01-14 Nate Begemanbswap implementation
2006-01-13 Chris LattnerIf a target specified a stack pointer with setStackPoin...
2006-01-13 Chris LattnerCompile llvm.stacksave/restore into STACKSAVE/STACKREST...
2006-01-13 Chris Lattneradd stacksave/stackrestore nodes
2006-01-13 Chris LattnerAdd "support" for stacksave/stackrestore to the dag...
2006-01-13 Chris LattnerAdd "support" for the llvm.stacksave/stackrestore intri...
2006-01-12 Chris LattnerAdd a simple missing fold to produce this:
2006-01-12 Chris LattnerIf using __main, emit global ctor/dtor list like any...
2006-01-12 Chris LattnerDon't create rotate instructions in unsupported types...
2006-01-11 Evan ChengAllow custom lowering of DYNAMIC_STACKALLOC.
2006-01-11 Evan Chengignore register #0
2006-01-11 Nate BegemanAdd bswap, rotl, and rotr nodes
2006-01-10 Chris Lattnersilence a warning
2006-01-10 Robert BocchinoAdded selection DAG support for the extractelement...
2006-01-10 Chris LattnerMinor cleanup, no functionality change for current...
2006-01-09 Chris LattnerFix an exponential function in libcall insertion to...
2006-01-09 Evan Cheng* Allow custom lowering of ADD_PARTS, SUB_PARTS, SHL_PA...
2006-01-09 Evan ChengNew getNode() variants.
2006-01-06 Chris LattnerUnbreak the build :(
2006-01-06 Evan ChengRevert the previous check-in. Leave shl x, 1 along...
2006-01-06 Evan Chengfold (shl x, 1) -> (add x, x)
2006-01-06 Evan ChengSupport for custom lowering of ISD::RET.
2006-01-05 Jim LaskeyAdded initial support for DEBUG_LABEL allowing debug...
2006-01-04 Jim LaskeyApplied some recommend changes from sabre. The dominat...
2006-01-04 Jim LaskeyAdd unique id to debug location for debug label use...
2006-01-04 Jim LaskeyAdd check for debug presence.
2006-01-04 Jim LaskeyTie dwarf generation to darwin assembler.
2006-01-04 Jim LaskeyMoving MachineDebugInfo to module level location.
2006-01-04 Jim LaskeyChange how MachineDebugInfo is fetched.
2006-01-04 Jim LaskeyExtending MachineDebugInfo.
2006-01-04 Chris LattnerAdd support for targets (like Alpha) that have terminat...
2006-01-04 Chris LattnerAdd an assertion, update DefInst even though no one...
2006-01-04 Chris LattnerAdd a LiveVariables::VarInfo::dump method
2006-01-03 Chris LattnerChange a variable from being an iterator to a raw Machi...
2005-12-30 Nate BegemanMake sure to pass the offset into the new node, so...
2005-12-29 Duraid Madinapurity++
2005-12-28 Duraid Madinaadd these so I can be less naughty
2005-12-28 Duraid MadinaHB is *the* code janitor.
2005-12-28 Duraid Madinamixed-STL programs are big and nasty :(
2005-12-25 Andrew Lenharthallow custom lowering to return null for legal results
2005-12-24 Andrew LenharthSupport Custom lowering of a few more operations.
2005-12-23 Jim LaskeyRemove redundant debug locations.
2005-12-23 Chris Lattnerunbreak the build :-/
2005-12-23 Evan ChengAllow custom lowering of LOAD, EXTLOAD, ZEXTLOAD, STORE...
2005-12-23 Chris LattnerSimplify store(bitconv(x)) to store(x). This allows...
2005-12-23 Chris Lattnerfold (conv (load x)) -> (load (conv*)x).
2005-12-23 Chris LattnerFold bitconv(bitconv(x)) -> x. We now compile this:
2005-12-23 Chris Lattnerconstant fold bits_convert in getNode and in the dag...
2005-12-23 Chris LattnerFix a pasto
2005-12-23 Chris Lattnerfix a thinko in the bit_convert handling code
2005-12-23 Chris Lattneradd very simple support for the BIT_CONVERT node
2005-12-22 Chris Lattnerremove dead code
2005-12-22 Chris LattnerThe 81st column doesn't like code in it.
2005-12-22 Reid SpencerAdd an eol at the end to shut gcc sup.
2005-12-21 Evan ChengLefted out TargetLowering::
2005-12-21 Evan Cheng* Fix a GlobalAddress lowering bug.
2005-12-21 Jim LaskeyDisengage DEBUG_LOC from non-PPC targets.
2005-12-21 Evan Cheng* Added support for X86 RET with an additional operand...
2005-12-21 Jim LaskeyStart of Dwarf framework.
2005-12-21 Chris Lattnermake sure to relegalize all cases
2005-12-21 Chris Lattnerenable the gep isel opt
2005-12-21 Chris Lattnerfix a bug I introduced that broke recursive expansion...
2005-12-21 Chris LattnerLower ConstantAggregateZero into zeros
2005-12-21 Chris LattnerDon't emit a null terminator, nor anything after it...
2005-12-20 Evan ChengAdded a hook to print out names of target specific...
2005-12-20 Chris LattnerFix a nasty latent bug in the legalizer that was trigge...
next