llvm-cov: Removed StringMap holding GCOVLines.
[oota-llvm.git] / test / Transforms / InstCombine /
2013-11-12 Nadav RotemFold (iszero(A&K1) | iszero(A&K2)) -> (A&(K1|K2))...
2013-11-04 Matt ArsenaultFix another constant folding address space place I...
2013-11-04 Matt ArsenaultScalarize select vector arguments when extracted.
2013-11-03 Bob WilsonConvert calls to __sinpi and __cospi into __sincospi_stret
2013-10-07 Matt ArsenaultChange objectsize intrinsic to accept different address...
2013-10-03 Owen AndersonPull fptrunc's upwards through selects when one of...
2013-10-03 Matt ArsenaultMake gep i8* X, -(ptrtoint Y) transform work with addre...
2013-09-30 Matt ArsenaultUse right address space size in InstCombineCompares
2013-09-30 Matt ArsenaultConstant fold ptrtoint + compare with address spaces
2013-09-30 Joey GoulyFix a bug in InstCombine where it attempted to cast...
2013-09-27 Justin BognerInstCombine: Only foldSelectICmpAndOr for integer types
2013-09-27 Manman RenTBAA: handle scalar TBAA format and struct-path aware...
2013-09-20 Benjamin KramerInstCombine: Canonicalize (gep i8* X, -(ptrtoint Y...
2013-09-19 Shuxin Yang[Fast-math] Disable "(C1/X)*C2 => (C1*C2)/X" if C1...
2013-09-19 Benjamin KramerInstCombine: Don't allow turning vector-of-pointer...
2013-09-18 Andrea Di BiagioRe-add tests from r179291 which were accidentally remov...
2013-09-17 Matt ArsenaultFix a constant folding address space place I missed.
2013-09-17 Quentin ColombetRevert the load slicing done in r190870.
2013-09-17 Matt ArsenaultCleanup handling of constant function casts.
2013-09-17 Quentin Colombet[InstCombiner] Slice a big load in two loads when the...
2013-09-09 Quentin Colombet[InstCombiner] Expose opportunities to merge subtract...
2013-09-06 Manman RenDebug Info Testing: updated to use NULL instead of...
2013-09-04 Tim NorthoverInstCombine: allow unmasked icmps to be combined with...
2013-09-04 Tim NorthoverInstCombine: look for masked compares with subset relation
2013-09-03 Matt ArsenaultTeach InstCombineLoadCast about address spaces.
2013-08-31 Benjamin KramerSimplifyLibCalls: When emitting an overloaded fp functi...
2013-08-30 Benjamin KramerInstCombine: Check for zero shift amounts before subtra...
2013-08-28 Matt ArsenaultConvert tests to FileCheck
2013-08-26 Manman RenDebug Info: add an identifier field to DICompositeType.
2013-08-21 Matt ArsenaultTeach InstCombine about address spaces
2013-08-21 Matt ArsenaultAdd test for bitcast array ptrs with address spaces
2013-08-21 Matt ArsenaultAdd enforce known alignment test with address space
2013-08-20 Matt ArsenaultTeach ConstantFolding about pointer address spaces
2013-08-19 Matt ArsenaultTeach InstCombine visitGetElementPtr about address...
2013-08-19 Matt ArsenaultFix assert with GEP ptr vector indexing structs
2013-08-19 Matt ArsenaultRevert non-test parts of r188507
2013-08-19 Michael KupersteinAdds missing TLI check for library simplification of
2013-08-16 Matt ArsenaultAdd missing test for GEP + bitcast transformation
2013-08-16 Daniel Dunbar[tests] Cleanup initialization of test suffixes.
2013-08-16 Jim GrosbachInstCombine: Simplify if(x!=0 && x!=-1).
2013-08-15 Matt ArsenaultDon't do FoldCmpLoadFromIndexedGlobal for non inbounds...
2013-08-15 Yunzhong GaoFixing a corner-case bug in strchr and strrchr lib...
2013-08-14 Matt ArsenaultFix always creating GEP with i32 indices
2013-08-12 Tim NorthoverFix FileCheck --check-prefix lines.
2013-08-12 Richard SandifordFix big-endian handling of integer-to-vector bitcasts...
2013-07-30 Owen AndersonPreserve fast-math flags when folding (fsub x, (fneg...
2013-07-30 David MajnemerisKnownToBeAPowerOfTwo: Strengthen isKnownToBeAPowerOfT...
2013-07-30 Matt ArsenaultChange behavior of calling bitcasted alias functions.
2013-07-29 Manman RenDebug Info: update testing cases to pass verifier.
2013-07-27 Manman RenDebug Info Verifier: verify SPs in llvm.dbg.sp.
2013-07-26 Owen AndersonWhen InstCombine tries to fold away (fsub x, (fneg...
2013-07-25 Rafael EspindolaCurrent batch of -disable-debug-info-verifier.
2013-07-21 Richard SmithTreat nothrow forms of ::operator delete and ::operator...
2013-07-20 Stephen LinInstCombine: call FoldOpIntoSelect for all floating...
2013-07-17 Stephen LinRestore r181216, which was partially reverted in r182499.
2013-07-14 Stephen LinCatch more CHECK that can be converted to CHECK-LABEL...
2013-07-14 Stephen LinUpdate Transforms tests to use CHECK-LABEL for easier...
2013-07-14 Stephen LinModify two Transforms tests to explicitly check for...
2013-07-13 Stephen LinAdd newlines at end of test files, no functionality...
2013-07-13 Nick LewyckyAdd a microoptimization for urem.
2013-07-12 Joey GoulyFix a crash in EvaluateInDifferentElementOrder where...
2013-07-09 David MajnemerInstSimplify: X >> X -> 0
2013-07-09 David MajnemerValueTracking: Fix bugs in isKnownToBeAPowerOfTwo
2013-07-09 David MajnemerInstCombine: variations on 0xffffffff - x >= 4
2013-07-09 David MajnemerInstCombine: X & -C != -C -> X <= u ~C
2013-07-09 David MajnemerCommit r185909 was a misapplied patch, fix it
2013-07-09 David MajnemerInstCombine: add more transforms
2013-07-08 David MajnemerInstCombine: Fold X-C1 <u 2 -> (X & -2) == C1
2013-07-06 David MajnemerInstCombine: typo in or_icmp_eq_B_0_icmp_ult_A_B test
2013-07-06 Nick LewyckyExtend 'readonly' and 'readnone' to work on function...
2013-07-05 David MajnemerInstCombine: (icmp eq B, 0) | (icmp ult A, B) -> (icmp...
2013-07-04 David MajnemerInstCombine: Reimplementation of visitUDivOperand
2013-07-02 Hal FinkelRevert r185257 (InstCombine: Be more agressive optimizi...
2013-06-30 Benjamin KramerConstantFold: Check that truncating the other side...
2013-06-29 David MajnemerValueTracking: Teach isKnownToBeAPowerOfTwo about ...
2013-06-29 Benjamin KramerInstCombine: Also turn selects fed by an and into arith...
2013-06-29 David MajnemerInstCombine: FoldGEPICmp shouldn't change sign of base...
2013-06-29 David MajnemerInstCombine: Be more agressive optimizing 'udiv' instrs...
2013-06-28 David MajnemerInstCombine: Optimize (1 << X) Pred CstP2 to X Pred...
2013-06-28 Manman RenDebug Info: clean up usage of Verify.
2013-06-28 Matt ArsenaultConvert tests to FileCheck
2013-06-27 Manman RenUpdate testing case to make DI nodes have the correct...
2013-06-27 Michael GottesmanAdded support for the Builtin attribute.
2013-06-06 Rafael EspindolaAdd a testcase from pr16244.
2013-06-01 Nick LewyckyWhen determining the new index for an insertelement...
2013-05-31 Rafael EspindolaSimplify multiplications by vectors whose elements...
2013-05-31 Nick LewyckyReapply with r182909 with a fix to the calculation...
2013-05-30 Evgeniy StepanovRevert r182909.
2013-05-30 Nick LewyckySwizzle vector inputs if it helps us eliminate shuffles.
2013-05-24 Joey GoulyscalarizePHI needs to insert the next ExtractElement...
2013-05-22 Jean-Luc DupratThis is an update to a previous commit (r181216).
2013-05-19 Benjamin KramerMove the remaining simplify-libcalls tests to instcombi...
2013-05-18 David MajnemerisKnownToBeAPowerOfTwo: (X & Y) + Y is a power of 2...
2013-05-12 David MajnemerInstCombine: Flip the order of two urem transforms
2013-05-11 David MajnemerInstCombine: Turn urem to bitwise-and more often
2013-05-10 Benjamin KramerInstCombine: Don't claim to be able to evaluate any...
2013-05-10 Benjamin KramerInstCombine: Verify the type before transforming uitofp...
2013-05-09 Benjamin KramerInstCombine: Don't just copy known bits from the first...
2013-05-06 David MajnemerInstCombine: (X ^ signbit) + C -> X + (signbit ^ C)
2013-05-06 Jean-Luc DupratTest results verified using FileCheck rather than grep...
next