Add support for targets that pass args in registers to calls.
[oota-llvm.git] / lib / CodeGen /
2005-01-19 Chris LattnerAdd support for targets that pass args in registers...
2005-01-19 Chris LattnerFold single use token factor nodes into other token...
2005-01-19 Chris LattnerRealize the individual pieces of an expanded copytoreg...
2005-01-19 Chris LattnerKnow some identities about tokenfactor nodes.
2005-01-19 Chris LattnerKnow some simple identities. This improves codegen...
2005-01-19 Chris LattnerJust in case, handle something that is both a use and...
2005-01-19 Chris LattnerWhen an instruction moves, make sure to update the...
2005-01-19 Chris LattnerUse the TargetInstrInfo::commuteInstruction method...
2005-01-19 Chris LattnerImplement a way of expanding shifts. This applies...
2005-01-19 Chris LattnerAdd a hook to find out how the target handles shift...
2005-01-18 Chris LattnerZero is cheaper than sign extend.
2005-01-18 Chris LattnerFix some fixmes (promoting bools for select and brcond...
2005-01-18 Chris LattnerKeep track of the retval type as well.
2005-01-18 Chris LattnerTeach legalize to promote copy(from|to)reg, instead...
2005-01-18 Chris LattnerTeach legalize to promote SetCC results.
2005-01-18 Chris LattnerAllow setcc operations to have nonbool types.
2005-01-18 Chris LattnerFix the completely broken FP constant folds for setcc's.
2005-01-17 Chris LattnerNon-volatile loads can be freely reordered against...
2005-01-17 Chris LattnerDon't call SelectionDAG.getRoot() directly, go through...
2005-01-17 Chris LattnerImplement a target independent optimization to codegen...
2005-01-17 Chris LattnerRefactor code into a new method.
2005-01-16 Chris LattnerShift and setcc types default to the pointer type.
2005-01-16 Chris LattnerImplement legalize of call nodes.
2005-01-16 Chris LattnerRevamp supported ops. Instead of just being supported...
2005-01-16 Chris Lattneradd method stub
2005-01-16 Chris LattnerDon't mash stuff together.
2005-01-16 Chris LattnerUse enums, move virtual dtor out of line.
2005-01-16 Chris LattnerImplement some more missing promotions.
2005-01-16 Chris LattnerClarify assertion.
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...
next