Fix SingleSource/Regression/C/2005-05-06-LongLongSignedShift.c, we were not
[oota-llvm.git] / lib / CodeGen /
2005-01-16 Chris LattnerAdd assertions.
2005-01-16 Chris LattnerAdd support for promoted registers being live across...
2005-01-16 Chris LattnerSet up identity transforms.
2005-01-16 Chris LattnerMove some information into the TargetLowering object.
2005-01-16 Chris LattnerUse the new TLI method to get this.
2005-01-16 Chris LattnerMove some information out of LegalizeDAG into the gener...
2005-01-16 Chris Lattnerlegalize a bunch of operations that I missed.
2005-01-16 Chris LattnerAdd support for targets that require promotions.
2005-01-16 Chris LattnerFix some serious bugs in promotion.
2005-01-16 Chris LattnerEliminate unneeded extensions.
2005-01-15 Chris LattnerImplement promotion of a whole bunch more operators...
2005-01-15 Chris LattnerPrint extra type for nodes with extra type info.
2005-01-15 Chris LattnerAdd support for legalizing FP_ROUND_INREG, SIGN_EXTEND_...
2005-01-15 Chris LattnerCommon code factored out.
2005-01-15 Chris LattnerAdd support for promoting ADD/MUL.
2005-01-15 Chris LattnerAdd new SIGN_EXTEND_INREG, ZERO_EXTEND_INREG, and FP_RO...
2005-01-15 Chris LattnerAdd intitial support for promoting some operators.
2005-01-14 Chris LattnerAdjust to CopyFromReg changes, implement deletion of...
2005-01-14 Chris LattnerStart implementing truncating stores and extending...
2005-01-14 Chris LattnerImprove compatibility with acc
2005-01-13 Chris LattnerAdd new ImplicitDef node, rename CopyRegSDNode class...
2005-01-13 Chris LattnerDon't forget the existing root.
2005-01-13 Chris LattnerCodegen independent ops as being independent.
2005-01-13 Chris LattnerLegalize new node, add assertion.
2005-01-13 Chris LattnerPrint new node.
2005-01-12 Chris LattnerDo not fold (zero_ext (sign_ext V)) -> (sign_ext V...
2005-01-12 Chris LattnerNew method
2005-01-12 Chris LattnerFix sign extend to long. When coming from sbyte, we...
2005-01-12 Reid SpencerShut up warnings with GCC 3.4.3 about uninitialized...
2005-01-12 Chris LattnerAdd an option to view the selection dags as they are...
2005-01-11 Chris LattnerPrint the value types in the nodes of the graph
2005-01-11 Chris Lattneradd an assertion, avoid creating copyfromreg/copytoreg...
2005-01-11 Chris LattnerClear the whole array, always.
2005-01-11 Chris LattnerSquelch optimized warning.
2005-01-11 Chris LattnerTeach legalize to lower MEMSET/MEMCPY/MEMMOVE operation...
2005-01-11 Chris LattnerPrint new operations.
2005-01-11 Chris LattnerTurn memset/memcpy/memmove into the corresponding opera...
2005-01-11 Chris Lattnershift X, 0 -> X
2005-01-11 Chris LattnerPrint SelectionDAGs bottom up, include extra info in...
2005-01-10 Chris LattnerAdd a marker for the graph root.
2005-01-10 Chris LattnerPut the operation name in each node, put the function...
2005-01-10 Chris LattnerSplit out SDNode::getOperationName into its own method.
2005-01-10 Chris LattnerImplement initial selectiondag printing support. This...
2005-01-10 Chris LattnerLower to the correct functions. This fixes FreeBench...
2005-01-10 Chris LattnerImplement a couple of more simplifications. This lets...
2005-01-10 Chris LattnerFix incorrect constant folds, fixing Stepanov after...
2005-01-10 Chris LattnerConstant fold shifts, turning this loop:
2005-01-09 Chris LattnerAdd some folds for == and != comparisons. This allows...
2005-01-09 Jeff CohenFix VC++ compilation error
2005-01-09 Chris LattnerPrint the DAG out more like a DAG in nested format.
2005-01-09 Chris LattnerPrint out nodes sorted by their address to make it...
2005-01-09 Chris LattnerAdd a simple transformation. This allows us to compile...
2005-01-09 Chris LattnerFix a bug legalizing call instructions (make sure to...
2005-01-09 Chris LattnerFix a minor bug legalizing dynamic_stackalloc. This...
2005-01-09 Chris LattnerTeach legalize to deal with DYNAMIC_STACKALLOC (aka...
2005-01-09 Chris LattnerHandle static alloca arguments to PHI nodes.
2005-01-09 Chris LattnerUse new interfaces to correctly lower varargs and retur...
2005-01-08 Chris LattnerAdd support for llvm.setjmp and longjmp. Only 3 Single...
2005-01-08 Chris LattnerTighten up assertions.
2005-01-08 Chris LattnerSilence VS warnings
2005-01-08 Chris LattnerSilence warnings from VS
2005-01-08 Chris LattnerSilence VS warnings
2005-01-08 Chris LattnerSilence VS warnings.
2005-01-08 Chris LattnerImplement handling of most long operators through libcalls.
2005-01-08 Chris LattnerAdjust to changes in LowerCAllTo interfaces
2005-01-08 Chris LattnerAdd support for FP->INT conversions and back.
2005-01-08 Chris LattnerImplement the 'store FPIMM, Ptr' -> 'store INTIMM,...
2005-01-08 Chris Lattner1ULL << 64 is undefined, don't do it.
2005-01-07 Chris LattnerFix a pointer invalidation problem. This fixes Generic...
2005-01-07 Chris LattnerFold conditional branches on constants away.
2005-01-07 Chris LattnerFix a thinko in the reassociation code, fixing Generic...
2005-01-07 Chris LattnerAdd support for truncating integer casts from long.
2005-01-07 Chris LattnerFix a bug in load expansion legalization and ret legali...
2005-01-07 Chris LattnerLegalize unconditional branches too
2005-01-07 Chris LattnerImplement support for long GEP indices on 32-bit archs...
2005-01-07 Chris LattnerSimplify: truncate ({zero|sign}_extend (X))
2005-01-07 Chris Lattnerimplement legalization of a bunch more operators.
2005-01-07 Chris LattnerFix another bug legalizing calls!
2005-01-07 Chris LattnerFix handling of dead PHI nodes.
2005-01-07 Chris LattnerFix a bug legalizing calls
2005-01-07 Chris LattnerAfter legalizing a DAG, delete dead nodes to save space.
2005-01-07 Chris LattnerImplement RemoveDeadNodes
2005-01-07 Chris LattnerTeach legalize how to handle condbranches
2005-01-07 Chris LattnerInitial implementation of the SelectionDAGISel class...
2005-01-07 Chris LattnerThis file is obsolete
2005-01-07 Chris LattnerInitial implementation of the DAG legalization. This...
2005-01-07 Chris LattnerComplete rewrite of the SelectionDAG class.
2005-01-07 Chris LattnerFirst draft of new Target interface
2005-01-02 Chris LattnerMake the 2-address instruction lowering pass smarter...
2004-12-15 Chris LattnerMove virtual method call out of loop
2004-12-07 Nate BegemanMove virtual function call out of loop to speed up...
2004-12-07 Reid SpencerFor PR387:\
2004-12-04 Chris LattnerPrevent accessing past the end of the intervals vector...
2004-11-28 Chris LattnerFix SingleSource/UnitTests/2004-11-28-GlobalBoolLayout...
2004-11-22 Chris LattnerFix the FIXME, nuke the JIT specific forceCompilationOf...
2004-11-22 Chris LattnerThese methods are obsolete
2004-11-20 Chris LattnerAdjust to changed interfaces
2004-11-20 Chris LattnerAdd getCurrentPCOffset() and addRelocation() methods.
2004-11-19 Chris LattnerMatch change in MachineCodeEmitter prototype.
2004-11-18 Chris Lattner* There is no reason for SpillWeights to be an instance var
next