fix indentation. std::pair is "isPod" if the first/second are both isPod.
[oota-llvm.git] / lib / Transforms /
2008-11-29 Chris LattnerEliminate the dropInstruction method, which is not...
2008-11-29 Chris LattnerChange MemDep::getNonLocalDependency to return its...
2008-11-29 Chris Lattnerreimplement getNonLocalDependency with a simpler worklist
2008-11-29 Chris LattnerFix a thinko that manifested as a crash on clamav last...
2008-11-29 Chris LattnerSplit getDependency into getDependency and getDependenc...
2008-11-29 Bill WendlingTemporarily revert r60195. It's causing an optimized...
2008-11-29 Chris LattnerIntroduce and use a new MemDepResult class to hold...
2008-11-29 Chris LattnerReimplement the internal abstraction used by MemDep...
2008-11-28 Chris Lattnerdon't revisit instructions off the beginning of the...
2008-11-28 Chris Lattnersimplify some code, remove escaped newline.
2008-11-28 Chris Lattnerdon't call MergeBasicBlockIntoOnlyPred on a block whose...
2008-11-28 Chris Lattnerrewrite RecursivelyDeleteTriviallyDeadInstructions...
2008-11-28 Chris Lattnerremove some weirdness that came from the LSR code that has
2008-11-28 Chris Lattnerrewrite a big chunk of how DSE does recursive dead...
2008-11-27 Chris Lattnerdelete ErasePossiblyDeadInstructionTree, replacing...
2008-11-27 Chris LattnerSimplify LoopStrengthReduce::DeleteTriviallyDeadInstruc...
2008-11-27 Chris Lattnerenhance RecursivelyDeleteTriviallyDeadInstructions...
2008-11-27 Chris LattnerEnhance RecursivelyDeleteTriviallyDeadInstructions...
2008-11-27 Chris Lattneruse continue to reduce indentation
2008-11-27 Chris Lattnerremove doConstantPropagation and dceInstruction, they...
2008-11-27 Chris Lattnersimplify code.
2008-11-27 Chris Lattnersimplify this logic.
2008-11-27 Nick LewyckyChris prefers icmp/select over udiv!
2008-11-27 Nick LewyckyAdd a couple of missed optimizations on integer vectors...
2008-11-27 Chris Lattnerdefensive patch: if CGP is merging a block with the...
2008-11-27 Chris LattnerFix PR3138: if we merge the entry block into another...
2008-11-27 Chris Lattnerswitch InstCombine::visitLoadInst to use
2008-11-27 Chris Lattnerenhance FindAvailableLoadedValue to make use of AliasAn...
2008-11-27 Chris Lattnermove FindAvailableLoadedValue from JumpThreading to...
2008-11-27 Chris Lattnersimplify this code a bit.
2008-11-27 Chris LattnerUse the new MergeBasicBlockIntoOnlyPred function.
2008-11-27 Chris Lattnermove MergeBasicBlockIntoOnlyPred to Transforms/Utils.
2008-11-27 Chris Lattnerrename ThreadBlock to ProcessBlock, since it does other...
2008-11-27 Chris LattnerMake jump threading substantially more powerful, in...
2008-11-26 Chris LattnerTurn on my codegen prepare heuristic by default. It...
2008-11-26 Chris Lattnerteach the new heuristic how to handle inline asm.
2008-11-26 Chris LattnerImprove ValueAlreadyLiveAtInst with a cheap and dirty...
2008-11-26 Chris LattnerStart rewroking a subpiece of the profitability heurist...
2008-11-26 Chris Lattneradd a comment, make save/restore logic more obvious.
2008-11-26 Chris LattnerThis adds in some code (currently disabled unless you...
2008-11-26 Evan ChengRevert r60042. IndVarSimplify should check if APFloat...
2008-11-26 Chris LattnerTeach CodeGenPrepare to look through Bitcast instructio...
2008-11-25 Chris LattnerTeach MatchScaledValue to handle Scales by 1 with Match...
2008-11-25 Chris Lattnersignificantly refactor all the addressing mode matching...
2008-11-25 Chris Lattnerrefactor all the constantexpr/instruction handling...
2008-11-25 Chris Lattneranother minor tweak
2008-11-25 Chris Lattnerminor cleanups no functionality change.
2008-11-24 Chris Lattnerrearrange and tidy some code, no functionality change.
2008-11-24 Chris Lattnerminor cleanups to debug code, no functionality change.
2008-11-24 Chris Lattnerreenable the right part of the code.
2008-11-24 Chris Lattnerrevert an accidental commit, this fixes the regression...
2008-11-24 Chris LattnerFix 3113: If we have a dead cyclic PHI, replace the...
2008-11-21 Devang PatelFix build failure.
2008-11-21 Devang PatelSilence unused variable warnings.
2008-11-21 Chris Lattnerreapply Sanjiv's patch to genericize memcpy/memset...
2008-11-21 Bill WendlingRevert r59802. It was breaking the build of llvm-gcc:
2008-11-21 Sanjiv GuptaMake mem[cpy,move,set] intrinsics overloaded.
2008-11-21 Nick LewyckyOptimize (x/y)*y into x-(x%y) in general. Div and rem...
2008-11-21 Devang PatelFix unused variable warnings.
2008-11-21 Bill WendlingFix error where it wasn't getting the correct caller...
2008-11-21 Bill WendlingIf the function being inlined has a higher stack protec...
2008-11-20 Devang PatelDon't forget arguments!
2008-11-20 Devang PatelDo not forget llvm.dbg.declare's first argument while...
2008-11-19 Oscar FuentesCMake: Removed source file.
2008-11-19 Devang PatelDo not use separate utility to walk all instructions...
2008-11-19 Devang PatelLet instcombiner remove redundant dbg intrinsics.
2008-11-19 Devang PatelIf there are two consecutive llvm.dbg.stoppoint calls...
2008-11-19 Devang PatelRemove unused variables.
2008-11-19 Devang PatelFix typo.
2008-11-18 Devang PatelAdd new helper pass that strips all symbol names except...
2008-11-18 Devang PatelRemove even more llvm.dbg variables.
2008-11-18 Devang PatelInitialize MallocFunc and FreeFunc properly.
2008-11-18 Bill WendlingCast to remove warning about comparing signed and unsigned.
2008-11-18 Devang PatelGive SIToFPInst preference over UIToFPInst because...
2008-11-17 Devang PatelWhile handling floating point IVs lift restrictions...
2008-11-17 Devang PatelHandle floating point ivs during doInitialization().
2008-11-17 Devang PatelLet AnalyzeAlloca() remove debug intrinsics.
2008-11-16 Torok EdwinIf SI->size() is 0, we are not allowed to dereference...
2008-11-16 Chris Lattnereliminate some std::set's.
2008-11-16 Chris Lattnersimplify loop
2008-11-16 Chris Lattnersimplify a bunch more instcombines to use m_Specific...
2008-11-16 Chris Lattnerfactor the code for simplifying (icmp)|(icmp) into...
2008-11-16 Chris Lattnerdo some computation with apints instead of ConstantInts.
2008-11-16 Chris Lattnermerge a check into a place where it is simpler.
2008-11-16 Chris Lattnerfactor a whole bunch of code out into a helper function.
2008-11-16 Chris Lattnersimplify the conditions on two gigantic if's, decreasin...
2008-11-16 Chris Lattnersimplify some instcombine matches by using m_Specific
2008-11-16 Chris LattnerUse new m_SelectCst template to eliminate macros.
2008-11-16 Chris Lattnersimplify code.
2008-11-16 Chris LattnerHandle the case where there is no "not". It is possibl...
2008-11-16 Chris Lattnerfactor a bunch of copy/paste code out into a helper...
2008-11-16 Chris Lattnerrearrange some code, no functionality change.
2008-11-16 Chris Lattnerif we're going to use a macro, use it maximally. no...
2008-11-14 Devang PatelRefactor code.
2008-11-13 Devang PatelReally remove all debug information.
2008-11-12 Oscar FuentesCMake: Remove removed source file.
2008-11-11 Devang PatelRemove
2008-11-11 Devang PatelUndo previous check-in.
2008-11-11 Oscar FuentesCMake: Updated list of source files for lib/Transforms...
2008-11-11 Devang PatelAdd utility pass to remove dbg info.
next