Shift amounts should have type getShiftAmountTy
[oota-llvm.git] / lib / CodeGen /
2008-10-30 Mon P WangAdd missing vsetcc expansion for widening
2008-10-30 Mon P WangAdd initial support for vector widening. Logic is...
2008-10-29 Duncan SandsUniformize capitalization of NodeId.
2008-10-29 Duncan SandsFix PR2977: LegalizeTypes support for expanding
2008-10-29 Duncan SandsAdd sanity checking for BUILD_PAIR (I noticed the
2008-10-29 Evan Cheng- More pre-split fixes: spill slot live interval comput...
2008-10-29 Duncan SandsFix a FIXME: in ReplaceNodeWith, if the new node
2008-10-29 Duncan SandsFix 80 column violations.
2008-10-29 Duncan SandsFix 80 column violations.
2008-10-29 Evan Cheng- Rewrite code that update register live interval that...
2008-10-28 Dan GohmanTake Chris' suggestion and define EnableFastISelVerbose and
2008-10-28 Dan GohmanProtect the code for fast-isel debugging with #ifndef...
2008-10-28 Duncan SandsFix darwin ppc llvm-gcc build breakage: intercept
2008-10-28 Duncan SandsFix a testcase provided by Bill in which the node
2008-10-28 Chris LattnerDon't produce invalid comparisons after legalize.
2008-10-28 Chris Lattnerfix some whitespace stuff
2008-10-28 Evan ChengIf def is in the same mbb as the barrier, spilt the...
2008-10-28 Evan ChengAdd command line option to limit the number splits...
2008-10-28 Evan ChengAvoid putting a split past the end of the live range...
2008-10-27 Evan ChengSilence a bogus compile time warning.
2008-10-27 Evan ChengRemove val# defined by a remat'ed def that is now dead.
2008-10-27 Ted KremenekFix bogus comparison of "const char *" with c-string...
2008-10-27 David GreeneAdd setSubgraphColor to color an entire portion of...
2008-10-27 David GreeneFix PR2634. Create new virtual registers from spills...
2008-10-27 Duncan SandsFix UpdateNodeOperands so that it does CSE of calls
2008-10-27 Duncan SandsFix a bug in which a node could be added to the
2008-10-27 Duncan SandsTurn on LegalizeTypes, the new type legalization
2008-10-27 Evan ChengFor now, don't split live intervals around x87 stack...
2008-10-27 Dale JohannesenIncrease default setting of tail-merge-threshold to
2008-10-26 Evan ChengDo not shrink wrap live interval in a mbb if it's livei...
2008-10-25 Evan ChengHandle cases where there aren't uses in the barrier...
2008-10-25 Dan GohmanSDNodes may have at most one Flag result. Update this...
2008-10-25 Dan GohmanMove the code that adds the DeadMachineInstructionElimP...
2008-10-25 Evan ChengIf val# def is ~0U, meaning it's defined by a PHI,...
2008-10-24 Evan ChengFix a pasto.
2008-10-24 Evan ChengFix a end() dereference; remove an abort() that wasn...
2008-10-24 Evan ChengAvoid splitting an interval multiple times; avoid split...
2008-10-24 Dale JohannesenInitialize uninitialized variable.
2008-10-23 Evan ChengCommitting a good chunk of the pre-register allocation...
2008-10-23 Duncan SandsFix thinko - the operand number has nothing to do
2008-10-22 Duncan SandsLegalizeTypes soft-float support for fpow.
2008-10-22 Duncan SandsBe nice to CellSPU: for this target getSetCCResultType
2008-10-22 Duncan SandsPort from LegalizeDAG the logic to only generate
2008-10-22 Duncan SandsAdd some comments explaining the meaning of a boolean
2008-10-22 Duncan SandsTemporarily allow the operands of a BUILD_VECTOR
2008-10-22 Daniel DunbarMove Print*Pass to use raw_ostream.
2008-10-21 Daniel DunbarPrivatize PrintModulePass and PrintFunctionPass and add
2008-10-21 Dale JohannesenAdd an SSE2 algorithm for uint64->f64 conversion.
2008-10-21 Dan GohmanFix SelectionDAGBuild lowering of Select instructions to
2008-10-21 Dan GohmanDon't create TargetGlobalAddress nodes with offsets...
2008-10-21 Dan GohmanOptimized FCMP_OEQ and FCMP_UNE for x86.
2008-10-21 Dan GohmanWhen the coalescer is doing rematerializing, have it...
2008-10-21 Dan GohmanMake the NaN test come second, heuristically assuming
2008-10-21 Oscar FuentesCMake: updated lib/CodeGen/CMakeLists.txt
2008-10-21 Chris LattnerFix gcc.c-torture/compile/920520-1.c by inserting bitco...
2008-10-20 Evan ChengAdd skeleton for the pre-register allocation live inter...
2008-10-20 Dan GohmanFast-isel no longer an experiment.
2008-10-20 Evan ChengAdd a register class -> virtual registers map.
2008-10-20 Duncan SandsSupport operations like fp_to_uint with a vector
2008-10-20 Duncan SandsLegalizeTypes support for atomic operation promotion.
2008-10-20 Duncan SandsUse DAG.getIntPtrConstant rather than DAG.getConstant
2008-10-20 Duncan SandsAlways use either MVT::i1 or getSetCCResultType for
2008-10-20 Duncan SandsFormatting - no functional change.
2008-10-20 Duncan SandsDon't use a random type for the select condition,
2008-10-19 Bill WendlingSet N->OperandList to 0 after deletion. Otherwise,...
2008-10-19 Bill WendlingFix comment. Other formatting changes. No functionality...
2008-10-19 Duncan SandsVector shuffle mask elements may be "undef". Handle
2008-10-19 Duncan SandsUse a legal integer type for vector shuffle mask
2008-10-18 Chris LattnerReapply r57699 with a fix to not crash on asms with...
2008-10-18 Dan GohmanDon't truncate GlobalAddress offsets to int in debug...
2008-10-18 Evan ChengBy min, I mean max.
2008-10-18 Evan ChengWhen creating intervals, leave min(1, numdefs) holes...
2008-10-18 Dan GohmanTeach DAGCombine to fold constant offsets into GlobalAd...
2008-10-18 Dan GohmanRevert r57699. It's causing regressions in
2008-10-17 Dan GohmanFactor out the code for mapping LLVM IR condition opcod...
2008-10-17 Evan ChengFix PR2898. Spiller delete a store for reuse before...
2008-10-17 Chris Lattneradd support for 128 bit aggregates.
2008-10-17 Bill WendlingThe Dwarf writer was comparing mangled and unmangled...
2008-10-17 Mon P WangAdded MemIntrinsicNode which is useful to represent...
2008-10-17 Dan GohmanFactor out the code for mapping LLVM IR condition opcod...
2008-10-17 Chris LattnerFix PR2356 on PowerPC: if we have an input and output...
2008-10-17 Chris Lattnerrefactor some code into a helper method, no functionali...
2008-10-17 Chris LattnerKeep track of *which* input constraint matches an output
2008-10-17 Chris Lattneradd an assert so that PR2356 explodes instead of runnin...
2008-10-17 Evan ChengFix a very subtle spiller bug: UpdateKills should not...
2008-10-17 Dan GohmanDefine patterns for shld and shrd that match immediate
2008-10-16 Dan GohmanRename AliasSet to SubRegs, to reflect changes in the...
2008-10-16 Dan GohmanMove the include of MachineLocation.h into MachineModul...
2008-10-16 Dan GohmanFix a subtle bug in DeadMachineInstructionElim's liveness
2008-10-15 Dan GohmanAdjust whitespace in debug messages to be more consistent
2008-10-15 Evan Cheng- Add target lowering hooks that specify which setcc...
2008-10-14 Dan GohmanFastISel support for exception-handling constructs.
2008-10-14 Evan ChengRename LoadX to LoadExt.
2008-10-14 Dan GohmanFix command-line option printing to print two spaces...
2008-10-13 Evan ChengFIX PR2794. Make sure SIGN_EXTEND_INREG nodes introduce...
2008-10-13 Evan ChengAlso update sub-register intervals after a trivial...
2008-10-13 Matthijs Kooijman * Make TargetLowering not crash when TargetMachine...
2008-10-13 Matthijs KooijmanMake MachineFunction not crash when TargetMachine:...
2008-10-13 Chris Lattnercalls can be supported.
2008-10-12 Owen AndersonFix a bug in live-in detection that caused lost-copy...
next