| Commit message (Expand) | Author | Age | Files | Lines |
| * | Introduce MachineBranchProbabilityInfo class, which has similar API to | Jakub Staszak | 2011-06-16 | 1 | -1/+1 |
| * | Add a limit to the number of instructions memdep will scan in a single block.... | Eli Friedman | 2011-06-15 | 1 | -1/+22 |
| * | Add "unknown" results for memdep, which mean "I don't know whether a dependen... | Eli Friedman | 2011-06-15 | 2 | -32/+37 |
| * | Move class into an anonymous namespace. | Benjamin Kramer | 2011-06-13 | 1 | -1/+2 |
| * | Branch profiling: floating-point avoidance. | Andrew Trick | 2011-06-11 | 1 | -54/+63 |
| * | Initialize BasicAA's AliasCache to set it to use fewer buckets by | Dan Gohman | 2011-06-10 | 1 | -1/+7 |
| * | Teach the CallGraph to ignore calls to intrinsics. | John McCall | 2011-06-09 | 2 | -3/+3 |
| * | Reapply r131781, now that the GVN bug with partially-aliasing loads | Dan Gohman | 2011-06-04 | 1 | -1/+11 |
| * | Disable the main feature of 130180, the elimination of loads that are | Dan Gohman | 2011-06-04 | 1 | -0/+6 |
| * | Revert r131781 again. Apparently there is more going on here. | Dan Gohman | 2011-06-04 | 1 | -11/+1 |
| * | Fold assert-only-used variable into the assert. | Nick Lewycky | 2011-06-04 | 1 | -2/+1 |
| * | Missing include of climits in the new BranchProbability pass. | Andrew Trick | 2011-06-04 | 1 | -0/+1 |
| * | New BranchProbabilityInfo analysis. Patch by Jakub Staszak! | Andrew Trick | 2011-06-04 | 3 | -0/+350 |
| * | Reapply r131781 (revert r131809), now that some BasicAA shortcomings | Dan Gohman | 2011-06-04 | 1 | -1/+11 |
| * | Fix BasicAA's recursion detection so that it doesn't pessimize | Dan Gohman | 2011-06-04 | 1 | -37/+27 |
| * | When merging MustAlias and PartialAlias, chose PartialAlias instead | Dan Gohman | 2011-06-03 | 1 | -10/+21 |
| * | Test commit. | Hans Wennborg | 2011-06-03 | 1 | -2/+2 |
| * | A typedef's context is not the same as type's context. It is the context of t... | Devang Patel | 2011-06-03 | 1 | -2/+2 |
| * | When marking a block as being unanalyzable, use "Clobber" on the terminator i... | Eli Friedman | 2011-06-02 | 1 | -2/+2 |
| * | In MemoryDependenceAnalysis::getNonLocalPointerDepFromBB, if a given block is... | Eli Friedman | 2011-06-01 | 1 | -20/+58 |
| * | SCEV: missing null check fix for r132360, dragonegg crash. | Andrew Trick | 2011-06-01 | 1 | -3/+3 |
| * | scev: Better sign-extend removal. Normalize postincrement recurrences | Andrew Trick | 2011-05-31 | 1 | -31/+102 |
| * | llvm.memcpy.* has two distinct associated address spaces; the source address ... | Eli Friedman | 2011-05-31 | 1 | -4/+6 |
| * | Update this comment. | Dan Gohman | 2011-05-27 | 1 | -1/+3 |
| * | Renamed llvm.x86.sse42.crc32 intrinsics; crc64 doesn't exist. | Chad Rosier | 2011-05-26 | 1 | -2/+2 |
| * | Change condition for determining whether a function is small for inlining met... | Eli Friedman | 2011-05-24 | 1 | -1/+1 |
| * | Make DecomposeGEPExpression check SimplifyInstruction only | Dan Gohman | 2011-05-24 | 1 | -9/+12 |
| * | fix a really nasty basicaa mod/ref calculation bug that was causing miscompil... | Chris Lattner | 2011-05-23 | 1 | -2/+5 |
| * | Teach valuetracking that byval arguments with a specified alignment are | Chris Lattner | 2011-05-23 | 1 | -1/+11 |
| * | 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 |