Add alignment arguments to all the NEON load/store intrinsics.
[oota-llvm.git] / lib / Analysis /
2010-08-27 Owen AndersonUse LVI to eliminate conditional branches where we...
2010-08-27 Dan GohmanOptimize SCEVComplexityCompare. Use a 3-way return...
2010-08-25 Owen AndersonIn the default address space, any GEP off of null resul...
2010-08-24 Owen AndersonNULL loads are only invalid in the default address...
2010-08-24 Owen AndersonAdd support for inferring values for the default cases...
2010-08-24 Owen AndersonAdd support for inferring that a load from a pointer...
2010-08-24 Owen AndersonDon't assume that all constants with integer types...
2010-08-23 Devang PatelLet FE use derived types for DW_TAG_friend.
2010-08-23 Devang PatelHandle qualified constants that are directly folded...
2010-08-23 Owen AndersonNow that PassInfo and Pass::ID have been separated...
2010-08-20 Dan GohmanCreateTemporaryType doesn't needs its Context argument.
2010-08-20 Dan GohmanIntroduce a new temporary MDNode concept. Temporary...
2010-08-20 Dan GohmanConvert DbgInfoPrinter to use errs() instead of outs().
2010-08-19 Dan GohmanRevert r111199; it breaks -debug-pass=Structure output.
2010-08-18 Chris Lattnerrefix PR1143 by making basicaa analyze zexts of indices...
2010-08-18 Chris LattnerGetLinearExpression is only called when TD is non-null...
2010-08-18 Chris Lattnerrework GEP decomposition to make a new VariableGEPIndex...
2010-08-18 Chris Lattnermove gep decomposition out of ValueTracking into BasicA...
2010-08-18 Owen AndersonUse ConstantRange to propagate information through...
2010-08-18 Daniel DunbarRevert r111375, "move gep decomposition out of ValueTra...
2010-08-18 Owen AndersonInform LazyValueInfo whenever a block is deleted, to...
2010-08-18 Chris Lattnermove gep decomposition out of ValueTracking into BasicA...
2010-08-18 Chris Lattnerfix PR7589: In brief:
2010-08-17 Dan GohmanTweak IVUsers' concept of "interesting" to exclude...
2010-08-16 Owen AndersonFix another iterator invalidation that caused a *really...
2010-08-16 Dan GohmanMake dumpPassStructure be a PMDataManager abstraction...
2010-08-16 Dan GohmanTo create a copy of a SmallVector with an element remov...
2010-08-16 Dan GohmanTidy whitespace.
2010-08-16 Dan GohmanAdd a comment.
2010-08-16 Dan GohmanUse const_iterator in a few places.
2010-08-16 Dan GohmanUse iterators instead of indices in a few more places.
2010-08-16 Dan GohmanMicro-optimize SCEVConstant comparison.
2010-08-16 Dan GohmanMove SCEVNAryExpr's virtual member functions out of...
2010-08-16 Dan GohmanUse iterators instead of indices in simple cases.
2010-08-16 Dan GohmanAvoid gratuitous inefficiency in ifndef NDEBUG code.
2010-08-16 Dan GohmanMake one getAddExpr call when analyzing a+b+c+d+e+...
2010-08-16 Dan GohmanDelete an unused function.
2010-08-16 Dan GohmanRevert r111058, the lint check for indirectbr successor...
2010-08-15 Argyrios KyrtzidisRevert r111082. No warnings for this common pattern.
2010-08-14 Argyrios KyrtzidisAdd ATTRIBUTE_UNUSED to methods that are not supposed...
2010-08-13 Dan GohmanAdd a lint check for an indirectbr destination which...
2010-08-13 Dan GohmanVarious optimizations. Don't compare two loops' depths
2010-08-13 Dan GohmanWhen testing whether one loop contains another, test...
2010-08-13 Dan GohmanAdd a const.
2010-08-13 Dan GohmanWhen creating a symmetric SCEV with a constant operand...
2010-08-13 Dan GohmanAn add recurrence is loop-invariant in any loop inside...
2010-08-12 Dan GohmanOptimize ScalarEvolution::getAddExpr's operand factorin...
2010-08-12 Dan GohmanHoist some loop-invariant code out of a hot loop.
2010-08-12 Dan GohmanOptimize ScalarEvolution::getAddExpr's duplicate operan...
2010-08-11 Devang PatelEven if a variable has constant value all the time...
2010-08-11 Owen AndersonFix a subtle use-after-free issue.
2010-08-11 Dan GohmanMake LoopPass::getContainedPass return a LoopPass*...
2010-08-11 Owen AndersonImprove indentation.
2010-08-11 Dan GohmanWhen analyzing loop exit conditions combined with and...
2010-08-10 Dan GohmanRename and reorder the arguments to isImpliedCond,...
2010-08-10 Owen AndersonNow that we're using ConstantRange to represent potenti...
2010-08-10 Devang PatelAdd missing argument. CreateCompositeTypeEx() users...
2010-08-10 Owen AndersonSwitch over to using ConstantRange to track integral...
2010-08-10 Devang PatelDo not forget debug info for enums. Use named mdnode...
2010-08-10 Tobias GrosserRegionInfo: Do not assert if a BB is not part of the...
2010-08-10 Devang PatelHandle TAG_constant for integers.
2010-08-09 Devang PatelRefactor.
2010-08-09 Owen AndersonAdd ConstantRange information to the debugging output.
2010-08-06 Owen AndersonReapply r110396, with fixes to appease the Linux buildb...
2010-08-06 Dan GohmanImplement a proper getModRefInfo for va_arg.
2010-08-06 Dan GohmanBe more conservative in the face of volatile.
2010-08-06 Dan GohmanFix a comment.
2010-08-06 Dan GohmanMove all the logic for function attributes and call...
2010-08-06 Owen AndersonFix botched revert.
2010-08-06 Owen AndersonRevert r110396 to fix buildbots.
2010-08-05 Dan GohmanFix 80-column violations.
2010-08-05 Owen AndersonDon't use PassInfo* as a type identifier for passes...
2010-08-05 Dan GohmanImplement AccessesArguments checking in the two-callsit...
2010-08-05 Dan GohmanYes, we can do better, but this is not the place for it.
2010-08-05 Owen AndersonAdd the beginnings of infrastructure for range tracking.
2010-08-05 Owen AndersonSplit the tag and value members of LVILatticeVal in...
2010-08-05 Dan GohmanFix memdep's code for reasoning about dependences betwe...
2010-08-05 Dan GohmanRevert r110270 for now. It appears to uncover a memdep...
2010-08-04 Dan GohmanThe trouble with testing for "ModRef" and "NoModRef...
2010-08-04 Dan GohmanThe two-callsite form of AliasAnalysis::getModRefInfo...
2010-08-04 Dan GohmanFix a minor bug which resulted in intermediate calculations
2010-08-04 Torok EdwinAdd a missing function.
2010-08-03 Dan GohmanRemove PointerAccessInfo, which nothing was using.
2010-08-03 Dan GohmanThread const correctness through a bunch of AliasAnalys...
2010-08-03 Dan GohmanThe singular of "indices" is "index".
2010-08-03 Dan GohmanDelete an unused function.
2010-08-03 Dan GohmanMake AliasAnalysis::getModRefInfo conservative in the...
2010-08-03 Dan GohmanFix a typo Devang noticed.
2010-08-03 Michael J. SpencerFix CMake build
2010-08-03 Dan GohmanIntroduce a symbolic constant for ~0u for use with...
2010-08-03 Dan GohmanAdd a convenient form of AliasAnalysis::alias for the...
2010-08-02 Dan GohmanMake SCEVUnknown a CallbackVH, so that it can be notifi...
2010-08-02 Dan GohmanSketch up a preliminary Type-Based Alias Analysis imple...
2010-08-02 Dan GohmanAdd a lint check for indirectbr with no successors.
2010-08-02 Devang PatelAdd explicit constructors. Patch by Renato Golin.
2010-08-02 Dan GohmanFix namespace polution.
2010-08-02 Oscar FuentesPrefix `next' iterator operation with `llvm::'.
2010-07-30 Owen AndersonAdd an initial implementation of PHI translation for...
2010-07-30 Owen AndersonRevert my last two patches to LVI, which recent changes...
2010-07-29 Eric ChristopherSpeculatively revert r109705 since it seems to be causi...
next