Use movlps / movhps to modify low / high half of 16-byet memory location.
[oota-llvm.git] / lib /
2008-05-23 Evan ChengUse movlps / movhps to modify low / high half of 16...
2008-05-23 Dan GohmanTidy up BasicBlock::getFirstNonPHI, and change a bunch...
2008-05-23 Dan GohmanAdd #includes to make some dependencies explicit.
2008-05-23 Dan GohmanIssue errors in several situations instead of aborting.
2008-05-23 Dan GohmanElaborate on the entry on integer vector multiplication...
2008-05-23 Evan ChengFix a duplicated pattern.
2008-05-23 Dan GohmanUse PMULDQ for v2i64 multiplies when SSE4.1 is availabl...
2008-05-23 Evan ChengNew entry.
2008-05-23 Dale JohannesenRewrite a loop to avoid using iterators pointing to
2008-05-23 Dan GohmanFix another isFirstClassType that now needs to be isSin...
2008-05-23 Matthijs KooijmanReplace some weird usage of UserOp1 introduced in r4949...
2008-05-23 Matthijs KooijmanRestucture a part of the SimplifyCFG pass and include...
2008-05-23 Matthijs KooijmanIndent fix.
2008-05-23 Nick LewyckyConstant integer vectors may also be negated.
2008-05-23 Nick LewyckyTypo.
2008-05-23 Nick LewyckyRevert X + X --> X * 2 optz'n which pessimizes heavily...
2008-05-23 Chris Lattnerwe compile multiply-by-constant into horrible code...
2008-05-23 Nick LewyckyImplement X + X for vectors.
2008-05-23 Nick LewyckyFix a recently added optimization to not crash on vectors.
2008-05-23 Dan GohmanGeneralize the new code in instcombine's ComputeNumSign...
2008-05-23 Dan GohmanMake structs and arrays first-class types, and add...
2008-05-23 Dan GohmanUse isSingleValueType instead of isFirstClassType to
2008-05-23 Bill WendlingRemove warnings about comparison between signed and...
2008-05-23 Dale JohannesenAllow for switch with no cases. Was causing fault
2008-05-23 Evan ChengBug: rcpps can only folds a load if the address is...
2008-05-23 Dan GohmanAdd more IR support for the new extractvalue and insert...
2008-05-23 Dan GohmanUse isSingleValueType instead of isFirstClassType to
2008-05-23 Dan GohmanUse isSingleValueType instead of isFirstClassType to
2008-05-23 Dale JohannesenPut const weak stuff in appropriate section on Darwin.
2008-05-23 Dan GohmanUse isSingleValueType instead of isFirstClassType to
2008-05-22 Evan ChengX86CodeEmitter should not set PIC style to None at...
2008-05-22 Dan GohmanUse isSingleValueType instead of isFirstClassType to
2008-05-22 Dan GohmanRecognize the "default" keyword, which is documented...
2008-05-22 David GreeneWhen rewriting defs and uses after spilling, don't...
2008-05-22 David GreeneDon't attempt to update SpillSlotToUsesMap for stack...
2008-05-22 Gabor Greiftransform more loops to iterator form, detabify
2008-05-22 Evan ChengAdd missing patterns.
2008-05-22 Gabor GreifRewrite operand loops to use iterators. This shrinks...
2008-05-22 Chris Lattnerfix an off-by-one error in my previous patch, don't...
2008-05-22 Chris LattnerAdd support for multiple-return values in inline asm...
2008-05-22 Chris LattnerFix PR2267, by allowing indirect outputs to be intermixed
2008-05-22 Chris LattnerFree and vaarg are not really volatile.
2008-05-22 Chris Lattnerrewrite the validity checking for memory promotion...
2008-05-22 Chris LattnerUse 'continue' to reduce nesting in this loop. No...
2008-05-21 Evan ChengFix PR2343. An *interesting* coalescer bug.
2008-05-21 Bill WendlingFollow-up to the reverting of r51218. This puts the...
2008-05-21 Nate BegemanFix a couple issues with the JIT and multiple modules:
2008-05-21 Gabor Greifsuppress gcc3.4.6's <no value returned> warnings
2008-05-21 Dan GohmanWhen LSR is replacing an instruction, call
2008-05-20 Chris LattnerFix PR2346 by marking vaarg as volatile so that licm...
2008-05-20 Dan GohmanPort SelectionDAG's ComputeNumSignBits-using code to...
2008-05-20 Dan GohmanPort the fix for the select operator from instcombine's
2008-05-20 Dan GohmanCode simplification.
2008-05-20 Evan Chengmovsd and movq do not require 16-byte alignment. This...
2008-05-20 Evan ChengMore local spiller complexity!
2008-05-20 Evan ChengDon't spill dead def.
2008-05-20 Matthijs KooijmanFix typo.
2008-05-20 Chris LattnerTeach instcombine 4 new xforms:
2008-05-20 Chris Lattnerfix two issues Neil noticed, thanks!
2008-05-20 Chris LattnerAdd a bool to isEdgeFeasible that tells it whether...
2008-05-20 Dan GohmanFix ExecutionEngine's constant code to work properly...
2008-05-20 Dan GohmanRefine the fix in r51169 to only apply when the operand...
2008-05-20 Evan ChengrunOnMachineFunction should set IsPIC because relocatio...
2008-05-20 Dan GohmanMake AssociativeOpt static.
2008-05-19 Devang PatelDo not erase induction variable increment if it is...
2008-05-19 Dan GohmanAdd a ComputeNumSignBits function for use by instcombin...
2008-05-19 Dale JohannesenHandle quoted names when constructing $stub's,
2008-05-19 Chris Lattnerswitch to Type::getFPMantissaWidth instead of reinventi...
2008-05-19 Chris Lattnerminor cleanups, teach instcombine that sitofp/uitofp...
2008-05-19 Chris Lattnerconvert fptosi(sitofp x) -> x if the fp value has...
2008-05-19 Chris LattnerFold FP comparisons where one operand is converted...
2008-05-19 Chris Lattnerremove debug output
2008-05-19 Chris Lattnerbe more aggressive about transforming add -> or when...
2008-05-19 Duncan SandsFix PR2341 - when the length is 4 use an i32 not
2008-05-19 Gordon HenriksenReverting accidental commit of generated files.
2008-05-19 Gordon HenriksenRemove a duplicative binding. Patch by Mahadevan R.
2008-05-18 Nate BegemanTeach GVN to not assert on vector comparisons
2008-05-18 Nate BegemanFix a backwards check in the JIT symbol table code
2008-05-18 Chris LattnerFix PR2339
2008-05-17 Nick LewyckyRevert constant-folding change that will miscompile...
2008-05-17 Chris Lattnertrip count computation deficiency
2008-05-17 Nick LewyckyUnbreak the build.
2008-05-17 Nick LewyckyConstant fold inttoptr and ptrtoint.
2008-05-17 Nick LewyckyMove isTrueWhenEqual to ICmpInst.
2008-05-16 Dale JohannesenLess conservative verison of previous patch,
2008-05-16 Dale JohannesenWeak functions not declared non-throwing might be
2008-05-16 Eric ChristopherAdd functions to enable adding a single attribute to...
2008-05-16 Dale JohannesenRecord weak external linkage in a case where we were
2008-05-16 Gabor GreifAPI change for {BinaryOperator|CmpInst|CastInst}::creat...
2008-05-16 Evan ChengIf the result of a BIT_CONVERT is a v1* vector, it...
2008-05-16 Duncan SandsBill pointed out that system headers should be
2008-05-16 Duncan SandsSilence the compiler warning differently. The
2008-05-16 Evan ChengDo not dup malloc, vector instructions, etc. Throttle...
2008-05-16 Owen AndersonRemove ADCE's ability to delete loops. This ability...
2008-05-16 Owen AndersonClean ups for loop deletion based on Chris' feedback.
2008-05-16 Chris Lattnerimplement PR2328.
2008-05-16 Dale JohannesenTreat common as distinct from weak global on Darwin...
2008-05-16 Dan GohmanRevert the change from r51157 in
2008-05-15 Dan GohmanFix a bug in LoopStrengthReduce that caused it to emit...
2008-05-15 Evan ChengFix typos and comments.
next