| Commit message (Expand) | Author | Age | Files | Lines |
| * | implement PR9315, constant folding exp2 in terms of pow (since hosts without | Chris Lattner | 2011-05-22 | 1 | -1/+7 |
| * | Teach ValueTracking about x86 crc32 intrinsics. | Evan Cheng | 2011-05-22 | 1 | -0/+4 |
| * | Revert commit 131781, to see if it fixes the x86-64 dragonegg buildbot. | Duncan Sands | 2011-05-21 | 1 | -11/+1 |
| * | When BasicAA can determine that two pointers have the same base but | Dan Gohman | 2011-05-21 | 1 | -1/+11 |
| * | indvars: Prototyping Sign/ZeroExtend elimination without canonical IVs. | Andrew Trick | 2011-05-20 | 1 | -7/+7 |
| * | @llvm.lifetime.begin acts as a load, not @llvm.lifetime.end. | Owen Anderson | 2011-05-17 | 1 | -1/+1 |
| * | Extra refactoring noticed by Eli Friedman. | Rafael Espindola | 2011-05-16 | 1 | -9/+8 |
| * | Fix a source of non determinism in FindUsedTypes, use a SetVector instead of a | Julien Lerouge | 2011-05-13 | 1 | -2/+2 |
| * | Change a few std::maps to DenseMaps. | Dan Gohman | 2011-05-09 | 1 | -2/+2 |
| * | The comparision "max(x,y)==x" is equivalent to "x>=y". Since the max is | Duncan Sands | 2011-05-07 | 1 | -10/+56 |
| * | PR9838: Fix transform introduced in r127064 to not trigger when only one side... | Eli Friedman | 2011-05-05 | 1 | -1/+1 |
| * | Minor change: Fix the typo in RegionPass.h and RegionPass.cpp. | Hongbin Zheng | 2011-05-05 | 1 | -1/+1 |
| * | Add variations on: max(x,y) >= min(x,z) folds to true. This isn't that common, | Duncan Sands | 2011-05-04 | 1 | -2/+46 |
| * | indvars: Added DisableIVRewrite and WidenIVs. | Andrew Trick | 2011-05-04 | 1 | -0/+15 |
| * | Implement some basic simplifications involving min/max, for example | Duncan Sands | 2011-05-03 | 1 | -0/+118 |
| * | Use llvm.dbg.cu named metadata to collect compile units. | Devang Patel | 2011-05-03 | 1 | -0/+4 |
| * | Fix PR9579: when simplifying a compare to "true" or "false", and it was | Duncan Sands | 2011-05-02 | 1 | -18/+22 |
| * | Move some rem transforms out of instcombine and into instsimplify. | Duncan Sands | 2011-05-02 | 1 | -0/+117 |
| * | teach GVN to widen integer loads when they are overaligned, when doing an | Chris Lattner | 2011-04-28 | 1 | -10/+31 |
| * | Teach BasicAA about arm.neon.vld1 and vst1. | Dan Gohman | 2011-04-27 | 1 | -0/+20 |
| * | When analyzing functions known to only access argument pointees, | Dan Gohman | 2011-04-27 | 1 | -9/+28 |
| * | Corrects an old, old typo in a case that doesn't seem to be reached in practice. | Andrew Trick | 2011-04-27 | 1 | -1/+1 |
| * | Test case and comment for PR9633. | Andrew Trick | 2011-04-27 | 1 | -2/+3 |
| * | Fix for PR9633 [indvars] Assertion `isa<X>(Val) && "cast<Ty>() argument of in... | Andrew Trick | 2011-04-27 | 1 | -2/+7 |
| * | Enhance memdep to return clobber relation between noalias loads when | Chris Lattner | 2011-04-26 | 1 | -3/+95 |
| * | use AA::isMustAlias to simplify some calls. | Chris Lattner | 2011-04-26 | 1 | -5/+3 |
| * | remove support for llvm.invariant.end from memdep. It is a | Chris Lattner | 2011-04-26 | 1 | -37/+0 |
| * | Fix an off by one error while accessing complex address element of a DIVariable. | Devang Patel | 2011-04-26 | 1 | -0/+1 |
| * | Enhance MemDep: When alias analysis returns a partial alias result, | Chris Lattner | 2011-04-26 | 1 | -5/+15 |
| * | Fix an iterator invalidation bug. | Dan Gohman | 2011-04-25 | 1 | -9/+16 |
| * | PR9214: Convert the DIBuilder API to use ArrayRef. | Jay Foad | 2011-04-24 | 1 | -8/+6 |
| * | Remove unused STL header includes. | Jay Foad | 2011-04-23 | 3 | -5/+0 |
| * | Let front-end tie subprogram declaration with subprogram definition directly. | Devang Patel | 2011-04-22 | 1 | -2/+4 |
| * | PR9214: Convert Metadata API to use ArrayRef. | Jay Foad | 2011-04-21 | 1 | -9/+11 |
| * | Use ArrayRef variants. | Devang Patel | 2011-04-18 | 1 | -35/+33 |
| * | Mark some functions as used which are used within debug-only code. This | Chandler Carruth | 2011-04-18 | 1 | -0/+2 |
| * | Introduce support to encode Objective-C property information in debugging inf... | Devang Patel | 2011-04-16 | 1 | -0/+29 |
| * | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 10 | -15/+15 |
| * | PR9214: Convert ConstantExpr::getIndices() to return an ArrayRef, plus | Jay Foad | 2011-04-13 | 1 | -1/+1 |
| * | Don't include Operator.h from InstrTypes.h. | Jay Foad | 2011-04-11 | 6 | -0/+6 |
| * | PR9604; try to deal with RAUW updates correctly in the AST. I'm not convinced | Eli Friedman | 2011-04-09 | 1 | -0/+4 |
| * | Add support to encode function's template parameters. | Devang Patel | 2011-04-05 | 1 | -4/+8 |
| * | remove postdom frontiers, because it is dead. Forward dom frontiers are | Chris Lattner | 2011-04-05 | 2 | -52/+0 |
| * | Region: Allow user control the printing style of the print function. | Tobias Grosser | 2011-04-04 | 1 | -16/+16 |
| * | Don't assume something which might be a constant expression is an instruction. | Eli Friedman | 2011-04-02 | 1 | -3/+3 |
| * | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad | 2011-03-30 | 1 | -4/+3 |
| * | (Almost) always call reserveOperandSpace() on newly created PHINodes. | Jay Foad | 2011-03-30 | 1 | -6/+8 |
| * | Constant folding support for calls to umul.with.overflow(), basically identic... | Frits van Bommel | 2011-03-27 | 1 | -3/+8 |
| * | Revert r128140 for now. | Anders Carlsson | 2011-03-23 | 1 | -33/+0 |
| * | A global variable with internal linkage where all uses are in one function an... | Anders Carlsson | 2011-03-23 | 1 | -0/+33 |