aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Add extra CHECK to make sure that 'or' instruction was replaced.Jakub Staszak2012-12-311-0/+2
* Fix LICM's memory promotion optimization to preserve TBAA tags whenChris Lattner2012-12-311-6/+18
* teach instcombine to preserve TBAA tag when merging two stores, part ofChris Lattner2012-12-311-0/+7
* Grammo.Jakub Staszak2012-12-311-1/+1
* Remove the getAttributesAtIndex and getNumAttrs methods in favor of using the...Bill Wendling2012-12-311-3/+2
* Transform (A == C1 || A == C2) into (A & ~(C1 ^ C2)) == C1Jakub Staszak2012-12-311-0/+12
* convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...Nuno Lopes2012-12-304-58/+14
* Remove Function::getParamAttributes and use the AttributeSet accessor methods...Bill Wendling2012-12-301-2/+2
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-307-14/+27
* LoopVectorizer: Fix a bug in the code that updates the loop exiting block.Nadav Rotem2012-12-301-0/+13
* Add proper support for -fsanitize-blacklist= flag for TSan and MSan. LLVM part.Alexey Samsonov2012-12-282-18/+24
* Make this parameter be named consistently with most otherChandler Carruth2012-12-271-2/+2
* [ASan] Fix lifetime intrinsics handling. Now for each intrinsic we check if i...Alexey Samsonov2012-12-271-69/+91
* If all of the write objects are identified then we can vectorize the loop eve...Nadav Rotem2012-12-261-1/+5
* Remove mid-optimizer warning. This situation should be handled differently,Nick Lewycky2012-12-261-5/+2
* LoopVectorizer: Optimize the vectorization of consecutive memory access when ...Nadav Rotem2012-12-262-23/+71
* [msan] Raise alignment of origin stores/loads when possible.Evgeniy Stepanov2012-12-261-5/+11
* [msan] Expand the file comment with track-origins info.Evgeniy Stepanov2012-12-261-5/+27
* BBVectorize: Use VTTI to compute costs for intrinsics vectorizationHal Finkel2012-12-261-12/+64
* LoopVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel2012-12-251-0/+1
* BBVectorize: Enable vectorization of the fmuladd intrinsicHal Finkel2012-12-251-0/+1
* [msan] Fix handling of vectors of pointers.Evgeniy Stepanov2012-12-251-2/+7
* [msan] Fix handling of select with vector condition.Evgeniy Stepanov2012-12-251-2/+11
* ASan: initialize callbacks from ASan module pass in a separate function for c...Alexey Samsonov2012-12-251-21/+28
* ASan: move stack poisoning logic into FunctionStackPoisoner structAlexey Samsonov2012-12-251-190/+220
* Add LLVMContext::emitWarning methods and use them. <rdar://problem/12867368>Bob Wilson2012-12-244-8/+11
* LoopVectorizer: When checking for vectorizable types, also checkNadav Rotem2012-12-241-1/+8
* Fix typo in commentsAlexey Samsonov2012-12-241-1/+1
* LoopVectorizer: Fix an endless loop in the code that looks for reductions.Nadav Rotem2012-12-241-7/+8
* LoopVectorize: Fix accidentaly inverted condition.Benjamin Kramer2012-12-231-1/+1
* LoopVectorize: For scalars and void types there is no need to compute vector ...Benjamin Kramer2012-12-231-12/+10
* Loop Vectorizer: Update the cost model of scatter/gather operations and makeNadav Rotem2012-12-231-13/+29
* Remove trailing whitespaceCraig Topper2012-12-221-126/+126
* Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribut...Bill Wendling2012-12-222-13/+13
* Remove duplicate includes.Roman Divacky2012-12-214-5/+0
* [msan] Remove unreachable blocks before instrumenting a function.Evgeniy Stepanov2012-12-212-0/+49
* Enable if-conversion.Nadav Rotem2012-12-211-1/+1
* Every pass deserves a name, even codegenprep.Evan Cheng2012-12-211-0/+2
* BB-Vectorizer: Check the cost of the store pointer typeNadav Rotem2012-12-211-2/+2
* Fix a bug in the code that checks if we can vectorize loops while using dynamicNadav Rotem2012-12-211-19/+24
* LoopVectorize: Fix a bug in the scalarization of instructions.Nadav Rotem2012-12-201-1/+1
* Loop Vectorizer: turn-off if-conversion.Nadav Rotem2012-12-201-1/+1
* Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...James Molloy2012-12-204-4/+29
* Formatting fixes. Remove some unnecessary 'else' after 'return'. No functiona...Craig Topper2012-12-201-21/+14
* Removing trailing whitespaceCraig Topper2012-12-201-146/+146
* Loop Vectorizer: Enable if-conversion.Nadav Rotem2012-12-201-1/+1
* whitespaceNadav Rotem2012-12-201-1/+1
* Transform (x&C)>V into (x&C)!=0 where possiblePaul Redmond2012-12-191-0/+10
* [msan] Add track-origins argument to the pass constructor.Evgeniy Stepanov2012-12-191-24/+31
* [msan] Heuristically instrument unknown intrinsics.Evgeniy Stepanov2012-12-191-1/+143