Make the non-local CSE safety checks slightly more thorough.
[oota-llvm.git] / lib /
2008-05-13 Owen AndersonMake the non-local CSE safety checks slightly more...
2008-05-13 Sanjiv GuptaAdding files for Microchip's PIC16 target.
2008-05-13 Evan ChengInstead of a vector load, shuffle and then extract...
2008-05-13 Owen AndersonAdd support for non-local CSE of read-only calls.
2008-05-13 Gabor GreifDerive GetResultInst from UnaryInstruction, this simpli...
2008-05-13 Dan GohmanChange class' public PassInfo variables to by initializ...
2008-05-13 Nate Begeman80 col / tabs fixes
2008-05-13 Nate BegemanFix and encoding error in the psrad xmm, imm8 instruction.
2008-05-13 Evan ChengOn x86, it's safe to treat i32 load anyext as a normal...
2008-05-13 Dan GohmanClean up the use of static and anonymous namespaces...
2008-05-12 Nate BegemanTeach Legalize how to scalarize VSETCC
2008-05-12 Evan ChengXform bitconvert(build_pair(load a, load b)) to a singl...
2008-05-12 Dale JohannesenBe more aggressive about tail-merging small blocks
2008-05-12 Bill WendlingConstify isSourceDefinedByImplicitDef function. Otherwi...
2008-05-12 Bill WendlingConstify the machine instruction passed into the
2008-05-12 Nate BegemanInitial X86 codegen support for VSETCC.
2008-05-12 Dale JohannesenFurther rework of tail merge algorithm. Not quite
2008-05-12 Nate BegemanSimplify some checks
2008-05-12 Dan GohmanFix a copy+paste bug; pseudo-instructions shouldn't...
2008-05-12 Nate BegemanPointer comparisons should use icmp, not vicmp
2008-05-12 Owen AndersonGo back to passing the analyses around as parameters.
2008-05-12 Nate BegemanPointer comparisons should be handled by icmp, not...
2008-05-12 Nate BegemanHard code CmpInst back to i1 for now while I go track...
2008-05-12 Evan ChengRefactor isConsecutiveLoad from X86 to TargetLowering...
2008-05-12 Bill WendlingRevert the previous commit. Go ahead and hoist remateri...
2008-05-12 Nate BegemanAdd support for vicmp/vfcmp codegen, more legalize...
2008-05-12 Bill WendlingOne real change - don't hoist something that's triviall...
2008-05-12 Nate BegemanFix build breakage
2008-05-12 Nate BegemanAdd two new instructions to the llvm IR, vicmp and...
2008-05-12 Dan GohmanMake firstEightPowers const.
2008-05-12 Dan GohmanUpdate comments.
2008-05-12 Dan GohmanFix a compile error on compilers that still want a...
2008-05-12 Dan GohmanFix a missing break in the ISD::FLT_ROUNDS_ handling...
2008-05-12 Owen AndersonMove the various analyses used by GVN into static varia...
2008-05-12 Chris Lattnerprune #includes.
2008-05-12 Chris LattnerAdd a new SparsePropagation analysis utility, which...
2008-05-11 Nick LewyckyMake constructors target-specific. This fixes problems...
2008-05-11 Anton KorobeynikovAdd note
2008-05-11 Chris LattnerFix various DOUTs to not call the extremely expensive...
2008-05-10 Chris LattnerSimplify code by using SwitchInst::findCaseValue instea...
2008-05-10 Anton KorobeynikovFix linking of internal aliases
2008-05-10 Gabor Greifmerge of use-diet branch to trunk
2008-05-10 Evan ChengWhen transforming a vector_shuffle to a load, the base...
2008-05-10 Dan GohmanFor now, abort when an ISD::VAARG is encountered on...
2008-05-10 Evan ChengSome clean up.
2008-05-10 Evan ChengIf movl top bits are undef, let it be selected to movlp...
2008-05-10 Evan ChengIf all sources of a PHI node are defined by an implicit...
2008-05-10 Bill WendlingCosmetic changes:
2008-05-09 Evan ChengAdd a pattern to do move the low element of a v4f32...
2008-05-09 Dale JohannesenRemove an evil vector bool. Cosmetic refactoring,
2008-05-09 Evan ChengHandle a few more cases of folding load i64 into xmm...
2008-05-09 Dale JohannesenRewrite tail merging algorithm to handle the
2008-05-09 Torok Edwinput LibCallAliasAnalysis into anonymous namespace to...
2008-05-09 Chris Lattnerdon't sink invokes, even if they are readonly. This...
2008-05-09 Duncan SandsFix a type and formatting.
2008-05-09 Chris LattnerImplement PR2298. This transforms:
2008-05-09 Chris Lattnerrestore doxygen comment.
2008-05-08 Anton KorobeynikovCheck for validity of aliasee pointer before dereference.
2008-05-08 Evan ChengUse movq to move low half of XMM register and zero...
2008-05-08 Chris Lattnerconservatively say that volatile stores read memory.
2008-05-08 Chris Lattnerstore can't read from memory.
2008-05-08 Chris LattnerRemove dead return. Thanks to Bill for the review!
2008-05-08 Gordon HenriksenImprove pass documentation and comments.
2008-05-08 Chris LattnerMore than just loads can read from memory: readonly...
2008-05-08 Chris LattnerMake instcombine's DSE respect loads as well as stores...
2008-05-08 Chris Lattneradd a new Instruction::mayReadFromMemory predicate...
2008-05-08 Devang PatelCheck linkage.
2008-05-08 Duncan SandsGet exception handling working again on 64 bit
2008-05-08 Chris LattnerAdd support for constant folding the 'offsetof' pattern...
2008-05-08 Evan ChengHandle vector move / load which zero the destination...
2008-05-07 Anton KorobeynikovTurn StripPointerCast() into a method
2008-05-07 Chris LattnerAdd a new LibCallAliasAnalysis pass, which is parameterized
2008-05-07 Duncan SandsOutput correct exception handling and frame info
2008-05-07 Chris LattnerAdd a new interface for describing the behavior of...
2008-05-07 Evan ChengYet another nasty spiller bug.
2008-05-07 Dan GohmanFix a bug in the ComputeMaskedBits logic for multiply.
2008-05-06 Anton KorobeynikovIf weak GlobalVariable was bitcast'ed to different...
2008-05-06 Anton KorobeynikovMake StripPointerCast a common function (should we...
2008-05-06 Owen AndersonWe need to update PHIs containing the exiting block...
2008-05-06 Devang PatelFix typo.
2008-05-06 Nick LewyckyFix typo and indentation.
2008-05-06 Nick LewyckyFix renamePathOnDisk on Win32, patch from David Leon...
2008-05-06 Chris Lattnerfix typo Duncan noticed
2008-05-06 Chris LattnerMatch things like 'armv5tejl-unknown-linux-gnu' for...
2008-05-06 Dan GohmanMake several variable declarations static.
2008-05-06 Dan GohmanRemove uses of llvm/System/IncludeFile.h that are no...
2008-05-06 Dan GohmanInstead of enumerating each opcode that isn't handled...
2008-05-06 Dan GohmanCorrect the value of LowBits in srem and urem handling in
2008-05-06 Dan GohmanFix a broken doxygen comment, and reword it for clarity.
2008-05-05 Chris Lattneradd a micro optzn.
2008-05-05 Mon P WangImproved generated code for atomic operators
2008-05-05 Evan ChengCode clean up. No functionality change.
2008-05-05 Bill WendlingFix: Some classes were derived from a class in an anony...
2008-05-05 Chris LattnerFix a crash when threading a block that includes a...
2008-05-05 Mon P WangAdded addition atomic instrinsics and, or, xor, min...
2008-05-05 Dan GohmanFix IsLinux being uninitialized on non-Linux targets.
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-05-05 Anton KorobeynikovFix 80col violation
2008-05-05 Dan GohmanFix a bug in the ELF writer that caused it to produce...
2008-05-05 Dan GohmanUse a dedicated IsLinux flag instead of an ELFLinux...
next