aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar
AgeCommit message (Expand)Author
2008-09-08s/RemoveUnreachableBlocks/RemoveUnreachableBlocksFromFn/gDevang Patel
2008-09-08Remove unused counter.Devang Patel
2008-09-08Remove OptimizeIVType()Devang Patel
2008-09-05Remove unused map.Devang Patel
2008-09-04A loop may be unswitched multiple times. Reconstruct dom info. at the end.Devang Patel
2008-09-04Initialize loop data first.Devang Patel
2008-09-04Do not unswitch if the function notes say we're optimizing this function for ...Devang Patel
2008-09-04Add intrinsic forms of pow and exp2. The non-intrinsicDale Johannesen
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-09-03Fix a bug that prevented PRE from applying in some cases.Owen Anderson
2008-09-03Don't apply this transform to vectors. Fixes PR2756.Nick Lewycky
2008-09-03Add additional check to ensure that iv is canonicalized.Devang Patel
2008-09-03Check iteration count.Devang Patel
2008-09-03While removing PHI, use basicblock to identify incoming value.Devang Patel
2008-09-02If all IV uses are extending integer IV then change the type of IV itself, if...Devang Patel
2008-09-01Add a small pass that sets the readnone/readonlyDuncan Sands
2008-08-27Do not apply the transformation if the target does not support DestTy natively.Devang Patel
2008-08-27Fix typos and whitespaces. Other cosmetic changes based on feedback.Devang Patel
2008-08-26Put a heuristic in place to prevent GVN from falling into bad cases with mass...Owen Anderson
2008-08-26If IV is used in a int-to-float cast inside the loop then try to eliminate th...Devang Patel
2008-08-23improve encapsulation of the BBExecutable set.Chris Lattner
2008-08-23Switch an assortment of maps, sets and vectors to more efficient versions,Chris Lattner
2008-08-23Switch the asmprinter (.ll) and all the stuff it requires over toChris Lattner
2008-08-23Fix PR2423 by checking all indices for out of range access, not only Chris Lattner
2008-08-22consolidate DenseMapInfo implementations, and add one for std::pair.Chris Lattner
2008-08-21Revert r54876 r54877 r54906 and r54907. Evan found that these caused a 20%Nick Lewycky
2008-08-20Silence a compiler warning.Evan Cheng
2008-08-20Fixed shuffle optimizations to handle non power of 2 vectorsMon P Wang
2008-08-19don't use the result of WriteAsOperandChris Lattner
2008-08-17Make this comment clearer. Instead of using an ambiguous ~ (not) on an icmpNick Lewycky
2008-08-17Consider the case where xor by -1 and xor by 128 have been combined already toNick Lewycky
2008-08-17Revert 54821. It's miscompiling 252.eon and 447.dealIIEvan Cheng
2008-08-17I found a better place for this optz'n.Nick Lewycky
2008-08-17Xor'ing both sides of icmp by sign-bit is equivalent to swapping signedness ofNick Lewycky
2008-08-15Remove GCSE, ValueNumbering, and LoadValueNumbering. These have been depreca...Owen Anderson
2008-08-15Reapply 54786. Add overflow and number of mantissa bits checks.Devang Patel
2008-08-15Revert 54786. It's not checking for overflows, etc.Evan Cheng
2008-08-15use smallvector instead of vector for a couple worklists. This speeds up ins...Chris Lattner
2008-08-14Temporarily revert r54792. It's causing an ICE during bootstrapping.Bill Wendling
2008-08-14Use DenseMap. Patch by Pratik Solanki.Devang Patel
2008-08-14If IV is used in a int-to-float cast inside the loop then try to eliminate th...Devang Patel
2008-08-14Use empty() instead of begin() == end().Dan Gohman
2008-08-13Fix a bogus srem rule - a negative value srem'd by a power-of-2Dan Gohman
2008-08-13Fix SCCP's handling of struct value loads and stores. SCCP doesn'tDan Gohman
2008-08-13Rename. s/FindIVForUser/FindIVUserForCond/gDevang Patel
2008-08-13Check sign to detect overflow before changing compare stride.Devang Patel
2008-08-11Implement support for simplifying vector comparisons by 0.0 and 1.0 like weChris Lattner
2008-08-08Have IRBuilder take a template argument on whether or not to preserveEric Christopher
2008-08-06Fix a shufflevector instcombine that was emitting invalid masks indicesDan Gohman
2008-08-06Fix PR2355: bug in ChangeCompareStride. When the loop termination compare is ...Evan Cheng