aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Make the AttrListPtr object a part of the LLVMContext.Bill Wendling2012-11-204-21/+41
* Add a comment to associate a FIXME with a PR where it is matters.Chandler Carruth2012-11-201-1/+2
* Rework the rewriting of loads and stores for vector and integer allocasChandler Carruth2012-11-201-168/+118
* Clean up handling of always-inline functions in the inliner.Bob Wilson2012-11-191-44/+10
* Remove the last bit of constant folding from LinearizeExprTree (most of it wasDuncan Sands2012-11-181-11/+0
* Fix PR14060, an infinite loop in reassociate. The problem was that one of theDuncan Sands2012-11-181-6/+24
* Don't try to calculate the alignment of an unsigned type. Fixes PR14371!Nick Lewycky2012-11-181-1/+2
* Plug a memory leak in the GCOV profiling emitter, which never released the ed...Benjamin Kramer2012-11-171-5/+5
* LoopVectorizer: Add initial support for pointer induction variables (for exam...Nadav Rotem2012-11-171-33/+126
* Teach SROA rewriteVectorizedStoreInst to handle cases when the loaded value i...Evan Cheng2012-11-171-33/+42
* Make this easier to understand, as suggested by Chandler.Duncan Sands2012-11-161-1/+6
* Fix PR14361: wrong simplification of A+B==B+A. You may think that the old logicDuncan Sands2012-11-161-2/+14
* SimplifyCFG: Don't assume non-null ScalarTargetTransformInfo.Hans Wennborg2012-11-161-1/+2
* LoopVectorize: Division reductions generate incorrect code. Remove the part o...Nadav Rotem2012-11-161-2/+0
* misspellAndrew Trick2012-11-151-3/+3
* whitespaceAndrew Trick2012-11-151-4/+4
* Use empty parens for empty function parameter list instead of '(void)'.Dmitri Gribenko2012-11-152-2/+2
* Make GlobalOpt be conservative with TLS variables (PR14309)Hans Wennborg2012-11-151-0/+9
* Fix a crash observed by Shuxin Yang. The issue here is that LinearizeExprTree,Duncan Sands2012-11-151-54/+21
* InstCombineAndOrXor.cpp: Escape bracket in doxygen description. [-Wdocumentat...NAKAMURA Takumi2012-11-151-1/+1
* Replace std::vector -> SmallVector in BBVectorizeHal Finkel2012-11-141-4/+4
* Fix the largest offender of determinism in BBVectorizeHal Finkel2012-11-141-6/+6
* [TSan] fix indentationAlexey Samsonov2012-11-141-1/+1
* use the getSplat API. Patch by Paul Redmond.Nadav Rotem2012-11-141-7/+1
* Figure out <size> argument of llvm.lifetime intrinsics at the moment they are...Alexey Samsonov2012-11-131-2/+21
* BBVectorize: Remove temporary assert used for debuggingHal Finkel2012-11-131-1/+0
* instcombine: Migrate math library call simplificationsMeador Inge2012-11-133-252/+270
* BBVectorize: Don't vectorize vector-manipulation chainsHal Finkel2012-11-131-0/+17
* revert r167740Shuxin Yang2012-11-131-314/+8
* BBVectorize: Only some insert element operand pairs are free.Hal Finkel2012-11-121-13/+17
* BBVectorize: Use a more sophisticated check for input costHal Finkel2012-11-121-14/+43
* BBVectorize: Check the types of compare instructionsHal Finkel2012-11-121-0/+2
* This change is to fix rdar://12571717 which is about assertion in Reassociate...Shuxin Yang2012-11-121-8/+314
* BBVectorize: Check the input types of shuffles for legalityHal Finkel2012-11-121-3/+6
* [ASan] fixup for r167725: Don't fetch name of StructType if it is literalAlexey Samsonov2012-11-121-2/+3
* Normalize memcmp constant folding results.Meador Inge2012-11-121-1/+8
* [ASan]: Add minimalistic support for turning off initialization-order checkin...Alexey Samsonov2012-11-122-2/+16
* Delete a stale comment. No functional change.Meador Inge2012-11-121-4/+0
* instcombine: Migrate memset optimizationsMeador Inge2012-11-112-27/+21
* instcombine: Migrate memmove optimizationsMeador Inge2012-11-112-24/+22
* instcombine: Migrate memcpy optimizationsMeador Inge2012-11-112-24/+22
* Fix a comment typo and add comments.Nadav Rotem2012-11-111-4/+5
* instcombine: Migrate memcmp optimizationsMeador Inge2012-11-112-52/+54
* instcombine: Migrate strstr optimizationsMeador Inge2012-11-112-88/+83
* Add method for replacing instructions to LibCallSimplifierMeador Inge2012-11-112-5/+34
* instcombine: Migrate strcspn optimizationsMeador Inge2012-11-102-37/+35
* instcombine: Query target library information to gate libcall simplificationsMeador Inge2012-11-101-19/+25
* tsan: switch to new memory_order constants (ABI compatible)Dmitry Vyukov2012-11-091-8/+7
* tsan: instrument all atomics (including fetch_add, exchange, cas, etc)Dmitry Vyukov2012-11-091-8/+76
* Add support for memory runtime check. When we can, we calculate array bounds.Nadav Rotem2012-11-091-33/+191