Switch PPC return lower to use an autogenerated CC description.
[oota-llvm.git] / lib / Transforms /
2007-03-05 Reid SpencerRemove an unnecessary if statement and adjust indentation.
2007-03-05 Chris LattnerThis is the first major step of implementing PR1226...
2007-03-05 Chris Lattnerfix a subtle bug that caused an MSVC warning. Thanks...
2007-03-05 Chris LattnerAdd some simplifications for demanded bits, this allows...
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-04 Chris Lattnersimplify some code
2007-03-04 Chris Lattnerminor cleanups
2007-03-04 Chris LattnerSpeed up -instcombine by 20% by avoiding a particularly...
2007-03-04 Chris Lattnerswitch MarkAliveBlocks over to using SmallPtrSet instea...
2007-03-04 Chris Lattnermake better use of LCSSA information in RewriteLoopExit...
2007-03-04 Chris LattnerImplement PR1179/PR1232 and test/Transforms/IndVarsSimp...
2007-03-03 Chris LattnerMake RewriteLoopExitValues far less nested by using...
2007-03-03 Chris Lattnermy recent change caused a failure in a bswap testcase...
2007-03-03 Nick LewyckyTranslate bit operations to English.
2007-03-03 Chris Lattneradd a top-level iteration loop to instcombine. This...
2007-03-03 Reid SpencerAPIntify this pass.
2007-03-02 Reid SpencerFinally get this patch right :)
2007-03-02 Reid SpencerDang, I've done that twice now! Undo previous commit.
2007-03-02 Reid SpencerUse more efficient test for one value in a ConstantInt.
2007-03-02 Reid SpencerGuard against huge loop trip counts in an APInt safe...
2007-03-02 Reid SpencerMake sure debug code is not evaluated in non-debug...
2007-03-02 Reid Spencer1. Sort switch cases using APInt safe comparison.
2007-03-02 Reid SpencerUse APInt safe isOne() method on ConstantInt instead...
2007-03-02 Reid SpencerMake sorting of ConstantInt be APInt clean through...
2007-03-02 Chris LattnerFix a significant algorithm problem with the instcombin...
2007-03-02 Chris Lattnerminor cleanup
2007-03-02 Chris Lattnerswitch the inliner from being recursive to being iterative.
2007-03-02 Reid SpencerReverse a premature commital.
2007-03-02 Reid SpencerPrefer non-virtual calls to ConstantInt::isZero over...
2007-03-01 Reid SpencerAlthough probably not necessary, guard against a potent...
2007-03-01 Reid SpencerUse isUnitValue() instead of getZExtValue() == 1 which...
2007-03-01 Reid SpencerUse APInt conversion to string so the result is correct...
2007-03-01 Reid SpencerThe 64-bit constructor for ConstantInt changes from...
2007-03-01 Reid SpencerRemove the "isSigned" parameters from ConstantRange...
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-26 Devang PatelUse efficient container SmallPtrSet
2007-02-26 Devang PatelDo not unswitch loop on same value again and again.
2007-02-24 Chris LattnerFix InstCombine/2007-02-23-PhiFoldInfLoop.ll and PR1217
2007-02-23 Chris Lattnerfix an obscure and tricky bug the inliner can hit somet...
2007-02-22 Jim LaskeyRevert changes for a simplier solution.
2007-02-21 Jim LaskeyItanium ABI exception handing support.
2007-02-20 Dan GohmanFix typos in comments.
2007-02-20 Chris Lattnerremove reoptimizer-specific passes
2007-02-19 Chris Lattnereliminate use of deprecated apis
2007-02-18 Chris Lattnerfix comment
2007-02-18 Chris Lattnersimplify pass, delete dead gvar protos as well.
2007-02-15 Chris Lattnerconvert more vectors to smallvectors, 2.8% speedup
2007-02-15 Chris Lattnerchange some vectors to smallvectors. This speeds up...
2007-02-15 Chris Lattnerswitch an std::set to a SmallPtr set, this speeds up...
2007-02-15 Reid SpencerFor PR1195:
2007-02-15 Reid SpencerChange an assert that mentions Packed Type -> Vector...
2007-02-15 Reid SpencerFor PR1195:
2007-02-14 Chris LattnerGeneralize TargetData strings, to support more interest...
2007-02-13 Chris Lattnereliminate a bunch of vector-related heap traffic
2007-02-13 Chris LattnerEliminate use of ctors that take vectors.
2007-02-12 Chris Lattnerstop using methods that take vectors.
2007-02-12 Chris LattnerSwitch ValueSymbolTable to use StringMap<Value*> instea...
2007-02-11 Chris Lattnersimplify code by using Value::takeName
2007-02-11 Chris LattnerSimplify code by using value::takename
2007-02-11 Chris Lattnersimplify name juggling through the use of Value::takeName.
2007-02-10 Chris LattnerPrivatize StructLayout::MemberOffsets, adding an accessor
2007-02-07 Chris LattnerFix Transforms/DeadArgElim/2007-02-07-FuncRename.ll...
2007-02-07 Chris Lattnershrink vmcore by moving symbol table stripping support...
2007-02-07 Chris Lattnerredesign the primary datastructure used by mem2reg...
2007-02-05 Chris LattnerWith the last change, we no longer need both directions...
2007-02-05 Reid SpencerApply the VISIBILITY_HIDDEN field to the remaining...
2007-02-05 Chris LattnerSimplify use of DFBlocks, this makes no noticable perfo...
2007-02-05 Reid SpencerThis file should have been removed when -raise was...
2007-02-05 Chris LattnerSwitch InsertedPHINodes back to SmallPtrSet now that...
2007-02-05 Chris Lattnerswitch a SmallPtrSet back to an std::set for now, this...
2007-02-05 Chris Lattnerswitch an std::set over to a SmallPtrSet, speeding...
2007-02-05 Chris Lattnerswitch an std::set over to SmallPtrSet, speeding up...
2007-02-05 Chris Lattnereliminate some malloc traffic, this speeds up mem2reg...
2007-02-05 Reid SpencerAdd missing and needed #include.
2007-02-05 Reid SpencerMake the class VISIBILITY_HIDDEN.
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Reid SpencerFor PR411:
2007-02-05 Reid SpencerCreate a pass to strip dead function declarations ...
2007-02-05 Chris LattnerFix miscompilations of consumer-typeset, telecomm-gsm...
2007-02-05 Reid SpencerFor PR1177:
2007-02-05 Chris Lattnerfix a miscompilation of 176.gcc
2007-02-05 Owen AndersonUse DenseMap for pointer->pointer maps.
2007-02-05 Chris Lattnerrewrite shift/shift folding, now that types are not...
2007-02-04 Nick LewyckyFix indenting, remove tabs.
2007-02-04 Reid SpencerFor PR1163:
2007-02-03 Chris Lattnerremove some dead code
2007-02-03 Reid SpencerFor PR1072:
2007-02-03 Chris LattnerSwitch inliner over to use DenseMap instead of std...
2007-02-02 Chris LattnerSwitch this back to using an std::map. DenseMap entrie...
2007-02-02 Chris LattnerRemove more malloc thrashing, this speeds up IPSCCP...
2007-02-02 Chris LattnerConvert an std::set to SmallSet, this speeds up IPSCCP...
2007-02-02 Chris Lattnereliminate a malloc/free for (almost) every GEP processe...
2007-02-02 Chris Lattnerswitch hash_map's over to DenseMap in SCCP. This speed...
2007-02-02 Reid SpencerRemove dead code and fix indentation per Chris' review...
2007-02-02 Reid SpencerUse short form of binary operator create functions.
2007-02-02 Chris Lattnerbugfix for reid's shift patch.
2007-02-02 Reid SpencerChanges to support making the shift instructions be...
next