aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms
Commit message (Expand)AuthorAgeFilesLines
...
* instcombine: Migrate sprintf optimizationsMeador Inge2012-11-273-24/+83
* Fast-math test for SimplifyInstruction: fold multiply by 0Michael Ilseman2012-11-271-0/+35
* Get rid of the getPointeeAlignment helper function fromEli Friedman2012-11-261-0/+10
* rdar://12329730 (defect 2)Shuxin Yang2012-11-261-0/+15
* instcombine: Migrate printf optimizationsMeador Inge2012-11-264-59/+120
* instcombine: Migrate toascii optimizationsMeador Inge2012-11-262-21/+59
* instcombine: Migrate isascii optimizationsMeador Inge2012-11-261-0/+32
* instcombine: Migrate isdigit optimizationsMeador Inge2012-11-262-21/+48
* Fix bogus comment; no functional change.Meador Inge2012-11-261-1/+2
* instcombine: Migrate *abs optimizationsMeador Inge2012-11-262-11/+41
* instcombine: Migrate ffs* optimizationsMeador Inge2012-11-252-45/+133
* Add support for pointer induction variables even when there is no integer ind...Nadav Rotem2012-11-251-0/+33
* Disallow the undocumented practice of starting the datalayout string with '-'.Patrik Hägglund2012-11-233-3/+3
* Add more functions to the target library information.Meador Inge2012-11-221-0/+99
* llvm/test/Transforms/InstCombine/sdiv-1.ll: FileCheck-ize.NAKAMURA Takumi2012-11-211-1/+3
* PR14055: Implement support for sub-vector operations in SROA.Chandler Carruth2012-11-211-2/+75
* Fix PR14132 and handle OOB loads speculated throuh PHI nodes.Chandler Carruth2012-11-201-0/+35
* Rework the rewriting of loads and stores for vector and integer allocasChandler Carruth2012-11-203-26/+46
* Fix PR14060, an infinite loop in reassociate. The problem was that one of theDuncan Sands2012-11-181-0/+19
* Don't try to calculate the alignment of an unsigned type. Fixes PR14371!Nick Lewycky2012-11-181-0/+16
* LoopVectorizer: Add initial support for pointer induction variables (for exam...Nadav Rotem2012-11-171-2/+1
* Teach SROA rewriteVectorizedStoreInst to handle cases when the loaded value i...Evan Cheng2012-11-171-0/+25
* InstructionSimplify should be able to simplify A+B==B+A to 'true'Duncan Sands2012-11-161-0/+9
* Fix PR14361: wrong simplification of A+B==B+A. You may think that the old logicDuncan Sands2012-11-161-0/+18
* Constant::IsThreadDependent(): Use dyn_cast<Constant> instead of castHans Wennborg2012-11-161-0/+20
* Make GlobalOpt be conservative with TLS variables (PR14309)Hans Wennborg2012-11-151-0/+53
* Fix a crash observed by Shuxin Yang. The issue here is that LinearizeExprTree,Duncan Sands2012-11-151-0/+9
* Remove DOS line endings.Jakub Staszak2012-11-141-21/+21
* Fix the instcombine GEP index widening transform to work correctly for vectorDuncan Sands2012-11-131-0/+5
* Relax the restrictions on vector of pointer types, and vector getelementptr.Duncan Sands2012-11-131-2/+2
* Figure out <size> argument of llvm.lifetime intrinsics at the moment they are...Alexey Samsonov2012-11-132-11/+56
* instcombine: Migrate math library call simplificationsMeador Inge2012-11-1313-338/+525
* BBVectorize: Don't vectorize vector-manipulation chainsHal Finkel2012-11-131-0/+170
* revert r167740Shuxin Yang2012-11-132-16/+3
* BBVectorize: Only some insert element operand pairs are free.Hal Finkel2012-11-121-0/+85
* BBVectorize: Use a more sophisticated check for input costHal Finkel2012-11-121-0/+54
* BBVectorize: Check the types of compare instructionsHal Finkel2012-11-121-0/+16
* This change is to fix rdar://12571717 which is about assertion in Reassociate...Shuxin Yang2012-11-122-3/+16
* BBVectorize: Check the input types of shuffles for legalityHal Finkel2012-11-121-0/+25
* Normalize memcmp constant folding results.Meador Inge2012-11-121-2/+2
* Remove hard-coded constant in Transforms/InstCombine/memcmp-1.llMeador Inge2012-11-111-1/+10
* instcombine: Migrate memset optimizationsMeador Inge2012-11-114-24/+34
* instcombine: Migrate memmove optimizationsMeador Inge2012-11-113-12/+34
* instcombine: Migrate memcpy optimizationsMeador Inge2012-11-112-0/+34
* instcombine: Migrate memcmp optimizationsMeador Inge2012-11-114-39/+86
* instcombine: Migrate strstr optimizationsMeador Inge2012-11-113-60/+83
* instcombine: Migrate strcspn optimizationsMeador Inge2012-11-104-25/+87
* instcombine: Query target library information to gate libcall simplificationsMeador Inge2012-11-101-0/+227
* Add support for memory runtime check. When we can, we calculate array bounds.Nadav Rotem2012-11-091-0/+36
* llvm/ConstantFolding.cpp: Make ReadDataFromGlobal() and FoldReinterpretLoadFr...NAKAMURA Takumi2012-11-084-43/+112