aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Temporarily revert r121100 as it's causing clang to failEric Christopher2010-12-071-85/+5
* fix PR8710 - teach global opt that some constantexprs are too complex toChris Lattner2010-12-071-5/+85
* Implement jump threading of 'indirectbr' by keeping track of whether we're lo...Frits van Bommel2010-12-061-46/+80
* replace a linear scan with a symtab lookup, reduce indentation.Chris Lattner2010-12-061-38/+38
* Use a stronger predicate here, pointed out by DuncanChris Lattner2010-12-061-1/+1
* add some DEBUG statements.Chris Lattner2010-12-061-3/+14
* Fix PR8735, a really terrible problem in the inliner's "alloca merging"Chris Lattner2010-12-061-3/+19
* improve commentChris Lattner2010-12-061-2/+1
* improve -debug output and comments a little.Chris Lattner2010-12-061-3/+5
* Fix PR8728, a miscompilation I recently introduced. When optimizingChris Lattner2010-12-061-5/+62
* Refactor jump threading.Frits van Bommel2010-12-051-69/+73
* Remove trailing whitespace.Frits van Bommel2010-12-051-208/+208
* Teach SimplifyCFG to turnFrits van Bommel2010-12-051-2/+72
* PR5207: Rename overloaded APInt methods set(), clear(), flip() toJay Foad2010-12-013-21/+21
* fix a bozo bug I introduced in r119930, causing a miscompile ofChris Lattner2010-12-011-1/+2
* Enhance DSE to handle the variable index case in PR8657.Chris Lattner2010-11-301-2/+31
* teach DSE to use GetPointerBaseWithConstantOffset to analyzeChris Lattner2010-11-301-16/+49
* move GetPointerBaseWithConstantOffset out of GVN into ValueTracking.hChris Lattner2010-11-301-58/+12
* remove a fixed fixmeChris Lattner2010-11-301-2/+0
* Make DeleteDeadInstruction be a static function, move some code around.Chris Lattner2010-11-301-59/+64
* switch RemoveAccessedObjects to use AliasAnalysis::Location to simplifyChris Lattner2010-11-301-17/+13
* two improvements to RemoveAccessedObjects:Chris Lattner2010-11-301-28/+7
* remove the "undead" terminology, which is nonstandard and never Chris Lattner2010-11-301-40/+47
* move call handling in handleEndBlock up a bit, and simplify it.Chris Lattner2010-11-301-37/+40
* Avoid exponential growth of a table. It feels likeDale Johannesen2010-11-301-5/+22
* various cleanups and code simplificationChris Lattner2010-11-301-87/+63
* make getPointerSize a static function. Add ivars to DSE forChris Lattner2010-11-301-46/+42
* reduce indentation, clean up TD use a bit.Chris Lattner2010-11-301-28/+31
* enhance isRemovable to refuse to delete volatile mem transfersChris Lattner2010-11-301-4/+19
* Rewrite the main DSE loop to be written in terms of reasoningChris Lattner2010-11-301-77/+106
* Add a puts optimization that converts puts() to putchar('\n').Anders Carlsson2010-11-301-3/+30
* rename a function and reduce some indentation, no functionality change.Chris Lattner2010-11-301-19/+21
* remove the pointless check of MemoryUseIntrinsic fromChris Lattner2010-11-301-3/+0
* rename doesClobberMemory -> hasMemoryWrite to be more specific, andChris Lattner2010-11-301-11/+11
* clean up handling of 'free', detangling it from everything else.Chris Lattner2010-11-301-22/+22
* Teach basicaa that memset's modref set is at worst "mod" and neverChris Lattner2010-11-301-7/+12
* my previous patch would cause us to start deleting some volatileChris Lattner2010-11-301-1/+1
* two changes to DSE that shouldn't affect anything:Chris Lattner2010-11-301-58/+28
* prune an llvmcontext include and simplify some code.Chris Lattner2010-11-291-6/+3
* fix PR8677, patch by Jakub Staszak!Chris Lattner2010-11-291-2/+4
* Transform (extractvalue (load P), ...) to (load (gep P, 0, ...)) if the load ...Frits van Bommel2010-11-291-3/+30
* Second attempt at fixing the performance regressions introducedOwen Anderson2010-11-271-24/+55
* Treat a call of function pointer like a load of the pointer when consideringNick Lewycky2010-11-241-1/+6
* Rename SimplifyDistributed to the more meaningfull name SimplifyByFactorizing.Duncan Sands2010-11-234-15/+15
* The srem -> urem transform is not safe for any divisor that's not a power of ...Benjamin Kramer2010-11-231-11/+9
* Replace calls to ConstantFoldInstruction with calls to SimplifyInstructionDuncan Sands2010-11-232-11/+12
* Constant folding here is pointless, because InstructionSimplifyDuncan Sands2010-11-231-8/+1
* InstCombine: Reduce "X shift (A srem B)" to "X shift (A urem B)" iff B is pos...Benjamin Kramer2010-11-231-0/+15
* Propagate LeftDistributes and RightDistributes into their only uses.Duncan Sands2010-11-231-6/+4
* Fix typo pointed out by Frits van Bommel and Marius Wachtler.Duncan Sands2010-11-231-1/+1